html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
a,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: 600;
  max-width: 1800px;
  margin: auto;
  position: relative;
  padding-top: 61px;
}
.container a, .container img {
  display: block;
}
.container img {
  pointer-events: none;
}
@media (max-width: 1280px) {
  .container .br-1280 {
    display: block;
  }
}
@media (max-width: 960px) {
  .container .br-960 {
    display: block;
  }
}
@media (max-width: 768px) {
  .container .br-768 {
    display: block;
  }
}
@media (max-width: 480px) {
  .container .br-480 {
    display: block;
  }
}

.header {
  width: 100%;
  max-width: 1800px;
  background-color: #007C41;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.headerLogo {
  width: 170px;
}
.headerList {
  display: flex;
  align-items: center;
  gap: 20px;
}
.headerListItem a {
  font-size: 12px;
  color: #ffffff;
}
@media (max-width: 1280px) {
  .headerList {
    display: none;
  }
}

.hm {
  display: none;
  position: relative;
}
@media (max-width: 1280px) {
  .hm {
    display: block;
  }
}

.menu {
  position: fixed;
  top: 5px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
}
.menu span {
  position: relative;
  display: block;
  width: 80%;
  height: 3px;
  background-color: #ffffff;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.menu span:nth-of-type(1) {
  transform: translateY(-10px);
}
.menu span:nth-of-type(3) {
  transform: translateY(10px);
}

#menu {
  display: none;
}
#menu:checked ~ .menu {
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span {
  background-color: white;
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}
#menu:checked ~ .menu span:nth-of-type(2) {
  display: none;
}
#menu:checked ~ .menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}
#menu:checked ~ .nav {
  right: 0px;
  transition: right 500ms ease;
}
#menu:checked ~ main {
  transform: translateX(250px);
  transition: transform 500ms ease;
}

.nav {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #007C41;
  transition: left 500ms ease;
  z-index: 10;
}
.nav ul {
  position: relative;
  list-style-type: none;
  margin: 100px 0;
  padding: 0;
}
.nav ul li {
  position: relative;
  display: block;
  border-bottom: 5px solid white;
}
.nav ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding: 12px 20px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.nav ul li a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 250ms ease;
  z-index: -1;
}
.nav ul li a:hover {
  color: #444;
}
.nav ul li a:hover:before {
  width: 100%;
  height: 100%;
  background-color: white;
  transition: width 250ms ease;
}

.fv {
  background-image: url(../image/fv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fvInner {
  width: 70%;
}
@media (max-width: 1280px) {
  .fvInner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .fvInner {
    display: none;
  }
}
.fvMain {
  width: 600px;
}
@media (max-width: 960px) {
  .fvMain {
    width: 500px;
  }
}
.fvAchieve {
  width: 250px;
  height: auto;
  position: absolute;
  bottom: 80px;
  right: 120px;
}
@media (max-width: 1280px) {
  .fvAchieve {
    width: 180px;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .fvAchieve {
    display: none !important;
  }
}
.fv2 {
  height: 600px;
}
@media (max-width: 960px) {
  .fv2 {
    height: 500px !important;
  }
}
@media (max-width: 768px) {
  .fv2 {
    height: auto !important;
  }
}
@media (max-width: 960px) {
  .fv {
    height: 600px;
  }
}
.fvSp {
  display: none !important;
}
@media (max-width: 768px) {
  .fvSp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .fv {
    height: auto;
  }
}

.cta {
  background-color: #F7931E;
  padding: 30px 0;
}
.ctaHeading {
  font-size: 24px;
  text-align: center;
  color: #ffffff;
}
.ctaHeading_fv {
  color: #ED1C24;
}
@media (max-width: 768px) {
  .ctaHeading {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .ctaHeading {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .ctaHeading {
    font-size: 13px;
  }
}
.ctaBtn {
  width: 700px;
  margin: -40px auto;
  animation: scale 1300ms ease infinite;
}
@media (max-width: 768px) {
  .ctaBtn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .ctaBtn {
    margin-top: -20px;
  }
}
.cta_fv {
  background-color: #fff;
}
@media (max-width: 480px) {
  .cta {
    width: 110%;
    transform: translateX(-5%);
    padding-top: 20px;
  }
}

.caseTop {
  background-color: #007C41;
  padding: 30px;
}
.caseTop_img {
  width: 700px;
  margin: auto;
}
@media (max-width: 480px) {
  .caseTop_img {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .caseTop {
    padding: 15px;
  }
}
.caseMain {
  background-color: #00A259;
  padding: 40px 0;
}
.caseMain_catch {
  text-align: center;
  margin-bottom: 50px;
}
.caseMain_catch span {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
  color: #000000;
  background-color: #FCEE21;
  padding: 8px 30px 10px;
  border-radius: 50px;
  position: relative;
  -webkit-text-stroke: 8px #ffffff;
  text-stroke: 8px #ffffff;
  paint-order: stroke;
}
.caseMain_catch span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 18px solid #fcee21;
  border-bottom: 0;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.caseMain_img {
  width: 100%;
  background-color: #007C41;
  padding: 30px 0;
  margin-bottom: 30px;
}
.caseMain_img img {
  width: auto !important;
  height: 200px;
}
@media (max-width: 480px) {
  .caseMain_img img {
    height: 150px;
  }
}
.caseMain_sub {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .caseMain_sub {
    font-size: 20px;
  }
}
.caseMain_heading {
  font-size: 40px;
  font-weight: bold;
  color: #FCEE21;
  -webkit-text-stroke: 8px #006837;
  text-stroke: 8px #006837;
  paint-order: stroke;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .caseMain_heading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .caseMain_heading {
    font-size: 28px;
  }
}
.caseMain_logo {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.price {
  background-color: #E1FFF6;
  padding: 40px 0 80px;
}
.priceHeading {
  font-size: 44px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
.priceHeading span {
  font-size: 24px;
}
@media (max-width: 480px) {
  .priceHeading span {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .priceHeading {
    font-size: 36px;
  }
}
.priceList {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.priceItem {
  width: calc(33% - 20px);
}
.priceItem_img {
  position: relative;
}
.priceItem_heading {
  width: 100%;
  text-align: center;
  position: absolute;
  font-size: 32px;
  font-style: italic;
  font-weight: bold;
  color: #FF7404;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-text-stroke: 5px #ffffff;
  text-stroke: 5px #ffffff;
  paint-order: stroke;
}
.priceItem_heading span {
  font-size: 40px;
}
.priceItem_catch {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: #ffffff;
  background: linear-gradient(to bottom, #FFC23C, #FF7404);
  text-align: center;
  padding: 4px 0;
}
.priceItem_main {
  background-color: #fff;
  padding: 20px;
}
.priceItem_text {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
.priceItem_price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}
.priceItem_price .title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
  padding: 8px 12px;
  background-color: #FF8913;
}
.priceItem_price .price {
  background-color: transparent;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}
.priceItem_price .price .large {
  font-size: 40px;
}
.priceItem_price .tax {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1080px) {
  .priceItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .priceItem {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .priceItem {
    max-width: 100%;
  }
}
.priceTool {
  width: calc(90% - 64px);
  max-width: 936px;
  margin: auto;
  border: 2px solid #F74C01;
  background-color: #fff;
  padding: 30px;
}
.priceTool_heading {
  font-size: 32px;
  font-weight: bold;
  color: #F74C01;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .priceTool_heading {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .priceTool_heading {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .priceTool {
    width: calc(90% - 44px);
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .price {
    padding-bottom: 40px;
  }
}

.compareTop {
  background-color: #009245;
  padding: 40px 0;
}
.compareTop_heading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.8;
  vertical-align: middle;
}
.compareTop_heading img {
  display: inline-block;
  width: 300px;
  height: auto;
  margin: auto;
  margin-right: 8px;
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .compareTop_heading img {
    width: 200px;
    transform: translateY(2px);
  }
}
@media (max-width: 480px) {
  .compareTop_heading img {
    display: block;
    margin: auto;
    margin-bottom: 4px;
  }
}
.compareTop_heading .medium {
  font-size: 40px;
}
@media (max-width: 768px) {
  .compareTop_heading .medium {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .compareTop_heading .medium {
    font-size: 28px;
  }
}
.compareTop_heading .large {
  font-size: 48px;
  color: #FCEE21;
}
@media (max-width: 768px) {
  .compareTop_heading .large {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .compareTop_heading {
    font-size: 28px;
  }
}
.compareMain {
  background-image: url(../image/compare_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
}
.compareMain_money {
  width: auto;
  height: 350px;
  position: absolute;
}
.compareMain_money1 {
  top: 150px;
  left: 0;
}
.compareMain_money2 {
  top: 150px;
  right: 0;
}
@media (max-width: 768px) {
  .compareMain_money {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .compareMain_money {
    height: 200px;
  }
}
.compareMain_catch {
  text-align: center;
  margin-bottom: 50px;
}
.compareMain_catch span {
  font-size: 32px;
  font-weight: bold;
  color: #009245;
  background-color: #ffffff;
  padding: 8px 30px 10px;
  border-radius: 50px;
  position: relative;
}
.compareMain_catch span:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 18px solid white;
  border-bottom: 0;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.compareMain_catch span .small {
  font-weight: 400;
  padding: 0;
}
.compareMain_catch span .small:before {
  display: none;
}
@media (max-width: 768px) {
  .compareMain_catch span {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .compareMain_catch span {
    font-size: 21px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.compareMain_text {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
}
.compareMain_text span {
  font-size: 40px;
  font-weight: bold;
  color: #FCEE21;
}
.compareMain_text:last-child {
  font-size: 28px;
}
@media (max-width: 768px) {
  .compareMain_text {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .compareMain {
    padding: 60px 0 40px;
  }
}
.compareList {
  width: 90%;
  max-width: 600px;
  margin: auto;
}
@media (max-width: 768px) {
  .compareList {
    max-width: 90%;
  }
}
.compareItem {
  margin-bottom: 50px;
}
.compareItem_main {
  background-color: #fff;
  padding: 40px;
  text-align: center;
  position: relative;
  border-radius: 0 0 8px 8px;
  margin-bottom: 140px;
}
@media (max-width: 480px) {
  .compareItem_main {
    padding: 20px;
    margin-bottom: 100px;
  }
}
.compareItem_heading {
  z-index: 8;
}
@media (max-width: 768px) {
  .compareItem_heading img {
    height: calc(100% + 32px);
  }
}
.compareItem_text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.compareItem_text .gray {
  color: #ffffff;
  background-color: #4B5758;
  padding: 2px 4px;
  margin: 0 4px;
}
.compareItem_text .blue {
  color: #ffffff;
  background-color: #0071BC;
  padding: 2px 8px;
  margin: 0 4px;
  border-radius: 50px;
}
.compareItem_actual {
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .compareItem_actual {
    font-size: 24px;
  }
}
.compareItem_list1, .compareItem_list2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.compareItem_child1 {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  width: 100%;
  background-color: #4B5758;
  padding: 15px 0;
  position: relative;
}
.compareItem_child1 span {
  font-size: 14px;
}
.compareItem_child1::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #4B5758;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.compareItem_child1:first-child::before {
  display: none;
}
.compareItem_child1:last-child::before {
  display: none;
}
@media (max-width: 480px) {
  .compareItem_child1 {
    font-size: 18px;
  }
}
.compareItem_child2 {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  width: 100%;
  background-image: url(../image/compare_blueborder.png);
  border-radius: 50px;
  color: #FCEE21;
  padding: 10px 0;
  position: relative;
}
.compareItem_child2 span {
  font-size: 18px;
}
.compareItem_child2::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #4B5758;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.compareItem_child2:first-child::before {
  display: none;
}
@media (max-width: 480px) {
  .compareItem_child2 {
    font-size: 26px;
  }
}
.compareItem_child3 {
  width: 90%;
  font-size: 32px;
  color: #ffffff;
  padding: 15px 0;
  background-image: url(../image/compare_blueborder.png);
  position: relative;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 40px;
}
.compareItem_child3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #0071BC;
  border-bottom: 0;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.compareItem_child3 .person1 {
  width: auto;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: -50px;
}
@media (max-width: 480px) {
  .compareItem_child3 .person1 {
    height: 80px;
    left: -30px;
  }
}
.compareItem_child3 .person2 {
  width: auto;
  height: 100px;
  position: absolute;
  bottom: 0;
  right: -50px;
}
@media (max-width: 480px) {
  .compareItem_child3 .person2 {
    height: 80px;
    right: -30px;
  }
}
@media (max-width: 480px) {
  .compareItem_child3 {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.compareItem_child4 {
  background-image: url(../image/compare_pinkborder.png);
  position: relative;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: left;
}
.compareItem_child4 span {
  font-size: 24px;
  display: inline-block;
  text-align: left;
  color: #ffffff;
  -webkit-text-stroke: 8px #E55E95;
  text-stroke: 8px #E55E95;
  paint-order: stroke;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .compareItem_child4 span {
    font-size: 16px;
  }
}
.compareItem_child4 img {
  width: 100px;
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 0;
}
@media (max-width: 480px) {
  .compareItem_child4 img {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .compareItem_child4 {
    padding: 20px;
  }
}
.compareItem:first-child .compareItem_heading {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  background-color: #4B5758;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.compareItem:first-child .compareItem_heading:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #4B5758;
  border-bottom: 0;
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .compareItem:first-child .compareItem_heading {
    font-size: 24px;
  }
}
.compareItem:last-child {
  margin-bottom: 0;
}
.compareItem:last-child .compareItem_heading {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.compareItem:last-child .compareItem_heading span {
  position: relative;
  z-index: 2;
}
.compareItem:last-child .compareItem_heading img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 480px) {
  .compareItem:last-child .compareItem_heading {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .compareItem:last-child .compareItem_main {
    padding-top: 40px;
  }
}
.compareItem_arrow {
  width: 120px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.compareItem_arrow1 {
  bottom: -130px;
}
@media (max-width: 480px) {
  .compareItem_arrow1 {
    bottom: -95px;
  }
}
.compareItem_arrow2 {
  bottom: -111px;
}
@media (max-width: 480px) {
  .compareItem_arrow2 {
    bottom: -80px;
  }
}
@media (max-width: 480px) {
  .compareItem_arrow {
    width: 80px;
  }
}
.compareItem_desc {
  font-size: 40px;
  line-height: 1.8;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
.compareItem_desc .border {
  background: linear-gradient(transparent 90%, #FCEE21 90%);
  padding-bottom: 4px;
}
.compareItem_desc .pink {
  color: #FF7BAC;
}
.compareItem_desc .yellow {
  color: #FCEE21;
}
@media (max-width: 768px) {
  .compareItem_desc {
    font-size: 32px;
  }
}

.area {
  background-image: url(../image/area_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0 80px;
}
.areaHeading {
  font-size: 40px;
  color: #006837;
  -webkit-text-stroke: 8px #ffffff;
  text-stroke: 8px #ffffff;
  paint-order: stroke;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .areaHeading {
    font-size: 32px;
  }
}
.areaMap {
  width: 90%;
  max-width: 900px;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}
.areaMap .empha {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: -40px;
  right: -120px;
}
@media (max-width: 960px) {
  .areaMap .empha {
    width: 180px;
    right: -50px;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .areaMap .empha {
    width: 140px;
    right: -50px;
    bottom: 0;
  }
}
.areaMap_text {
  max-width: 700px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 400;
  margin: auto;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .areaMap_text {
    font-size: 12px;
    flex-direction: column;
    gap: 10px;
  }
}
.areaMap_other {
  width: 180px;
  background-color: #FFE830;
  position: absolute;
  top: 30px;
  left: -92px;
  padding-top: 30px;
  padding-bottom: 20px;
  border: 2px solid #ffffff;
  border-radius: 10px;
}
.areaMap_other span {
  background-color: #fff;
  color: #57B846;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  font-size: 14px;
  text-align: center;
  border-radius: 50px;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .areaMap_other span {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .areaMap_other span {
    font-size: 10px;
  }
}
.areaMap_other img {
  width: 70%;
  margin: auto;
}
@media (max-width: 960px) {
  .areaMap_other {
    width: 130px;
    left: -7%;
  }
}
@media (max-width: 768px) {
  .areaMap_other {
    width: 130px;
    right: -7%;
    top: -20px;
    left: auto;
  }
}
@media (max-width: 480px) {
  .areaMap_other {
    width: 120px;
  }
}
@media (max-width: 960px) {
  .areaMap {
    max-width: 90%;
    margin-bottom: 20px;
  }
}
.areaLogo {
  width: calc(90% - 10px);
  max-width: 690px;
  margin: auto;
  border: 5px solid #009245;
  background-color: #fff;
  border-radius: 10px;
}
.areaLogo_heading {
  color: #ffffff;
  font-size: 18px;
  background-color: #009245;
  padding: 20px 0;
  text-align: center;
}
.areaLogo_img {
  width: 90%;
  margin: 30px auto;
}
@media (max-width: 960px) {
  .areaLogo {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .area {
    padding: 40px 0;
  }
}

.flowTop {
  background-color: #009245;
  padding: 40px 0;
  text-align: center;
}
.flowTop_img1 {
  width: auto;
  height: 120px;
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .flowTop_img1 {
    height: 90px;
    left: -70px;
  }
}
@media (max-width: 480px) {
  .flowTop_img1 {
    height: 70px;
  }
}
.flowTop_img2 {
  width: auto;
  height: 120px;
  position: absolute;
  top: 50%;
  right: -170px;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .flowTop_img2 {
    height: 90px;
    right: -120px;
  }
}
@media (max-width: 480px) {
  .flowTop_img2 {
    height: 70px;
    right: -90px;
  }
}
.flowHeading {
  display: inline-block;
  font-size: 40px;
  color: #ffffff;
  position: relative;
}
.flowHeading span {
  font-size: 48px;
  color: #FCEE21;
}
@media (max-width: 960px) {
  .flowHeading span {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .flowHeading span {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  .flowHeading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .flowHeading {
    font-size: 28px;
  }
}
.flowList {
  width: 90%;
  max-width: 700px;
  margin: auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .flowList {
    padding: 40px 0;
  }
}
.flowItem {
  display: flex;
  justify-content: space-between;
  position: relative;
  border: 4px solid #009245;
  border-radius: 10px;
}
.flowItem_num {
  font-size: 28px;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background-color: #009245;
  display: flex;
  border: 5px solid #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: absolute;
  top: -20px;
  left: -20px;
}
.flowItem_left {
  width: calc(100% - 280px);
  padding: 20px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 960px) {
  .flowItem_left {
    width: calc(100% - 240px);
  }
}
@media (max-width: 480px) {
  .flowItem_left {
    width: calc(100% - 40px);
    padding-left: 20px;
  }
}
.flowItem_right {
  width: 220px;
}
@media (max-width: 960px) {
  .flowItem_right {
    width: 180px;
  }
}
@media (max-width: 480px) {
  .flowItem_right {
    width: 100%;
    height: 200px;
  }
}
.flowItem_heading {
  font-size: 24px;
  color: #009245;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .flowItem_heading .br-768 {
    display: none;
  }
}
.flowItem_text {
  font-size: 14px;
}
.flowItem_text span {
  display: inline;
  background: linear-gradient(transparent 80%, #009245 80%);
  margin-bottom: 15px;
}
.flowItem_img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 5px 5px 0;
}
@media (max-width: 480px) {
  .flowItem_img {
    border-radius: 5px 5px 0 0;
  }
}
.flowItem_pay {
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
}
.flowItem:before {
  content: "";
  width: 4px;
  height: 38px;
  background-color: #009245;
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}
.flowItem:last-child:before {
  display: none;
}
@media (max-width: 480px) {
  .flowItem {
    flex-direction: column-reverse;
  }
}

.feature {
  background: linear-gradient(90deg, #E1FFF6 0%, #E1FFF6 50%, #BFEFDF 50%, #BFEFDF 100%);
  padding: 40px 0 80px;
}
.featureHeading {
  text-align: center;
  font-size: 36px;
  color: #000000;
  line-height: 2.5;
  margin-bottom: 50px;
}
.featureHeading .empha1 {
  display: inline-block;
  font-size: 18px;
  padding: 0px 10px;
  border-radius: 50px;
  border: 3px solid #01A259;
  color: #01A259;
  background-color: #fff;
  transform: translateY(-4px);
}
.featureHeading .empha2 {
  font-size: 40px;
  color: #ffffff;
  padding: 4px 12px;
  background-color: #01A259;
  border-radius: 5px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .featureHeading .empha2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .featureHeading .empha2 {
    font-size: 26px;
  }
}
.featureHeading .empha3 {
  font-size: 40px;
  color: #ffffff;
  padding: 4px 12px;
  background-color: #F2431F;
  border-radius: 5px;
  margin: 0 5px;
}
@media (max-width: 768px) {
  .featureHeading .empha3 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .featureHeading .empha3 {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .featureHeading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .featureHeading {
    font-size: 22px;
  }
}
.featureImg {
  width: 90%;
  max-width: 700px;
  margin: auto;
}
.featureBox {
  width: calc(90% - 80px);
  max-width: 620px;
  margin: auto;
  background-color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.featureBox_img {
  width: 50%;
  height: auto;
}
@media (max-width: 768px) {
  .featureBox_img {
    width: auto;
    max-width: 300px;
  }
}
.featureBox_text {
  width: 50%;
  font-size: 16px;
  line-height: 1.8;
}
.featureBox_text span {
  color: #F15A24;
}
@media (max-width: 768px) {
  .featureBox_text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .featureBox {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .featureBox {
    width: calc(90% - 40px);
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .feature {
    padding: 40px 0;
  }
}

.type {
  padding: 80px 0;
}
.typeHeading {
  text-align: center;
  margin-bottom: 50px;
}
.typeHeading span {
  display: inline-block;
  font-size: 40px;
  color: #01A259;
  text-align: center;
  border-bottom: 5px solid #01A259;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .typeHeading span {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .typeHeading span {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .typeHeading {
    margin-bottom: 30px;
  }
}
.typeList {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  width: 90%;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .typeList {
    margin-bottom: 30px;
  }
}
.typeItem {
  width: calc(25% - 16px);
  border: 4px solid #01A259;
  border-radius: 10px;
}
.typeItem_heading {
  font-size: 18px;
  color: #ffffff;
  background-color: #01A259;
  text-align: center;
  padding: 4px 0 6px;
}
@media (max-width: 480px) {
  .typeItem_heading {
    font-size: 16px;
  }
}
.typeItem.orange {
  border: 4px solid #F2431F;
}
.typeItem.orange .typeItem_heading {
  background-color: #F2431F;
}
.typeItem_sub {
  display: inline-block;
  font-size: 12px;
  margin-top: 4px;
}
.typeItem:last-child {
  border: 4px solid transparent;
  text-align: center;
}
@media (max-width: 768px) {
  .typeItem {
    width: calc(50% - 16px);
  }
}
.typeBox {
  width: calc(90% - 10px);
  max-width: 690px;
  margin: auto;
  border: 5px solid #009245;
  background-color: #fff;
  border-radius: 10px;
}
.typeBox_heading {
  color: #FCEE21;
  font-size: 28px;
  background-color: #009245;
  padding: 10px 0;
  text-align: center;
}
@media (max-width: 480px) {
  .typeBox_heading {
    font-size: 24px;
  }
}
.typeBox_img {
  width: 90%;
  margin: 30px auto;
}
.typeSub {
  width: 90%;
  font-size: 18px;
  color: #4B5758;
  text-align: center;
  margin: auto;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .typeSub {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .type {
    padding: 40px 0;
  }
}

.superior {
  padding: 80px 0;
  background-color: #FFFBE5;
}
.superiorHeading {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  line-height: 1.8;
  vertical-align: middle;
  margin-bottom: 40px;
}
.superiorHeading img {
  display: inline-block;
  width: 300px;
  height: auto;
  margin: auto;
  margin-right: 8px;
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .superiorHeading img {
    width: 200px;
    transform: translateY(2px);
  }
}
.superiorHeading .large {
  font-size: 48px;
  color: #F74C01;
}
@media (max-width: 768px) {
  .superiorHeading .large {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .superiorHeading .large {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .superiorHeading {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .superiorHeading {
    font-size: 24px;
  }
}
.superiorTable {
  width: 95%;
  max-width: 600px;
  margin: auto;
}
@media (max-width: 480px) {
  .superior {
    padding: 40px 0;
  }
}

.caution {
  padding: 80px 0;
  background-color: #EDEDED;
  text-align: center;
}
.cautionHeading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: 6px solid #171D50;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.cautionHeading_img {
  width: 80px;
  height: auto;
}
@media (max-width: 768px) {
  .cautionHeading_img {
    width: 60px;
  }
}
.cautionHeading span {
  font-size: 40px;
  color: #171D50;
}
@media (max-width: 768px) {
  .cautionHeading span {
    font-size: 32px;
  }
}
.cautionSub {
  width: 90%;
  font-size: 18px;
  text-align: center;
  margin: auto;
  margin-bottom: 50px;
}
.cautionSub span {
  background: linear-gradient(transparent 60%, #FFE080 60%);
}
@media (max-width: 480px) {
  .cautionSub {
    text-align: left;
  }
  .cautionSub .br-960 {
    display: none;
  }
}
.cautionCatch {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.cautionCatch img {
  width: 300px;
  height: auto;
  margin: auto;
}
.cautionCatch span {
  font-size: 28px;
  color: #FFE080;
  text-align: center;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media (max-width: 480px) {
  .cautionCatch span {
    font-size: 24px;
  }
}
.cautionList {
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: auto;
}
@media (max-width: 960px) {
  .cautionList {
    flex-direction: column;
    align-items: center;
  }
}
.cautionItem {
  width: calc(33% - 40px);
  background-color: #fff;
  padding: 20px;
}
.cautionItem_top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.cautionItem_img {
  width: 80px;
  height: auto;
}
.cautionItem_heading {
  font-size: 18px;
  color: #F74C01;
  text-align: left;
  position: relative;
}
.cautionItem_heading:before {
  content: "";
  width: 3px;
  height: calc(100% - 10px);
  background-color: #F74C01;
  position: absolute;
  top: 5px;
  left: -15px;
}
.cautionItem_text {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 960px) {
  .cautionItem {
    width: calc(90% - 40px);
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .caution {
    padding: 40px 0;
  }
}

.reasonTop {
  background-image: url(../image/reason_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 120px 0;
}
.reasonTop_heading {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  vertical-align: middle;
}
.reasonTop_heading img {
  display: inline-block;
  width: 250px;
  height: auto;
  margin: auto;
  margin-right: 8px;
  transform: translateY(10px);
}
@media (max-width: 768px) {
  .reasonTop_heading img {
    width: 200px;
    transform: translateY(2px);
  }
}
@media (max-width: 480px) {
  .reasonTop_heading img {
    width: 150px;
  }
}
.reasonTop_heading .medium {
  font-size: 50px;
  color: #FCEE21;
  -webkit-text-stroke: 8px #006837;
  text-stroke: 8px #006837;
  paint-order: stroke;
}
@media (max-width: 768px) {
  .reasonTop_heading .medium {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .reasonTop_heading .medium {
    font-size: 40px;
  }
}
.reasonTop_heading .large {
  font-size: 80px;
  color: #FCEE21;
}
@media (max-width: 768px) {
  .reasonTop_heading .large {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .reasonTop_heading .large {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .reasonTop_heading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .reasonTop_heading {
    font-size: 26px;
  }
}
@media (max-width: 1280px) {
  .reasonTop {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .reasonTop {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .reasonTop {
    background-image: url(../image/reason_top_sp.png);
    padding: 40px 0;
  }
}
.reasonInner {
  background-color: #FFFBE5;
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 480px) {
  .reasonInner {
    padding: 40px 0;
  }
}
.reasonList {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.reasonItem {
  width: calc(33% - 12px);
  background-color: #009245;
}
.reasonItem_main {
  padding: 20px;
  padding-top: 70px;
  position: relative;
}
.reasonItem_heading {
  font-size: 24px;
  line-height: 2;
  color: #ffffff;
  position: relative;
  text-align: left;
}
.reasonItem_heading span {
  padding: 4px 10px 6px;
  background-color: #ED1C24;
}
.reasonItem_heading .br-480 {
  padding: 0;
  background-color: transparent;
}
.reasonItem_heading .small {
  background-color: transparent;
  font-size: 12px;
  position: absolute;
  padding: 0;
}
@media (max-width: 1080px) {
  .reasonItem_heading {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .reasonItem_heading {
    font-size: 16px;
  }
}
.reasonItem_num {
  font-size: 60px;
  color: #ffffff;
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 15px;
}
@media (max-width: 960px) {
  .reasonItem {
    width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .reasonItem {
    width: 100%;
  }
}
.reasonText {
  width: 90%;
  display: inline-block;
  font-size: 18px;
  text-align: left;
  margin: auto;
}
@media (max-width: 480px) {
  .reasonText {
    font-size: 16px;
  }
}

.voice {
  background-color: #FFFBE5;
  padding: 80px 0;
}
.voiceHeading {
  text-align: center;
  margin-bottom: 60px;
}
.voiceHeading span {
  font-size: 40px;
  display: inline-block;
  background-color: #fff;
  color: #01A259;
  padding: 10px 200px;
  border: 3px solid #01A259;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 768px) {
  .voiceHeading span {
    font-size: 32px;
    padding: 10px 140px;
  }
}
@media (max-width: 480px) {
  .voiceHeading span {
    font-size: 26px;
    width: 90%;
    padding: 10px 0;
  }
}
.voiceHeading_img1 {
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .voiceHeading_img1 {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .voiceHeading_img1 {
    width: 60px;
  }
}
.voiceHeading_img2 {
  width: 100px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .voiceHeading_img2 {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .voiceHeading_img2 {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .voiceHeading {
    margin-bottom: 40px;
  }
}
.voiceList {
  position: relative;
}
.voiceList .slick-dots li {
  margin: 0 8px;
}
.voiceList .slick-dots li button:before {
  font-size: 18px;
  opacity: 1;
  color: #b4e6c1;
}
.voiceList .slick-dots li.slick-active button:before {
  color: #009245;
}
@media (max-width: 768px) {
  .voiceList .slick-dots {
    bottom: -35px;
  }
}
.voiceList .slick-track {
  display: flex;
}
.voiceList .slick-slide {
  height: auto !important;
}
.voiceList .prev-arrow {
  position: absolute;
  top: 50%;
  left: 575px;
  width: 40px;
  height: auto;
  z-index: 9;
  pointer-events: visible;
}
@media (max-width: 1800px) {
  .voiceList .prev-arrow {
    left: 560px;
  }
}
@media (max-width: 1750px) {
  .voiceList .prev-arrow {
    left: 545px;
  }
}
@media (max-width: 1700px) {
  .voiceList .prev-arrow {
    left: 520px;
  }
}
@media (max-width: 1650px) {
  .voiceList .prev-arrow {
    left: 495px;
  }
}
@media (max-width: 1600px) {
  .voiceList .prev-arrow {
    left: 470px;
  }
}
@media (max-width: 1550px) {
  .voiceList .prev-arrow {
    left: 440px;
  }
}
@media (max-width: 1500px) {
  .voiceList .prev-arrow {
    left: 410px;
  }
}
@media (max-width: 1450px) {
  .voiceList .prev-arrow {
    left: 380px;
  }
}
@media (max-width: 1400px) {
  .voiceList .prev-arrow {
    left: 350px;
  }
}
@media (max-width: 1300px) {
  .voiceList .prev-arrow {
    left: 315px;
  }
}
@media (max-width: 1250px) {
  .voiceList .prev-arrow {
    left: 290px;
  }
}
@media (max-width: 1200px) {
  .voiceList .prev-arrow {
    left: 265px;
  }
}
@media (max-width: 1150px) {
  .voiceList .prev-arrow {
    left: 240px;
  }
}
@media (max-width: 1100px) {
  .voiceList .prev-arrow {
    left: 210px;
  }
}
@media (max-width: 1050px) {
  .voiceList .prev-arrow {
    left: 190px;
  }
}
@media (max-width: 1000px) {
  .voiceList .prev-arrow {
    left: 170px;
  }
}
@media (max-width: 950px) {
  .voiceList .prev-arrow {
    left: 140px;
  }
}
@media (max-width: 900px) {
  .voiceList .prev-arrow {
    left: 115px;
  }
}
@media (max-width: 850px) {
  .voiceList .prev-arrow {
    left: 90px;
  }
}
@media (max-width: 800px) {
  .voiceList .prev-arrow {
    left: 65px;
  }
}
.voiceList .next-arrow {
  position: absolute;
  top: 50%;
  right: 575px;
  width: 40px;
  height: auto;
  z-index: 9;
  pointer-events: visible;
}
@media (max-width: 1800px) {
  .voiceList .next-arrow {
    right: 560px;
  }
}
@media (max-width: 1750px) {
  .voiceList .next-arrow {
    right: 545px;
  }
}
@media (max-width: 1700px) {
  .voiceList .next-arrow {
    right: 520px;
  }
}
@media (max-width: 1650px) {
  .voiceList .next-arrow {
    right: 495px;
  }
}
@media (max-width: 1600px) {
  .voiceList .next-arrow {
    right: 470px;
  }
}
@media (max-width: 1550px) {
  .voiceList .next-arrow {
    right: 440px;
  }
}
@media (max-width: 1500px) {
  .voiceList .next-arrow {
    right: 410px;
  }
}
@media (max-width: 1450px) {
  .voiceList .next-arrow {
    right: 380px;
  }
}
@media (max-width: 1400px) {
  .voiceList .next-arrow {
    right: 350px;
  }
}
@media (max-width: 1300px) {
  .voiceList .next-arrow {
    right: 315px;
  }
}
@media (max-width: 1250px) {
  .voiceList .next-arrow {
    right: 290px;
  }
}
@media (max-width: 1200px) {
  .voiceList .next-arrow {
    right: 265px;
  }
}
@media (max-width: 1150px) {
  .voiceList .next-arrow {
    right: 240px;
  }
}
@media (max-width: 1100px) {
  .voiceList .next-arrow {
    right: 210px;
  }
}
@media (max-width: 1050px) {
  .voiceList .next-arrow {
    right: 190px;
  }
}
@media (max-width: 1000px) {
  .voiceList .next-arrow {
    right: 170px;
  }
}
@media (max-width: 950px) {
  .voiceList .next-arrow {
    right: 140px;
  }
}
@media (max-width: 900px) {
  .voiceList .next-arrow {
    right: 115px;
  }
}
@media (max-width: 850px) {
  .voiceList .next-arrow {
    right: 90px;
  }
}
@media (max-width: 800px) {
  .voiceList .next-arrow {
    right: 65px;
  }
}
.voiceItem {
  width: 500px;
  height: auto;
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 20px 20px 20px;
  margin: 30px 40px 10px;
  box-shadow: 6px 6px 0px 0px #009245;
}
.voiceItem_top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: -50px;
  margin-bottom: 10px;
}
.voiceItem_person {
  width: 80px;
  height: auto;
}
.voiceItem_heading {
  font-size: 24px;
  color: #009245;
}
.voiceItem_text {
  height: calc(100% - 80px);
  font-size: 14px;
  background-color: #fff;
  padding: 20px;
}
@media (max-width: 768px) {
  .voiceItem {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .voiceItem {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .voiceItem {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .voice {
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  .voice {
    padding: 40px 0;
  }
}

.qa {
  padding: 80px 0;
  background-color: #E1FFF6;
}
.qaHeading {
  font-size: 40px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}
.qaHeading span {
  font-size: 24px;
  color: #009245;
}
@media (max-width: 480px) {
  .qaHeading span {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .qaHeading {
    font-size: 32px;
  }
}
.qa .qaList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qa .qaList .qaItem {
  width: 90%;
  max-width: 700px;
  position: relative;
}
.qa .qaList .qaItem .question {
  background-color: #01A259;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 70px 20px 20px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  cursor: pointer;
  transition-duration: 0.2s;
}
.qa .qaList .qaItem .question .questionHeading {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background-color: #fff;
  color: #01A259;
}
@media (max-width: 480px) {
  .qa .qaList .qaItem .question .questionHeading {
    width: 40px;
    height: 40px;
  }
}
.qa .qaList .qaItem .question span {
  width: calc(100% - 70px);
}
@media (max-width: 480px) {
  .qa .qaList .qaItem .question span {
    width: calc(100% - 50px);
  }
}
.qa .qaList .qaItem .question .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  border-radius: 50px;
}
.qa .qaList .qaItem .question .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.qa .qaList .qaItem .question .i_box .one_i:before,
.qa .qaList .qaItem .question .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 3px;
  position: absolute;
  top: 7.5px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}
.qa .qaList .qaItem .question .i_box .one_i:before {
  width: 3px;
  height: 18px;
  top: 0;
  left: 7.5px;
}
@media (max-width: 480px) {
  .qa .qaList .qaItem .question {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 10px;
    padding-right: 60px;
  }
}
.qa .qaList .qaItem .question:hover {
  opacity: 0.8;
}
.qa .qaList .qaItem .question.open .i_box {
  transform: rotate(-180deg);
}
.qa .qaList .qaItem .question.open .i_box .one_i:before {
  content: none;
}
.qa .qaList .qaItem .question.open .i_box .one_i:after {
  transform: rotate(-45deg);
}
.qa .qaList .qaItem .answer {
  display: none;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
}
.qa .qaList .qaItem .answerHeading {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background-color: #F7931E;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .qa .qaList .qaItem .answerHeading {
    width: 40px;
    height: 40px;
  }
}
.qa .qaList .qaItem .answer .box_one {
  width: calc(100% - 70px);
  margin-left: auto;
}
@media (max-width: 480px) {
  .qa .qaList .qaItem .answer .box_one {
    width: calc(100% - 50px);
  }
}
.qa .qaList .qaItem .answer p.txt_a_ac {
  margin: 0;
}
.qa .qaList .qaItem .answer.open {
  display: block;
}
@media (max-width: 480px) {
  .qa {
    padding: 40px 0;
  }
}

.message {
  background-image: url(../image/message_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .messageInner {
    display: none;
  }
}
.messageMain {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .messageMain {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .messageMain {
    max-width: 90%;
    margin: auto;
  }
}
.messageCatch {
  display: inline-block;
  font-size: 22px;
  color: #000000;
  position: relative;
  margin-bottom: 40px;
}
.messageCatch:before {
  content: "";
  width: 100vw;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  right: -101vw;
  transform: translateY(-50%);
}
@media (max-width: 960px) {
  .messageCatch {
    -webkit-text-stroke: 8px #ffffff;
    text-stroke: 8px #ffffff;
    paint-order: stroke;
  }
}
.messageHeading {
  font-size: 36px;
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .messageHeading {
    -webkit-text-stroke: 8px #ffffff;
    text-stroke: 8px #ffffff;
    paint-order: stroke;
  }
}
.messageText {
  line-height: 2.2;
  margin-bottom: 50px;
}
@media (max-width: 960px) {
  .messageText {
    -webkit-text-stroke: 8px #ffffff;
    text-stroke: 8px #ffffff;
    paint-order: stroke;
  }
}
.messageName {
  font-size: 24px;
}
@media (max-width: 960px) {
  .messageName {
    -webkit-text-stroke: 8px #ffffff;
    text-stroke: 8px #ffffff;
    paint-order: stroke;
  }
}
@media (max-width: 1280px) {
  .message {
    background-position: -160px top;
  }
}
@media (max-width: 768px) {
  .message {
    background-image: none;
    padding: 0;
  }
}
.messageSp {
  display: none !important;
}
@media (max-width: 768px) {
  .messageSp {
    display: block !important;
  }
}

.company {
  padding: 80px 0;
  background-color: #fff;
}
.companyList {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 480px) {
  .companyList {
    gap: 20px;
  }
}
.companyItem {
  width: 100%;
  overflow: hidden;
}
.companyItem_heading {
  display: inline-block;
  font-size: 32px;
  color: #01A259;
  position: relative;
  margin-bottom: 40px;
}
.companyItem_heading:before {
  content: "";
  width: 100vw;
  height: 3px;
  background-color: #01A259;
  position: absolute;
  top: calc(50% + 3px);
  right: -101vw;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .companyItem_heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.companyItem_child {
  margin-bottom: 30px;
  border-bottom: 2px dotted #ABABAB;
  padding-bottom: 30px;
}
@media (max-width: 480px) {
  .companyItem_child {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.companyItem_title {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .companyItem_title {
    font-size: 20px;
  }
  .companyItem_title.heading {
    font-size: 18px;
  }
  .companyItem_title.heading br {
    display: none;
  }
}
.companyItem_text {
  font-size: 16px;
}
.companyImg {
  width: 90%;
  max-width: 600px;
  margin: auto;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .company {
    padding: 40px 0;
  }
}

.fixed {
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  display: none !important;
  transition: 0.5s;
  display: none !important;
}
.fixed img {
  margin: -25px auto;
  animation: scale2 1300ms ease infinite;
}
@media (max-width: 480px) {
  .fixed.show {
    display: block !important;
  }
}

#page-top {
  width: 30px;
  height: 30px;
  position: fixed;
  z-index: 9;
  right: 15px;
  bottom: 190px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  background: #fff;
  padding: 10px;
  border: solid 1px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
}
#page-top i {
  font-size: 24px;
}
@media (max-width: 480px) {
  #page-top {
    display: flex;
  }
}
@media (max-width: 400px) {
  #page-top {
    bottom: 150px;
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(1);
  }
}
@keyframes scale2 {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.05);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */