@charset "UTF-8";
body {
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.main {
  position: relative;
  height: 100vh;
  margin-top: 60px;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .main {
    margin-top: 120px;
  }
}

.bg {
  width: 100%;
  max-width: 100vw;
  position: absolute;
  top: 280px;
  left: 0;
  overflow: hidden;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
  height: clamp(180px, 25vw, 320px);
}
@media all and (min-width: 751px) {
  .bg {
    top: 360px;
    height: clamp(220px, 25vw, 360px);
  }
}
.bg .splide__track,
.bg .splide__list,
.bg .splide__slide {
  height: 100%;
}
.bg .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bg .splide__slide img {
  height: 100%;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.chara {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media all and (min-width: 751px) {
  .chara {
    width: 360px;
  }
}

.chara img {
  max-width: 100%;
  height: auto;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.birds {
  position: absolute;
  top: 31%;
  right: 12%;
  width: 80px;
  z-index: 1;
}
.birds img {
  width: 100%;
  height: auto;
  display: block;
}
@media all and (min-width: 751px) {
  .birds {
    top: 16%;
    right: 18%;
    width: 120px;
  }
}

.text {
  width: 100%;
  position: absolute;
  top: 9%;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  z-index: 3;
  text-align: center;
  font-weight: 900;
  font-size: 20px;
}
@media all and (min-width: 751px) {
  .text {
    width: 80%;
    padding: 0;
    font-size: 27px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
}
@media all and (min-width: 751px) {
  .text ul {
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
  }
}
.text li {
  width: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5px;
  color: #00527d;
  max-width: 100%;
}
@media all and (min-width: 751px) {
  .text li {
    padding-bottom: 10px;
  }
}

.highlight_line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF275));
  background: linear-gradient(transparent 60%, #FFF275 60%);
}

.highlight {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#1C54BF), to(#11B0F3));
  background: linear-gradient(90deg, #1C54BF, #11B0F3);
  background: -webkit-linear-gradient(0deg, #1C54BF, #11B0F3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section {
  padding: 30px 0;
}
@media all and (min-width: 751px) {
  section {
    padding: 60px 0;
  }
}
section.gray {
  background: #f8f9fa;
}

.text-item {
  position: relative;
  overflow: visible;
  z-index: 0;
}
.text-item img {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.text-item.show-text img {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.text-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: #FFEE8E;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease-in-out;
  transition: clip-path 0.8s ease-in-out;
  z-index: -1;
  bottom: -12px;
  height: 9px;
}
@media all and (min-width: 751px) {
  .text-item::after {
    bottom: -2px;
    height: 10px;
  }
}
.text-item:nth-child(1)::after {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.text-item:nth-child(2)::after {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.text-item:nth-child(3)::after {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.text-item.animate-underline::after {
  clip-path: inset(0 0 0 0);
}

.text img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (min-width: 751px) {
  .text img {
    width: auto;
    height: 42px;
  }
}

@-webkit-keyframes textSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1750px);
            transform: translateX(-1750px); /* 5つの要素分だけ移動 */
  }
}

@keyframes textSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-1750px);
            transform: translateX(-1750px); /* 5つの要素分だけ移動 */
  }
}
@-webkit-keyframes bgPanning {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes bgPanning {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@-webkit-keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.menu {
  padding: 56px 0 220px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #C5EFEC;
  background-image: url("../images/top/menu_bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .menu {
    padding: 72px 0 260px;
    background-image: url("../images/top/menu_bg_pc.png");
    background-size: contain;
  }
}
.menu ul {
  list-style: none;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 980px;
}
@media all and (min-width: 751px) {
  .menu ul {
    gap: 20px;
  }
}
.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 7px);
}
@media all and (min-width: 751px) {
  .menu li {
    width: calc(33.333% - 13.3333333333px);
  }
  .menu li.last_row_pc {
    width: calc(25% - 15px);
  }
}
@media all and (max-width: 750px) {
  .menu li.last_row_sp {
    width: calc(33.333% - 6.67px);
  }
  .menu li.last_row_sp a {
    display: block;
  }
  .menu li.last_row_sp a img {
    margin: 0 auto;
    display: block;
  }
  .menu li.last_row_sp a span {
    text-align: center;
  }
}
.menu li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  gap: 12px;
  text-align: left;
  background: #fff;
  padding: 10px 5px;
  border-radius: 10px;
  border: 2px solid #003d5b;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0 rgb(0, 0, 0);
          box-shadow: 5px 5px 0 rgb(0, 0, 0);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .menu li a {
    min-height: 84px;
    padding: 16px 18px;
  }
}
.menu li a img {
  width: 40px;
  height: 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #f8f9fa;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (min-width: 751px) {
  .menu li a img {
    width: 60px;
    height: 60px;
  }
}
.menu li a span {
  display: block;
  color: #3098DD;
  margin-top: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
  text-align: left;
}
@media all and (min-width: 751px) {
  .menu li a span {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .menu li a:hover {
    -webkit-box-shadow: 0px 0px 0 rgb(0, 0, 0);
            box-shadow: 0px 0px 0 rgb(0, 0, 0);
    top: 5px;
    left: 5px;
  }
}

#second {
  position: relative;
  padding: 32vh 0px 50px;
}
@media all and (min-width: 751px) {
  #second {
    padding: 40vh 0px 100px;
  }
}
#second::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 292px;
  height: 248px;
  background-image: url("../images/youth_bg.svg");
  background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
}
@media all and (min-width: 751px) {
  #second::before {
    width: 472px;
    height: 408px;
  }
}
#second.show-bg::before {
  opacity: 0.7;
}
#second .text_wrap {
  color: #005e73;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  padding: 20px 18px;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  border-radius: 0;
  font-weight: bold;
  font-size: 15px;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media all and (min-width: 751px) {
  #second .text_wrap {
    padding: 0;
    max-width: 920px;
    font-size: 20px;
  }
}
#second .text_wrap .second-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  max-width: 680px;
}
#second .text_wrap .second-strong {
  color: #00527d;
  font-weight: 900;
}
#second .text_wrap .second-highlight {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#second .text_wrap .second-hl-line {
  margin: 0;
  line-height: 1.7;
}
#second .text_wrap .second-hl {
  display: inline-block;
  padding: 8px 16px;
  background: #18ACC7;
  color: #fff;
  line-height: 1.4;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  #second .text_wrap .second-hl {
    padding: 10px 22px;
    font-size: 22px;
  }
}
#second .text_wrap .second-note {
  margin-top: 30px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
#second .text_wrap p {
  line-height: 2;
  margin: 0;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
#second .text_wrap p.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#second.show-bg .text_wrap {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ask {
  background: #fff;
}
.ask .ask_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 751px) {
  .ask .ask_list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.ask .ask_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 15px;
  background: #f5f5f5;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.ask .ask_list li a {
  width: 100%;
  padding: 10px;
}
.ask .ask_list li a img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .ask .ask_list li a img {
    width: 150px;
    height: auto;
  }
}
@media (hover: hover) {
  .ask .ask_list li a:hover img {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.ask .ask_list li p {
  color: #005e73;
  font-weight: bold;
  font-size: 11px;
  margin: 0;
}
@media all and (min-width: 751px) {
  .ask .ask_list li p {
    font-size: 16px;
  }
}

.about .splide {
  margin: 0 20px;
}
@media all and (min-width: 751px) {
  .about .splide {
    margin: 0 10%;
  }
}
.about .splide__slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 15px;
  height: auto;
  min-height: 500px;
  margin-bottom: 100px;
}
@media all and (min-width: 751px) {
  .about .splide__slide {
    padding: 40px 30px;
    min-height: 600px;
  }
}
.about .splide__slide span.slide-title {
  margin-bottom: 30px;
  display: block;
}
.about .splide__slide span.slide-title p {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  background: #18ACC7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  display: block;
  margin: 0 auto 10px;
  padding: 0 10px;
}
@media all and (min-width: 751px) {
  .about .splide__slide span.slide-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.about .splide__slide .slide-text {
  font-size: 12px;
  line-height: 2;
  text-align: left;
}
@media all and (min-width: 751px) {
  .about .splide__slide .slide-text {
    font-size: 15px;
  }
}
.about .splide__slide img {
  width: 70%;
  max-width: 250px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (min-width: 751px) {
  .about .splide__slide img {
    max-width: 300px;
    margin-bottom: 30px;
  }
}
.about .splide__slide p {
  color: #1D2120;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media all and (min-width: 751px) {
  .about .splide__slide p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.about .splide__pagination {
  height: 70px;
}
.about .splide__pagination.custom-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.about .splide__pagination.custom-pagination li {
  display: inline-block;
  border: 1px solid #14415D;
  border-radius: 12px;
  -webkit-box-shadow: 4px 4px 0 #14415D;
          box-shadow: 4px 4px 0 #14415D;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.about .splide__pagination.custom-pagination li:hover {
  -webkit-box-shadow: 0px 0px 0 #14415D;
          box-shadow: 0px 0px 0 #14415D;
  top: 4px;
  left: 4px;
}
.about .splide__pagination.custom-pagination button {
  background-color: #fff;
  border: none;
  padding: 20px;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  outline: none;
  margin: 0;
  border-radius: 4px;
}
.about .splide__pagination.custom-pagination.is-active button {
  background-color: #d0e8f2;
  font-weight: bold;
}
.about .splide__pagination .splide__pagination__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #748996;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.about .splide__pagination .splide__pagination__page.is-active {
  background: #FFEE8E;
  color: #14415D;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.about .splide__arrow {
  background: #FFEE8E;
  border: 2px solid #14415D;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 0 #14415D;
          box-shadow: 3px 3px 0 #14415D;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .about .splide__arrow:hover {
    -webkit-box-shadow: 0px 0px 0 #14415D;
            box-shadow: 0px 0px 0 #14415D;
  }
}
@media all and (min-width: 751px) {
  .about .splide__arrow {
    width: 60px;
    height: 60px;
  }
}
.about .splide__arrow svg {
  fill: #00527d;
  width: 20px;
  height: 20px;
}
.about .splide__arrow--prev {
  left: -10px;
}
@media all and (min-width: 751px) {
  .about .splide__arrow--prev {
    left: -30px;
  }
}
.about .splide__arrow--prev img {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.about .splide__arrow--next {
  right: -10px;
}
@media all and (min-width: 751px) {
  .about .splide__arrow--next {
    right: -30px;
  }
}
.about .splide__arrow img {
  width: 11px;
}

.access_map {
  width: 100%;
  margin: 10px auto;
}

.bnr_wrap {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.bnr_wrap a {
  display: block;
  position: relative;
  z-index: 1;
}
.bnr_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  z-index: 2;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}
.bnr_wrap:hover::after {
  -webkit-animation: shine 0.7s cubic-bezier(0.4, 0, 0.2, 1);
          animation: shine 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media all and (min-width: 751px) {
  .bnr_wrap {
    padding: 60px 40px;
  }
}
.bnr_wrap span {
  display: block;
  font-size: 14px;
  color: #005e73;
  margin-bottom: 20px;
  font-weight: 500;
}
@media all and (min-width: 751px) {
  .bnr_wrap span {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.bnr_wrap .bnr {
  display: inline-block;
  background: linear-gradient(135deg, #005e73 0%, #007a8c 100%);
  color: #fff;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .bnr_wrap .bnr {
    padding: 22px 50px;
    font-size: 18px;
  }
}

@-webkit-keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 120%;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 120%;
  }
}
.promise {
  background-color: #fffbe6 !important;
  background-image: repeating-linear-gradient(120deg, #fffbe6 0px, #fffbe6 3px, #fff7cc 3px, #fff7cc 16px) !important;
  padding: 60px 0;
}
.promise .tab_area {
  margin-bottom: 0;
}
.promise .tab_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 30px;
  max-width: 600px;
}
@media all and (min-width: 751px) {
  .promise .tab_area ul {
    margin: 0 auto;
  }
}
.promise .tab_area .tab_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 10px;
  background: #f8f9fa;
  border-radius: 20px 20px 0 0;
  font-weight: bold;
  color: #748996;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (min-width: 751px) {
  .promise .tab_area .tab_item {
    padding: 20px;
    font-size: 16px;
  }
}
.promise .tab_area .tab_item span {
  display: block;
  line-height: 1.6;
}
.promise .tab_area .tab_item.active {
  background: #18ACC7;
  color: #fff;
}
.promise .tab_content_wrap {
  background: #fff;
  border-top: 4px solid #18ACC7;
  padding: 30px 10px 30px 20px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
@media all and (min-width: 751px) {
  .promise .tab_content_wrap {
    padding: 50px 40px;
  }
}
.promise .tab_content {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.promise .tab_content.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.promise .promise_list,
.promise .request_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 751px) {
  .promise .promise_list,
  .promise .request_list {
    gap: 30px;
  }
}
.promise .promise_list li,
.promise .request_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.promise .promise_list li:nth-child(1) .promise_num,
.promise .request_list li:nth-child(1) .promise_num {
  color: #94C639;
}
.promise .promise_list li:nth-child(1) .promise_num::before,
.promise .request_list li:nth-child(1) .promise_num::before {
  border: 3px solid #94C639;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(2) .promise_num,
.promise .request_list li:nth-child(2) .promise_num {
  color: #73CA60;
}
.promise .promise_list li:nth-child(2) .promise_num::before,
.promise .request_list li:nth-child(2) .promise_num::before {
  border: 3px solid #73CA60;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(3) .promise_num,
.promise .request_list li:nth-child(3) .promise_num {
  color: #3DBC7E;
}
.promise .promise_list li:nth-child(3) .promise_num::before,
.promise .request_list li:nth-child(3) .promise_num::before {
  border: 3px solid #3DBC7E;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(4) .promise_num,
.promise .request_list li:nth-child(4) .promise_num {
  color: #25AA95;
}
.promise .promise_list li:nth-child(4) .promise_num::before,
.promise .request_list li:nth-child(4) .promise_num::before {
  border: 3px solid #25AA95;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(5) .promise_num,
.promise .request_list li:nth-child(5) .promise_num {
  color: #2CADAE;
}
.promise .promise_list li:nth-child(5) .promise_num::before,
.promise .request_list li:nth-child(5) .promise_num::before {
  border: 3px solid #2CADAE;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(6) .promise_num,
.promise .request_list li:nth-child(6) .promise_num {
  color: #239CA8;
}
.promise .promise_list li:nth-child(6) .promise_num::before,
.promise .request_list li:nth-child(6) .promise_num::before {
  border: 3px solid #239CA8;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(7) .promise_num,
.promise .request_list li:nth-child(7) .promise_num {
  color: #188998;
}
.promise .promise_list li:nth-child(7) .promise_num::before,
.promise .request_list li:nth-child(7) .promise_num::before {
  border: 3px solid #188998;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(8) .promise_num,
.promise .request_list li:nth-child(8) .promise_num {
  color: #0E7789;
}
.promise .promise_list li:nth-child(8) .promise_num::before,
.promise .request_list li:nth-child(8) .promise_num::before {
  border: 3px solid #0E7789;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(9) .promise_num,
.promise .request_list li:nth-child(9) .promise_num {
  color: #0D73A8;
}
.promise .promise_list li:nth-child(9) .promise_num::before,
.promise .request_list li:nth-child(9) .promise_num::before {
  border: 3px solid #0D73A8;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li:nth-child(10) .promise_num,
.promise .request_list li:nth-child(10) .promise_num {
  color: #074E81;
}
.promise .promise_list li:nth-child(10) .promise_num::before,
.promise .request_list li:nth-child(10) .promise_num::before {
  border: 3px solid #074E81;
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.promise .promise_list li .promise_num,
.promise .request_list li .promise_num {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.promise .promise_list li .promise_num::before,
.promise .request_list li .promise_num::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -5px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: rotate(-100deg);
          transform: rotate(-100deg);
}
.promise .promise_list li .promise_text,
.promise .request_list li .promise_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.promise .promise_list li .promise_text span,
.promise .request_list li .promise_text span {
  display: block;
  font-weight: bold;
  color: #14415D;
  font-size: 13px;
  margin-bottom: 3px;
  line-height: 1.4;
}
@media all and (min-width: 751px) {
  .promise .promise_list li .promise_text span,
  .promise .request_list li .promise_text span {
    font-size: 20px;
  }
}
.promise .promise_list li .promise_text p,
.promise .request_list li .promise_text p {
  color: #333;
  line-height: 1.6;
  font-size: 12px;
  margin: 0;
}
@media all and (min-width: 751px) {
  .promise .promise_list li .promise_text p,
  .promise .request_list li .promise_text p {
    font-size: 15px;
  }
}

.worry .worry_content_wrap {
  border-top: 3px #18ACC7 solid;
  border-bottom: 3px #18ACC7 solid;
  background: #F8F9FA;
  padding: 20px 20px 40px 20px;
}
@media all and (min-width: 751px) {
  .worry .worry_content_wrap {
    padding: 40px;
  }
}
.worry .worry_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4px;
}
@media all and (min-width: 751px) {
  .worry .worry_list {
    gap: 20px;
  }
}
.worry .worry_tab_item,
.worry .worry_tab_item_foot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #F8F9FA;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media all and (min-width: 751px) {
  .worry .worry_tab_item,
  .worry .worry_tab_item_foot {
    padding: 30px 20px;
  }
}
.worry .worry_tab_item img,
.worry .worry_tab_item_foot img {
  width: 40px;
  height: auto;
}
@media all and (min-width: 751px) {
  .worry .worry_tab_item img,
  .worry .worry_tab_item_foot img {
    width: 60px;
  }
}
.worry .worry_tab_item .icon-active,
.worry .worry_tab_item_foot .icon-active {
  display: none;
}
.worry .worry_tab_item p,
.worry .worry_tab_item_foot p {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  color: #8EA7B9;
  margin: 0;
}
@media all and (min-width: 751px) {
  .worry .worry_tab_item p,
  .worry .worry_tab_item_foot p {
    font-size: 18px;
  }
}
.worry .worry_tab_item.active,
.worry .worry_tab_item_foot.active {
  background: #18ACC7;
}
.worry .worry_tab_item.active p,
.worry .worry_tab_item_foot.active p {
  color: #fff;
}
.worry .worry_tab_item.active .icon-normal,
.worry .worry_tab_item_foot.active .icon-normal {
  display: none;
}
.worry .worry_tab_item.active .icon-active,
.worry .worry_tab_item_foot.active .icon-active {
  display: block;
}
@media (hover: hover) {
  .worry .worry_tab_item:hover,
  .worry .worry_tab_item_foot:hover {
    opacity: 0.8;
  }
}
.worry .worry_tab_item {
  border-radius: 20px 20px 0px 0px;
  padding: 10px 3px;
}
@media all and (min-width: 751px) {
  .worry .worry_tab_item {
    border-radius: 30px 30px 0 0;
  }
}
.worry .worry_tab_item_foot {
  border-radius: 0px 0px 20px 20px;
  padding: 20px 3px;
}
@media all and (min-width: 751px) {
  .worry .worry_tab_item_foot {
    border-radius: 0 0 30px 30px;
  }
}
.worry .worry_content_wrap > ul > li {
  display: none;
}
.worry .worry_content_wrap > ul > li.active {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.worry .worry_catch {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #14415D;
}
@media all and (min-width: 751px) {
  .worry .worry_catch {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.worry .worry_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .worry .worry_tags {
    gap: 15px;
    margin-bottom: 40px;
  }
}
.worry .worry_tags li {
  background: #F2FAFB;
  border: 1px solid #CDE9EF;
  border-radius: 30px;
  padding: 2px 15px;
  font-size: 12px;
  color: #18ACC7;
}
@media all and (min-width: 751px) {
  .worry .worry_tags li {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.worry .worry_detail_box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .worry .worry_detail_box {
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
  }
}
.worry .worry_detail_title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .worry .worry_detail_title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.worry .worry_detail_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
.worry .worry_detail_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #005e73;
}
.worry .worry_detail_list li:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px dashed #E0E0E0;
}
@media all and (min-width: 751px) {
  .worry .worry_detail_list li {
    font-size: 20px;
    gap: 20px;
    padding-bottom: 25px;
  }
}
.worry .worry_detail_list li::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  height: 20px;
  background: url("../images/top/icon_check.svg") no-repeat center center/contain;
}
@media all and (min-width: 751px) {
  .worry .worry_detail_list li::before {
    width: 56px;
    height: 56px;
  }
}
.worry .worry_text {
  font-size: 12px;
  line-height: 1.8;
  color: #323232;
}
@media all and (min-width: 751px) {
  .worry .worry_text {
    font-size: 15px;
  }
}
.worry .worry_text span {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.column .column_list ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 751px) {
  .column .column_list ul {
    gap: 30px;
  }
}
.column .column_list li {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.column .column_list li .column_category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F2FAFB;
  color: #18ACC7;
  border: 1px solid #CDE9EF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 14px;
  border-radius: 999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.column .column_list li .column_category a {
  color: #18ACC7;
}
@media all and (min-width: 751px) {
  .column .column_list li .column_category {
    font-size: 14px;
    padding: 6px 18px;
  }
}
.column .column_list li .column_category:hover {
  background: #18ACC7;
  color: #F2FAFB;
}
.column .column_list li a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.column .column_list li a .column_title {
  color: #1D2120;
  line-height: 1.8;
  margin: 0 0 12px 0;
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(#1D2120), to(#1D2120));
  background-image: linear-gradient(to right, #1D2120, #1D2120);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  -webkit-transition: background-size 0.4s ease;
  transition: background-size 0.4s ease;
  display: inline;
}
.column .column_list li a:hover .column_title {
  background-size: 100% 1px;
}
.column .column_img {
  position: relative;
  overflow: hidden;
}
.column .column_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .column .column_img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.column .column_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
  gap: 12px;
}
.column .column_date {
  font-size: 11px;
  color: #748996;
  letter-spacing: 0.08em;
  font-family: "Jost", sans-serif;
}
@media all and (min-width: 751px) {
  .column .column_date {
    font-size: 14px;
  }
}
.column .column_category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F2FAFB;
  color: #18ACC7;
  border: 1px solid #CDE9EF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 14px;
  border-radius: 999px;
}
@media all and (min-width: 751px) {
  .column .column_category {
    font-size: 14px;
    padding: 6px 18px;
  }
}
.column .column_title {
  font-size: 13px;
  font-weight: bold;
  color: #1D2120;
  line-height: 1.8;
  margin: 0 0 12px 0;
}
@media all and (min-width: 751px) {
  .column .column_title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.column .no-posts {
  text-align: center;
  color: #323232;
  font-size: 16px;
  padding: 60px 20px;
}

.flow {
  padding: 60px 0;
}
@media all and (min-width: 751px) {
  .flow {
    padding: 80px 0;
  }
}
.flow .flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.flow .flow_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media all and (min-width: 751px) {
  .flow .flow_list li {
    gap: 40px;
  }
}
.flow .flow_list li:not(:last-child) {
  margin-bottom: 40px;
}
.flow .flow_list .flow_num {
  font-size: 18px;
  font-weight: bold;
  color: #F29C76;
  font-family: "Jost", sans-serif;
  width: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
}
@media all and (min-width: 751px) {
  .flow .flow_list .flow_num {
    font-size: 32px;
    width: 50px;
  }
}
.flow .flow_list .flow_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid #E0E0E0;
  padding-left: 20px;
}
@media all and (min-width: 751px) {
  .flow .flow_list .flow_content {
    padding-left: 40px;
  }
}
.flow .flow_list .flow_title {
  font-size: 18px;
  font-weight: bold;
  color: #14415D;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media all and (min-width: 751px) {
  .flow .flow_list .flow_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.flow .flow_list .flow_text {
  font-size: 12px;
  line-height: 1.8;
  color: #323232;
}
@media all and (min-width: 751px) {
  .flow .flow_list .flow_text {
    font-size: 15px;
  }
}
.flow .flow_list .flow_img {
  margin-bottom: 15px;
}
.flow .flow_list .flow_img img {
  width: 100%;
  height: auto;
}
.flow .flow_list .btn_web {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  border: 2px solid #005e73;
  border-radius: 20px;
  padding: 12px 52px 12px 12px;
  color: #005e73;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  background: #fff;
  -webkit-box-shadow: 4px 4px 0px #005e73;
          box-shadow: 4px 4px 0px #005e73;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .flow .flow_list .btn_web {
    font-size: 16px;
    padding: 15px 40px;
  }
}
@media (hover: hover) {
  .flow .flow_list .btn_web:hover {
    -webkit-box-shadow: 0px 0px 0px #005e73;
            box-shadow: 0px 0px 0px #005e73;
    top: 4px;
    left: 4px;
  }
}
.flow .flow_list .btn_web img {
  width: 25px;
  height: 25px;
}
@media all and (min-width: 751px) {
  .flow .flow_list .btn_web img {
    width: 40px;
    height: 40px;
  }
}
.flow .last_message {
  margin-top: 60px;
}
@media all and (min-width: 751px) {
  .flow .last_message {
    margin: 120px auto;
    width: 60%;
  }
}
.flow .bnr {
  margin: 60px 0 40px;
}
@media all and (min-width: 751px) {
  .flow .bnr {
    margin: 80px 0 60px;
  }
}
.flow .bnr img {
  width: 100%;
  border-radius: 8px;
}
.flow .pay {
  text-align: center;
}
.flow .pay img {
  max-width: 100%;
  height: auto;
}

.price .price_text {
  font-size: 12px;
  line-height: 1.8;
  margin: 40px 0;
}
@media all and (min-width: 751px) {
  .price .price_text {
    font-size: 15px;
  }
}
.price .price_text span {
  display: block;
}
.price .pay {
  background: #EEF2F4;
  border-radius: 20px;
  padding: 30px 20px;
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .price .pay {
    padding: 50px 40px;
    border-radius: 30px;
  }
}
.price .pay .pay_title {
  font-size: 20px;
  font-weight: bold;
  color: #005e73;
  text-align: center;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .price .pay .pay_title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.price .pay .pay_inner {
  background: #fff;
  border-radius: 5px;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .price .pay .pay_inner {
    padding: 40px 60px;
    border-radius: 20px;
  }
}
.price .pay .pay_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.price .pay .pay_label {
  display: inline-block;
  background: #86CEDF;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 8px;
  margin: 0;
}
@media all and (min-width: 751px) {
  .price .pay .pay_label {
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 30px;
  }
}
.price .pay img {
  max-width: 100%;
  height: auto;
  display: block;
}

.access .access_text {
  text-align: center;
  margin-bottom: 10px;
  line-height: 2;
}
.access .map_wrap {
  position: relative;
  max-width: 640px;
  margin: 30px auto 0;
}
.access .map_wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.access .map_pins {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.access .map_pins li {
  position: absolute;
  z-index: 1;
}
.access .map_pins li[data-target=yokohama] {
  left: 77%;
  bottom: 27%;
}
.access .map_pins li[data-target=shibuya] {
  left: 79%;
  bottom: 31%;
  z-index: 2;
}
.access .map_pins li[data-target=ueno] {
  left: 80%;
  bottom: 34%;
}
.access .map_pins li[data-target=nagoya] {
  left: 60%;
  bottom: 23%;
}
.access .map_pins li[data-target=osaka] {
  left: 46%;
  bottom: 31%;
}
.access .map_pins li[data-target=hokkaido] {
  left: 71%;
  bottom: 84%;
}
.access .map_pins a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.access .map_pins img {
  display: block;
  width: 40px;
  height: auto;
}
@media (min-width: 768px) {
  .access .map_pins img {
    width: 52px;
  }
}
.access .access_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .access .access_list {
    gap: 80px;
    margin-top: 60px;
  }
}
.access .access_list li {
  background: #fff;
}
.access .access_title {
  font-size: 20px;
  font-weight: bold;
  color: #005e73;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .access .access_title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.access .access_img img {
  width: 100%;
  height: auto;
  display: block;
}
.access .access_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.access .access_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  gap: 20px;
}
.access .access_row:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}
@media all and (min-width: 751px) {
  .access .access_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 25px 0;
  }
}
.access .access_row dt {
  font-weight: bold;
  color: #1D2120;
  margin-bottom: 10px;
  width: 20%;
}
@media all and (min-width: 751px) {
  .access .access_row dt {
    width: 160px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 0;
  }
}
.access .access_row dd {
  margin: 0;
  color: #323232;
  line-height: 1.8;
  width: 80%;
}

.faq .faq_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq .faq_list li {
  margin-bottom: 20px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 20px;
}
@media all and (min-width: 751px) {
  .faq .faq_list li {
    margin-bottom: 50px;
  }
}
.faq .faq_list li:last-child {
  margin-bottom: 0;
}
.faq .faq_list span, .faq .faq_list p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  line-height: 1.6;
}
.faq .faq_list span::before, .faq .faq_list p::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Jost", sans-serif;
}
@media all and (min-width: 751px) {
  .faq .faq_list span::before, .faq .faq_list p::before {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
.faq .faq_list span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  color: #1D2120;
}
.faq .faq_list span::before {
  content: "Q";
  background: linear-gradient(135deg, #005e73 0%, #007a8c 100%);
}
.faq .faq_list p {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  color: #333;
}
.faq .faq_list p::before {
  content: "A";
  background: linear-gradient(135deg, #86cedf 0%, #a8d8e6 100%);
}

.message {
  background: #fff;
}
.message ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  list-style: none;
  padding: 0;
}
.message ul.message-tabs li.tab-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 16px 16px 0px 0;
  font-weight: bold;
  text-align: center;
  color: #CFD8DE;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 33%;
}
@media (hover: hover) {
  .message ul.message-tabs li.tab-item:hover {
    background: rgba(0, 94, 115, 0.1);
  }
}
.message ul.message-tabs li.tab-item.active {
  background: #18ACC7;
  color: #fff;
}
.message .message_block {
  background: #f8f9fa;
  padding: 30px 20px;
  display: none;
  border-radius: 0px 0 16px 16px;
  border-top: 3px solid #18ACC7;
}
.message .message_block.active {
  display: block;
}
@media all and (min-width: 751px) {
  .message .message_block {
    padding: 40px;
  }
}
.message .message_block .message_ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.message .message_block .message_img {
  text-align: center;
  margin: 0 30px 30px;
}
.message .message_block .message_img img {
  max-width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
}
@media all and (min-width: 751px) {
  .message .message_block .message_img img {
    max-width: 400px;
  }
}
.message .message_block .message_text p {
  line-height: 1.8;
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .message .message_block .message_text p {
    font-size: 15px;
  }
}
.message .message_block .message_text span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}
/*# sourceMappingURL=top.css.map */