@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}

select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

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

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.clearfix:before {
  content: "";
  display: block;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}

.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}

.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}

.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 150px;
  --activeHeaderHeight: 90px;
  --minWidth: 1100px;
  --sideW: min(4.66vw, 70px);
  --space: 100px;
  --spaceMin: 80px;
}

@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 92px;
    --activeHeaderHeight: 72px;
    --minWidth: 1px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
    --spaceMin: 60px;
  }
}
html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/2 "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #000;
  text-align: left;
  letter-spacing: 0.04em;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.5s;
}

a:link, a:active, a:visited {
  text-decoration: none;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
.opacity {
  transition: 0.3s;
}

.opacity:hover {
  opacity: 0.6;
}

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

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

@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}
#container_wrap {
  position: relative;
  min-width: var(--minWidth);
  padding-top: 145px;
}

@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
    padding-top: var(--headerHeight);
  }
}
.home #container_wrap {
  padding-top: 0;
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}

.section_wrap_min {
  position: relative;
  margin-bottom: var(--spaceMin);
}

.section_wrap.bg_wrap {
  background-color: #F7F7F7;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .section_wrap.bg_wrap {
    padding: 40px 0;
  }
}
.inner, .inner_lg, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}

.inner_min {
  max-width: calc(1014px + var(--sideW) * 2);
}

.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}

.inner + .inner, .inner_min + .inner, .inner_lg + .inner, .inner + .inner_min, .inner_min + .inner_min, .inner_lg + .inner_min, .inner + .inner_lg, .inner_min + .inner_lg, .inner_lg + .inner_lg {
  margin-top: var(--spaceMin);
}

.split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px min(6.66vw, 100px);
  width: calc(1220px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto var(--space);
  padding: 0 var(--sideW);
}

@media screen and (max-width: 767px) {
  .split {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .split__left {
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .split__right {
    width: 100%;
    order: 1;
  }
}
.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  padding: 0 var(--sideW);
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 0 calc(var(--sideW) / 2);
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 var(--sideW);
  }
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
}

.header.active .header__ttl {
  opacity: 0;
}

.header__ttl {
  transition: 0.5s;
  z-index: 3;
}

.header__ttl a {
  display: block;
  width: min(17.46vw, 262px);
  aspect-ratio: 262/76;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
  transition: none;
}

@media screen and (max-width: 767px) {
  .header__ttl a {
    width: min(42.66vw, 160px);
  }
}
.global_nav {
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .global_nav {
    position: fixed;
    flex-direction: column;
    gap: 40px;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    background-color: #274299;
    padding: 100px var(--sideW);
  }
}
.global_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}

.global_nav .main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px min(2.66vw, 40px);
  padding: 0 20px 0 min(4vw, 60px);
  background-color: rgba(255, 255, 255, 0.81);
  border-radius: 40px;
  height: 80px;
}

@media screen and (max-width: 767px) {
  .global_nav .main {
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: column;
  }
}
.global_nav .main .btn {
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .global_nav .main .btn {
    display: none;
  }
}
.global_nav .main .btn a {
  display: block;
  position: relative;
  width: 180px;
  line-height: 48px;
  border-radius: 30px;
  background-color: #274299;
  border: 1px solid #274299;
  color: #fff;
  font-size: 0.875em;
}

.global_nav .main .btn a:hover {
  background-color: #fff;
}

.global_nav .main .btn a:hover::after {
  background-color: #274299;
}

.global_nav .main .btn a::after {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 5/8;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #fff;
  right: 14px;
  top: calc(50% - 4px);
  transition: 0.5s;
}

.global_nav .main a {
  display: block;
  position: relative;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .global_nav .main a {
    color: #fff;
    font-size: 1.25em;
    white-space: nowrap;
  }
}
.global_nav .main a:hover {
  color: #274299;
}

.global_nav .sp_nav {
  display: none;
}

@media screen and (max-width: 767px) {
  .global_nav .sp_nav {
    display: block;
  }
}
.global_nav .sp_nav .ig {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8125em;
  font-weight: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}

.global_nav .sp_nav .ig::before {
  content: "";
  display: block;
  width: 21px;
  aspect-ratio: 1/1;
  background: url(../images/ico_ig_02.svg) no-repeat center/contain;
}

.global_nav .sp_nav .tel {
  margin-bottom: 10px;
}

.global_nav .sp_nav .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 2.25em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #fff;
}

.global_nav .sp_nav .tel a::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../images/ico_tel.svg) no-repeat center/contain;
}

.global_nav .sp_nav .tel p {
  font-size: 0.75em;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
}

.global_nav .sp_nav .tel p span {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

.global_nav .sp_nav .btn_01,
.global_nav .sp_nav .btn_02 {
  display: block;
  position: relative;
  width: 275px;
  line-height: 55px;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .global_nav .sp_nav .btn_01,
  .global_nav .sp_nav .btn_02 {
    width: 100%;
  }
}
.global_nav .sp_nav .btn_01::after,
.global_nav .sp_nav .btn_02::after {
  content: "";
  position: absolute;
}

.global_nav .sp_nav .btn_01 {
  background-color: #fff;
  color: #000;
  margin-bottom: 15px;
}

.global_nav .sp_nav .btn_01::after {
  width: 5px;
  aspect-ratio: 5/8;
  background: url(../images/ico_arrow.svg) no-repeat center/contain;
  top: calc(50% - 4px);
  right: 25px;
}

.global_nav .sp_nav .btn_02 {
  background-color: #4CAF50;
  color: #fff;
}

.global_nav .sp_nav .btn_02::after {
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../images/ico_line.svg) no-repeat center/contain;
  top: calc(50% - 12px);
  right: 15px;
}

.menu-trigger {
  display: none;
  place-content: center;
  place-items: center;
  gap: 10px;
  position: relative;
  height: 72px;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 3;
  transition: 0.5s;
  background-color: #274299;
  border-radius: 50%;
  transform: translateX(calc(var(--sideW) / 2));
}

@media screen and (max-width: 767px) {
  .menu-trigger {
    display: grid;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 34px;
  height: 20px;
  background: linear-gradient(to bottom, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px));
  transition: 0.5s;
}

.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 2px;
  top: 0;
  left: 0;
  transform-origin: center;
  transition: 0.5s;
}

.menu-trigger span::after {
  top: auto;
  bottom: 0;
}

.menu-trigger.active {
  background-color: #fff;
}

.menu-trigger.active span {
  background: none;
}

.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: calc(50% - 1px);
  opacity: 1;
  rotate: 135deg;
  background-color: #274299;
}

.menu-trigger.active span::after {
  bottom: auto;
  rotate: -135deg;
}

.fixed_nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .fixed_nav {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fixed_nav .line {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .fixed_nav .line {
    margin-bottom: 0;
  }
}
.fixed_nav .line a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 60px;
  padding: 20px 0 15px;
  background-color: #4CAF50;
  color: #fff;
  font-size: 0.9375em;
  writing-mode: vertical-rl;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  border-radius: 10px 0 0 10px;
}

@media screen and (max-width: 767px) {
  .fixed_nav .line a {
    width: 275px;
    padding: 12px 15px 12px 22px;
    gap: 14px;
    writing-mode: horizontal-tb;
    border-radius: 10px;
  }
}
.fixed_nav .line a::after {
  content: "";
  display: block;
  width: 33px;
  aspect-ratio: 33/32;
  background: url(../images/ico_line.svg) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .fixed_nav .ig {
    display: none;
  }
}
.fixed_nav .ig img {
  display: block;
  margin: 0 auto;
}

.footer {
  position: relative;
  padding: 180px 0 35px;
  background-color: #0199BB;
  -webkit-clip-path: polygon(0 180px, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 180px, 100% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 110px 0 0;
    -webkit-clip-path: polygon(0 70px, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 70px, 100% 0, 100% 100%, 0% 100%);
  }
}
.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 180px);
  bottom: 0;
  left: 0;
  background: url(../images/footer_bg.jpg) no-repeat center/cover;
  background-position: top right;
}

@media screen and (max-width: 767px) {
  .footer::after {
    content: none;
  }
}
.footer .inner, .footer .inner_min, .footer .inner_lg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  padding-top: 60px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .footer .inner, .footer .inner_min, .footer .inner_lg {
    padding: 0;
  }
}
.footer__contact {
  width: 56.5%;
  padding-bottom: 150px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__contact {
    width: 100%;
    padding: 0 calc(var(--sideW) * 2) 70px;
    background: url(../images/footer_bg_sp.jpg) no-repeat right bottom/cover;
  }
}
.footer__contact h3 {
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 16px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .footer__contact h3 {
    font-size: 1.5em;
  }
}
.footer__contact h3::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  background-color: #fff;
  left: 0;
  bottom: 0;
}

.footer__contact p {
  font-size: 0.9375em;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .footer__contact p {
    font-size: 0.875em;
  }
}
.footer__contact ul {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .footer__contact ul {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.footer__contact ul .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .footer__contact ul .tel {
    font-size: 1.9375em;
  }
}
.footer__contact ul .tel::before {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  background: url(../images/ico_tel.svg) no-repeat center/contain;
}

.footer__contact ul .tel + p {
  text-align: right;
  font-size: 0.8125em;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.footer__contact ul .tel + p span {
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .footer__contact ul .tel + p {
    text-align: center;
  }
}
.footer__contact ul .btn_cmn_01 {
  border: 0 none;
}

.footer__contact .footer_btn {
  display: block;
  position: relative;
  width: 410px;
  max-width: 100%;
  line-height: 65px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__contact .footer_btn {
    font-size: 0.875em;
  }
}
.footer__contact .footer_btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.32);
}

.footer__contact .footer_btn::after {
  content: "";
  position: absolute;
  width: 33px;
  aspect-ratio: 33/32;
  -webkit-mask: url(../images/ico_line.svg) no-repeat center/contain;
          mask: url(../images/ico_line.svg) no-repeat center/contain;
  background-color: #4CAF50;
  right: 18px;
  top: calc(50% - 16px);
}

.footer__info {
  width: 34%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer__info {
    width: 100%;
    padding: 55px var(--sideW) 30px;
    background-color: #fff;
  }
}
.footer__info img {
  display: block;
  margin: 0 auto 25px;
}

@media screen and (max-width: 767px) {
  .footer__info img {
    width: 250px;
  }
}
.footer__info p {
  font-size: 0.9375em;
  margin-bottom: 25px;
}

.footer__info p.grecaptcha_text {
  text-align: center;
  font-size: .75em;
}

@media screen and (max-width: 767px) {
  .footer__info p {
    font-size: 0.875em;
  }
}
.footer__info p:last-child {
  margin-bottom: 0;
}

.footer__info .copyright {
  font-size: 0.8125em;
}

@media screen and (max-width: 767px) {
  .footer__info .copyright {
    font-size: 0.75em;
    letter-spacing: 0.04em;
  }
}
.main_visual {
  position: relative;
  padding-bottom: 8.533vw;
}

@media screen and (max-width: 767px) {
  .main_visual {
    padding-bottom: 0;
    z-index: 1;
  }
}
.main_visual.js_active .main_visual__image {
  opacity: 1;
}

.main_visual.js_active .main_visual__text {
  opacity: 1;
  transition-delay: 0.4s;
}

.main_visual__image {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}

@media screen and (max-width: 767px) {
  .main_visual__image {
    height: 100vh;
    margin-bottom: 40px;
  }
}
.main_visual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_visual__text {
  position: absolute;
  left: 0;
  bottom: 35px;
  padding-left: var(--sideW);
  opacity: 0;
  transition: 1s;
}

@media screen and (max-width: 767px) {
  .main_visual__text {
    width: 100%;
    top: 35%;
    bottom: auto;
    padding-right: calc(var(--sideW) * 2);
  }
}
.main_visual__text h2 {
  width: 36.533vw;
}

@media screen and (max-width: 767px) {
  .main_visual__text h2 {
    width: auto;
    margin: 0 auto;
  }
}
.main_visual__text h2 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_visual__news {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  position: absolute;
  width: 50.66%;
  height: 74px;
  padding: 0 45px;
  right: var(--sideW);
  bottom: 0;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: url(../images/ico_arrow.svg) no-repeat center right 35px/7px auto;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .main_visual__news {
    grid-template-columns: 1fr;
    position: static;
    width: auto;
    height: auto;
    padding: var(--sideW);
    margin: 0 var(--sideW);
    border-radius: 15px;
    background-position: center right 18px;
  }
}
.main_visual__news:hover {
  background-color: #F4F7FB;
}

.main_visual__news .date {
  font-size: 0.9375em;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
}

.main_visual__news .title {
  font-size: 0.9375em;
  line-height: 1.75;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.top_company {
  position: relative;
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .top_company {
    padding-top: 140px;
  }
}
.top_company::before {
  content: "";
  position: absolute;
  width: 973px;
  aspect-ratio: 973/915;
  background: url(../images/top_lead_bg.png) no-repeat center/contain;
  right: calc(50% + 120px);
  top: 50%;
  transform: translateY(-52%);
  opacity: 0.69;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_company::before {
    width: 300px;
    right: 50%;
    top: -100px;
    transform: none;
    z-index: -2;
  }
}
.top_company .text {
  width: 57.37%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .top_company .text {
    width: auto;
  }
}
.top_company .text h2 {
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.33;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .top_company .text h2 {
    font-size: 2.375em;
  }
}
.top_company .text p {
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top_company .text p {
    font-size: 0.9375em;
  }
}
.top_company .text p br {
  margin-bottom: 15px;
}

.top_service {
  position: relative;
  padding: 220px 0 290px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top_service {
    padding: 140px 0 180px;
  }
}
.top_service::before, .top_service::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #DBE2EB;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 210px, 100% calc(100% - 210px), 0 100%);
          clip-path: polygon(0 0, 100% 210px, 100% calc(100% - 210px), 0 100%);
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .top_service::before, .top_service::after {
    -webkit-clip-path: polygon(0 0, 100% 170px, 100% calc(100% - 112px), 0 100%);
            clip-path: polygon(0 0, 100% 170px, 100% calc(100% - 112px), 0 100%);
  }
}
.top_service::after {
  background-color: #F4F7FB;
  -webkit-clip-path: polygon(0 210px, 100% 0, 100% 100%, 0 calc(100% - 210px));
          clip-path: polygon(0 210px, 100% 0, 100% 100%, 0 calc(100% - 210px));
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top_service::after {
    -webkit-clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 calc(100% - 112px));
            clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 calc(100% - 112px));
  }
}
.service_list {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .service_list {
    display: block;
  }
}
.service_list:last-child {
  margin-bottom: 0;
}

.service_list h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 20px;
  position: relative;
  font-size: 1.75em;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 60px;
  margin-bottom: 40px;
  grid-row: 1;
}

@media screen and (max-width: 767px) {
  .service_list h3 {
    font-size: 1.5em;
    padding-left: 52px;
  }
}
.service_list h3::before {
  content: "";
  position: absolute;
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F4E334;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .service_list h3::before {
    width: 37px;
  }
}
.service_list h3::after {
  content: attr(data-en);
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
}

.service_list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px 43px;
  grid-row: 2;
  grid-column: 1/-1;
}

@media screen and (max-width: 767px) {
  .service_list ul {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
}
.service_list ul a {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 60px 30px 33px;
}

@media screen and (max-width: 767px) {
  .service_list ul a {
    padding: 27px 56px 27px 25px;
  }
}
.service_list ul a:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.service_list ul a::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  right: 16px;
  top: calc(50% - 15px);
}

@media screen and (max-width: 767px) {
  .service_list ul a::after {
    width: 26px;
    top: 28px;
  }
}
.service_list ul a strong {
  display: block;
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .service_list ul a strong {
    font-size: 1.125em;
  }
}
.service_list ul a p {
  font-size: 0.875em;
  line-height: 1.75;
}

.service_list .btn {
  display: block;
  width: 188px;
  line-height: 52px;
  background: url(../images/ico_arrow.svg) no-repeat center right 16px/7px auto;
  background-color: #fff;
  font-size: 0.875em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  align-self: start;
}

@media screen and (max-width: 767px) {
  .service_list .btn {
    width: 230px;
    margin: 0 auto;
  }
}
.service_list .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
}

.top_promise {
  position: relative;
  z-index: 1;
  margin-top: -170px;
  margin-bottom: 165px;
}

@media screen and (max-width: 767px) {
  .top_promise {
    margin: -110px 0 80px;
  }
}
.top_promise .title {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .top_promise .title {
    margin-bottom: 40px;
  }
}
.top_promise .title h2 {
  font-size: 2.5em;
  letter-spacing: 0.08em;
  font-weight: 700;
  writing-mode: vertical-rl;
  font-size: 2em;
}

.top_promise .title h2 span {
  display: inline-block;
  background: linear-gradient(to left, #274299 5px, transparent 5px);
}

.top_promise .inner, .top_promise .inner_min, .top_promise .inner_lg {
  display: grid;
  grid-template-columns: 37.8% 1fr;
  gap: 20px 57px;
}

@media screen and (max-width: 767px) {
  .top_promise .inner, .top_promise .inner_min, .top_promise .inner_lg {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .top_promise .inner .image, .top_promise .inner_min .image, .top_promise .inner_lg .image {
    padding: 0 var(--sideW);
  }
}
.top_promise .inner h3, .top_promise .inner_min h3, .top_promise .inner_lg h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  font-size: 3.25em;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
  padding-top: 20px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .top_promise .inner h3, .top_promise .inner_min h3, .top_promise .inner_lg h3 {
    font-size: 2.625em;
    padding-top: 15px;
  }
}
.top_promise .inner h3::before, .top_promise .inner_min h3::before, .top_promise .inner_lg h3::before {
  content: "PROMISE";
  position: absolute;
  font-size: 0.25em;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  top: 0;
  left: 18px;
}

@media screen and (max-width: 767px) {
  .top_promise .inner h3::before, .top_promise .inner_min h3::before, .top_promise .inner_lg h3::before {
    font-size: 0.28em;
    left: 15px;
  }
}
.top_promise .inner h3::after, .top_promise .inner_min h3::after, .top_promise .inner_lg h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.top_promise .inner h4, .top_promise .inner_min h4, .top_promise .inner_lg h4 {
  font-size: 2em;
  letter-spacing: .08em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .top_promise .inner h4, .top_promise .inner_min h4, .top_promise .inner_lg h4 {
    font-size: 1.5em;
  }
}
.top_promise .inner p, .top_promise .inner_min p, .top_promise .inner_lg p {
  font-size: 0.9375em;
  line-height: 1.8;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .top_promise .inner p, .top_promise .inner_min p, .top_promise .inner_lg p {
    font-size: 0.875em;
  }
}
.top_promise .inner p:last-child, .top_promise .inner_min p:last-child, .top_promise .inner_lg p:last-child {
  margin-bottom: 0;
}

.top_topics .list_topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 25px 5.86vw;
}

@media screen and (max-width: 767px) {
  .top_topics .list_topics {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.top_topics .list_topics a {
  grid-template-columns: 42% 1fr;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_topics .list_topics a {
    grid-template-columns: 1fr;
  }
}
.top_topics .list_topics a::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

@media screen and (max-width: 767px) {
  .top_topics .list_topics a::after {
    content: none;
  }
}
.top_topics .list_topics a .text {
  padding-inline: 30px;
}

@media screen and (max-width: 767px) {
  .top_topics .list_topics a .text {
    padding: 0 55px 0 0;
  }
}
.top_topics .list_topics a .text .title {
  font-size: 1.25em;
}

.hero {
  margin-bottom: var(--space);
}

.hero .inner, .hero .inner_min, .hero .inner_lg {
  display: grid;
  grid-template-columns: 32% 1fr;
  align-items: end;
  gap: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hero .inner, .hero .inner_min, .hero .inner_lg {
    grid-template-columns: 1fr;
  }
}
.hero .inner::before, .hero .inner_min::before, .hero .inner_lg::before {
  content: "";
  position: absolute;
  width: 500px;
  aspect-ratio: 973/915;
  background: url(../images/top_lead_bg.png) no-repeat center/contain;
  top: -95px;
  right: 81%;
  opacity: 0.69;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .hero .inner::before, .hero .inner_min::before, .hero .inner_lg::before {
    content: none;
  }
}
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .hero__text {
    font-size: 1em;
    grid-row: 2;
  }
}
.hero__text::before {
  content: attr(data-en);
  display: block;
  font-size: 2.8em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(to right, #DCE688, #7ACCF0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  .hero__text::before {
    font-size: 2.5em;
  }
}
.hero__image {
  height: 434px;
}

@media screen and (max-width: 767px) {
  .hero__image {
    height: 200px;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .hero__image img {
    border-radius: 15px;
  }
}
.single-post .split {
  position: relative;
}

.single-post .split::before {
  content: "";
  position: absolute;
  width: 500px;
  aspect-ratio: 973/915;
  background: url(../images/top_lead_bg.png) no-repeat center/contain;
  top: -190px;
  right: 81%;
  opacity: 0.69;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .single-post .split::before {
    content: none;
  }
}
.single-post .split__left {
  padding-top: 280px;
}

@media screen and (max-width: 767px) {
  .single-post .split__left {
    padding-top: 0;
  }
}
.sec_service_01 .service_list ul a {
  background-color: #F4F7FB;
}

.sec_service_01 .service_list ul a::after {
  transform: rotate(90deg);
}

.sec_service_02 {
  position: relative;
  padding: 240px 0 430px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .sec_service_02 {
    padding: 120px 0 220px;
  }
}
.sec_service_02::before, .sec_service_02::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #DBE2EB;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 210px, 100% calc(100% - 240px), 0 100%);
          clip-path: polygon(0 0, 100% 210px, 100% calc(100% - 240px), 0 100%);
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .sec_service_02::before, .sec_service_02::after {
    -webkit-clip-path: polygon(0 0, 100% 170px, 100% calc(100% - 120px), 0 100%);
            clip-path: polygon(0 0, 100% 170px, 100% calc(100% - 120px), 0 100%);
  }
}
.sec_service_02::after {
  background-color: #F4F7FB;
  -webkit-clip-path: polygon(0 210px, 100% 0, 100% 100%, 0 calc(100% - 240px));
          clip-path: polygon(0 210px, 100% 0, 100% 100%, 0 calc(100% - 240px));
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .sec_service_02::after {
    -webkit-clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 calc(100% - 120px));
            clip-path: polygon(0 170px, 100% 0, 100% 100%, 0 calc(100% - 120px));
  }
}
.sec_service_02 h3 {
  background-color: #B3BDC9;
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .sec_service_02 h3 {
    font-size: 1.125em;
  }
}
.sec_service_02 ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px min(3.33vw, 50px);
}

.sec_service_02 ul .icon {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border: 1px dashed #1D1D1D;
  border-radius: 5px;
  margin-bottom: 18px;
}

.sec_service_02 ul .icon .figure {
  display: grid;
  place-content: center;
  width: 35px;
  aspect-ratio: 1/1;
}

.sec_service_02 ul .icon strong {
  display: block;
  text-align: center;
  font-size: 1.125em;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .sec_service_02 ul .icon strong {
    font-size: 1em;
  }
}
.sec_service_02 ul p {
  text-align: center;
  font-size: 0.875em;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .sec_service_02 ul p {
    text-align: left;
  }
}
.sec_service_03 {
  margin: -360px 0 0;
}

@media screen and (max-width: 767px) {
  .sec_service_03 {
    margin-top: -160px;
  }
}
.sec_service_03 .sec_faq {
  background-color: #fff;
  padding: 100px min(6.66vw, 100px) 150px;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .sec_service_03 .sec_faq {
    padding-block: 50px;
    border-radius: 20px;
  }
}
.sec_company_01 .inner, .sec_company_01 .inner_min, .sec_company_01 .inner_lg {
  display: grid;
  grid-template-columns: 418px 1fr;
  gap: 30px min(7.33vw, 110px);
}

@media screen and (max-width: 767px) {
  .sec_company_01 .inner, .sec_company_01 .inner_min, .sec_company_01 .inner_lg {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .sec_company_01 .inner .image, .sec_company_01 .inner_min .image, .sec_company_01 .inner_lg .image {
    order: 2;
    max-width: 300px;
  }
}
.sec_company_01 .inner .image img, .sec_company_01 .inner_min .image img, .sec_company_01 .inner_lg .image img {
  display: block;
  border-radius: 30px;
  margin: 0 auto 20px;
}

.sec_company_01 .inner .image p, .sec_company_01 .inner_min .image p, .sec_company_01 .inner_lg .image p {
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .sec_company_01 .inner .image p, .sec_company_01 .inner_min .image p, .sec_company_01 .inner_lg .image p {
    text-align: right;
  }
}
.sec_company_01 .inner .text, .sec_company_01 .inner_min .text, .sec_company_01 .inner_lg .text {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .sec_company_01 .inner .text, .sec_company_01 .inner_min .text, .sec_company_01 .inner_lg .text {
    padding-top: 0;
    order: 1;
  }
}
.sec_company_01 .inner .text h2, .sec_company_01 .inner_min .text h2, .sec_company_01 .inner_lg .text h2 {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .sec_company_01 .inner .text h2, .sec_company_01 .inner_min .text h2, .sec_company_01 .inner_lg .text h2 {
    font-size: 1.375em;
  }
}
.sec_company_01 .inner .text p, .sec_company_01 .inner_min .text p, .sec_company_01 .inner_lg .text p {
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .sec_company_01 .inner .text p, .sec_company_01 .inner_min .text p, .sec_company_01 .inner_lg .text p {
    font-size: 0.875em;
  }
}
.sec_company_01 .inner .text p br, .sec_company_01 .inner_min .text p br, .sec_company_01 .inner_lg .text p br {
  margin-bottom: 10px;
}

.sec_company_02 p {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .sec_company_02 p {
    font-size: 0.875em;
    text-align: left;
  }
}
.sec_company_02 p:last-child {
  margin-bottom: 0;
}

.tel_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .tel_wrap {
    margin-bottom: 60px;
  }
}
.tel_wrap a {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 3.125em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .tel_wrap a {
    font-size: 2.5em;
  }
}
.tel_wrap a::before {
  content: "";
  display: block;
  width: 52px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_tel.svg) no-repeat center/contain;
          mask: url(../images/ico_tel.svg) no-repeat center/contain;
  background-color: #274299;
}

@media screen and (max-width: 767px) {
  .tel_wrap a::before {
    width: 40px;
  }
}
.tel_wrap p {
  font-weight: 500;
  line-height: 1.5;
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .tel_wrap p {
    font-size: 0.875em;
    padding-left: 0;
  }
}
.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 475px;
}

@media screen and (max-width: 767px) {
  .map {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_top_01 {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .ttl_top_01 {
    font-size: 1em;
    margin-bottom: 40px;
  }
}
.ttl_top_01:last-child {
  margin-bottom: 0;
}

.ttl_top_01::before {
  content: attr(data-en);
  display: block;
  font-size: 2.8em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.ttl_top_01.icon {
  position: relative;
  z-index: 1;
  margin-bottom: 65px;
}

.ttl_top_01.icon::after {
  content: "";
  position: absolute;
  width: 239px;
  aspect-ratio: 230/158;
  background: url(../images/ttl_icon_01.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ttl_top_01.left {
  text-align: left;
}

.ttl_top_01.white {
  color: #fff;
}

.ttl_top_01.related {
  text-align: left;
  font-size: 1em;
}

.ttl_top_01.related::before {
  font-size: 2.5em;
}

@media screen and (max-width: 767px) {
  .ttl_top_01.related::before {
    font-size: 2em;
  }
}
.ttl_cmn_01 {
  display: block;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    font-size: 1em;
    margin-bottom: 40px;
  }
}
.ttl_cmn_01:last-child {
  margin-bottom: 0;
}

.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-size: 2.625em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_01::before {
    font-size: 2.2em;
  }
}
.ttl_cmn_01.icon {
  position: relative;
  z-index: 1;
  margin-bottom: 65px;
}

.ttl_cmn_01.icon::after {
  content: "";
  position: absolute;
  width: 239px;
  aspect-ratio: 230/158;
  background: url(../images/ttl_icon_01.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ttl_cmn_01.left {
  text-align: left;
}

.ttl_cmn_01.white {
  color: #fff;
}

.ttl_cmn_01.related {
  text-align: left;
}

.ttl_cmn_01.related::before {
  font-size: 2.5em;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_01.related::before {
    font-size: 2em;
  }
}
.ttl_cmn_02 {
  display: block;
  position: relative;
  text-align: center;
  font-size: 2.625em;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  padding-bottom: 70px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 2em;
    padding-bottom: 40px;
  }
}
.ttl_cmn_02::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 53px;
  border: 1px solid #707070;
  border-bottom: 0 none;
  border-radius: 20px 20px 0 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_02::after {
    height: 30px;
  }
}
.ttl_cmn_02.ja {
  font-size: 1.75em;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_02.ja {
    font-size: 1.25em;
  }
}
.ttl_cmn_03 {
  display: block;
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_03 {
    font-size: 1.375em;
  }
}
.ttl_cmn_03::after {
  content: attr(data-en);
  display: block;
  font-size: 0.45em;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .ttl_cmn_03::after {
    font-size: 0.5em;
  }
}
.ttl_cmn_03 span {
  color: #274299;
}

.ttl_contact {
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .ttl_contact {
    font-size: 1.25em;
  }
}
.list_topics {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .list_topics {
    gap: 40px;
  }
}
.list_topics:last-child {
  margin-bottom: 0;
}

.list_topics a {
  display: grid;
  grid-template-columns: 37% 1fr;
  gap: 25px 0;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .list_topics a {
    grid-template-columns: 1fr;
    box-shadow: none;
  }
}
.list_topics a:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

@media screen and (max-width: 767px) {
  .list_topics a:hover {
    box-shadow: none;
  }
}
.list_topics a .image {
  position: relative;
  height: 235px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}

@media screen and (max-width: 767px) {
  .list_topics a .image {
    height: auto;
    aspect-ratio: 323/182;
    border-radius: 10px 0 0 0;
  }
}
.list_topics a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list_topics a .image figcaption {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 130px;
  line-height: 34px;
  padding: 0 15px;
  background-color: #274299;
  color: #fff;
  font-size: 0.9375em;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .list_topics a .image figcaption {
    font-size: 0.8125em;
  }
}
.list_topics a .text {
  display: grid;
  align-content: center;
  padding: 10px 30px;
}

@media screen and (max-width: 767px) {
  .list_topics a .text {
    padding: 0 55px 0 0;
  }
}
.list_topics a .text .date {
  font-size: 0.875em;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .list_topics a .text .date {
    font-size: 0.8125em;
  }
}
.list_topics a .text .title {
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .list_topics a .text .title {
    position: relative;
    font-size: 1.25em;
  }
}
@media screen and (max-width: 767px) {
  .list_topics a .text .title::after {
    content: "";
    position: absolute;
    width: 30px;
    aspect-ratio: 1/1;
    background: url(../images/ico_arrow_circle.svg) no-repeat center/contain;
    right: -55px;
    top: calc(50% - 15px);
  }
}
.list_topics a .text .expert {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 0.875em;
  line-height: 1.8;
}

.list_service {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .list_service {
    margin-bottom: 100px;
  }
}
.list_service:last-child {
  margin-bottom: 0;
}

.list_service li {
  display: grid;
  grid-template-columns: 273px 1fr;
  align-items: center;
  gap: 30px 60px;
}

@media screen and (max-width: 767px) {
  .list_service li {
    grid-template-columns: 1fr;
  }
}
.list_service .image {
  position: relative;
  aspect-ratio: 1/1;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .list_service .image {
    width: 240px;
    margin: 0 auto;
  }
}
.list_service .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.list_service .text {
  position: relative;
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .list_service .text {
    padding: 0 0 30px;
  }
}
.list_service .text::before, .list_service .text::after {
  content: "";
  position: absolute;
  width: calc(100% + 200px);
  height: 1px;
  background-color: #B3BDC9;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .list_service .text::before, .list_service .text::after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_service .text::before {
    content: none;
  }
}
.list_service .text::after {
  top: auto;
  bottom: 0;
}

.list_service .text h3 {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .list_service .text h3 {
    font-size: 1.5em;
  }
}
.list_service .text p {
  font-size: 0.9375em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .list_service .text p {
    font-size: 0.875em;
  }
}
.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
}

@media screen and (max-width: 767px) {
  .list_btns {
    gap: 15px;
  }
}
.dlist_faq {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.dlist_faq dt {
  display: flex;
  align-items: baseline;
  gap: 19px;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .dlist_faq dt {
    font-size: 1em;
    gap: 10px;
  }
}
.dlist_faq dt::before {
  content: "Q.";
  display: grid;
  place-content: center;
  width: 63px;
  aspect-ratio: 1/1;
  background-color: #274299;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  border-radius: 50%;
  padding: 0 0 0.2em 0.2em;
  flex-shrink: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .dlist_faq dt::before {
    width: 40px;
    font-size: 2rem;
  }
}
.dlist_faq dd {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-left: 82px;
  font-size: 0.9375em;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .dlist_faq dd {
    gap: 10px;
    padding-left: 0;
    font-size: 0.875em;
  }
}
.dlist_faq dd::before {
  content: "A";
  display: grid;
  place-content: center;
  width: 29px;
  aspect-ratio: 1/1;
  background-color: #E4007F;
  color: #fff;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .dlist_faq dd::before {
    width: 40px;
  }
}
.table_parent {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 30px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}

.table_company {
  width: 100%;
  border-collapse: separate;
  font-size: 1em;
}

@media screen and (max-width: 767px) {
  .table_company {
    display: block;
    font-size: 1em;
  }
  .table_company thead, .table_company tbody, .table_company tr, .table_company th, .table_company td {
    display: block;
    width: 100%;
  }
}
.table_company th, .table_company td {
  border-bottom: 1px solid #B3BDC9;
  padding-block: 20px;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .table_company th, .table_company td {
    padding: 0 0 10px;
  }
}
.table_company th {
  width: 240px;
  font-weight: 700;
  padding-inline: 30px;
}

@media screen and (max-width: 767px) {
  .table_company th {
    width: 100%;
    padding: 10px 0 0;
    border-bottom: 0 none;
  }
}
.btn_cmn_01 {
  display: block;
  position: relative;
  width: 300px;
  line-height: 65px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 40px;
  border: 1px solid #000;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    width: 245px;
    line-height: 60px;
    font-size: 0.875em;
  }
}
.btn_cmn_01:hover {
  background-color: #274299;
  color: #fff;
}

.btn_cmn_01:hover::after {
  background-color: #fff;
}

.btn_cmn_01::after {
  content: "";
  position: absolute;
  width: 7px;
  aspect-ratio: 7/11;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #000;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}

.btn_cmn_01.left {
  margin-inline: 0;
}

@media screen and (max-width: 767px) {
  .btn_cmn_01.sp_center {
    margin-inline: auto;
  }
}
.btn_line {
  display: block;
  position: relative;
  width: 410px;
  max-width: 100%;
  line-height: 65px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #4CAF50;
  color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn_line {
    font-size: 0.875em;
  }
}
.btn_line:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.32);
}

.btn_line::after {
  content: "";
  position: absolute;
  width: 33px;
  aspect-ratio: 33/32;
  -webkit-mask: url(../images/ico_line.svg) no-repeat center/contain;
          mask: url(../images/ico_line.svg) no-repeat center/contain;
  background-color: #fff;
  right: 18px;
  top: calc(50% - 16px);
}

.btn_submit {
  display: block;
  width: 300px;
  line-height: 60px;
  border-radius: 30px;
  text-align: center;
  background-color: #274299;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 700;
  transition: 0.5s;
  margin: 0 auto;
}

.btn_submit:hover {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(-3px);
}

.post_title_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 30px;
  margin-bottom: 40px;
}

.post_title_wrap .cat {
  width: 130px;
  line-height: 34px;
  text-align: center;
  background-color: #274299;
  color: #fff;
  font-size: 0.9375em;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .post_title_wrap .cat {
    width: 120px;
    font-size: 0.875em;
  }
}
.post_title_wrap .date {
  font-size: 0.875em;
  font-family: "Montserrat", sans-serif;
}

.post_title_wrap .title {
  width: 100%;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .post_title_wrap .title {
    font-size: 1.5em;
  }
}
.add_ttl {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.25em;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding-left: 18px;
  border-left: 4px solid #274299;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.125em;
    padding-left: 12px;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.post_contents {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .post_contents {
    margin-bottom: 50px;
  }
}
.post_contents p {
  margin-top: 25px;
  font-size: 0.9375em;
}

@media screen and (max-width: 767px) {
  .post_contents p {
    font-size: 0.875em;
  }
}
.post_contents p:first-child {
  margin-top: 0;
}

.post_contents img {
  display: block;
  margin-top: 35px;
}

.post_contents img:first-child {
  margin-top: 0;
}

.post_contents .table_parent {
  margin-top: 20px;
}

.post_contents .table_parent:first-child {
  margin-top: 0;
}

.post_contents table {
  width: 100%;
  border-collapse: separate;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .post_contents table {
    width: auto;
  }
}
.post_contents table:first-child {
  margin-top: 0;
}

.post_contents table tr:last-child td {
  border-bottom: 0 none;
}

.post_contents table td {
  font-size: 0.9375em;
  padding: 15px 25px;
  background-color: #F8F8F8;
  border-bottom: 8px solid #B3BDC9;
}

@media screen and (max-width: 767px) {
  .post_contents table td {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.post_contents table td:first-child {
  background-color: #B3BDC9;
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: var(--headerHeight);
}

.sidebar__title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .sidebar__title {
    font-size: 1.25em;
    margin-bottom: 20px;
  }
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sidebar__list a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.125em;
  letter-spacing: 0.08em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .sidebar__list a {
    font-size: 1em;
  }
}
.sidebar__list a::before {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 1/1;
  background-color: #F4E334;
  border-radius: 50%;
  transition: 0.5s;
}

.sidebar__list a.is_current::before, .sidebar__list a:hover::before {
  background-color: #274299;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------------------------------------------------------------------- */
.bg_parallax {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .bg_parallax {
    background-size: auto 120%;
  }
}
.img_parallax {
  position: relative;
  overflow: hidden;
}

.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: block;
  width: 1.125em;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  border-bottom-color: #000;
}

.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink, .wp-pagenavi a.extend,
.wp-pagenavi span.previouspostslink,
.wp-pagenavi span.nextpostslink,
.wp-pagenavi span.extend {
  width: auto;
  aspect-ratio: auto;
  background-color: transparent;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

/* モーダル
---------------------------------------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px;
  z-index: 1001;
}

@media screen and (max-width: 767px) {
  .modal {
    border-radius: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .modal_close_btn {
    width: 30px;
    right: 12px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}

.modal_content {
  display: none;
  position: relative;
  width: auto;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .modal_content {
    padding: 40px var(--sideW);
    border-radius: 20px;
  }
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}

.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}

.modal_next {
  left: auto;
  right: 0;
}

.modal_next::after {
  transform: rotate(0);
}

.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(39, 66, 153, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------------------------------------------------------------------- */
.js_tab .js_tab__content_item {
  display: none;
}

.js_tab .js_tab__content_item.js_active {
  display: block;
}

/* パンくず
---------------------------------------------------------------------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.8125em;
  font-weight: 500;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  #list_breadcrumb {
    font-size: 0.75em;
    margin-bottom: 40px;
  }
}
#list_breadcrumb .inner, #list_breadcrumb .inner_min, #list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
}

/* swiper-common
---------------------------------------------------------------------------------------------------------------------- */
.swiper-button {
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow_white.svg) no-repeat center/contain;
  background-color: #274299;
  margin: 0;
  top: calc(50% - 45px);
}

@media screen and (max-width: 767px) {
  .swiper-button {
    width: 40px;
    top: calc(50% - 20px);
  }
}
.swiper-button::after {
  content: none;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

/* その他
---------------------------------------------------------------------------------------------------------------------- */
.lead {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    font-size: 1em;
    margin-bottom: 50px;
  }
}
.lead:last-child {
  margin-bottom: 0;
}

.lead.left {
  text-align: left;
}

.lead.sp_center {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.mb_min {
  margin-bottom: 20px;
}

.lead span {
  display: block;
  margin-bottom: 0.75em;
}

.lead span:last-child {
  margin-bottom: 0;
}

.al_center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}
.nolink {
  pointer-events: none;
}

.disp_ib {
  display: inline-block;
}

/* アーカイブのページネーション
---------------------------------------------------------------------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space);
  border-top: 1px solid #B3BDC9;
  border-bottom: 1px solid #B3BDC9;
  margin-bottom: var(--spaceMin);
}

@media screen and (max-width: 767px) {
  .list_pagination {
    justify-content: center;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}

.list_pagination li {
  line-height: 1.5;
}

.list_pagination li.list {
  width: 160px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .list_pagination li.list {
    order: 3;
  }
}
.list_pagination li.list a {
  display: inline-block;
  font-size: 0.9375em;
  line-height: 1.75;
  padding: 18px 20px;
}

@media screen and (max-width: 767px) {
  .list_pagination li.list a {
    padding: 10px 15px;
  }
}
.list_pagination li.list a:hover {
  color: #274299;
}

.list_pagination li.list a::before, .list_pagination li.list a::after {
  content: "｜";
  display: inline-block;
}

.list_pagination li.prev, .list_pagination li.next {
  display: flex;
  width: calc(50% - 80px);
}

@media screen and (max-width: 767px) {
  .list_pagination li.prev, .list_pagination li.next {
    width: 100%;
  }
}
.list_pagination li.prev a, .list_pagination li.next a {
  display: inline-block;
  position: relative;
  font-size: 0.9375em;
  line-height: 1.75;
  padding: 18px 20px;
}

@media screen and (max-width: 767px) {
  .list_pagination li.prev a, .list_pagination li.next a {
    font-size: 0.875em;
    padding: 10px 15px;
  }
}
.list_pagination li.prev a:hover, .list_pagination li.next a:hover {
  color: #274299;
}

.list_pagination li.prev a:hover::before, .list_pagination li.next a:hover::before {
  background-color: #274299;
}

.list_pagination li.prev a::before, .list_pagination li.next a::before {
  content: "";
  position: absolute;
  width: 7px;
  aspect-ratio: 7/11;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #000;
  right: 0;
  top: calc(50% - 5.5px);
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::before {
  transform: rotate(180deg);
  right: auto;
  left: 0;
}

.list_pagination li.next {
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .list_pagination li.next {
    order: 2;
  }
}
/* フォームパーツ
---------------------------------------------------------------------------------------------------------------------- */
.dlist_form {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 40px;
}

.dlist_form .item {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: baseline;
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form .item.privacy {
  padding-top: 40px;
  border-top: 1px dashed #274299;
}

@media screen and (max-width: 767px) {
  .dlist_form .item.privacy {
    padding-top: 25px;
  }
}
.dlist_form dt {
  font-weight: 700;
}

.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 45px;
  line-height: 22px;
  text-align: center;
  background-color: #274299;
  color: #fff;
  font-size: 0.75em;
  font-weight: 700;
  border-radius: 20px;
}

.dlist_form dd p {
  font-size: 0.8125em;
  line-height: 1.7;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  background-color: transparent;
  border: 1px solid #000;
  line-height: 1.5;
  color: #000;
  text-align: left;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=date],
  select,
  textarea {
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #A3A3A3;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #A3A3A3;
}

textarea {
  height: 186px;
}

@media screen and (max-width: 767px) {
  textarea {
    height: 150px;
  }
}
select {
  width: auto;
  padding: 22px 45px 22px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
}

@media screen and (max-width: 767px) {
  select {
    padding: 15px 45px 15px 10px;
  }
}
.wpcf7-form-control-wrap:has(#zip) {
  display: block;
  margin-bottom: 20px;
}

.wpcf7-form-control-wrap:has(#zip)::before {
  content: "〒";
  display: inline-block;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .wpcf7-form-control-wrap:has(#zip)::before {
    margin-right: 10px;
  }
}
#zip {
  width: 280px;
}

@media screen and (max-width: 767px) {
  #zip {
    width: 150px;
  }
}
.privacy_wrap {
  padding: 25px 40px;
  background-color: #F7F7F7;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .privacy_wrap {
    padding: 15px;
    margin-bottom: 30px;
  }
}
.privacy_wrap strong {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}

.privacy_wrap p {
  font-size: 0.875em;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}

.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.875em;
}

.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #274299;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 25px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 1.42em;
  aspect-ratio: 1/1;
  border: 1px solid #274299;
  left: 0;
  top: calc(50% - 0.71em);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 6px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 0.2em;
  top: calc(50% - 0.3em);
  transform: rotate(-40deg);
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 8px;
    left: 3px;
  }
}
.wpcf7-checkbox a,
.wpcf7-acceptance a {
  color: #274299;
  text-decoration: underline;
}

.wpcf7-checkbox a:hover,
.wpcf7-acceptance a:hover {
  text-decoration: none;
}

.doui .wpcf7-acceptance {
  display: block;
}

.doui .wpcf7-acceptance a {
  color: #274299;
  text-decoration: underline;
}

.doui .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.doui + p {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 5px;
}

.form_toggle {
  padding-top: 40px;
  border-top: 1px dashed #F4F7FB;
}

@media screen and (max-width: 767px) {
  .form_toggle {
    padding: 35px 0 0;
  }
}
.form_toggle .btn {
  position: relative;
  width: 100%;
  max-width: 900px;
  border: 1px solid #274299;
  border-radius: 50px;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.75;
  padding: 20px 35px;
  text-align: center;
  color: #274299;
  cursor: pointer;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .form_toggle .btn {
    font-size: 0.875em;
    border-radius: 10px;
    padding: 10px 20px 10px 10px;
    line-height: 1.5;
    text-align: left;
  }
}
.form_toggle .btn::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  border-right: 1px solid #274299;
  border-bottom: 1px solid #274299;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .form_toggle .btn::after {
    right: 5px;
  }
}
.form_toggle .btn.js_open::after {
  transform: rotate(-135deg);
}

.form_toggle .toggle_menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.form_toggle .toggle_menu.js_open {
  max-height: 1000px;
  overflow: visible;
  padding-top: 40px;
}

.form_toggle .toggle_menu .item:not(:first-child) {
  margin-top: 35px;
}

.ttl_policy {
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .ttl_policy {
    font-size: 1.5em;
    margin-bottom: 40px;
  }
}
.dlist_policy .item {
  margin-bottom: 40px;
}

.dlist_policy .item:last-child {
  margin-bottom: 0;
}

.dlist_policy dt {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B3BDC9;
}

@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.25em;
  }
}
.dlist_policy dd {
  font-size: 0.9375em;
}

@media screen and (max-width: 767px) {
  .dlist_policy dd {
    font-size: 0.875em;
  }
}
.dlist_policy dd p {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .dlist_policy dd p {
    margin-bottom: 10px;
  }
}
.dlist_policy dd p:last-child {
  margin-bottom: 0;
}

.dlist_policy dd ul {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .dlist_policy dd ul {
    margin-bottom: 10px;
  }
}
.dlist_policy dd ul:last-child {
  margin-bottom: 0;
}

.dlist_policy dd ul li {
  list-style-type: disc;
  margin-left: 1em;
}

@media screen and (max-width: 767px) {
  .dlist_policy dd ul li {
    line-height: 1.7;
  }
}
.dlist_policy dd a {
  text-decoration: underline;
}

.dlist_policy dd a:hover {
  text-decoration: none;
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

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