@charset "UTF-8";
/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, b, em, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
button, input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: 0.08em;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 420px) {
  html {
    font-size: 2vw;
  }
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  background: #FFF;
  color: #333;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 500;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.2s ease-in;
  transition-property: opacity, color, border, background, transform, box-shadow;
  opacity: 1;
  line-height: inherit;
  text-decoration: none;
  transition: opacity 0.4s;
}

a:hover {
  opacity: 0.7;
}

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

main {
  margin: 0 auto;
  padding-top: 21rem;
}

.container {
  max-width: 1140px;
  width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
}

.container.short {
  max-width: 780px;
}

.heading {
  text-align: center;
  color: #013C65;
}

.heading .en {
  font-style: DemiLight;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 350;
  letter-spacing: 0.02em;
}

.heading .ja {
  font-family: Noto Sans CJK JP;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-style: italic;
  text-align: center;
}

.heading .ja::after {
  display: block;
  content: "";
  width: 1px;
  height: 20px;
  margin: 12px auto 0;
  background-color: #013C65;
}

.heading .no_deco::after {
  display: none;
}

.section {
  padding-top: 250px;
}

@media screen and (max-width: 768px) {
  .section {
    padding-top: 150px;
  }
}
.grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 5rem;
  margin-top: 5.2rem;
}

@media screen and (max-width: 768px) {
  .grid__list {
    gap: 4rem 3rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0rem 0.4rem 1rem 0rem rgba(0, 0, 0, 0.1);
  border-radius: 1.2rem;
  transition: box-shadow 0.4s;
}

.card:hover {
  box-shadow: 0rem 0.8rem 3rem 0rem rgba(0, 0, 0, 0.6);
}

.card__image {
  aspect-ratio: 356/208;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #EDEDED;
  border-radius: 1rem 1rem 0 0;
}

.card__body {
  flex: 1;
  padding: 1.8rem 1.4rem;
  background-color: #fff;
  border-radius: 0 0 1.2rem 1.2rem;
}

.card__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 0.56rem;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card__title a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.card__text {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 500;
  letter-spacing: -0.07em;
  margin-top: 0.1rem;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.grey__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.7rem;
}

.grey__item {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  background-color: #E3E3E3;
}

.pagenation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 7.9rem;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.7rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.3rem 1.9rem 0 rgba(0, 0, 0, 0.25);
}

.page-numbers.current {
  background-color: #4980D7;
  color: #fff;
}

.page-numbers.dots {
	background-color: transparent;
	color: #515151;
	border-radius: none;
	box-shadow: none;
}

.pickup {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto 7.5rem;
  padding: 4.7rem 0 7.8rem;
  background: rgba(255, 255, 255, 0.8) linear-gradient(180deg, #4463DC 0%, #36EAC0 113.64%);
  border-radius: 5rem;
  opacity: 0.8;
}

.pickup .heading {
  color: #fff;
}

.pickup .heading .ja::after {
  background-color: #fff;
}

.article {
  padding-bottom: 9.5rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.js-header.is-fixed::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.js-header.is-fixed .header-inner {
  padding: 0 2rem 0 0;
}

.site-header {
  background: #fff;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 0;
  transition: all 0.4s;
}

.header-inner.active {
  background-color: #fff;
}

.site-logo {
  width: 16rem;
}

.site-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.site-logo img {
  width: 100%;
}

/* ナビゲーション */
.global-nav__list {
  display: flex;
  gap: 1px;
  list-style: none;
}

.global-nav__list li {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .global-nav__list li {
    border-right: none;
  }
}
.global-nav__list li:last-of-type {
  border-right: none;
}

.global-nav__list li a {
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.722rem;
  padding: 0.8rem 1.8rem;
}

@media screen and (max-width: 768px) {
  .global-nav__list li a {
    display: block;
    font-size: 14px;
    padding: 2.5rem;
    text-align: left;
  }
}
/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ハンバーガー開閉時 */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* SP対応 */
@media (max-width: 768px) {
  .global-nav {
    display: grid;
    place-content: center;
    position: absolute;
    top: 100%;
    left: 100%;
    background: #fff;
    width: 100%;
    height: 100svh;
    transition: left 0.4s;
  }
  .global-nav.active {
    left: 0;
  }
  .global-nav__list {
    flex-direction: column;
    padding: 20px;
  }
  .hamburger {
    display: flex;
  }
}
/* Breadcrumbs */
.breadcrumb {
  background: #EDEDED;
  width: 100%;
  padding: 9px 0;
  margin-top: -1px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  line-height: 1.5;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.breadcrumb-list li,
.breadcrumb-list li a {
  font-size: 11px;
}

.breadcrumb-list li {
  margin: 0 5px;
}

/* Single Post */
.single-post-container {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
}

.single-post-container h1 {
  color: #013C65;
  font-size: 23px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.single-post-container h2 {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.02em;
  margin-bottom: 2.7rem;
  background-color: #01488A;
  padding: 1.8rem 2rem;
  position: relative;
}

.single-post-container h2:before {
  border: 1px solid #FFF;
  background: transparent;
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  inset: 0;
  margin: auto;
}

.single-post-container h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.02em;
  border-bottom: 1px solid #01488A;
  padding: 16px 5px;
  margin-bottom: 3rem;
}

.single-post-container p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.post-category,
.post-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.post-category p,
.post-tags p {
  color: #7D7D7D;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.post-category ul,
.post-tags ul {
  display: flex;
  gap: 10px;
}

.post-category li a {
  background: #2A424B;
  color: #FFF;
  padding: 3px 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.post-tags li a {
  background: #C1C1C1;
  color: #FFF;
  padding: 3px 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.post-thumbnail {
  width: 100%;
  margin-bottom: 8rem;
}

.post-thumbnail img {
  width: 100%;
}

.wp-block-image {
  margin-bottom: 8.6rem;
}

@media screen and (max-width: 768px) {
  .wp-block-image {
    margin-bottom: 3rem;
  }
}
.lwptoc_i {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  width: 100%;
}

.lwptoc_title {
  color: #7D7D7D;
}

.lwptoc_toggle a {
  color: #7D7D7D !important;
}

.lwptoc_item a {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  color: #333 !important;
}

.lwptoc_item + a {
  font-weight: 500;
}

.lwptoc_itemWrap .lwptoc_itemWrap {
  font-weight: 400;
  margin: 12px 15px;
}

/* Footer */
.footer-top {
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding: 8.7rem 9%;
}

@media screen and (max-width: 768px) {
  .footer-top {
    align-items: center;
    padding: 4rem 9%;
  }
}
.footer-top-flex-box {
  display: flex;
  max-width: 107rem;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer-top-flex-box {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer-nav {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
  }
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3.4rem;
  color: #3A3A3A;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  letter-spacing: -0.02em;
}

.footer-nav__list li:nth-child(1) {
  margin-right: 7rem;
}

.footer-nav__list li:nth-child(2) {
  margin-right: 8.4rem;
}

.footer-nav__list li:nth-child(4) {
  margin-right: 2.8rem;
}

.footer-nav__list li:nth-child(5) {
  margin-right: 2.8rem;
}

.footer-logo {
  width: 24rem;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .footer-logo {
    margin-top: 3rem;
  }
}
.footer-logo a img {
  width: 110%;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.footer-button {
  position: relative;
  display: block;
  min-width: 24rem;
  color: #013D6A;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.0528rem;
  padding: 1.8rem 2rem 1.8rem 2rem;
  border-radius: 30rem;
  box-shadow: 0rem 0.263rem 0.6575rem 0rem rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.footer-button::before {
  position: absolute;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #013D6A;
  border-right: 1px solid #013D6A;
  top: 50%;
  right: 1.328125vw;
  rotate: 45deg;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .footer-button::before {
    right: 2rem;
  }
}
.footer-blue-button {
  background: url(../img/blue_btn_bg.webp) no-repeat;
  background-size: cover;
  color: #fff;
}

.footer-blue-button::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.footer-bottom {
  display: flex;
  font-size: 11px;
  margin: 0 auto;
  gap: 20px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links li {
  font-size: 1rem;
  color: #000;
}

/* top */
.home main {
  padding-top: 0;
}

.home .site-header {
  background: transparent;
}

.mv {
  height: 51.953125vw;
  background: url(../img/mv_bg.webp);
  background: url(../img/mv_bg.webp), url(../img/mv_right_bg.webp), linear-gradient(253.55deg, #FFFFFF 11.93%, rgba(191, 236, 255, 0.9) 30.64%, rgba(159, 226, 255, 0.85) 39.99%, rgba(143, 222, 255, 0.825) 44.67%, rgba(128, 217, 255, 0.8) 49.35%, rgba(108, 140, 216, 0.6) 86.77%);
  background-size: cover, 62%;
  background-repeat: no-repeat;
  background-position: center, top 10.78125vw right;
}

@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    padding-top: 5rem;
    background-size: cover, 100%;
    background-position: center, bottom 28% right;
  }
}
.mv__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mv__inner {
    flex-direction: column;
  }
}
.mv__left {
  position: relative;
  width: 406px;
  width: 31.71875vw;
  margin-top: 10.703125vw;
  margin-left: 5.3125vw;
}

@media screen and (max-width: 768px) {
  .mv__left {
    width: 100%;
    margin-left: 0;
    padding: 0 2rem;
  }
}
.mv__left::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/mv_search.webp) no-repeat;
  background-size: contain;
  width: 6.953125vw;
  height: 7.5vw;
  top: 2.890625vw;
  left: 14.0625vw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .mv__left::before {
    width: 11.5885416667vw;
    height: 12.5vw;
    top: 4.8177083333vw;
    left: 50%;
    translate: -50%;
  }
}
.mv__lead {
  font-size: 28px;
  font-size: 2.1875vw;
  line-height: 1.3214285714;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .mv__lead {
    font-size: 2.8rem;
  }
}
.mv__lead span.block {
  display: inline-block;
  padding: 0 19px;
  background: linear-gradient(90deg, #2170E4 0%, #426AAE 100%);
  clip-path: polygon(2rem 0%, 100% 0%, calc(100% - 2rem) 100%, 0% 100%);
  white-space: nowrap;
}

.mv__lead span.block:nth-child(2) {
  margin-top: 12px;
}

.mv__lead span.small {
  font-size: 1.40625vw;
}

@media screen and (max-width: 768px) {
  .mv__lead span.small {
    font-size: 1.8rem;
  }
}
.mv__title {
  width: 29.84375vw;
  margin-top: 4.3rem;
}

@media screen and (max-width: 768px) {
  .mv__title {
    width: 100%;
    margin: 2rem auto 0;
  }
}
.mv__description {
  font-size: 12px;
  font-size: 0.9375vw;
  line-height: 1.8333333333;
  font-weight: 600;
  margin-top: 9px;
  color: #003860;
}

@media screen and (max-width: 768px) {
  .mv__description {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.mv__cta {
  display: flex;
  gap: 1.015625vw;
  margin-top: 1.40625vw;
}

@media screen and (max-width: 768px) {
  .mv__cta {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
}
.mv-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15.625vw;
  height: 3.4375vw;
  background: #FFF;
  text-align: center;
  font-size: 1.015625vw;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.04em;
  border-radius: 2.34375vw;
  box-shadow: 0rem 0.263rem 0.6575rem 0rem rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .mv-btn {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    width: 36.4rem;
    height: 7.8rem;
    line-height: 7.8rem;
    border-radius: 3.9rem;
    box-shadow: 0rem 0.7rem 0.7rem 0rem rgba(0, 0, 0, 0.25);
  }
}
.mv-btn::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.78125vw;
  height: 0.78125vw;
  border-top: 0.15625vw solid #fff;
  border-right: 0.15625vw solid #fff;
  top: 50%;
  right: 1.328125vw;
  rotate: 45deg;
  translate: 0 -50%;
}

@media screen and (max-width: 768px) {
  .mv-btn::before {
    width: 1.8rem;
    height: 1.8rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 3rem;
  }
}
.white-button {
  font-size: 0.859375vw;
  background-color: #fff;
  color: #013D6A;
}

@media screen and (max-width: 768px) {
  .white-button {
    font-size: 2rem;
  }
}
.white-button::before {
  border-top: 2px solid #013D6A;
  border-right: 2px solid #013D6A;
}

.blue-button {
  background: url(../img/blue_btn_bg.webp) no-repeat;
  background-size: cover;
  color: #fff;
}

.mv__right {
  position: relative;
  width: 502px;
}

@media screen and (max-width: 768px) {
  .mv__right {
    width: auto;
    padding-top: 17rem;
  }
}
.mv__image {
  position: absolute;
  width: 41.328125vw;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .mv__image {
    position: static;
    width: 90%;
    margin-left: auto;
  }
}
.mv__image img {
  width: 100%;
  height: auto;
}

.mv__label {
  position: absolute;
  right: 4.140625vw;
  bottom: 1.484375vw;
  width: 39.53125vw;
}

@media screen and (max-width: 768px) {
  .mv__label {
    width: 96%;
  }
}
.guide {
  padding-top: 52px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .guide {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.guide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .guide__list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
  }
}
.guide__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.guide__item:nth-child(1) {
  margin-top: 2.6rem;
}

.guide__item:nth-child(1) img {
  width: 27.3rem;
}

.guide__item:nth-child(2) {
  margin-top: 2.6rem;
}

.guide__item:nth-child(2) img {
  width: 28.1rem;
}

.guide__item:nth-child(3) img {
  width: 23.5rem;
}

.guide__image {
  display: flex;
  justify-content: center;
  margin-bottom: auto;
}

.guide__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #013C65;
}

@media screen and (max-width: 768px) {
  .guide__title {
    font-size: max(2.4rem, 3.90625vw);
  }
}
.guide__title::before, .guide__title::after {
  position: relative;
  display: inline-block;
  content: "";
  background: url(../img/guide_icon.svg) no-repeat;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 25/35;
  top: 0.3rem;
}

@media screen and (max-width: 768px) {
  .guide__title::before, .guide__title::after {
    width: max(2.2rem, 3.2552083333vw);
  }
}
.guide-item__title {
  font-size: 2.1rem;
  line-height: 1.1904761905;
  font-weight: 800;
  color: #013C65;
}

.guide-item__text {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 500;
  margin-top: 1.2rem;
  color: #000;
}

.area {
  padding-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .area {
    padding-bottom: 5rem;
  }
}
.area__content {
  position: relative;
  max-width: 90rem;
  width: 100%;
  box-shadow: 0.418rem 1.421rem 2.591rem 0 rgba(21, 42, 78, 0.3019607843);
  margin: 0 auto;
  border-radius: 1rem;
}

.area__title {
  position: absolute;
  width: 69rem;
  font-size: 3.9rem;
  line-height: 1.3333333333;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  top: -2.8rem;
  left: 50%;
  padding: 0 0 1.4rem;
  translate: -50%;
  background: url(../img/area_title_bg.webp) no-repeat;
  background-size: contain;
  background-position: center center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .area__title {
    width: 70%;
    font-size: max(1rem, 3.125vw);
    padding-top: 0.6rem;
    top: -6%;
  }
}
.area__title span.small {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .area__title span.small {
    font-size: max(1rem, 2.0833333333vw);
  }
}
.cta {
  padding: 3.5rem 2rem;
  background: url(../img/cta_bg.webp) no-repeat;
  background-size: cover;
  text-align: center;
}

.cta p {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0px 0px 5px rgb(55, 97, 167), 0px 0px 10px rgba(0, 0, 0, 0.25), 0px 0px 10px rgba(0, 0, 0, 0.25), 0px 0px 4px rgba(0, 0, 0, 0.25), 0px 0px 4px rgba(36, 0, 119, 0.25);
  color: #fff;
  margin-bottom: 10px;
}

.cta img {
  width: 30px;
}

.cta:last-of-type {
  margin-top: 9rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 5.4rem;
  margin-top: 0.9rem;
}

@media screen and (max-width: 768px) {
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.cta-btn {
  position: relative;
  display: block;
  width: 36.4rem;
  height: 7.8rem;
  line-height: 7.8rem;
  border-radius: 3.9rem;
  box-shadow: 0rem 0.7rem 0.7rem 0rem rgba(0, 0, 0, 0.25);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta-btn {
    scale: 0.8;
  }
}
.cta-btn::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 3rem;
  rotate: 45deg;
  translate: 0 -50%;
}

.cta-btn.white-button {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta-btn.white-button::before {
  border-top: 2px solid #013D6A;
  border-right: 2px solid #013D6A;
}

.cta-btn.blue-button {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.top-article {
  padding-top: 9rem;
  padding-bottom: 9.5rem;
}

.faq {
  padding-top: 80px;
  padding-bottom: 64px;
}

.faq__inner {
  max-width: 810px;
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  background: linear-gradient(90deg, #134288 0%, #416BB1 100%);
  border-radius: 19px 19px 0 0;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

details {
  margin-top: 20px;
}

details:nth-of-type(1) {
  margin-top: 18px;
}

.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13px 33px 13px 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .summary_inner {
    padding: 11px 16px 11px 12px;
  }
}
.summary_inner p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .summary_inner p {
    padding-right: 13px;
  }
}
@media (max-width: 420px) {
  .summary_inner p {
    font-size: 14px;
  }
}
/* --------アイコンがプラス------------------ */
.plus {
  display: block;
  position: relative;
  width: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transform-origin: center 43%;
  /*  transition: transform 0.4s;*/
}

@media (max-width: 420px) {
  .plus {
    width: 15px;
  }
}
/* is-openedクラスが付与されたときのスタイル */
details.is-opened .plus::after {
  transform: rotate(0);
}

/* アイコンのバーのスタイル */
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
}

@media (max-width: 420px) {
  .plus::before,
  .plus::after {
    width: 15px;
    height: 2px;
  }
}
.plus::before {
  left: 0;
  transform: rotate(0);
}

.plus::after {
  right: 0;
  transform: rotate(-90deg);
  transition: transform 0.4s;
}

.qa {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 600;
  margin-right: 16px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .qa {
    margin-right: 14px;
  }
}
@media (max-width: 420px) {
  .qa {
    font-size: 18px;
  }
}
.a {
  color: #12A1C2;
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  background-color: #fff;
  border-top: none;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  max-width: 720px;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  line-height: 1.6428571429;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .content_inner {
    padding: 10px 11px;
  }
}
@media (max-width: 420px) {
  .content_inner {
    font-size: 13px;
  }
}
.flow {
  position: relative;
  padding: 11.6rem 0 7.9rem;
  width: 100%;
  overflow: hidden;
}

.flow::before {
  position: absolute;
  display: block;
  content: "";
  width: 105%;
  height: 100%;
  top: 0;
  left: 50%;
  translate: -50%;
  border-top-left-radius: 50% 10rem;
  border-top-right-radius: 50% 10rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: linear-gradient(124.62deg, #4463DC 15.49%, #35F9BD 99.9%);
}

@media screen and (max-width: 768px) {
  .flow::before {
    border-top-left-radius: 50% 7rem;
    border-top-right-radius: 50% 7rem;
  }
}
.flow__inner {
  max-width: 91.4rem;
  margin: auto;
}

.flow__heading {
  position: relative;
  width: fit-content;
  color: #fff;
  margin: auto;
}

.flow__heading h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.flow__heading span {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.9rem;
  padding-left: 2.4rem;
}

.flow__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.7rem;
  margin-top: 2.2rem;
}

@media screen and (max-width: 768px) {
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flow__list::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2.9rem;
  top: 5.4rem;
  left: 0;
  background: linear-gradient(90deg, #2170E4 1.93%, #426AAE 97.72%);
  clip-path: polygon(0% 0%, calc(100% - 1.8rem) 0%, 100% 50%, calc(100% - 1.8rem) 100%, 0% 100%);
}

@media screen and (max-width: 768px) {
  .flow__list::before {
    display: none;
  }
}
.flow__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  padding: 1.6rem 1.3rem 3.7rem;
  background-color: #fff;
  box-shadow: 0rem 0.504rem 1.26rem 0rem rgba(0, 0, 0, 0.25);
}

.flow__item:nth-child(1) img {
  width: 11.2rem;
}

.flow__item:nth-child(2) img {
  width: 4.9rem;
}

.flow__item:nth-child(3) img {
  width: 6.8rem;
}

.flow__item:nth-child(4) img {
  width: 5.2rem;
}

.flow__item:nth-child(5) img {
  width: 7.8rem;
}

.flow__circle {
  position: relative;
  display: grid;
  place-content: center;
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  background-color: #F2F2F2;
  box-shadow: 0rem 0.427rem 0.427rem 0rem rgba(0, 0, 0, 0.25) inset;
  margin: auto;
}

.flow__num {
  display: grid;
  place-content: center;
  font-size: 3.3rem;
  font-family: "Inter", sans-serif;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  box-shadow: 0rem 0.385rem 1.923rem 0rem rgba(0, 0, 0, 0.25);
}

.flow__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 9.5rem;
}

.flow__title {
  font-size: 1.7rem;
  line-height: 1.2941176471;
  font-weight: 700;
  color: #000;
  align-self: flex-start;
  margin-top: 1.7rem;
}

.flow__text {
  font-size: 8px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 1.7rem;
}

@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 10px;
  }
}
/* category */

.latest {
  padding-bottom: 10.6rem;
}

.category-top {
  margin-top: 55px;
}

.category-top__column {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

@media screen and (max-width: 768px) {
  .category-top__column {
    flex-direction: column;
  }
}
.search-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  max-width: 850px;
}

@media screen and (max-width: 768px) {
  .search-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.search-wrap .input_text-wrap {
  position: relative;
  width: 78%;
}

@media screen and (max-width: 768px) {
  .search-wrap .input_text-wrap {
    width: 100%;
  }
}
.search-wrap .input_text-wrap::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/search.svg) no-repeat;
  background-size: contain;
  width: 26px;
  height: 22px;
  top: 50%;
  left: 7px;
  translate: 0 -50%;
}

.search-wrap input[type=text] {
  min-width: 300px;
  width: 100%;
  height: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 3.5rem;
  background-color: #EDEDED;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

.search-wrap input[type=submit] {
  width: 86px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 40px;
  background-color: #515151;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-radius: 20px;
  color: #fff;
  transition: opacity 0.4s;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.category-list li {
  background-color: #515151;
  text-align: center;
  border-radius: 1.5rem;
}

.category-list a {
  position: relative;
  display: block;
  min-width: 14.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1.2rem;
  color: #fff;
}

.category-list .blue {
  background: linear-gradient(87.66deg, #2BA2D5 0.08%, #5DBBFF 99.92%);
}

.category-list .red {
  background: linear-gradient(87.66deg, #E84375 0.08%, #FF004D 99.92%);
}

.category-list .yellow {
  background: linear-gradient(87.66deg, #E8C320 0.08%, #F5C373 99.92%);
}

.category-list .green {
  background: linear-gradient(180deg, #2E9138 0%, #1B7126 100%);
}

.category-top .tag-list {
  max-width: 920px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 37px;
}

@media screen and (max-width: 768px) {
  .category-top .tag-list {
    margin-top: 2rem;
  }
}
.category-top .tag-list a {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 27px;
  height: 27px;
  border: 1px solid #2A424B;
  border-radius: 24px;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 0 25px;
}

/* contact */
.contact {
  padding-bottom: 7rem;
}

.contact p {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2.3rem;
  text-align: center;
  color: #000;
}

.contact .ja::after {
  display: none;
}

.contact__inner {
  max-width: 760px;
  margin: auto;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .contact__list {
    gap: 2rem;
  }
}
.contact__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.contact__item dt {
  width: 19rem;
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  color: #000;
}

@media screen and (max-width: 768px) {
  .contact__item dt {
    width: 100%;
  }
}
.contact__item dt .req {
  font-size: 1.2rem;
  font-weight: 400;
  width: 4.6rem;
  padding: 0.3rem 0.8rem;
  margin-left: 2.4rem;
  background-color: #E86B6B;
  color: #fff;
  text-align: center;
}

.contact__item dt .opt {
  font-size: 1.2rem;
  font-weight: 400;
  width: 4.6rem;
  padding: 0.3rem 0.8rem;
  margin-left: 2.4rem;
  background: #989898;
  color: #fff;
  text-align: center;
}

.contact__item dd {
  width: 100%;
  font-size: 1.6rem;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  height: 4.8rem;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 2rem;
  border-radius: 0.4rem;
  background-color: #E0E0E0;
}

textarea {
  min-height: 18.4rem;
}

.contact-btn-wrap {
  position: relative;
  width: fit-content;
  margin: 6.4rem auto 0;
}

@media screen and (max-width: 768px) {
  .contact-btn-wrap {
    margin: 2rem auto 0;
    padding: 0 0.6rem;
  }
}
.contact-btn-wrap::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 3rem;
  rotate: 45deg;
  translate: 0 -50%;
  z-index: 1;
}

input[type=submit] {
  cursor: pointer;
}

input[type=submit]:hover, input[type=submit]:active {
  opacity: 0.6;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

/* thanks */
.thanks__heading h2 {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 3rem;
  border-bottom: 1px solid #000;
  color: #013C65;
}

.thanks {
  padding-bottom: 16.5rem;
}

@media screen and (max-width: 768px) {
  .thanks {
    padding-bottom: 10rem;
  }
}
.thanks p {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 5rem;
  color: #000;
  text-align: center;
}

.back-link {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 9.6rem;
  color: #013C65;
  text-align: center;
  text-decoration: underline #000;
  text-underline-offset: 1.4rem;
}

@media screen and (max-width: 768px) {
  .back-link {
    margin-top: 5rem;
  }
}
.download-button {
  margin: 7.1rem auto 0;
}

.wp__heading {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2A424B;
}

.wp__heading::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.3rem;
  margin-top: 2.3rem;
  background: linear-gradient(349.09deg, #426AAE 2.88%, #5097FF 90.47%);
}

.wp .container {
  max-width: 1040px;
}

.wp__inner {
  display: flex;
  justify-content: center;
  gap: 7rem;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .wp__inner {
    flex-direction: column;
  }
}
.wp__left {
  width: 45rem;
}

@media screen and (max-width: 768px) {
  .wp__left {
    width: 100%;
  }
}
.wp-image__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "a a" "b c";
  gap: 4px;
}

.grid-item-a {
  aspect-ratio: 450/270;
  background-color: #D9D9D9;
  grid-area: a;
}

.grid-item-b {
  aspect-ratio: 223/129;
  background-color: #D9D9D9;
  grid-area: b;
}

.grid-item-c {
  aspect-ratio: 223/129;
  background-color: #D9D9D9;
  grid-area: c;
}

.wp-text__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.7rem;
}

.wp-text__item {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000;
}

.wp-text__item::before {
  position: relative;
  display: inline-block;
  content: "";
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 0.9rem;
  vertical-align: middle;
}

.wp__right p {
  font-size: 1.5rem;
  margin-top: 0;
  text-align: left;
}

.wp__right .contact__list {
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.wp__right input[type=text],
.wp__right input[type=email],
.wp__right input[type=tel],
.wp__right textarea {
  height: 4rem;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 2rem;
  border-radius: 0.4rem;
  background-color: #E0E0E0;
}

.wp__right textarea {
  min-height: 16.2rem;
}

.breadcrumb-list li + li::before {
  content: " > ";
  margin: 0 4px;
  color: #888;
}