@charset "UTF-8";
/*animation*/
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_dokundokun {
  animation: dokundokun 1300ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animation_shiny {
  background: #1E7F85;
  background: linear-gradient(-45deg, #1E7F85 50%, #37c9d2 60%, #1E7F85 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  color: #020202;
  width: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #FFF;
}

li {
  list-style: none;
}

.wrapper {
  width: 1210px;
  margin: 0 auto;
  padding: 64px 0;
}
@media screen and (max-width: 1400px) {
  .wrapper {
    width: 84%;
    padding: 4.6vw 0;
  }
}
@media screen and (max-width: 600px) {
  .wrapper {
    width: 95%;
    max-width: 450px;
  }
}

.pc_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_display {
    display: block;
  }
}

.pc_sm_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_sm_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_display {
    display: block;
  }
}

.sp_sm_display {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp_sm_display {
    display: block;
  }
}

.header {
  height: 110px;
  padding: 5px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .header {
    height: 90px;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    height: 78px;
  }
}
@media screen and (max-width: 800px) {
  .header {
    height: 66px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .header h1 {
    width: 100%;
    text-align: center;
  }
}
.header h1 img {
  height: 90px;
  width: 339px;
}
@media screen and (max-width: 1400px) {
  .header h1 img {
    height: 70px;
    width: 263px;
  }
}
@media screen and (max-width: 1000px) {
  .header h1 img {
    height: 58px;
    width: 218px;
  }
}
@media screen and (max-width: 800px) {
  .header h1 img {
    height: 46px;
    width: 173px;
  }
}
@media screen and (max-width: 600px) {
  .header h1 img {
    height: 40px;
    width: 150px;
    margin: 0 auto;
  }
}

.cta_btn_square {
  font-weight: bold;
  background-color: #F46D38;
  text-align: center;
  width: 400px;
  padding: 5px 0;
  position: relative;
  height: 90px;
}
@media screen and (max-width: 1400px) {
  .cta_btn_square {
    width: 320px;
    height: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_btn_square {
    width: 280px;
    height: 58px;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn_square {
    width: 240px;
    height: 46px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_square {
    display: none;
  }
}
.cta_btn_square:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
.cta_btn_square div {
  color: #F46D38;
  font-size: 16px;
  background-color: #FFF;
  border-radius: 1000px;
  width: 78%;
  margin: 9px auto 4px;
  padding: 5px 0;
}
@media screen and (max-width: 1400px) {
  .cta_btn_square div {
    font-size: 14px;
    margin: 5px auto 2px;
    padding: 2px 0 4px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_btn_square div {
    font-size: 12px;
    margin: 3px auto 2px;
    padding: 1px 0 3px;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn_square div {
    font-size: 10px;
    margin: 0 auto;
    padding: 1px 0 2px;
  }
}
.cta_btn_square span {
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .cta_btn_square span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_btn_square span {
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn_square span {
    font-size: 14px;
  }
}
.cta_btn_square img {
  position: absolute;
  top: 65px;
  left: 300px;
  width: 10%;
}
@media screen and (max-width: 1400px) {
  .cta_btn_square img {
    top: 48px;
    left: 250px;
  }
}
@media screen and (max-width: 1000px) {
  .cta_btn_square img {
    top: 40px;
    left: 220px;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn_square img {
    top: 32px;
    left: 190px;
  }
}

.mv_bg_pc {
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .mv_bg_pc {
    display: none;
  }
}

.mv_bg_sp {
  vertical-align: middle;
}

.mv {
  font-weight: bold;
  position: relative;
}
.mv .mv_heading {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .mv .mv_heading {
    top: 15%;
  }
}
.mv .mv_list {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .mv .mv_list {
    left: 38%;
    bottom: 4%;
    z-index: 6;
  }
}
@media screen and (max-width: 600px) {
  .mv .mv_list {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.mv .mv_qr_pc {
  position: absolute;
  bottom: 26%;
  right: 3.5%;
}
@media screen and (max-width: 800px) {
  .mv .mv_qr_pc {
    bottom: 30%;
  }
}
.mv .mv_qr_sp {
  position: absolute;
}
@media screen and (max-width: 600px) {
  .mv .mv_qr_sp {
    position: absolute;
    bottom: 15%;
    right: 6.5%;
  }
}
@media screen and (max-width: 450px) {
  .mv .mv_qr_sp {
    bottom: 16%;
  }
}
.mv .cta_btn_min {
  position: absolute;
  bottom: 4%;
  right: 2%;
}
@media screen and (max-width: 600px) {
  .mv .cta_btn_min {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 88vw;
    bottom: 2%;
  }
}
.mv .mv_man_img {
  position: absolute;
  bottom: -4px;
  right: 70%;
  width: 26vw;
}
@media screen and (max-width: 600px) {
  .mv .mv_man_img {
    bottom: 55.6%;
    right: 0;
    width: 22vw;
  }
}

.mv_heading {
  text-align: center;
}
.mv_heading h2 {
  font-size: 2.9vw;
  color: #1E7F85;
  margin-bottom: 2.24vw;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .mv_heading h2 {
    font-size: 6.27vw;
  }
}
.mv_heading span {
  font-size: 2.08vw;
}
@media screen and (max-width: 600px) {
  .mv_heading span {
    font-size: 2.79vw;
  }
}

.mv_list {
  color: #FFF;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25vw;
}

.mv_list_item {
  background-color: #1E7F85;
  width: 12.5vw;
  height: 12.5vw;
  border-radius: 1000px;
  border: 3px solid #FFF;
  font-size: 1.25vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .mv_list_item {
    border: 1.5px solid #FFF;
  }
}
@media screen and (max-width: 800px) {
  .mv_list_item {
    font-size: 1.6vw;
    width: 14vw;
    height: 14vw;
  }
}
@media screen and (max-width: 600px) {
  .mv_list_item {
    width: min(30vw, 140px);
    height: min(30vw, 140px);
    font-size: min(3vw, 14px);
  }
}
.mv_list_item span {
  font-size: 2.08vw;
}
@media screen and (max-width: 600px) {
  .mv_list_item span {
    font-size: 4.65vw;
  }
}

/* mv QR箇所 pc*/
.mv_qr_pc {
  width: 16vw;
}
@media screen and (max-width: 600px) {
  .mv_qr_pc {
    display: none;
  }
}

.mv_qr_pc img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.mv_qr_bubble {
  background-color: #04B2C4;
  color: #FFF;
  font-size: 15px;
  padding: 10px 0;
  border-radius: 21px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .mv_qr_bubble {
    font-size: 12px;
    padding: 6px 2px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .mv_qr_bubble {
    font-size: 10px;
  }
}
.mv_qr_bubble::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 99%;
  left: 40%;
  margin-left: -25px;
  background-color: #04B2C4;
  width: 20px;
  height: 16px;
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%);
          clip-path: polygon(0 0, 80% 0, 100% 100%);
}
@media screen and (max-width: 1400px) {
  .mv_qr_bubble::before {
    height: 10px;
    width: 14px;
  }
}

/* mv QR箇所 sp*/
.mv_qr_sp {
  background-color: #04B2C4;
  padding: 2.3vw;
  display: none;
  width: 39vw;
  border-radius: 21px;
}
@media screen and (max-width: 600px) {
  .mv_qr_sp {
    display: block;
  }
}

.mv_qr_sp_content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1vw;
  color: #FFF;
  font-size: 12px;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .mv_qr_sp_content {
    font-size: 10px;
  }
}
.mv_qr_sp_content span {
  display: block;
  margin: 0 auto;
  width: 80px;
}
@media screen and (max-width: 450px) {
  .mv_qr_sp_content span {
    width: 64px;
  }
}

.arrow_white {
  margin: 2vw auto 0;
  width: 40%;
  height: 3vw;
  background: #FFF;
  -webkit-clip-path: polygon(0 30%, 70% 30%, 70% 0, 100% 50%, 70% 100%, 70% 70%, 0 70%);
          clip-path: polygon(0 30%, 70% 30%, 70% 0, 100% 50%, 70% 100%, 70% 70%, 0 70%);
}

.cta_btn_min {
  width: 26vw;
}
@media screen and (max-width: 800px) {
  .cta_btn_min {
    width: 32vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_min {
    width: 24vw;
  }
}
.cta_btn_min a {
  background-color: #F46D38;
  font-size: 1.67vw;
  padding: 1.04vw 4vw 1.14vw 4vw;
  border-radius: 1000px;
  display: flex;
  justify-content: space-between;
  gap: 0;
  align-items: center;
  width: 100%;
  box-shadow: 0 3px 6px 0 #43474A;
}
@media screen and (max-width: 800px) {
  .cta_btn_min a {
    font-size: 2.6vw;
    padding: 1.04vw 4vw 1.24vw 4vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_min a {
    font-size: 4.6vw;
    padding: 2.5vw 10vw 3vw 10vw;
    width: 80%;
    margin: 0 auto;
  }
}
.cta_btn_min a:hover {
  transition: all 0.3s;
  background-color: #F49570;
}
.cta_btn_min img {
  width: 10%;
}
@media screen and (max-width: 800px) {
  .cta_btn_min img {
    padding-top: 0.6vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_min img {
    padding-top: 1vw;
  }
}

@media screen and (max-width: 600px) {
  .mv_man_img_pc {
    display: none;
  }
}

.cta_btn_min_bubble {
  background-color: #FFE700;
  font-size: 0.9vw;
  height: 3.125vw;
  width: 80%;
  margin: 0 auto 0.5vw;
  text-align: center;
  padding-top: 0.5vw;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 78%, 52% 78%, 50% 100%, 48% 78%, 0 78%);
          clip-path: polygon(0 0, 100% 0%, 100% 78%, 52% 78%, 50% 100%, 48% 78%, 0 78%);
}
@media screen and (max-width: 800px) {
  .cta_btn_min_bubble {
    font-size: 1.7vw;
    height: 4vw;
    width: 90%;
    padding-top: 0.2vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_min_bubble {
    margin-bottom: 2vw;
    width: 50%;
    font-size: 2.79vw;
    height: 7.6vw;
    padding-top: 0.75vw;
    margin-left: 0;
  }
}

.cta_btn_min_bottom {
  text-align: right;
  color: #FFF;
  font-size: 16px;
  margin-top: 0.52vw;
}
@media screen and (max-width: 1400px) {
  .cta_btn_min_bottom {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .cta_btn_min_bottom {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn_min_bottom {
    margin-top: 2vw;
  }
}

.profile_wrapper {
  text-align: center;
}

.section_title {
  text-align: center;
}
.section_title h3 {
  color: #123770;
  font-size: 40px;
  margin-bottom: 34.5px;
}
@media screen and (max-width: 1400px) {
  .section_title h3 {
    font-size: max(2.85vw, 20px);
    margin-bottom: 2.6vw;
  }
}
@media screen and (max-width: 450px) {
  .section_title h3 {
    font-size: max(5vw, 17px);
  }
}
.section_title .section_line {
  background-color: #123770;
  height: 5px;
  width: 200px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .section_title .section_line {
    height: 0.36vw;
    width: 14.2vw;
    margin-bottom: 4.3vw;
  }
}

.profile_top {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .profile_top {
    font-size: 1.8vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 1000px) {
  .profile_top {
    font-size: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .profile_top {
    font-size: max(2.3vw, 18px);
  }
}
.profile_top span {
  font-size: 1.25em;
  color: #1E7F85;
}

.triangle_item {
  background-color: #1E7F85;
  height: 45px;
  width: 45px;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (max-width: 1000px) {
  .triangle_item {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 800px) {
  .triangle_item {
    height: 24px;
    width: 24px;
  }
}
@media screen and (max-width: 450px) {
  .triangle_item {
    height: 16px;
    width: 16px;
  }
}

.profile_content {
  height: 105px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #1E7F85;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1400px) {
  .profile_content {
    font-size: 16px;
    height: 90px;
    width: 650px;
  }
}
@media screen and (max-width: 1000px) {
  .profile_content {
    height: 78px;
  }
}
@media screen and (max-width: 800px) {
  .profile_content {
    font-size: 14px;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .profile_content {
    font-size: 13px;
    height: 120px;
  }
}
.profile_content .triangle_item_left {
  position: absolute;
  background-color: #1E7F85;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  top: -1px;
  left: -1px;
}
.profile_content .triangle_item_right {
  position: absolute;
  background-color: #1E7F85;
  height: 45px;
  width: 45px;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  bottom: -1px;
  right: -1px;
}
@media screen and (max-width: 1000px) {
  .profile_content .triangle_item_right {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 800px) {
  .profile_content .triangle_item_right {
    height: 24px;
    width: 24px;
  }
}
@media screen and (max-width: 450px) {
  .profile_content .triangle_item_right {
    height: 16px;
    width: 16px;
  }
}

#future {
  background-color: #F0FAFA;
  position: relative;
}
#future .future_bg_left {
  position: absolute;
  top: 0;
  left: 0;
}
#future .future_bg_right {
  position: absolute;
  bottom: 0;
  right: 0;
}
#future .future_bg {
  width: 30%;
}

.future_wrapper {
  position: relative;
  z-index: 10;
}

.future_item {
  width: 100%;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .future_item {
    margin-bottom: 4.28vw;
  }
}
@media screen and (max-width: 800px) {
  .future_item {
    flex-flow: column;
  }
}
.future_item .future_item_text {
  background-color: #FFF;
  padding: 30px 75px 0 40px;
  width: 60%;
  order: -1;
}
@media screen and (max-width: 1400px) {
  .future_item .future_item_text {
    padding: 2.1vw 5.3vw 0 2.8vw;
  }
}
@media screen and (max-width: 1200px) {
  .future_item .future_item_text {
    padding: 1.8vw 4.3vw 0 1.8vw;
  }
}
@media screen and (max-width: 1000px) {
  .future_item .future_item_text {
    padding-top: 1.4vw;
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .future_item .future_item_text {
    padding: 4vw 5.3vw 4vw 2.8vw;
    order: 1;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .future_item .future_item_text {
    width: 90%;
    margin: 0 auto;
  }
}
.future_item img {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .future_item img {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .future_item img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .future_item img {
    width: 90%;
    margin: 0 auto;
  }
}
.future_item .future_item_text_title {
  background-color: #04B2C4;
  height: 80px;
  width: 88%;
  padding-left: 20px;
  display: flex;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 95% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 95% 0);
  margin-bottom: 32px;
}
@media screen and (max-width: 1400px) {
  .future_item .future_item_text_title {
    padding-left: 16px;
    margin-bottom: 2.2vw;
    height: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .future_item .future_item_text_title {
    padding-left: 16px;
    margin-bottom: 1vw;
    height: 58px;
  }
}
@media screen and (max-width: 1000px) {
  .future_item .future_item_text_title {
    height: 46px;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .future_item .future_item_text_title {
    height: 46px;
    margin-bottom: 2vw;
    width: 88%;
  }
}
@media screen and (max-width: 450px) {
  .future_item .future_item_text_title {
    width: 100%;
    padding-left: 4px;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
            clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
}
.future_item h4 {
  color: #FFF;
  font-size: 24px;
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 1400px) {
  .future_item h4 {
    font-size: max(1.7vw, 14px);
  }
}
.future_item p {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  .future_item p {
    font-size: max(1.3vw, 13px);
  }
}
@media screen and (max-width: 600px) {
  .future_item p {
    font-size: 13px;
    line-height: 1.8;
  }
}

.future_item:nth-child(even) .future_item_text {
  order: 1;
}

.future_bg {
  width: 30%;
}

#future {
  position: relative;
}
#future .future_bg_left {
  position: absolute;
  top: 0;
  left: 0;
}
#future .future_bg_right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.promise_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .promise_list {
    gap: 2.5vw;
  }
}
@media screen and (max-width: 1000px) {
  .promise_list {
    gap: 1vw;
  }
}
@media screen and (max-width: 800px) {
  .promise_list {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    gap: 4vw;
  }
}

.promise_item {
  padding: 40px 56px;
  border: 3px solid #1E7F85;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .promise_item {
    padding: 2.8vw 2vw;
  }
}
@media screen and (max-width: 800px) {
  .promise_item {
    padding: 2vw;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .promise_item {
    padding: 4vw;
  }
}
@media screen and (max-width: 800px) {
  .promise_item .pc_sm_display {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .promise_item .tab_no_display {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .promise_item .tab_no_display {
    display: block;
  }
}
.promise_item .triangle_item_left {
  position: absolute;
  top: -1px;
  left: -1px;
}
.promise_item h4 {
  font-size: 20px;
  color: #123770;
  height: 54px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1400px) {
  .promise_item h4 {
    font-size: 18px;
    height: 50px;
  }
}
@media screen and (max-width: 800px) {
  .promise_item h4 {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 600px) {
  .promise_item h4 {
    font-size: 16px;
    height: 42px;
  }
}
@media screen and (max-width: 450px) {
  .promise_item h4 {
    font-size: 16px;
    height: 42px;
    margin-bottom: 4vw;
  }
}
.promise_item img {
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .promise_item img {
    width: 24vw;
    margin: 0 auto 2.3vw;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .promise_item img {
    width: 36vw;
  }
}
@media screen and (max-width: 450px) {
  .promise_item img {
    width: 180px;
    margin-bottom: 6vw;
  }
}
.promise_item .promise_item_text {
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .promise_item .promise_item_text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.cta_bg {
  width: 100%;
  background: linear-gradient(180deg, #04B2C4 10%, #1E7F85 90%);
}

@media screen and (max-width: 600px) {
  .cta_wrapper.wrapper {
    max-width: 600px;
    padding: 12vw 0;
  }
}

.cta_heading {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .cta_heading {
    gap: 3vw;
  }
}
.cta_heading h5 {
  color: #FFE700;
  font-size: 60px;
}
@media screen and (max-width: 1400px) {
  .cta_heading h5 {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_heading h5 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 450px) {
  .cta_heading h5 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 450px) {
  .cta_heading h5 span {
    font-size: 8vw;
  }
}
.cta_heading img {
  width: 4%;
  height: 4%;
}
@media screen and (max-width: 600px) {
  .cta_heading img {
    width: 7%;
    height: 7%;
  }
}
@media screen and (max-width: 450px) {
  .cta_heading img {
    width: 12%;
    height: 12%;
  }
}

.cta_text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 90px;
}
@media screen and (max-width: 1400px) {
  .cta_text {
    margin-bottom: 8.4vw;
  }
}
@media screen and (max-width: 800px) {
  .cta_text {
    margin-bottom: 9vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_text {
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 450px) {
  .cta_text {
    margin-bottom: 16vw;
  }
}
.cta_text p {
  font-size: 40px;
  color: #FFF;
  margin-bottom: 16px;
}
@media screen and (max-width: 1400px) {
  .cta_text p {
    font-size: 2.8vw;
    margin-bottom: 1.1vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_text p {
    margin-bottom: 0;
    font-size: max(4.1vw, 16px);
  }
}
.cta_text .small_text {
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .cta_text .small_text {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 600px) {
  .cta_text .small_text {
    font-size: 12px;
  }
}

.cta_btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3.5vw;
}
.cta_btn a {
  font-size: 40px;
  font-weight: bold;
  background-color: #F46D38;
  border-radius: 1000px;
  padding: 30px 210px 40px 195px;
  position: relative;
  box-shadow: 0px 3px 6px #0A3639;
}
@media screen and (max-width: 1400px) {
  .cta_btn a {
    font-size: 2.4vw;
    padding: 1.9vw 10.4vw 2.2vw 8.4vw;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn a {
    font-size: 16px;
    padding: 2.1vw 16.4vw 2.8vw 13.4vw;
  }
}
.cta_btn a:hover {
  transition: all 0.3s;
  background-color: #F49570;
}
.cta_btn a img {
  width: 6%;
  position: absolute;
  top: 38%;
  left: 80%;
  padding-bottom: 10px;
}
.cta_btn .yellow_bubble {
  position: absolute;
  top: -170%;
  left: -10%;
}
@media screen and (max-width: 600px) {
  .cta_btn .yellow_bubble {
    top: -170%;
    left: -5%;
  }
}

.yellow_bubble {
  width: 210px;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .yellow_bubble {
    width: max(12.2vw, 70px);
  }
}
.yellow_bubble span {
  position: absolute;
  top: 24%;
  left: 13%;
  font-size: 30px;
}
@media screen and (max-width: 1400px) {
  .yellow_bubble span {
    font-size: max(1.7vw, 10px);
  }
}

#failure {
  background-color: #F6F6F6;
}

.failure_wrapper {
  position: relative;
}
.failure_wrapper .failure_connect {
  position: absolute;
  bottom: -14%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media screen and (max-width: 800px) {
  .failure_wrapper .failure_connect {
    bottom: -6%;
  }
}
@media screen and (max-width: 600px) {
  .failure_wrapper .failure_connect {
    bottom: -4%;
  }
}

.failure_wrapper .section_title {
  position: relative;
}
.failure_wrapper .section_title img {
  position: absolute;
  top: -8%;
  left: 72%;
  width: 6%;
}
@media screen and (max-width: 600px) {
  .failure_wrapper .section_title img {
    top: -14%;
    left: 78%;
    width: 8%;
  }
}

@media screen and (max-width: 800px) {
  .failure_list {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .failure_list {
    width: 100%;
  }
}

.failure_item {
  width: 92%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin-bottom: 60px;
  margin-right: auto;
}
@media screen and (max-width: 1400px) {
  .failure_item {
    grid-template-columns: 1fr 1.6fr;
    margin-bottom: 4.2vw;
    height: 200px;
    width: 95%;
  }
}
@media screen and (max-width: 1000px) {
  .failure_item {
    grid-template-columns: 1fr 2fr;
    height: 170px;
  }
}
@media screen and (max-width: 800px) {
  .failure_item {
    grid-template-columns: 1fr;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .failure_item {
    grid-template-columns: 1fr;
    margin: 0 auto 4vw;
  }
}
@media screen and (max-width: 1400px) {
  .failure_item img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.failure_item:nth-child(even) {
  margin-left: 8%;
}
@media screen and (max-width: 450px) {
  .failure_item:nth-child(even) {
    margin: 0 auto 4vw;
  }
}

.failure_item_text {
  background-color: #FFF;
  padding: 40px 40px 0;
}
@media screen and (max-width: 1400px) {
  .failure_item_text {
    padding: 2vw 2.4vw 0;
  }
}
@media screen and (max-width: 1400px) {
  .failure_item_text {
    padding: 1.4vw 2.4vw 0;
  }
}
@media screen and (max-width: 800px) {
  .failure_item_text {
    padding: 2.4vw;
  }
}
@media screen and (max-width: 450px) {
  .failure_item_text {
    padding: 4vw;
  }
}
.failure_item_text h6 {
  font-size: 20px;
  color: #123770;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1400px) {
  .failure_item_text h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .failure_item_text h6 {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 800px) {
  .failure_item_text h6 {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 450px) {
  .failure_item_text h6 {
    font-size: 16px;
  }
}
.failure_item_text p {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .failure_item_text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .failure_item_text p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.failure_finding {
  background-image: url(../img/failure_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  height: 520px;
  padding-top: 250px;
}
@media screen and (max-width: 1400px) {
  .failure_finding {
    height: 37vw;
    padding-top: 17.8vw;
  }
}
@media screen and (max-width: 600px) {
  .failure_finding {
    height: 44vw;
  }
}
@media screen and (max-width: 450px) {
  .failure_finding {
    padding-top: 25vw;
    height: 80vw;
  }
}

.failure_connect {
  font-size: 2.5vw;
  width: 18.75vw;
  height: 11vw;
  border-radius: 100%;
  border: 3px solid #133770;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .failure_connect {
    border: 2px solid #133770;
  }
}
@media screen and (max-width: 600px) {
  .failure_connect {
    border: 1.5px solid #133770;
    font-size: 15px;
    width: 110px;
    height: 66px;
  }
}
@media screen and (max-width: 450px) {
  .failure_connect {
    border: 1.5px solid #133770;
    font-size: 14px;
    width: 90px;
    height: 58px;
  }
}

.failure_finding_text {
  font-size: 3.1vw;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 1400px) {
  .failure_finding_text {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 600px) {
  .failure_finding_text {
    font-size: 5vw;
  }
}
@media screen and (max-width: 450px) {
  .failure_finding_text {
    font-size: 7vw;
    line-height: 1.5;
  }
}
.failure_finding_text .green_bg {
  background-color: #1E7F85;
  color: #FFF;
}
@media screen and (max-width: 450px) {
  .failure_finding_text .green_bg {
    font-size: 8vw;
  }
}
.failure_finding_text .small_text {
  font-size: 2.7vw;
}
@media screen and (max-width: 1400px) {
  .failure_finding_text .small_text {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 600px) {
  .failure_finding_text .small_text {
    font-size: 4vw;
  }
}
@media screen and (max-width: 450px) {
  .failure_finding_text .small_text {
    font-size: 7vw;
  }
}

.failure_finding {
  position: relative;
}
.failure_finding img {
  position: absolute;
  top: 34%;
  right: 12%;
  width: 4%;
}
@media screen and (max-width: 1400px) {
  .failure_finding img {
    right: 6%;
  }
}
@media screen and (max-width: 600px) {
  .failure_finding img {
    top: 15%;
    right: 12%;
    width: 8%;
  }
}

.reason_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1400px) {
  .reason_list {
    gap: 16px;
    margin-bottom: 8.5vw;
  }
}
@media screen and (max-width: 800px) {
  .reason_list {
    grid-template-columns: 1fr;
    width: 420px;
  }
}
@media screen and (max-width: 600px) {
  .reason_list {
    gap: 8px;
    width: 98%;
    max-width: 400px;
  }
}
@media screen and (max-width: 450px) {
  .reason_list {
    max-width: 320px;
  }
}

.reason_item {
  font-size: 20px;
  text-align: center;
  border: 3px solid #1E7F85;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .reason_item {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 1200px) {
  .reason_item {
    font-size: max(1.4vw, 14px);
    height: 130px;
  }
}
@media screen and (max-width: 800px) {
  .reason_item {
    font-size: 14px;
    height: 80px;
    border: 2px solid #1E7F85;
  }
}
@media screen and (max-width: 600px) {
  .reason_item {
    height: 86px;
  }
}
.reason_item::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background-image: url(../img/reason_item.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1400px) {
  .reason_item::before {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 1000px) {
  .reason_item::before {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 450px) {
  .reason_item::before {
    width: 20px;
    height: 20px;
  }
}
.reason_item .pc_mid_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .reason_item .pc_mid_display {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .reason_item .pc_mid_display {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .reason_item .pc_mid_display {
    display: block;
  }
}

.section_title_advantage {
  margin-bottom: 70px;
}
@media screen and (max-width: 1400px) {
  .section_title_advantage {
    margin-bottom: 5vw;
  }
}

.reason_advantage {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4.3vw;
  display: grid;
  grid-template-columns: 18.75vw 18.75vw 18.75vw;
  justify-content: space-between;
  -moz-column-gap: 4vw;
       column-gap: 4vw;
  row-gap: 2vw;
}
@media screen and (max-width: 1000px) {
  .reason_advantage {
    -moz-column-gap: 2vw;
         column-gap: 2vw;
    row-gap: 1vw;
  }
}
@media screen and (max-width: 1000px) {
  .reason_advantage {
    grid-template-columns: 185px 185px 185px;
  }
}
@media screen and (max-width: 800px) {
  .reason_advantage {
    grid-template-columns: 160px 160px 160px;
  }
}
@media screen and (max-width: 600px) {
  .reason_advantage {
    grid-template-columns: 140px 140px;
    justify-content: center;
    -moz-column-gap: 8vw;
         column-gap: 8vw;
  }
}

.reason_advantage_item {
  width: 18.75vw;
  height: 18.75vw;
  border-radius: 100%;
  background-color: #F0FAFA;
  color: #1E7F85;
  font-size: 1.7vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1000px) {
  .reason_advantage_item {
    font-size: 15px;
    width: 170px;
    height: 170px;
  }
}
@media screen and (max-width: 800px) {
  .reason_advantage_item {
    font-size: 14px;
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 800px) {
  .reason_advantage_item {
    font-size: 14px;
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 600px) {
  .reason_advantage_item {
    width: 140px;
    height: 140px;
  }
}
.reason_advantage_item span {
  font-size: 2.1vw;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .reason_advantage_item span {
    font-size: 21px;
  }
}
@media screen and (max-width: 800px) {
  .reason_advantage_item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .reason_advantage_item span {
    font-size: 16px;
  }
}

.reason_bottom {
  color: #1E7F85;
  font-size: 1.7vw;
  text-align: center;
  margin-bottom: 6.6vw;
}
@media screen and (max-width: 1000px) {
  .reason_bottom {
    font-size: 17px;
  }
}
@media screen and (max-width: 800px) {
  .reason_bottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .reason_bottom {
    font-size: 14px;
  }
}

.qr_area {
  width: 35vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #123770;
  font-size: max(1.35vw, 16px);
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .qr_area {
    width: 40vw;
    grid-template-columns: 1.2fr 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .qr_area {
    width: 46vw;
    grid-template-columns: 1.4fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .qr_area {
    font-size: max(2vw, 14px);
    width: 50vw;
    grid-template-columns: 30vw 1fr;
  }
}
@media screen and (max-width: 600px) {
  .qr_area {
    width: 300px;
    grid-template-columns: 180px 120px;
  }
}
.qr_area span {
  font-weight: bold;
  font-size: max(1.6vw, 19px);
}
@media screen and (max-width: 800px) {
  .qr_area span {
    font-size: max(2.4vw, 16px);
  }
}

#review {
  position: relative;
}
#review::after {
  content: "";
  background-image: url(../img/flow_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vw;
}
@media screen and (max-width: 800px) {
  #review::after {
    height: 45vw;
  }
}
@media screen and (max-width: 600px) {
  #review::after {
    height: 60vw;
  }
}

.review_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 5.7vw;
}
@media screen and (max-width: 1000px) {
  .review_list {
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .review_list {
    grid-template-columns: 1fr;
    width: 400px;
    margin: 0 auto 5.7vw;
  }
}
@media screen and (max-width: 600px) {
  .review_list {
    width: 360px;
  }
}
@media screen and (max-width: 450px) {
  .review_list {
    width: 95%;
    max-width: 340px;
  }
}

.review_item_top {
  position: relative;
}
.review_item_top div {
  background-color: #04B2C4;
  font-size: 24px;
  font-weight: bold;
  width: 240px;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .review_item_top div {
    font-size: 20px;
    width: 200px;
    height: 48px;
  }
}
@media screen and (max-width: 1000px) {
  .review_item_top div {
    font-size: 18px;
    width: 180px;
    height: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .review_item_top div {
    font-size: 16px;
    width: 160px;
    height: 36px;
  }
}
@media screen and (max-width: 600px) {
  .review_item_top div {
    font-size: 14px;
    width: 140px;
    height: 30px;
  }
}
.review_item_top img {
  vertical-align: middle;
}

.review_item_bottom {
  background-color: #F0FAFA;
  height: 320px;
  padding: 24px 50px;
}
@media screen and (max-width: 1200px) {
  .review_item_bottom {
    padding: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .review_item_bottom {
    padding: 18px;
    height: 320px;
  }
}
@media screen and (max-width: 800px) {
  .review_item_bottom {
    height: auto;
  }
}
.review_item_bottom h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 1400px) {
  .review_item_bottom h4 {
    font-size: 16px;
  }
}
.review_item_bottom .reason_item_line {
  background-color: #1E7F85;
  height: 1px;
  margin-bottom: 12px;
}
.review_item_bottom p {
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .review_item_bottom p {
    font-size: 14px;
  }
}

.flow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .flow {
    justify-content: center;
    gap: 1vw;
  }
}

.flow_item {
  width: 250px;
}
@media screen and (max-width: 1400px) {
  .flow_item {
    width: 17.8vw;
  }
}
@media screen and (max-width: 1000px) {
  .flow_item {
    width: 220px;
  }
}
@media screen and (max-width: 800px) {
  .flow_item {
    width: 27.5vw;
  }
}
@media screen and (max-width: 450px) {
  .flow_item {
    width: 34vw;
  }
}
.flow_item p {
  text-align: left;
  font-size: 1.1vw;
}
@media screen and (max-width: 1400px) {
  .flow_item p {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .flow_item p {
    font-size: 13px;
  }
}
.flow_item span {
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 450px) {
  .flow_item span {
    font-size: 10px;
    line-height: 1.5;
  }
}

.arrow_item {
  width: 30px;
  height: 30px;
  background-color: #123770;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-top: 115px;
}
@media screen and (max-width: 1400px) {
  .arrow_item {
    width: 2.2vw;
    height: 2.2vw;
    margin-top: 8.2vw;
  }
}
@media screen and (max-width: 1000px) {
  .arrow_item {
    margin-top: 10vw;
  }
}
@media screen and (max-width: 450px) {
  .arrow_item {
    width: 3.7vw;
    height: 3.7vw;
    margin-top: 16vw;
  }
}

.flex_space {
  display: none;
}
@media screen and (max-width: 1000px) {
  .flex_space {
    display: block;
    width: 100%;
  }
}

#question {
  background-image: url(../img/question_bg.webp);
  background-size: 100%;
  background-repeat: repeat-y;
}

.question_wrapper {
  width: 98%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .question_wrapper {
    max-width: 500px;
  }
}

.question_content {
  width: 100%;
  margin: 0 auto;
}

.question_item {
  margin-bottom: 32px;
}
@media screen and (max-width: 1000px) {
  .question_item {
    margin-bottom: 2.2vw;
  }
}

.question_title {
  background-color: #1E7F85;
  border: 1px solid transparent;
  color: #fff;
  font-size: 20px;
  padding: 16px 50px 16px 40px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.3;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 2vw;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .question_title {
    font-size: max(1.4vw, 16px);
    padding: 0.5vw 50px 0.6vw 2vw;
  }
}
@media screen and (max-width: 800px) {
  .question_title {
    font-size: 14px;
    grid-template-columns: 30px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .question_title {
    grid-template-columns: 26px 1fr;
    padding: 1.1vw 35px 1.1vw 2.8vw;
  }
}
.question_title .icon {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 1vw;
}
@media screen and (max-width: 1400px) {
  .question_title .icon {
    font-size: max(2.8vw, 32px);
  }
}
@media screen and (max-width: 800px) {
  .question_title .icon {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .question_title .icon {
    font-size: 20px;
  }
}

.question_title::before,
.question_title::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  right: 25px;
}
@media screen and (max-width: 600px) {
  .question_title::before,
  .question_title::after {
    width: 10px;
    right: 15px;
  }
}

.question_title::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}

.question_title:hover,
.question_title:active,
.question_title.is-active {
  background-color: #00aaa7;
}

.question_title.is-active::before {
  opacity: 0;
}

.question_title.is-active::after {
  transform: rotate(0);
}

.question_answer {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 1.5em;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.5s;
  background-color: #F0FAFA;
  line-height: 0;
  font-size: 20px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 2vw;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .question_answer {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 800px) {
  .question_answer {
    font-size: 14px;
    grid-template-columns: 30px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .question_answer {
    grid-template-columns: 26px 1fr;
  }
}
.question_answer .icon {
  font-size: 40px;
  color: #1E7F85;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 1vw;
}
@media screen and (max-width: 1400px) {
  .question_answer .icon {
    font-size: max(2.8vw, 32px);
  }
}
@media screen and (max-width: 800px) {
  .question_answer .icon {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .question_answer .icon {
    font-size: 20px;
  }
}

.question_answer.is-open {
  padding: 30px 40px 30px 40px;
  line-height: 1.3;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .question_answer.is-open {
    padding: 2.1vw 2.8vw 2.1vw 2.8vw;
  }
}

/***************************/
/* inquiry */
/***************************/
.inquiry_content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .inquiry_content {
    max-width: 500px;
  }
}

.inquiry_item {
  display: grid;
  grid-template-columns: 350px 1fr;
  margin-bottom: 36px;
}
@media screen and (max-width: 1400px) {
  .inquiry_item {
    grid-template-columns: max(25vw, 300px) 1fr;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 1000px) {
  .inquiry_item {
    grid-template-columns: 1fr;
    gap: 2vw;
  }
}

.inquiry_title {
  font-weight: bold;
  padding-top: 8px;
}
.inquiry_title .flex_item {
  display: flex;
  flex-wrap: wrap;
}
.inquiry_title h6 {
  font-size: 20px;
  margin-right: 16px;
}
@media screen and (max-width: 1400px) {
  .inquiry_title h6 {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 600px) {
  .inquiry_title h6 {
    font-size: 14px;
  }
}
.inquiry_title .icon_red,
.inquiry_title .icon_gray {
  font-size: 14px;
  color: #FFF;
  border-radius: 1000px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .inquiry_title .icon_red,
  .inquiry_title .icon_gray {
    font-size: 11px;
    width: 40px;
  }
}
.inquiry_title .icon_red {
  background-color: #D10807;
}
.inquiry_title .icon_gray {
  background-color: #707070;
}
.inquiry_title p {
  font-weight: normal;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .inquiry_title p {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .inquiry_title p {
    font-size: 12px;
  }
}

/* 必須項目切り替え */
#inquiry .js_any {
  display: none;
}

.inquiry_input {
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .inquiry_input {
    font-size: max(1.4vw, 16px);
  }
}
.inquiry_input .input_area {
  width: 100%;
  height: 50px;
  border: 1px solid #CECECE;
  padding-left: 16px;
  color: #444;
}
@media screen and (max-width: 1400px) {
  .inquiry_input .input_area {
    height: max(3.5vw, 36px);
    padding-left: 1.14vw;
  }
}
.inquiry_input .input_area_date {
  margin-bottom: 12px;
}
.inquiry_input .input_area_message {
  height: 9.1em;
  line-height: 1.3;
  padding-top: 12px;
}

.input_area::-moz-placeholder {
  color: #D8D5D5;
}

.input_area::placeholder {
  color: #D8D5D5;
}

.inquiry_input_radio {
  padding: 1vw 0;
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  .inquiry_input_radio {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 600px) {
  .inquiry_input_radio {
    font-size: 14px;
  }
}
.inquiry_input_radio .radio_btn {
  height: 24px;
  width: 24px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 1400px) {
  .inquiry_input_radio .radio_btn {
    height: max(1.7vw, 20px);
    width: max(1.7vw, 20px);
  }
}
.inquiry_input_radio label {
  margin-right: 24px;
}

.inquiry_checkbox p {
  text-align: center;
}

.inquiry_checkbox label {
  display: grid;
  grid-template-columns: 30px 260px;
  align-items: center;
  font-size: 20px;
  width: 300px;
  margin: 0 auto 36px;
}
@media screen and (max-width: 1400px) {
  .inquiry_checkbox label {
    font-size: max(1.4vw, 16px);
  }
}
@media screen and (max-width: 600px) {
  .inquiry_checkbox label {
    grid-template-columns: 20px 180px;
    width: 220px;
    margin: 0 auto 16px;
    font-size: 14px;
  }
}
.inquiry_checkbox label input {
  transform: scale(2, 2);
}
@media screen and (max-width: 600px) {
  .inquiry_checkbox label input {
    transform: scale(1.5, 1.5);
  }
}
.inquiry_checkbox label span {
  padding-bottom: 4px;
}
@media screen and (max-width: 600px) {
  .inquiry_checkbox label span {
    padding-bottom: 2px;
  }
}

.inquiry_submit {
  width: 100%;
  padding-bottom: 4vw;
}
.inquiry_submit .inquiry_submit_btn {
  margin: 0 auto;
  display: block;
  font-size: 40px;
  padding: 30px 0;
  text-align: center;
  width: 450px;
  background-color: #123770;
  color: #FFF;
}
@media screen and (max-width: 1400px) {
  .inquiry_submit .inquiry_submit_btn {
    font-size: 2.5vw;
    width: 26vw;
    padding: 1.5vw 0;
  }
}
@media screen and (max-width: 600px) {
  .inquiry_submit .inquiry_submit_btn {
    font-size: 16px;
    width: 180px;
    padding: 12px 0;
  }
}
.inquiry_submit .inquiry_submit_btn:hover {
  transition: all 0.3s;
  opacity: 0.6;
}

#footer {
  background-color: #1E7F85;
  padding: 16px 100px;
  width: 100%;
  color: #FFF;
}
@media screen and (max-width: 800px) {
  #footer {
    padding: 16px 50px;
  }
}
@media screen and (max-width: 450px) {
  #footer {
    padding: 16px 30px;
  }
}
#footer .footer_left {
  width: 700px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 1400px) {
  #footer .footer_left {
    width: 500px;
    grid-template-columns: 0.7fr 1fr;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 800px) {
  #footer .footer_left {
    width: 400px;
  }
}
@media screen and (max-width: 600px) {
  #footer .footer_left {
    width: 240px;
    grid-template-columns: 1fr;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 600px) {
  #footer .footer_left img {
    width: 60%;
  }
}
#footer .footer_address {
  font-size: 16px;
  display: flex;
  flex-flow: column;
  gap: 0.5vw;
}
@media screen and (max-width: 1400px) {
  #footer .footer_address {
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  #footer .footer_address {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  #footer .footer_address {
    font-size: 10px;
  }
}
#footer .footer_address span {
  display: block;
}

.footer_bottom {
  text-align: center;
  line-height: 1.3;
}
.footer_bottom small {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .footer_bottom small {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .footer_bottom small {
    font-size: 10px;
  }
}
@media screen and (max-width: 600px) {
  .footer_bottom small {
    font-size: 9px;
  }
}/*# sourceMappingURL=index.css.map */