@charset "UTF-8";
:root {
  --text-black: #222;
  --red01: --blue01: #4698e6;
  --en: "Jost", sans-serif;
  --red01: #e24b4b;
  --ja: "Noto Sans JP", sans-serif;
  --blue01: #6b89bd;
  --blue02: #2f58a0;
  --blue03: #4698e6;
  --grad01: linear-gradient(to right, #3d91ed, #a2e39a);
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(15px, 1.1713030747vw, 16px);
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.8218829517%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.flex {
  display: flex;
}

.fade {
  opacity: 0;
}

.btn01,
.btn02 {
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  width: fit-content;
  color: white;
  font-weight: 700;
  font-size: 1.7rem;
  border-radius: 60px;
  transition: all 0.3s ease;
  min-width: 220px;
}
.btn01::after,
.btn02::after {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
}
.btn01:hover,
.btn02:hover {
  transform: translateY(2px);
}

.btn01 {
  background: linear-gradient(#eb847c, #df6157);
}
.btn01::after {
  background: url(../../assets/images/icon-mail.svg) no-repeat center/contain;
}

.btn02 {
  background: linear-gradient(#6f9ff4, #1c5fd8);
}
.btn02::after {
  background: url(../../assets/images/icon-arrow.svg) no-repeat center/contain;
}

.color-red {
  color: var(--red01);
}

.color-blue {
  color: var(--blue01);
}

.ttl .color-blue {
  color: var(--blue03);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 20px 48px;
  z-index: 999;
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1128px) {
  .header {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 15px;
  }
}
.header .header-inner {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
.header h1 a {
  display: block;
  width: 402px;
}
.header h1 a img {
  display: block;
}
@media screen and (max-width: 1280px) {
  .header h1 a {
    width: 248px;
  }
}
@media screen and (min-width: 939px) and (max-width: 1060px) {
  .header h1 a {
    width: 160px;
  }
}
.header .header-nav {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1150px) {
  .header .header-nav {
    gap: 18px;
  }
}
.header .header-nav .btn-list {
  gap: 8px;
}
.header .header-nav .btn-list .btn {
  width: 160px;
  height: 46px;
  min-width: unset;
  font-size: 1.4rem;
}
.header .header-nav .btn-list .btn::after {
  content: none;
}
@media screen and (max-width: 1040px) {
  .header .header-nav .btn-list .btn {
    width: 146px;
    padding: 16px;
  }
}
.header .header-nav .nav-list {
  gap: 24px;
  font-weight: 500;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1150px) {
  .header .header-nav .nav-list {
    gap: 18px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 940px) {
  .header .header-nav {
    display: none;
  }
}

.openbtn {
  height: 40px;
  width: 40px;
  position: relative;
  display: none;
  z-index: 999;
  border-radius: 50%;
}
@media screen and (max-width: 940px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #222;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}

#gnav-sp {
  display: none;
}
@media screen and (max-width: 940px) {
  #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 100%;
    padding: 120px 24px 80px 24px;
    background: url(../../assets/images/sp_menu.png) no-repeat center top/cover;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  #gnav-sp.panelactive {
    right: 0;
  }
  #gnav-sp #gnav-sp-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #gnav-sp #gnav-sp-list ul .gnav-sp-item a {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 24px;
  }
}
#gnav-sp .btn-list .item {
  margin-bottom: 16px;
}

.mv {
  height: calc(100svh + 100px);
  display: flex;
  margin: 0 auto;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url(../../assets/images/mv.png);
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../../assets/images/mv-sp.png);
    height: 100svh;
  }
}
@media screen and (max-width: 940px) {
  .mv {
    align-items: flex-start;
  }
}
.mv .contents {
  width: 100%;
  margin: 0 auto;
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 940px) {
  .mv .contents {
    flex-direction: column;
    padding-top: 100px;
  }
}
.mv .contents .text-wrapper {
  margin-left: 7.3206442167vw;
}
@media screen and (max-width: 940px) {
  .mv .contents .text-wrapper {
    margin-left: 0;
    padding: 0 20px;
  }
}
.mv .contents .text-wrapper .text-sub {
  font-size: clamp(1.8rem, 1.317715959vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(10px, 0.7320644217vw, 16px);
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}
.mv .contents .text-wrapper .text-sub::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: var(--text-black);
  display: inline-block;
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .mv .contents .text-wrapper .text-sub::after {
    width: 90px;
  }
}
.mv .contents .text-wrapper .message {
  font-size: clamp(2.4rem, 3.074670571vw, 5.9rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(24px, 1.756954612vw, 34px);
}
.mv .contents .text-wrapper .message .exbold {
  font-weight: 800;
}
.mv .contents .text-wrapper .message .big {
  font-size: clamp(3.4rem, 3.2942898975vw, 6.3rem);
}
.mv .contents .text-wrapper .message .underline {
  position: relative;
}
.mv .contents .text-wrapper .message .underline::after {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background: linear-gradient(45deg, #b7ed9c, #6ec994);
}
@media screen and (max-width: 768px) {
  .mv .contents .text-wrapper .message .underline::after {
    height: 4px;
  }
}
.mv .contents .text-wrapper .desc {
  margin-bottom: clamp(24px, 1.756954612vw, 34px);
  line-height: 2.2;
  font-size: clamp(1.6rem, 1.1713030747vw, 2.2rem);
}
.mv .contents .img-wrapper {
  flex: 1;
  height: 100%;
  max-height: 1000px;
}
.mv .contents .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.mv .contents .btn-wrapper {
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .mv .contents .btn-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.ttl-top01 {
  color: white;
  font-family: var(--en);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  border-radius: 40px;
  font-weight: 400;
  background-image: var(--grad01);
  width: fit-content;
}

.ttl-top {
  margin: 0 auto 20px;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .ttl-top {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

.ttl {
  margin-bottom: 40px;
  font-size: clamp(30px, 2.9282576867vw, 40px);
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}

.lead {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .lead {
    margin-bottom: 30px;
    text-align: left;
  }
}

.flex {
  display: flex;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  margin: 0;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #9aa7b5;
  border-right: 2px solid #9aa7b5;
  transition: border-color 0.3s ease;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  border-color: var(--blue03);
}

.swiper-button-prev::before {
  transform: rotate(-135deg);
  margin-left: 6px;
}

.swiper-button-next::before {
  transform: rotate(45deg);
  margin-right: 6px;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.swiper-button-disabled::before {
  border-color: #9aa7b5 !important;
}

.swiper-pagination {
  position: static;
  width: auto !important;
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet {
  background: #d9dee3;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue03);
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open {
  display: flex;
}
.video-modal .video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.video-modal .video-modal-inner {
  position: relative;
  width: min(100%, 960px);
}
.video-modal .video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal .video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal .video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .video-modal .video-modal-close {
    top: -40px;
    right: 0;
  }
}

.channel {
  overflow: hidden;
  padding-top: 0;
}
.channel .channel-swiper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide {
  min-width: 0;
  max-width: 800px;
  width: 100%;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item {
  background: white;
  box-shadow: 0 4px 10px #beced4;
  padding: 24px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item {
    flex-direction: column;
    padding: 20px;
  }
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item h3 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .meta {
  color: var(--blue01);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--blue01);
  margin-bottom: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .meta {
    font-size: 1.1rem;
  }
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper {
  aspect-ratio: 320/180;
  border-radius: 7px;
  overflow: hidden;
  width: min(40%, 320px);
  max-width: 100%;
  flex-shrink: 0;
  position: relative;
  background-color: #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper {
    width: 100%;
  }
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper .video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper .video-play-button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper .video-play-button::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper .video-play-button::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 24px solid #fff;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper iframe {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .iframe-wrapper.is-active iframe {
  display: block;
}
.channel .channel-swiper .swiper-wrapper .swiper-slide .slide-item .text-wrapper {
  flex: 1;
  min-width: 0;
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

.ttl-top02 {
  font-family: var(--en);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  border-radius: 40px;
  font-weight: 400;
  background-image: var(--grad01);
  width: fit-content;
  background: white;
  border-radius: 40px;
  color: var(--blue01);
}

.worry {
  position: relative;
}
.worry::before {
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  content: "";
  background: url(../../assets/images/worry-bg.svg) no-repeat top center/cover;
  width: 100%;
  height: calc(100% + 100px);
}
@media screen and (max-width: 768px) {
  .worry::before {
    background: url(../../assets/images/worry-bg-sp.svg) no-repeat top center/cover;
    top: -50px;
    height: calc(100% + 50px);
  }
}
.worry .ttl {
  position: relative;
}
.worry .flex {
  justify-content: space-between;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .worry .flex {
    flex-direction: column;
  }
}
.worry .ttl {
  border-bottom: 1px dashed var(--blue01);
  width: fit-content;
  margin: 0 auto 40px;
}
.worry .img-wrapper {
  width: 38.8%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .worry .img-wrapper {
    order: 3;
    width: 217px;
    margin: 0 auto;
  }
}
.worry .left,
.worry .right {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .worry .left,
  .worry .right {
    width: 100%;
  }
}
.worry .left .item,
.worry .right .item {
  padding: 24px 32px;
  border-radius: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  border: white solid 2px;
  background-image: linear-gradient(#f2f9fd, #e1f6ea);
}
.worry .left .item:not(:last-child),
.worry .right .item:not(:last-child) {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .worry .left .item:not(:last-child),
  .worry .right .item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.worry .left .item span,
.worry .right .item span {
  color: var(--blue01);
}
@media screen and (max-width: 768px) {
  .worry .left .item,
  .worry .right .item {
    width: 100%;
    font-size: 1.5rem;
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .worry .left {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .worry .right {
    order: 2;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}

.sec-bottom-text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec-bottom-text {
    font-size: 1.8rem;
  }
}

.risk {
  position: relative;
  background-color: #f8fcff;
  z-index: -1;
}
.risk::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../assets/images/risk-bg.svg) no-repeat top center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .risk::before {
    background: url(../../assets/images/risk-bg-sp.svg) no-repeat top center/cover;
  }
}
.risk .ttl {
  color: white;
  line-height: 1.4;
}
.risk .ttl span {
  color: #fff2bc;
}
.risk .list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .risk .list {
    flex-direction: column;
    gap: 8px;
  }
}
.risk .list .item {
  background-color: white;
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 4px 10px #becbd4;
  width: 46%;
}
@media screen and (max-width: 768px) {
  .risk .list .item {
    width: 100%;
    padding: 20px;
  }
}
.risk .list .item h3 {
  color: var(--blue02);
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .risk .list .item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.risk .list .item.left .text {
  font-weight: 500;
  padding: 16px;
  border-radius: 20px;
  background: #f2f9fd;
}
.risk .list .item.left .text:not(:last-child) {
  margin-bottom: 16px;
}
.risk .list .item.left .text span {
  font-weight: 700;
}
.risk .list .item.right .text {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .risk .list .item.right .text {
    font-size: 1.8rem;
  }
}
.risk .list .item.right .text::before {
  content: "×";
  font-size: 3rem;
  margin-right: 0.5em;
  color: var(--blue01);
}
.risk .list .item.right .text:last-child {
  border: none;
}
.risk .list .double-arrow {
  width: 43px;
  display: block;
  height: 36px;
  background: url(../../assets/images/icon-double-arrow.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .risk .list .double-arrow {
    transform: rotate(90deg);
    text-align: center;
    margin: 0 auto;
  }
}

.communicate {
  background: #f8fcff;
}
.communicate .list {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .communicate .list {
    flex-direction: column;
    gap: 35px;
  }
}
.communicate .list .item {
  width: 176px;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .communicate .list .item {
    width: 100%;
  }
}
.communicate .list .item .img-wrapper {
  margin-bottom: 15px;
}
.communicate .list .item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .communicate .list .item h3 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.communicate .list .item .text {
  font-size: 1.4rem;
}
.communicate .sec-bottom-text {
  padding: 12px;
  border-radius: 20px;
  background-color: #e1f1fd;
}

.features {
  background-image: linear-gradient(45deg, #4d9ee0, #2a6add);
  color: white;
}
.features .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .features .list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.features .list .item {
  display: flex;
  align-items: center;
  gap: 1em;
}
.features .list .item .img-wrapper {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .features .list .item .img-wrapper {
    width: 130px;
  }
}
.features .list .item .text-wrapper {
  flex: 1;
  color: white;
}
.features .list .item .text-wrapper h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.features .list .item .text-wrapper .text {
  font-size: 1.4rem;
}

.comparison table {
  width: 100%;
  border-color: #5991b9;
}
.comparison table th,
.comparison table td {
  text-align: center;
  font-weight: 500;
  padding: 16px;
  border: 1px solid #5991b9;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .comparison table th,
  .comparison table td {
    padding: 5px;
  }
}
.comparison table thead th {
  color: white;
  text-align: center;
  background-color: #6eadda;
}
.comparison table thead th:nth-child(3) {
  background-color: #f9ba2d;
  border: 4px solid #f9ba2d;
}
.comparison table tbody th {
  background-color: #f8f9fa;
}
.comparison table tbody tr td:nth-of-type(2) {
  background: #fffdf4;
  border-left: 4px solid #f9ba2d;
  border-right: 4px solid #f9ba2d;
}
.comparison table tbody tr td .triangle::after {
  content: "△";
  color: var(--blue01);
  font-size: 3rem;
  line-height: 1;
}
.comparison table tbody tr td .flex {
  gap: 0.3em;
  align-items: center;
  justify-content: center;
}
.comparison table tbody tr td .maru::after {
  content: "◎";
  font-size: 3rem;
  color: #e97777;
  line-height: 1;
}
.comparison table tbody tr:last-of-type td:nth-of-type(2) {
  border-bottom: 4px solid #f9ba2d;
}

.communicate2 {
  background-color: #f8fcff;
}
.communicate2 .contents {
  background: white;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents {
    padding: 20px;
  }
}
.communicate2 .contents h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2f58a0;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents h3 {
    font-size: 2rem;
  }
}
.communicate2 .contents .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
  column-gap: 16px;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents .list {
    grid-template-columns: 1fr;
  }
}
.communicate2 .contents .list li {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
  gap: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents .list li {
    font-size: 1.6rem;
  }
}
.communicate2 .contents .list li::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(../../assets/images/icon-check.png) no-repeat center/contain;
  display: block;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents .top {
    flex-direction: column;
  }
}
.communicate2 .contents .bottom {
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .communicate2 .contents .bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.communicate2 .contents .bottom .text-wrapper {
  flex: 1;
}
.communicate2 .contents .bottom .text-wrapper .ttl-top {
  margin-right: auto;
  margin-left: 0;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
}
.communicate2 .contents .bottom .img-wrapper {
  flex: 1;
}

.merit {
  background-image: linear-gradient(45deg, #7cd781, #3ac498);
  color: white;
}
.merit .ttl-top02 {
  color: #6eadda;
}
.merit .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .merit .list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 26px;
    row-gap: 30px;
  }
}
.merit .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.merit .list .item .img-wrapper {
  margin-bottom: 10px;
}
.merit .list .item .text {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .merit .list .item .text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.merit .sec-bottom-text {
  color: var(--text-black);
  background: #fffde3;
  border-radius: 20px;
  padding: 16px;
}

.voice {
  background: #f4fafb;
  overflow: hidden;
}
.voice .voice-swiper {
  position: relative;
  width: 100%;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide {
  max-width: 760px;
  width: 100%;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .slide-item {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide h3 {
  color: #5991b9;
  padding-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #5991b9;
  margin-bottom: 20px;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper {
  width: 100%;
  aspect-ratio: 720/405;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background-color: #000;
  cursor: pointer;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper .video-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper .video-play-button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper .video-play-button::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 68px;
  height: 68px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper .video-play-button::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-30%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 24px solid #fff;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper iframe {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.voice .voice-swiper .swiper-wrapper .swiper-slide .iframe-wrapper.is-active iframe {
  display: block;
}
.voice .small {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #777;
}

.price .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media screen and (max-width: 940px) {
  .price .list {
    column-gap: 20px;
    grid-template-columns: auto;
  }
}
.price .list .item {
  border: 2px solid #4497e7;
  border-radius: 20px;
  padding: 20px;
}
.price .list .item .top-text {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
@media screen and (max-width: 1150px) {
  .price .list .item .top-text {
    font-size: 1.8rem;
  }
}
.price .list .item .price-num {
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #2f58a0;
}
@media screen and (max-width: 1150px) {
  .price .list .item .price-num {
    font-size: 4.2rem;
  }
}
.price .list .item .price-num span {
  font-size: 3rem;
}
.price .small {
  text-align: center;
}
.price .list-bottom-text {
  text-align: center;
  margin-bottom: 40px;
}
.price .btn02 {
  width: fit-content;
  margin: 0 auto;
}

.faq {
  background: #f8fcff;
}
.faq .acc-area li {
  border-radius: 20px;
  overflow: hidden;
}
.faq .acc-area li:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq .acc-area .sec {
  border-top: 1px solid var(--gold01);
  border-bottom: 1px solid var(--gold01);
}
.faq .acc-area .title {
  font-size: 1.8rem;
  padding: 16px 40px 16px 16px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: #e9eff3;
}
@media screen and (max-width: 768px) {
  .faq .acc-area .title {
    font-size: 1.6rem;
  }
}
.faq .acc-area .title p {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.faq .acc-area .title p::before {
  content: "Q";
  font-family: var(--en);
  color: white;
  font-size: 2.6rem;
  font-weight: 500;
  margin-right: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  height: 42px;
  border-radius: 10px;
  background-image: var(--grad01);
}
.faq .acc-area .title::after, .faq .acc-area .title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: var(--blue01);
}
.faq .acc-area .title::before {
  top: 48%;
  right: 15px;
}
.faq .acc-area .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq .acc-area .title.close::before {
  transform: rotate(45deg);
}
.faq .acc-area .title.close::after {
  transform: rotate(-45deg);
}
.faq .acc-area .box {
  padding: 16px;
  border-top: 1px solid #e9eff3;
  display: none;
  background: white;
}
.faq .acc-area .box p {
  display: flex;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .faq .acc-area .box p {
    font-size: 1.4rem;
  }
}
.faq .acc-area .box p::before {
  content: "A";
  font-size: 2.6rem;
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-family: var(--en);
  margin-right: 0.5em;
  background: #c8e1ee;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow .list {
  display: flex;
  position: relative;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .flow .list {
    flex-direction: column;
    width: 296px;
    margin: 0 auto;
  }
}
.flow .list::before {
  content: "";
  width: 90%;
  height: 2px;
  background-image: var(--grad01);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(2.2rem + 8px + clamp(90px, 11vw, 140px) / 2);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .flow .list::before {
    width: 2px;
    height: 90%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 70px;
  }
}
.flow .list .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flow .list .item {
    flex-direction: row;
    gap: 16px;
  }
}
.flow .list .item span {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .flow .list .item span {
    margin-bottom: 0;
  }
}
.flow .list .item:first-child span {
  color: #1d7ce0;
}
.flow .list .item:nth-child(2) span {
  color: #489acf;
}
.flow .list .item:nth-child(3) span {
  color: #57aebc;
}
.flow .list .item:nth-child(4) span {
  color: #5dcda4;
}
.flow .list .item:nth-child(5) span {
  color: #61ba59;
}
.flow .list .item:nth-child(6) span {
  color: #6cc564;
}
.flow .list .item img {
  width: clamp(90px, 11vw, 140px);
  background-color: white;
  border-radius: 50%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .flow .list .item img {
    width: 140px;
  }
}
.flow .list .item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.flow .sec-bottom-text span {
  font-weight: 700;
}

.staff {
  background: #e2f4f6;
}
.staff .staff-swiper {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .staff .staff-swiper {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.staff .staff-swiper .swiper-slide {
  width: 100%;
}
.staff .staff-swiper .swiper-slide .slide-item {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
}
.staff .staff-swiper .swiper-slide .slide-item img {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  margin: 0 auto 10px;
}
.staff .staff-swiper .swiper-slide .slide-item .name {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.staff .staff-swiper .swiper-slide .slide-item .post {
  color: #5991b9;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: #5991b9 1px solid;
  margin-bottom: 16px;
}

.bottom-sec {
  background: url(../../assets/images/bottom-bg.svg) no-repeat center/cover;
}
.bottom-sec > .flex {
  gap: 24px;
}
.bottom-sec > .flex .img-wrapper {
  width: 33%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .bottom-sec > .flex .img-wrapper {
    position: absolute;
    bottom: 100px;
    right: -20px;
    width: 135px;
  }
}
.bottom-sec > .flex .text-wrapper {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .bottom-sec > .flex .text-wrapper {
    position: relative;
  }
}
.bottom-sec .ttl {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .bottom-sec .ttl {
    font-size: 2.7rem;
  }
}
.bottom-sec .desc {
  font-size: 1.8rem;
  margin-bottom: 32px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bottom-sec .desc {
    font-size: 1.4rem;
    padding-right: 142px;
  }
}
.bottom-sec .btn02 {
  width: fit-content;
}

.footer {
  background-image: linear-gradient(45deg, #f8fcff, #d9f5fd);
  padding-top: 72px;
}
.footer address {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-style: normal;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .footer address {
    text-align: center;
    font-size: 1.4rem;
  }
}
.footer .top {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer .top {
    flex-direction: column;
  }
}
.footer .googlemap {
  background: #3d91ed;
  color: white;
  border-radius: 40px;
  width: 160px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}
.footer .googlemap::before {
  content: "";
  width: 14px;
  height: 21px;
  background: url(../../assets/images/icon-map.svg) no-repeat center/contain;
}
.footer .text-wrapper {
  padding-left: 10%;
  border-left: #beced4 1px solid;
}
@media screen and (max-width: 768px) {
  .footer .text-wrapper {
    padding-left: 0;
    border: none;
  }
}
.footer .footer-logo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    margin-bottom: 32px;
  }
}
.footer .bnr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .footer .bnr {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.footer .bnr .item a {
  display: block;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  padding: 32px;
  border-top: 1px solid rgba(96, 161, 239, 0.3);
}

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