@charset "UTF-8";
/*******************************************************************/
/*******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=DotGothic16&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
html {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

body {
  color: #333333;
  font-size: 1.6rem;
  background-color: #fefdf3;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.6;
}

/***********************************************************************/
/***********************************************************************/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.underline-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #333;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: transform 0.4s ease;
}
.underline-hover:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.underline-hover a {
  color: #333;
}
.underline-hover a:hover, .underline-hover a:visited, .underline-hover a:active, .underline-hover a:link {
  color: #333;
}

.area_contens {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 92px;
  margin-bottom: 64px;
}

.title_contens {
  text-align: center;
  font-size: 4.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .title_contens {
    font-size: 3.2rem;
  }
}

.title_sub {
  display: block;
  font-size: 2.4rem;
  color: #146220;
}
@media screen and (max-width: 767px) {
  .title_sub {
    font-size: 2rem;
  }
}

.title_text_s {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .title_text_s {
    font-size: 2.4rem;
  }
}

.column_2 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .column_2 {
    display: block;
    width: 96%;
    margin: 0 auto;
  }
}
.column_2 .box_column {
  width: 50%;
  box-sizing: border-box;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .column_2 .box_column {
    width: 100%;
    margin: 0 auto;
  }
}
.column_2 .box_column h2 {
  text-align: center;
  font-size: clamp(1.8rem, 2.34vw, 2.4rem);
  font-weight: 800;
  color: #146220;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-top: 24px;
}

.title_decoration-1 {
  color: #ba3b14;
}

/***********************************************************************/
/***********************************************************************/
nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 720px;
  height: 64px;
  box-sizing: border-box;
  padding: 0 24px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: 40px;
  border: #999 solid 1px;
  box-shadow: 0px 10px 15px -9px #b4b1b1;
  z-index: 100;
}
nav ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: clamp(12px, 1.8vw, 16px);
}
nav li {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  nav {
    display: none;
  }
}

.btn_inquiry_menu {
  background-color: #ce2c23;
  color: #ffffff !important;
  padding: 8px 18px;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid #ce2c23;
}
.btn_inquiry_menu a {
  color: #fff;
}
.btn_inquiry_menu a:visited, .btn_inquiry_menu a:active, .btn_inquiry_menu a:link {
  color: #fff;
}
.btn_inquiry_menu a:hover {
  color: #ce2c23;
}
.btn_inquiry_menu:hover {
  background-color: #ffffff;
  color: #ce2c23;
}
.btn_inquiry_menu:hover a {
  color: #ce2c23;
}

.btn_menu_main {
  background-color: #f40829;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  position: fixed;
  top: 16px;
  right: 16px;
  display: none;
  box-sizing: border-box;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .btn_menu_main {
    display: block;
  }
}
.btn_menu_main span {
  display: block;
  height: 2px;
  width: 50%;
  background-color: #fff;
  position: absolute;
  left: 25%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn_menu_main span:nth-child(1) {
  top: 16px;
}
.btn_menu_main span:nth-child(2) {
  top: 23px;
}
.btn_menu_main span:nth-child(3) {
  top: 30px;
}

.active span:nth-child(1) {
  transform: translateY(8px) rotate(-315deg);
}

.active span:nth-child(2) {
  opacity: 0;
}

.active span:nth-child(3) {
  transform: translateY(-6px) rotate(315deg);
}

@keyframes nav-open {
  0% {
    transform: translateX(100%);
    width: 100%;
  }
  60% {
    transform: translateX(0);
    width: 100%;
  }
  100% {
    transform: translateX(0);
    width: 90%;
  }
}
.nav_s {
  display: block;
  width: 90%;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #fefdf3;
  z-index: 99;
  box-sizing: border-box;
  padding-top: 72px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
  border-top-left-radius: 12px;
}
.nav_s p {
  margin: 0;
  margin-bottom: 8px;
}
.nav_s ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav_s li {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  padding-left: 1em;
}
.nav_s.activeScreen {
  animation: nav-open 0.4s ease forwards;
  pointer-events: auto;
}

.list_nav_child {
  margin-left: 1.5em;
}

.btn_nav_sp a {
  color: #333;
  text-decoration: none;
}
.btn_nav_sp a:hover, .btn_nav_sp a:visited, .btn_nav_sp a:active, .btn_nav_sp a:link {
  color: #333;
}

.blackScreen {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  display: none;
}

.activeScreen {
  display: block !important;
}

/***********************************************************************/
/***********************************************************************/
header {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url("../img/bg_header.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center top 0;
  position: relative;
}
header h1 {
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  header {
    height: 90vh;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 75vh;
  }
}
@media screen and (max-height: 725px) {
  header {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
  }
}
@media screen and (orientation: landscape) and (max-height: 550px) {
  header {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
  }
}

.header_sub_title {
  width: 60%;
  max-width: 380px;
  aspect-ratio: 199/36;
  background-image: url("../img/bg_header_sub-title.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin: 124px auto 0 auto;
}
@media screen and (max-height: 725px) {
  .header_sub_title {
    margin-top: 70px;
  }
}
@media screen and (orientation: landscape) and (max-height: 550px) {
  .header_sub_title {
    margin-top: 40px;
  }
}

.img_title_main {
  width: 60%;
  max-width: 420px;
  margin: 24px auto 48px auto;
}
.img_title_main img {
  width: 100%;
}
@media screen and (max-height: 725px) {
  .img_title_main {
    margin: 16px auto 24px auto;
  }
}
@media screen and (orientation: landscape) and (max-height: 550px) {
  .img_title_main {
    margin: 12px auto 16px auto;
  }
}

.header_text_center {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #146220;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff;
}
@media screen and (max-width: 767px) {
  .header_text_center {
    font-size: 2rem;
  }
}

.area_point_haeder {
  margin: 0 auto;
  width: 80%;
  max-width: 440px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .area_point_haeder {
    width: 90%;
  }
}

.box_circle_header {
  width: 130px;
  height: 130px;
  border-radius: 65px;
  border: 1px solid #69c031;
  background-color: #fffdd0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .box_circle_header {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-height: 725px) {
  .box_circle_header {
    width: 110px;
    height: 110px;
    border-radius: 55px;
  }
}
@media screen and (orientation: landscape) and (max-height: 550px) {
  .box_circle_header {
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }
}
.box_circle_header p {
  color: #146220;
  text-align: center;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
}

.bg_icon_header-1 {
  background-image: url("../img/icon_header_point-1.png");
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center 0;
}

.bg_icon_header-2 {
  background-image: url("../img/icon_header_point-2.png");
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center 4%;
}

.bg_icon_header-3 {
  background-image: url("../img/icon_header_point-3.png");
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center 0;
}

.bg_animal-1 {
  position: absolute;
  bottom: 0%;
  left: 13%;
  right: 70%;
  width: 25%;
  max-width: 400px;
  min-width: 320px;
  z-index: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .bg_animal-1 {
    bottom: 0%;
    left: 4%;
    right: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg_animal-1 {
    bottom: 0%;
    left: -10%;
    right: 80%;
  }
}
@media screen and (max-width: 767px) {
  .bg_animal-1 {
    display: none;
  }
}
.bg_animal-1 img {
  width: 100%;
}

.bg_animal-2 {
  position: absolute;
  bottom: 6.5%;
  left: 5%;
  right: 70%;
  width: 30%;
  max-width: 440px;
  min-width: 360px;
  z-index: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .bg_animal-2 {
    bottom: 4%;
    left: -2%;
    right: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg_animal-2 {
    bottom: 4%;
    left: -16%;
    right: 80%;
  }
}
@media screen and (max-width: 767px) {
  .bg_animal-2 {
    display: none;
  }
}
.bg_animal-2 img {
  width: 100%;
}

.bg_animal-3 {
  position: absolute;
  bottom: 2.5%;
  left: 0%;
  right: 70%;
  width: 30%;
  max-width: 440px;
  min-width: 360px;
  z-index: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .bg_animal-3 {
    bottom: 0%;
    left: -6%;
    right: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg_animal-3 {
    bottom: 0%;
    left: -24%;
    right: 80%;
  }
}
@media screen and (max-width: 767px) {
  .bg_animal-3 {
    display: none;
  }
}
.bg_animal-3 img {
  width: 100%;
}

.bg_photo-ar {
  width: 15%;
  position: absolute;
  bottom: 10%;
  right: 16%;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .bg_photo-ar {
    width: 22%;
    right: 4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .bg_photo-ar {
    width: 20%;
    right: 2%;
  }
}
@media screen and (max-width: 767px) {
  .bg_photo-ar {
    display: none;
  }
}
.bg_photo-ar img {
  width: 100%;
}

/***********************************************************************/
/***********************************************************************/
.area_inquiry-1 {
  margin-top: 64px;
  margin-bottom: 32px;
  text-align: center;
}

.inner_box_inquiry {
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.inner_box_inquiry::before, .inner_box_inquiry::after {
  content: "●\a●\a●\a●\a●\a●\a●";
  white-space: pre;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ce2c23;
  font-size: 1rem;
  line-height: 1.6;
}
.inner_box_inquiry::before {
  left: 0;
  transform: translateY(-50%) rotate(-20deg);
}
.inner_box_inquiry::after {
  right: 0;
  transform: translateY(-50%) rotate(20deg);
}

.btn_inquiry_l {
  border-width: 4px;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-radius: 12px;
  background-image: -moz-linear-gradient(90deg, rgb(250, 105, 3) 0%, rgb(253, 154, 19) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(250, 105, 3) 0%, rgb(253, 154, 19) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(250, 105, 3) 0%, rgb(253, 154, 19) 100%);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
  margin: 12px auto;
  width: 60%;
  max-width: 400px;
  height: 64px;
  color: #ffffff;
  font-size: clamp(16px, 1.2vw, 24px);
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn_inquiry_l {
    font-size: 1.6rem;
  }
}
.btn_inquiry_l:hover {
  letter-spacing: 0.12em;
  text-indent: 0.12em;
}
.btn_inquiry_l a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ribbon1 {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 48px;
  font-size: 18px;
  background: #f4ca08;
  color: #f60707;
  box-sizing: border-box;
  font-weight: bold;
}
.ribbon1::before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fffdd0;
  border-style: solid;
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ribbon1::after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fffdd0 transparent transparent;
  border-style: solid;
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}

.text_center_inquiry {
  color: #333;
  font-weight: bold;
  font-size: clamp(12px, 1.2vw, 20px);
  margin: 4px 0;
}

/***********************************************************************/
/***********************************************************************/
.area_circle_about {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.881;
}

.circle_about {
  position: absolute;
  width: 42%;
  aspect-ratio: 1/1;
  border-radius: 240px;
  background-color: #146220;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  padding-bottom: 12px;
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center 25%;
}
.circle_about:nth-child(1) {
  left: 25%;
  top: 0;
  background-image: url("../img/img_about-1.png");
}
@media screen and (max-width: 767px) {
  .circle_about:nth-child(1) {
    left: 29%;
  }
}
.circle_about:nth-child(2) {
  left: 0;
  top: 42.3%;
  background-image: url("../img/img_about-2.png");
}
@media screen and (max-width: 767px) {
  .circle_about:nth-child(2) {
    left: 4%;
  }
}
.circle_about:nth-child(3) {
  left: 50%;
  top: 42.3%;
  background-image: url("../img/img_about-3.png");
}
@media screen and (max-width: 767px) {
  .circle_about:nth-child(3) {
    left: 54%;
  }
}
.circle_about p {
  color: #ffffff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.7rem);
  text-align: center;
}

/***********************************************************************/
/***********************************************************************/
.text_sub_center {
  text-align: center;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #146220;
}

.area_point {
  justify-content: center;
  gap: 56px;
}

.box_circle {
  width: 56%;
  max-width: 360px;
  aspect-ratio: 1/1;
  border-radius: 180px;
  background-color: #f0520c;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  padding-bottom: 2%;
  position: relative;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .box_circle {
    width: 80%;
    margin: 160px auto;
  }
}
.box_circle p {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  text-align: center;
}
.box_circle p span {
  font-size: clamp(1rem, 1.5vw, 1.8rem);
}
.box_circle img {
  position: absolute;
  width: 70%;
  left: 15%;
  bottom: 35%;
}

.sub_contens_title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  color: #146220;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  text-align: center;
  margin-top: 64px;
}

.box_voice {
  width: 50%;
  box-sizing: border-box;
  padding: 0 28px;
  display: flex;
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .box_voice {
    width: 100%;
    margin: 36px auto;
  }
}
.box_voice img {
  display: block;
  width: 18%;
  max-width: 110px;
}

.text_voice {
  margin-left: 24px;
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  background-image: url("../img/bg_voice.png");
  background-repeat: no-repeat;
  background-size: 30px 24px;
  background-position: left 0 top 0;
  padding-top: 12px;
  margin-top: 0;
}

.text_voice_name {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(1rem, 1.5vw, 1.6rem);
}
.text_voice_name span {
  font-size: clamp(1rem, 1vw, 1.2rem);
}

/***********************************************************************/
/***********************************************************************/
#flow {
  width: 100%;
  max-width: 100%;
  background-color: #c8e9f3;
  padding: 64px 0;
}

.title_flow {
  text-align: center;
  font-size: 4.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  color: #146220;
}
.title_flow span {
  font-size: 2.4rem;
  display: block;
}

.area_flow {
  width: 90%;
  max-width: 1212px;
  display: flex;
  justify-content: space-between;
  margin: 48px auto;
}
@media screen and (max-width: 767px) {
  .area_flow {
    width: 92%;
    display: block;
  }
}

.box_flow {
  box-sizing: border-box;
  width: 18%;
  border: 1px solid #79a7c0;
  border-radius: 12px;
  background-color: #f2f9fb;
  padding: 16px 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box_flow {
    width: 100%;
    margin: 64px auto;
  }
}
.box_flow img {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.flow_title {
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flow_title {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .flow_title {
    width: 90%;
    margin: 12px auto;
    display: block;
  }
}

.flow_number {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background-color: #0d5e8c;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flow_number {
    margin: 4px auto;
  }
}
@media screen and (max-width: 767px) {
  .flow_number {
    margin: 4px auto;
  }
}

.flow_text {
  width: calc(100% - 36px);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-left: 8px;
  color: #50a0ce;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .flow_text {
    width: 90%;
    margin: 12px auto;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .flow_text {
    width: 90%;
    margin: 12px auto;
    text-align: center;
  }
}

.font_s {
  font-size: 1rem;
}

.box_event_photo {
  width: 80%;
  max-width: 660px;
  display: flex;
  justify-content: space-between;
  margin: 24px auto;
}
.box_event_photo img {
  display: block;
  width: 22%;
}

/***********************************************************************/
/***********************************************************************/
.text_center {
  font-size: 1.8rem;
  text-align: center;
}

.area_reason {
  width: 90%;
  max-width: 1162px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 64px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .area_reason {
    display: block;
  }
}
.area_reason .box_reason:nth-child(1) {
  margin-top: 0;
}
.area_reason .box_reason:nth-child(2) {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .area_reason .box_reason:nth-child(2) {
    margin-top: 64px;
  }
}
.area_reason .box_reason:nth-child(3) {
  margin-top: 248px;
}
@media screen and (max-width: 767px) {
  .area_reason .box_reason:nth-child(3) {
    margin-top: 64px;
  }
}

.box_reason {
  width: 30%;
  max-width: 340px;
  background-color: #146220;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 16px;
  color: #fefdf3;
}
@media screen and (max-width: 767px) {
  .box_reason {
    width: 90%;
    margin: 0 auto;
  }
}
.box_reason h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.box_reason h2 span {
  font-size: clamp(1.4rem, 1vw, 1.2rem);
  display: block;
  margin-bottom: 12px;
}

.reason_title_sub {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  padding-bottom: 8px;
  border-bottom: 2px solid #fefdf3;
  margin-top: 36px;
}

.reason_text {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

/***********************************************************************/
/***********************************************************************/
.title_faq {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  text-align: center;
  margin-top: 64px;
}

.box_faq {
  width: 90%;
  max-width: 980px;
  background-color: #c8e9f3;
  color: #333;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 32px;
  margin: 12px auto;
}
.box_faq p {
  margin: 0;
}

.faq_q {
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 2px solid #333;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.faq_a {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  padding-top: 8px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

/***********************************************************************/
/***********************************************************************/
#bottom_inquiry {
  width: 100%;
  padding: 100px 0;
  background-image: url("../img/bg_savanna.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 0;
  background-color: #146220;
  margin-top: 64px;
}
#bottom_inquiry p {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  color: #fefdf3;
  text-align: center;
}

/***********************************************************************/
/***********************************************************************/
footer {
  margin-top: 48px;
  box-sizing: border-box;
  border-top: 1px solid #d8161f;
}

.footer_copyright {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 64px;
  margin-bottom: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
}

.area_menu_footer {
  display: flex;
  width: 90%;
  max-width: 1024px;
  margin: 42px auto;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .area_menu_footer {
    display: none;
  }
}
.area_menu_footer div {
  box-sizing: border-box;
  width: 22%;
  position: relative;
  padding: 0 8px;
}
.area_menu_footer div img {
  width: 90%;
  display: block;
  top: 24px;
  left: 5%;
}
.area_menu_footer div p {
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}
.area_menu_footer div ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.area_menu_footer div li {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  width: fit-content;
  display: block;
}

.logo_footer {
  display: flex;
  align-items: center;
}

.underline-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #333;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background-color: #333;
  transition: transform 0.4s ease;
}
.underline-hover:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.underline-hover a {
  color: #333;
}
.underline-hover a:hover, .underline-hover a:visited, .underline-hover a:active, .underline-hover a:link {
  color: #333;
}

/***********************************************************************/
/***********************************************************************/
.fadeUpTrigger, .fadeSideLeft, .fadeSideRight {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/***********************************************************************/
/***********************************************************************/
.red {
  color: #ce2c23 !important;
}

.mt_64 {
  margin-top: 64px;
}

.tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: block;
  }
}

.font_b {
  font-weight: 800;
  color: #ce2c23;
}

/*# sourceMappingURL=style.css.map */
