@charset "UTF-8";
/* ===========================================
 * fonts
 * ===========================================
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=The+Nautigal:wght@400;700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* ===========================================
 * Variable
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* -------------------------------------------
 * max-width
*/
/* -------------------------------------------
 * color
*/
/* -------------------------------------------
 * svg
*/
/* ===========================================
 * Utility
 * ===========================================
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* -------------------------------------------
 * font-size
*/
/* $base-font-sizeを基準に$sizeを%で指定 */
/* $base-font-sizeを基準に$sizeをremで指定 */
/* $base-font-sizeを基準に$sizeをpxで指定 */
/* $base-font-sizeを基準に$sizeをemで指定 */
/* $base-font-sizeを基準に$sizeをvwで指定 */
/* $base-font-sizeを基準に$sizeをvhで指定 */
@font-face {
  font-family: "Kazahana";
  src: url("/assets/fonts/kazahana.woff2") format("woff2"), url("/assets/fonts/kazahana.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.the-nautigal-regular {
  font-family: "The Nautigal", cursive;
  font-weight: 400;
  font-style: normal;
}

.the-nautigal-bold {
  font-family: "The Nautigal", cursive;
  font-weight: 700;
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-medium {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-old-mincho-semibold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.zen-old-mincho-bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

/* ===========================================
 * debug
 * ===========================================
*/
.show-for-logged-in, .hide-for-logged-in {
  display: none; /* 最初はどちらも非表示 */
}

/* ===========================================
 * common
 * ===========================================
*/
/* selecter */
html {
  overflow-x: hidden;
}

html body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}
html body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url("../img/bg-body.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transform: scale(1.1);
}
@media screen and (max-width: 991px) {
  html body::before {
    background-image: url("../img/bg-body-sp.webp");
  }
}
html body .main-container {
  width: 100%;
}

/* default font size */
p {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-weight: normal;
  line-height: 2;
  color: #414A55;
}

.__p_vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 3;
  letter-spacing: 0.25rem;
}

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

/* ===========================================
 * content header
 * ===========================================
*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

/* ===========================================
 * FAQ
 * ===========================================
*/
.sec-faq .__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
.sec-faq .__inner .accordion {
  margin: 8% auto;
  border: none;
  background: transparent;
}
.sec-faq .__inner .accordion .accordion-item {
  border: none;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-weight: bold;
  color: #4D6B90;
  background-color: #FFF;
  border-radius: 12px;
  padding: 0.25em 1.5em;
  transition: background-color 0.3s;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button::before {
  content: "Q";
  font-size: 2em;
  color: #164E95;
  margin-right: 1em;
  font-family: "The Nautigal", cursive;
  font-weight: 700;
  font-style: normal;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button::after {
  background-image: none;
  background-color: #B5CDEB;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
  margin-left: auto;
  font-size: 1em;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em;
  border-radius: 100px;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button.collapsed::after {
  content: "\f067";
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button:focus {
  box-shadow: none;
}
.sec-faq .__inner .accordion .accordion-item .accordion-collapse {
  border: none;
}
.sec-faq .__inner .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: #fff;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #6E6E6E;
  padding: 16px 20px;
  padding-left: 0;
  margin-left: 4em;
  border-top: 1px solid #e0e0e0;
  line-height: 2;
}
.sec-faq .__inner .accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  .sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button {
    padding: 1em;
  }
}

/* ===========================================
 * CTA
 * ===========================================
*/
.sec-cta {
  margin: 12% 0;
}
.sec-cta .__inner .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.sec-cta .__inner .__header_container::before {
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto;
  background-image: url("../img/header-top-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.sec-cta .__inner .__header_container .__h2_header {
  line-height: 1;
  margin-bottom: 0;
}
.sec-cta .__inner .__header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
.sec-cta .__inner .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
}
.sec-cta .__inner .__cta_container {
  margin: 4% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.sec-cta .__inner .__cta_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-width: 400px;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
.sec-cta .__inner .__cta_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
.sec-cta .__inner .__cta_container .__btn.__request {
  background: unset;
  background-color: #FFF;
  color: #164E95;
  box-shadow: inset 0 0 0 2px #164E95;
}
.sec-cta .__inner .__cta_container .__btn.__request:hover {
  animation: fadeToBlue 0.5s forwards;
}
@keyframes fadeToBlue {
  from {
    background-color: #FFF;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
  to {
    background-color: #164E95;
    color: #FFF;
    box-shadow: unset;
  }
}
@media screen and (max-width: 991px) {
  .sec-cta .__inner {
    padding: 0 4%;
  }
  .sec-cta .__inner .__cta_container {
    flex-direction: column;
  }
  .sec-cta .__inner .__cta_container .__btn {
    min-width: 100%;
  }
}

/* ===========================================
 * Site Header
 * グローバルヘッダー
 * ===========================================
*/
.site-header {
  background-color: #FFF;
}
.site-header .container {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .site-header .container {
    background-color: #E7F5F5;
    position: relative;
  }
  .site-header .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 81px;
    background-color: #FFF;
    z-index: 3;
  }
  .site-header .container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56%;
    background-image: url("../img/bg-hamburger-menu.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 2;
  }
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar {
    position: relative;
    z-index: 3;
  }
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item {
  margin-right: 0.5rem;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  color: #00449C;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  border-left: 1px solid #E2E2E2;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__contact .nav-link {
  font-weight: 300;
  color: #FFF;
  border-radius: 100px;
  padding: 0.25rem 2rem;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__request_materials {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__request_materials .nav-link {
  padding: 0.25rem 2rem;
  font-weight: 300;
  color: #2784E9;
  border-radius: 100px;
  background-color: #FFF;
  border: 2px solid #2784E9;
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: right;
    gap: 1rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav > :nth-child(5) {
    grid-column: 2;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item {
    font-family: "Zen Old Mincho", serif;
    margin-right: 0;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-link {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    font-size: 14px;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-link::after {
    content: attr(data-en);
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #2784E9;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents {
    margin-top: 3rem;
    padding-bottom: 2rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container {
    margin-bottom: 2rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    width: 100%;
    background-color: #FFF;
    border-radius: 100px;
    text-decoration: none;
    padding: 0.5em 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-family: "Zen Old Mincho", serif;
    color: #164E95;
    font-size: clamp(20px, 2.4767801858vw, 24px);
    border-bottom: 1px solid rgba(234, 240, 247, 0.8);
    width: 100%;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__top i {
    font-size: 0.6em;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__bottom {
    font-family: "Zen Old Mincho", serif;
    color: #2784E9;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__bnr_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar .container-fluid {
    padding: 0;
  }
  .site-header .container .navbar .container-fluid .custom-toggler {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0046ad, #2289ff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .site-header .container .navbar .container-fluid .custom-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .label {
    color: #fff;
    font-family: "Zen Old Mincho", serif;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(1) {
    transform: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(2) {
    opacity: 1;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(3) {
    transform: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ===========================================
 * Site Footer
 * サイト フッター
 * ===========================================
*/
.site-footer {
  padding: 24% 0 4%;
  background-image: url("../img/bg-footer.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.site-footer .container {
  width: 100%;
  padding: 0 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .container .__logo_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .container .__logo_container .__copyright {
  font-size: 12px;
  font-weight: 300;
  color: #FFF;
  opacity: 0.6;
  margin: 0;
}
.site-footer .container .__nav_container .nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.site-footer .container .__nav_container .nav-list .nav-item a {
  display: block;
  padding: 0.25rem 1.5rem;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  font-weight: 300;
  color: #FFF;
  opacity: 0.8;
  text-decoration: none;
}
.site-footer .container .__nav_container .nav-list .nav-item a:hover {
  opacity: 1;
}
.site-footer .container .__bnr_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.site-footer .container .__bnr_container .__img {
  max-height: 64px;
  overflow: hidden;
}
.site-footer .container .__bnr_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  .site-footer {
    background-image: url("../img/bg-footer-sp.svg");
    background-position: center top;
    background-size: cover;
    padding-bottom: 12%;
  }
  .site-footer .container .__bnr_container {
    display: none;
  }
  .site-footer .container .__nav_container .nav-list {
    flex-wrap: wrap;
  }
  .site-footer .container .__nav_container .nav-list .nav-item a {
    padding: 0 1rem;
    font-size: clamp(12px, 1.4447884417vw, 14px);
    border-right: 1px solid #FFF;
    padding-right: 2rem;
  }
}

/* ===========================================
 * Top
 * ===========================================
*/
body.top {
  /**
   * --------------------------------------------
   * ヒーローコンテナ
   */
  /**
   * --------------------------------------------
   * 概要
   */
  /**
   * --------------------------------------------
   * プラン
   */
  /**
   * --------------------------------------------
   * メニュー
   */
  /**
   * --------------------------------------------
   * お客様の声
   */
  /**
   * --------------------------------------------
   * よくある質問
   */
}
body.top .site-header .container .navbar .h1-header {
  display: block;
}
body.top .site-header .container .navbar .h1-header .navbar-brand {
  display: block;
}
body.top .main-content [class^=sec-] {
  margin: 12% 0;
}
body.top .main-content .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.top .main-content .__header_container::before {
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto;
  background-image: url("../img/header-top-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
body.top .main-content .__header_container .__h2_header {
  line-height: 1;
  margin-bottom: 0;
}
body.top .main-content .__header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
body.top .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
}
@media screen and (max-width: 991px) {
  body.top .main-content .__header_container {
    padding: 0 4%;
  }
}
body.top .hero-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 88vh;
}
body.top .hero-container .__swiper-fv {
  width: 100%;
}
body.top .hero-container .__swiper-fv .swiper-slide figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
body.top .hero-container .__swiper-fv .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.top .hero-container .__deco {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  body.top .hero-container {
    height: 72vh;
  }
  body.top .hero-container .__swiper-fv {
    height: 100%;
  }
  body.top .hero-container .swiper-slide figure {
    aspect-ratio: 9/16;
  }
  body.top .hero-container .swiper-slide figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
body.top .hero-container .__title_container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  z-index: 3;
}
body.top .hero-container .__title_container .__title_text {
  width: 30vw;
  min-width: 300px;
}
@media screen and (max-width: 991px) {
  body.top .hero-container .__title_container {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20%;
  }
  body.top .hero-container .__title_container .__title_text {
    width: 80%;
    min-width: unset;
  }
}
body.top .hero-container::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 5.5rem;
  background-image: url("../img/icon-mouse.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: bounce 1.5s infinite alternate;
  z-index: 3;
}
@keyframes bounce {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(-1rem);
  }
}
@media screen and (max-width: 991px) {
  body.top .hero-container::after {
    display: none;
  }
}
body.top .sec-about .__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
}
body.top .sec-about .__inner .__header_container {
  margin-bottom: 3rem;
}
body.top .sec-about .__inner .__header_container .__h2_header {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
body.top .sec-about .__inner .__header_container .__deco {
  width: 4em;
  margin: 0 auto;
}
body.top .sec-about .__inner .__text_container {
  display: inline-block;
  text-align: left;
}
body.top .sec-about .__inner .__text_container p {
  font-size: clamp(16px, 1.8575851393vw, 18px);
  line-height: 2.4;
  color: #414A55;
}
@media screen and (max-width: 991px) {
  body.top .sec-about {
    padding-bottom: 16%;
  }
  body.top .sec-about .__inner .__header_container .__h2_header {
    text-align: left;
  }
  body.top .sec-about .__inner .__header_container .__deco {
    display: none;
  }
  body.top .sec-about .__inner .__text_container p {
    color: #5E738D;
  }
}
body.top .sec-plan {
  position: relative;
  z-index: 1;
}
body.top .sec-plan .__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
body.top .sec-plan .__inner .__plan_container {
  margin: 8% 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__no {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 140px;
  color: #237CDB;
  line-height: 1;
  opacity: 0.1;
  margin-left: -2rem;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info {
  padding-left: 1rem;
  margin-top: -20%;
  position: relative;
  z-index: 2;
  text-align: center;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__notice {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  color: #FFF;
  background-color: #2784E9;
  margin-top: 1.5em;
  padding: 0.3em 1.5em;
  display: inline-block;
  line-height: 1;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__h3_title {
  color: #164E95;
  margin-bottom: 1em;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__text {
  text-align: left;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  line-height: 1.6;
  color: #6E6E6E;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__price {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #206EC7;
  border-bottom: 1px solid #94ADCE;
  line-height: 1.6;
}
body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__price span {
  font-size: 0.5em;
  display: inline-block;
  margin-left: 0.25em;
}
body.top .sec-plan .__inner .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
body.top .sec-plan .__inner .__btn_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
@media screen and (max-width: 991px) {
  body.top .sec-plan {
    background-color: #FFF;
  }
  body.top .sec-plan .__inner {
    padding: 0;
  }
  body.top .sec-plan .__inner .__header_container {
    padding: 0 4%;
  }
  body.top .sec-plan .__inner .__plan_container {
    padding-left: 8%;
  }
  body.top .sec-plan .__inner .__plan_container .__plan_item .__no {
    margin-bottom: 0;
  }
  body.top .sec-plan .__inner .__plan_container .__plan_item .__info {
    margin-top: -32%;
  }
  body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__h3_title, body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__text {
    padding-right: calc(8% + 1rem);
  }
  body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__notice, body.top .sec-plan .__inner .__plan_container .__plan_item .__info .__price {
    margin-right: calc(8% + 1rem);
  }
  body.top .sec-plan .__inner .__btn_container {
    padding: 0 4%;
  }
  body.top .sec-plan .__bg.__top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
  }
  body.top .sec-plan .__bg.__bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
body.top .sec-menu .__inner .__menu_container {
  margin: 8% 0;
}
body.top .sec-menu .__inner .__menu_container .__menu_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 4%;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__img_container {
  width: 50%;
  flex-shrink: 0;
  flex-grow: 1;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__img_container .__img {
  width: 100%;
  height: auto;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__img_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container {
  max-width: 400px;
  width: 50%;
  margin-left: 3rem;
  margin-right: max((100% - 1080px) / 2, 4%);
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__en {
  font-family: "The Nautigal", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(64px, 8.2559339525vw, 80px);
  white-space: nowrap;
  color: #414A55;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__h3_title {
  color: #164E95;
  margin-top: -0.5em;
  margin-bottom: 2em;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__h3_title .__sm {
  font-size: 0.65em;
  display: block;
  margin: 0;
  margin-bottom: 0.5em;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #6AC0D0 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
body.top .sec-menu .__inner .__menu_container .__menu_item.__reverse {
  flex-direction: row-reverse;
}
body.top .sec-menu .__inner .__menu_container .__menu_item.__reverse .__img_container {
  margin-right: -2rem;
}
body.top .sec-menu .__inner .__menu_container .__menu_item.__reverse .__contents_container {
  margin-left: max((100% - 1080px) / 2, 4%);
  margin-right: 3rem;
}
@media screen and (max-width: 991px) {
  body.top .sec-menu {
    padding-top: 24%;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item {
    flex-direction: column;
    margin-bottom: 16%;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item .__img_container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 8%;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container {
    width: 100%;
    max-width: 100%;
    padding: 0 4%;
    margin: 0 auto;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item .__contents_container .__en {
    white-space: pre-wrap;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item.__reverse {
    flex-direction: column;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item.__reverse .__contents_container {
    margin: 0 auto;
    margin-top: -4rem;
    padding: 0 4%;
  }
  body.top .sec-menu .__inner .__menu_container .__menu_item:last-child .__img_container {
    margin-left: 0;
  }
}
body.top .sec-review .review-posts {
  background-color: #EAF0F7;
  margin: 4% 0;
  padding: 4% 2%;
  position: relative;
  z-index: 1;
}
body.top .sec-review .review-posts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-review.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
body.top .sec-review .review-posts .review-posts-item {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  overflow: hidden;
  background-color: #FFF;
}
body.top .sec-review .review-posts .review-posts-item .plan {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  background-color: #6AC0D0;
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border-radius: 0 0 60px 0;
  margin-bottom: 0;
  min-width: 240px;
  text-align: center;
}
body.top .sec-review .review-posts .review-posts-item .plan.__goudo {
  background-color: #1E6BBE;
}
body.top .sec-review .review-posts .review-posts-item .plan.__kazoku {
  background-color: #2784E9;
}
body.top .sec-review .review-posts .review-posts-item .customer-info {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__left_container {
  width: 30%;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__left_container img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container {
  width: 70%;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container .__occupation {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.8575851393vw, 18px);
  color: #164E95;
  margin-left: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #DFE4E5;
  line-height: 2.4;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container .__customer {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.8575851393vw, 18px);
  font-weight: bold;
  color: #164E95;
  padding-left: 1.5rem;
  border-bottom: 1px solid #DFE4E5;
  line-height: 2.4;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container .__customer span {
  font-size: 14px;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  display: inline-block;
  margin-left: 0.5rem;
}
body.top .sec-review .review-posts .review-posts-item .revew-content {
  margin-top: 1rem;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  color: #164E95;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  body.top .sec-review .review-posts {
    padding: 16% 4%;
  }
}
body.top .sec-faq .__inner .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
body.top .sec-faq .__inner .__btn_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}

/* ===========================================
 * about
 * ===========================================
*/
body.about {
  /**
   * --------------------------------------------
   * 概要
   */
  /**
   * --------------------------------------------
   * 意匠登録
   */
  /**
   * --------------------------------------------
   * エルカペットが選ばれる理由
   */
  /**
   * --------------------------------------------
   * エルカペットの特徴
   */
}
body.about .main-content [class^=sec-] {
  margin: 12% 0;
}
body.about .main-content .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.about .main-content .__header_container::before {
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto;
  background-image: url("../img/header-top-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
body.about .main-content .__header_container .__h2_header {
  line-height: 1;
  margin-bottom: 0;
}
body.about .main-content .__header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
body.about .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
}
@media screen and (max-width: 991px) {
  body.about .main-content .__header_container {
    padding: 0 4%;
  }
}
body.about .page-header {
  position: relative;
  z-index: 1;
}
body.about .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.about .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.about .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.about .page-header .__h1_header_container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 4%;
  }
}
body.about .sec-lca .__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.about .sec-lca .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
body.about .sec-lca .__inner .__flex_container .__text_container .__h2_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 991px) {
  body.about .sec-lca .__inner {
    padding: 0;
  }
  body.about .sec-lca .__inner .__flex_container {
    flex-direction: column;
  }
  body.about .sec-lca .__inner .__flex_container .__img_container {
    width: 100%;
  }
  body.about .sec-lca .__inner .__flex_container .__img_container .__img {
    width: 100%;
    height: 20vh;
    overflow: hidden;
  }
  body.about .sec-lca .__inner .__flex_container .__img_container .__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body.about .sec-lca .__inner .__flex_container .__text_container {
    padding: 0 4%;
  }
}
body.about .sec-design-registration .__inner .__header {
  display: block;
  padding: 0.5% 0;
  background: linear-gradient(90deg, #E5D399 0%, #A88437 50%, #EBD885 100%);
}
body.about .sec-design-registration .__inner .__header p {
  background: linear-gradient(90deg, #C1994B 0%, #614D26 100%);
  color: #FFF;
  margin-bottom: 0;
  text-align: center;
}
body.about .sec-design-registration .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 4% 0;
  background-image: url("../img/bg-design-registration.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
body.about .sec-design-registration .__inner .__flex_container .__img_container {
  border-right: 1px solid #FFF;
}
body.about .sec-design-registration .__inner .__flex_container .__img_container .__img {
  max-width: 200px;
  width: 100%;
  height: auto;
}
body.about .sec-design-registration .__inner .__flex_container .__img_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-design-registration .__inner .__flex_container .__text_container {
  padding-left: 6%;
}
body.about .sec-design-registration .__inner .__flex_container .__text_container p {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-weight: 500;
  line-height: 2;
  color: #430200;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.about .sec-design-registration {
    margin-bottom: 0 !important;
  }
  body.about .sec-design-registration .__inner .__flex_container {
    flex-direction: column;
  }
  body.about .sec-design-registration .__inner .__flex_container .__img_container {
    border-right: none;
    border-bottom: 1px solid #FFF;
  }
  body.about .sec-design-registration .__inner .__flex_container .__img_container .__img {
    max-width: 100%;
    height: auto;
  }
  body.about .sec-design-registration .__inner .__flex_container .__text_container {
    padding-left: 0;
    padding-bottom: 32%;
  }
}
body.about .sec-reason .__inner {
  margin: 4% 0;
}
body.about .sec-reason .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
body.about .sec-reason .__inner .__flex_container .__slide_container {
  width: 50%;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .swiper {
  position: relative;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .swiper .swiper-slide figure {
  aspect-ratio: 134/119;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .swiper .swiper-slide figure img {
  width: 100%;
  height: calc(100% - 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .__deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .__deco .__img {
  width: 100%;
  height: 100%;
}
body.about .sec-reason .__inner .__flex_container .__slide_container .__deco .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-reason .__inner .__flex_container .__text_container {
  max-width: 440px;
  width: 50%;
  margin-right: max((100% - 1080px) / 2, 4%);
}
body.about .sec-reason .__inner .__flex_container .__text_container .__h2_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 1em;
}
body.about .sec-reason .__inner .__flex_container .__text_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.about .sec-reason .__inner .__flex_container .__text_container .__lead strong {
  color: #2784E9;
}
@media screen and (max-width: 991px) {
  body.about .sec-reason {
    margin-top: 0 !important;
    background-color: #FFF;
    position: relative;
    z-index: 1;
  }
  body.about .sec-reason .__inner .__flex_container {
    flex-direction: column;
  }
  body.about .sec-reason .__inner .__flex_container .__slide_container {
    width: 100%;
    margin-right: 2rem;
  }
  body.about .sec-reason .__inner .__flex_container .__text_container {
    width: 100%;
    margin-right: 0;
    padding: 0 4%;
  }
  body.about .sec-reason .__bg.__top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
  }
  body.about .sec-reason .__bg.__bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}
body.about .sec-features .__inner {
  margin: 4% 0;
}
body.about .sec-features .__inner .__text_area {
  width: 100%;
  max-width: 1080px;
  margin: 8% auto;
  padding: 0 4%;
}
body.about .sec-features .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
body.about .sec-features .__inner .__flex_container .__slide_container {
  width: 50%;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
body.about .sec-features .__inner .__flex_container .__slide_container .swiper {
  position: relative;
}
body.about .sec-features .__inner .__flex_container .__slide_container .swiper .swiper-slide figure {
  aspect-ratio: 134/119;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.about .sec-features .__inner .__flex_container .__slide_container .swiper .swiper-slide figure img {
  width: 100%;
  height: calc(100% - 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-features .__inner .__flex_container .__slide_container .__deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
body.about .sec-features .__inner .__flex_container .__slide_container .__deco .__img {
  width: 100%;
  height: 100%;
}
body.about .sec-features .__inner .__flex_container .__slide_container .__deco .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-features .__inner .__flex_container .__text_container {
  max-width: 440px;
  width: 50%;
  margin-left: max((100% - 1080px) / 2, 4%);
}
body.about .sec-features .__inner .__flex_container .__text_container .__h2_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 1em;
}
body.about .sec-features .__inner .__flex_container .__text_container .__img_explanation {
  margin: 1rem 0 2rem;
}
body.about .sec-features .__inner .__flex_container .__text_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.about .sec-features .__inner .__flex_container .__text_container .__lead strong {
  color: #2784E9;
}
@media screen and (max-width: 991px) {
  body.about .sec-features {
    background: #FFF;
    position: relative;
    z-index: -1;
    padding-top: 32%;
  }
  body.about .sec-features .__inner .__flex_container {
    flex-direction: column-reverse;
  }
  body.about .sec-features .__inner .__flex_container .__slide_container {
    width: 100%;
    margin-left: 2rem;
  }
  body.about .sec-features .__inner .__flex_container .__text_container {
    width: 100%;
    margin: 0;
    padding: 0 4%;
  }
  body.about .sec-features .__bg.__center {
    transform: rotate(25deg);
    position: relative;
    z-index: -1;
  }
  body.about .sec-features .__bg.__bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  body.about .sec-cta {
    padding-top: 32%;
  }
}

/* ===========================================
 * Flow
 * ===========================================
*/
body.flow {
  /**
   * --------------------------------------------
   * ボタンメニュー
   */
  /**
   * --------------------------------------------
   * お申し込みの流れ
   */
  /**
   * --------------------------------------------
   * 当日の流れ
  */
  /**
   * --------------------------------------------
   * 海洋葬実施ポイント
  */
  /**
   * --------------------------------------------
   * さんごの会について
  */
}
body.flow .main-content [class^=sec-] {
  margin: 12% 0;
}
body.flow .main-content .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.flow .main-content .__header_container::before {
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto;
  background-image: url("../img/header-top-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
body.flow .main-content .__header_container .__h2_header {
  line-height: 1;
  margin-bottom: 0;
}
body.flow .main-content .__header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
body.flow .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
}
@media screen and (max-width: 991px) {
  body.flow .main-content .__header_container {
    padding: 0 4%;
  }
}
body.flow .page-header {
  position: relative;
  z-index: 1;
}
body.flow .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.flow .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.flow .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.flow .page-header .__h1_header_container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 4%;
  }
}
body.flow .sec-btn {
  margin-top: 4% !important;
}
body.flow .sec-btn .__inner .__header_container::before {
  display: none;
}
body.flow .sec-btn .__inner .__btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4%;
}
body.flow .sec-btn .__inner .__btn_container .__btn {
  width: 360px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  margin-bottom: 0;
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body.flow .sec-btn .__inner .__btn_container .__btn .__icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  height: 130%;
}
body.flow .sec-btn .__inner .__btn_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
  cursor: pointer;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
@media screen and (max-width: 991px) {
  body.flow .sec-btn .__inner .__btn_container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 4%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  body.flow .sec-btn .__inner .__btn_container .__btn {
    width: 100%;
    max-width: 100%;
  }
  body.flow .sec-btn .__inner .__btn_container .__btn:last-child {
    margin-bottom: 0;
  }
}
body.flow .sec-application .__inner .__flow_img {
  width: 100%;
  max-width: 1080px;
  margin: 6% auto;
  padding: 0 4%;
}
body.flow .sec-application .__inner .__flow_container .__flow_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 4%;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container {
  flex-grow: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__img {
  width: 100%;
  height: 100%;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__no_container {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__no_container .__step {
  font-family: "The Nautigal", cursive;
  line-height: 1;
  margin: 0;
  font-size: clamp(88px, 10.3199174407vw, 100px);
  color: #97BAE3;
  text-align: center;
  margin-left: 1em;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__no_container .__no {
  font-family: "The Nautigal", cursive;
  line-height: 1;
  margin: 0;
  font-size: clamp(224px, 24.7678018576vw, 240px);
  color: #97BAE3;
  margin-top: -0.3em;
  text-align: center;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container {
  flex-shrink: 0;
  max-width: 42%;
  min-height: 300px;
  width: 50%;
  padding-left: 5rem;
  margin-right: max((100% - 1080px) / 2, 4%);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 100%;
  background-color: #73A6E2;
  border-radius: 10px 0 0 10px;
  z-index: 2;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container .__h3_header {
  color: #164E95;
  margin-bottom: 2em;
  padding-top: 0.5em;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container .__text strong {
  color: #2784E9;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
  width: 100%;
}
body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__img_container .__no_container {
  right: unset;
  left: 12%;
}
body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__text_container {
  margin-left: max((100% - 1080px) / 2, 4%);
  margin-right: 0;
  padding-left: 0;
  padding-right: 5rem;
}
body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__text_container::before {
  left: unset;
  right: 0;
  border-radius: 0 10px 10px 0;
}
body.flow .sec-application .__inner .__info_container {
  margin: 8% 0;
}
body.flow .sec-application .__inner .__info_container .__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem;
  background-color: #FFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0 3px 50px rgba(126, 140, 155, 0.1);
  position: relative;
  z-index: 1;
}
body.flow .sec-application .__inner .__info_container .__inner::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 180px;
  height: 180px;
  background-image: url("../img/img-flow-info-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-3deg);
  z-index: 2;
}
body.flow .sec-application .__inner .__info_container .__inner::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  background-image: url("../img/img-flow-info-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-180deg);
  z-index: 2;
}
body.flow .sec-application .__inner .__info_container .__inner .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
  color: #414A55;
  color: #487071;
}
body.flow .sec-application .__inner .__info_container .__inner .__bank_details {
  padding: 2rem 3rem;
  background-color: #EAF0F7;
  margin: 4% 0 0;
}
body.flow .sec-application .__inner .__info_container .__inner .__bank_details .__text {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.flow .sec-application .__inner .__flow_container {
    margin: 16% 0;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item {
    flex-direction: column;
    margin-bottom: 16%;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container {
    position: relative;
    z-index: 1;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__no_container {
    top: 64%;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item .__img_container .__no_container .__step {
    font-size: 40px;
    white-space: nowrap;
    color: #6AC0D0;
    opacity: 0.5;
    text-align: right;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    margin: 0;
    padding: 0;
    padding: 0 4%;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item .__text_container::before {
    display: none;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) {
    flex-direction: column-reverse;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__img_container .__no_container {
    right: unset;
    left: 6%;
    top: 64%;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__img_container .__no_container .__step {
    margin: 0;
    white-space: nowrap;
    opacity: 0.5;
    text-align: left;
  }
  body.flow .sec-application .__inner .__flow_container .__flow_item:nth-child(even) .__text_container {
    margin: 0;
    padding: 0;
    padding: 0 4%;
  }
  body.flow .sec-application .__inner .__info_container {
    padding: 0 4%;
    box-shadow: 0 3px 50px rgba(126, 140, 155, 0.1);
  }
  body.flow .sec-application .__inner .__info_container .__inner {
    padding: 2rem;
  }
  body.flow .sec-application .__inner .__info_container .__inner .__bank_details {
    padding: 1rem 2rem;
  }
  body.flow .sec-application .__inner .__info_container .__inner::before, body.flow .sec-application .__inner .__info_container .__inner::after {
    display: none;
  }
}
body.flow .sec-ceremony .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.flow .sec-ceremony .__inner .__flow_container {
  margin: 6% 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container {
  width: calc(50% - 15px);
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__img_container {
  width: 70%;
  margin-left: 10%;
  margin-right: 20%;
  margin-bottom: 16%;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__img_container.__02 {
  margin-bottom: 24%;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__img_container.__03 {
  margin-bottom: 36%;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 0;
  margin-bottom: 12%;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__no {
  font-family: "Zen Old Mincho", serif;
  font-size: 100px;
  color: #D0DCE8;
  line-height: 0.5;
  text-align: right;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__text_container {
  margin-top: 4rem;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__text_container .__h3_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 0.5em;
  text-align: right;
  padding-right: 1em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #F2F2F2;
}
body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  margin-bottom: 0;
  line-height: 2;
  color: #414A55;
}
body.flow .sec-ceremony .__inner .__flow_container .__center_container {
  width: 4%;
  margin-top: 10%;
}
body.flow .sec-ceremony .__inner .__flow_container .__center_container .__img {
  width: 100%;
  height: 100%;
}
body.flow .sec-ceremony .__inner .__flow_container .__center_container .__img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container {
  width: calc(50% - 15px);
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__img_container {
  width: 70%;
  margin-left: 20%;
  margin-right: 10%;
  margin-bottom: 24%;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__img_container.__02 {
  margin-bottom: 36%;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 0;
  margin-bottom: 12%;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__no {
  font-family: "Zen Old Mincho", serif;
  font-size: 100px;
  color: #D0DCE8;
  line-height: 0.5;
  text-align: left;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__text_container {
  margin-top: 4rem;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__text_container .__h3_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 0.5em;
  text-align: left;
  padding-left: 1em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #F2F2F2;
}
body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  margin-bottom: 0;
  line-height: 2;
  color: #414A55;
}
@media screen and (max-width: 991px) {
  body.flow .sec-ceremony .__inner {
    padding: 0;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container {
    width: 100%;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container .__img_container {
    width: 92%;
    margin-left: 0;
    margin-right: 0;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container {
    flex-direction: column;
    align-items: flex-end;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__no {
    font-size: 40px;
    margin-bottom: 0;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__text_container {
    margin-top: 0;
    padding-left: 8%;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__left_container .__info_container .__text_container .__h3_header {
    padding: 0;
    text-align: left;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__center_container {
    width: 12%;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container {
    width: 100%;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container .__img_container {
    width: 92%;
    margin-left: 0;
    margin-right: 0;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container {
    flex-direction: column;
    align-items: flex-start;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__no {
    font-size: 40px;
    margin-bottom: 0;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__text_container {
    margin-top: 0;
    padding-left: 4%;
    padding-right: 8%;
  }
  body.flow .sec-ceremony .__inner .__flow_container .__right_container .__info_container .__text_container .__h3_header {
    padding: 0;
    text-align: right;
  }
}
body.flow .sec-sea-burial-points .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
  background-image: url("../img/bg-sea-burial-points.svg");
  background-repeat: no-repeat;
  background-size: 72%;
  background-position: right bottom;
}
body.flow .sec-sea-burial-points .__inner .__text_container {
  padding: 12% 0 24%;
}
body.flow .sec-sea-burial-points .__inner .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
  color: #487071;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.flow .sec-sea-burial-points .__inner {
    background: unset;
  }
}
body.flow .sec-about-sango-no-kai .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.flow .sec-about-sango-no-kai .__inner .__img_container {
  text-align: center;
  max-width: 560px;
  margin: 4% auto;
}
body.flow .sec-about-sango-no-kai .__inner .__img_container img {
  max-width: 100%;
  height: auto;
}
body.flow .sec-about-sango-no-kai .__inner .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.flow .sec-about-sango-no-kai .__inner .__img_container .__img {
    max-width: 100%;
    height: 24vh;
  }
  body.flow .sec-about-sango-no-kai .__inner .__img_container .__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

/* ===========================================
 * Plan
 * ===========================================
*/
body.plan {
  /**
   * --------------------------------------------
   * ボタンメニュー
   */
  /**
   * --------------------------------------------
   * 委託プラン
   */
  /**
   * --------------------------------------------
   * 合同プラン
   */
  /**
   * --------------------------------------------
   * 家族貸出プラン
   */
  /**
   * --------------------------------------------
   * オプションメニュー
   */
  /**
   * --------------------------------------------
   * 郵送
   */
}
body.plan .main-content [class^=sec-] {
  margin: 12% 0;
}
body.plan .main-content .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.plan .main-content .__header_container::before {
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto;
  background-image: url("../img/header-top-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
body.plan .main-content .__header_container .__h2_header {
  line-height: 1;
  margin-bottom: 0;
}
body.plan .main-content .__header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
body.plan .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
}
@media screen and (max-width: 991px) {
  body.plan .main-content .__header_container {
    padding: 0 4%;
  }
}
body.plan .page-header {
  position: relative;
  z-index: 1;
}
body.plan .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.plan .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.plan .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.plan .page-header .__h1_header_container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 4%;
  }
}
body.plan .sec-btn {
  margin-top: 4% !important;
}
body.plan .sec-btn .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.plan .sec-btn .__inner .__header_container::before {
  display: none;
}
body.plan .sec-btn .__inner .__link_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  justify-items: center;
  align-items: center;
  margin: 4% 0;
}
body.plan .sec-btn .__inner .__link_container .__btn .__img {
  position: relative;
  z-index: 1;
}
body.plan .sec-btn .__inner .__link_container .__btn .__img .__default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}
body.plan .sec-btn .__inner .__link_container .__btn .__img .__default:hover {
  opacity: 0;
}
body.plan .sec-btn .__inner .__btn_container {
  margin: 4% 0;
}
body.plan .sec-btn .__inner .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-width: 400px;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
body.plan .sec-btn .__inner .__btn_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
@media screen and (max-width: 991px) {
  body.plan .sec-btn .__inner {
    padding: 0;
  }
  body.plan .sec-btn .__inner .__link_container {
    gap: 1rem;
  }
  body.plan .sec-btn .__inner .__btn_container {
    width: 100%;
    padding: 0 4%;
  }
  body.plan .sec-btn .__inner .__btn_container .__btn {
    min-width: unset;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
body.plan .sec-itaku .__inner,
body.plan .sec-goudo .__inner {
  margin: 4% 0;
}
@media screen and (max-width: 991px) {
  body.plan .sec-itaku .__inner,
  body.plan .sec-goudo .__inner {
    margin: 24% 0;
  }
}
body.plan .sec-itaku .__inner .__flex_container,
body.plan .sec-goudo .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container,
body.plan .sec-goudo .__inner .__flex_container .__contant_container {
  max-width: 400px;
  width: 30%;
  margin-left: max((100% - 1080px) / 2, 4%);
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container {
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container::before,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container::before {
  margin-left: 2rem;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container .__h2_header,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container .__h2_header {
  color: #164E95;
  line-height: 1.6;
  margin-top: 0.5em;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container .__lead,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__text,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__price,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__price {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #206EC7;
  border-bottom: 1px solid #94ADCE;
  line-height: 1.6;
  text-align: center;
}
body.plan .sec-itaku .__inner .__flex_container .__contant_container .__price span,
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__price span {
  font-size: 0.5em;
  display: inline-block;
  margin-left: 0.25em;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container,
body.plan .sec-goudo .__inner .__flex_container .__img_container {
  width: 70%;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .swiper,
body.plan .sec-goudo .__inner .__flex_container .__img_container .swiper {
  position: relative;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .swiper .swiper-slide figure,
body.plan .sec-goudo .__inner .__flex_container .__img_container .swiper .swiper-slide figure {
  aspect-ratio: 134/119;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .swiper .swiper-slide figure img,
body.plan .sec-goudo .__inner .__flex_container .__img_container .swiper .swiper-slide figure img {
  width: 100%;
  height: calc(100% - 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .__deco,
body.plan .sec-goudo .__inner .__flex_container .__img_container .__deco {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .__deco .__img,
body.plan .sec-goudo .__inner .__flex_container .__img_container .__deco .__img {
  width: 100%;
  height: 100%;
}
body.plan .sec-itaku .__inner .__flex_container .__img_container .__deco .__img img,
body.plan .sec-goudo .__inner .__flex_container .__img_container .__deco .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 991px) {
  body.plan .sec-itaku .__inner .__flex_container,
  body.plan .sec-goudo .__inner .__flex_container {
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 8%;
  }
  body.plan .sec-itaku .__inner .__flex_container .__img_container,
  body.plan .sec-goudo .__inner .__flex_container .__img_container {
    width: 100%;
  }
  body.plan .sec-itaku .__inner .__flex_container .__contant_container,
  body.plan .sec-goudo .__inner .__flex_container .__contant_container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 4%;
  }
  body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container,
  body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container {
    align-items: center;
  }
  body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container::before,
  body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container::before {
    margin: 0 auto;
  }
  body.plan .sec-itaku .__inner .__flex_container .__contant_container .__header_container .__lead,
  body.plan .sec-goudo .__inner .__flex_container .__contant_container .__header_container .__lead {
    font-family: "Zen Old Mincho", serif;
    color: #2784E9;
  }
}
body.plan .sec-itaku .__inner .__service_container,
body.plan .sec-goudo .__inner .__service_container {
  width: 100%;
  max-width: 1080px;
  margin: 6% auto;
  padding: 0 4%;
}
body.plan .sec-itaku .__inner .__service_container .__header_container,
body.plan .sec-goudo .__inner .__service_container .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
body.plan .sec-itaku .__inner .__service_container .__header_container::before,
body.plan .sec-goudo .__inner .__service_container .__header_container::before {
  display: none;
}
body.plan .sec-itaku .__inner .__service_container .__header_container .__line,
body.plan .sec-goudo .__inner .__service_container .__header_container .__line {
  width: 1rem;
  height: 5px;
  display: block;
  background-color: #164E95;
}
body.plan .sec-itaku .__inner .__service_container .__header_container .__en,
body.plan .sec-goudo .__inner .__service_container .__header_container .__en {
  color: #A7A7A7;
}
body.plan .sec-itaku .__inner .__service_container .__service_list,
body.plan .sec-goudo .__inner .__service_container .__service_list {
  margin: 4% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item::before,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-plan-service-item.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 20% center;
  z-index: -1;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container .__no,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container .__no {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(128px, 14.4478844169vw, 140px);
  margin-bottom: 0;
  line-height: 1;
  color: #237CDB;
  opacity: 0.1;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: -1rem;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img {
  width: 6em;
  height: 6em;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img img,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__title,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 2.2703818369vw, 22px);
  line-height: 1.6;
  color: #164E95;
  margin-bottom: 0;
}
body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__text,
body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__text {
  font-size: clamp(12px, 1.4447884417vw, 14px);
  line-height: 1.6;
  color: #6E6E6E;
  margin-bottom: 0;
  margin-left: 3em;
}
@media screen and (max-width: 991px) {
  body.plan .sec-itaku .__inner .__service_container,
  body.plan .sec-goudo .__inner .__service_container {
    margin: 0 4%;
    width: auto;
    background-color: #FAFAFA;
    padding: 4%;
    padding-top: 8%;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  body.plan .sec-itaku .__inner .__service_container .__service_list,
  body.plan .sec-goudo .__inner .__service_container .__service_list {
    margin: 8% 0;
    gap: 0;
    row-gap: 1rem;
  }
  body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item,
  body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item {
    width: 33%;
  }
  body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item .__title,
  body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item .__title {
    font-weight: bold;
    color: #164E95;
    font-size: clamp(12px, 1.4447884417vw, 14px);
    margin-bottom: 0;
  }
  body.plan .sec-itaku .__inner .__service_container .__service_list .__service_item::before,
  body.plan .sec-goudo .__inner .__service_container .__service_list .__service_item::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  body.plan .sec-goudo .__inner .__flex_container {
    flex-direction: column;
  }
}
body.plan .sec-goudo .__inner .__flex_container .__contant_container {
  max-width: 400px;
  width: 30%;
  margin-left: 0;
  margin-right: max((100% - 1080px) / 2, 4%);
}
body.plan .sec-goudo .__inner .__flex_container .__contant_container .__conditions {
  margin-left: 1rem;
  margin-bottom: 0;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 991px) {
  body.plan .sec-goudo .__inner .__flex_container .__contant_container {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  body.plan .sec-goudo .__inner .__flex_container .__contant_container .__conditions {
    margin-left: 20%;
  }
}
body.plan .sec-goudo .__inner .__notice_container {
  width: 100%;
  max-width: 1080px;
  margin: 2% auto;
  padding: 0 4%;
}
body.plan .sec-goudo .__inner .__notice_container .__notice {
  color: #6E6E6E;
}
@media screen and (max-width: 991px) {
  body.plan .sec-goudo .__inner .__notice_container {
    margin-top: 8%;
  }
}
body.plan .sec-kazoku .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
body.plan .sec-kazoku .__inner .__flex_container .__content_container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.plan .sec-kazoku .__inner .__flex_container .__content_container .__header_container .__h2_header {
  color: #164E95;
  line-height: 1.6;
  margin-bottom: 1em;
}
body.plan .sec-kazoku .__inner .__flex_container .__content_container .__header_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.plan .sec-kazoku .__inner .__plan_container {
  width: 100%;
  max-width: 1080px;
  margin: 6% auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  justify-items: stretch;
  align-items: stretch;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item {
  border: 10px solid #EDEDED;
  background-color: #FFF;
  padding: 3rem;
  height: 100%;
  display: flex;
  justify-content: stretch;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("../img/icon-plan-kazoku-deco.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 2;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 2.2703818369vw, 22px);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: auto;
  white-space: nowrap;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__title .__lg {
  font-size: 1.5em;
  border-bottom: 4px solid #2784E9;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__price_container {
  margin-top: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__price_container .__conditions {
  margin-bottom: 0;
  font-family: "Zen Old Mincho", serif;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__price_container .__price {
  margin-bottom: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(24px, 3.302373581vw, 32px);
  color: #206EC7;
  border-bottom: 1px solid #94ADCE;
  line-height: 1.6;
  text-align: center;
  padding: 0 0.5em;
}
body.plan .sec-kazoku .__inner .__plan_container .__plan_item .__price_container .__price span {
  font-size: 0.5em;
  display: inline-block;
  margin-left: 0.25em;
}
@media screen and (max-width: 991px) {
  body.plan .sec-kazoku .__inner .__plan_container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  body.plan .sec-kazoku .__inner .__plan_container .__plan_item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
body.plan .sec-kazoku .__inner .__service_container {
  width: 100%;
  max-width: 1080px;
  margin: 6% auto;
  padding: 0 4%;
}
body.plan .sec-kazoku .__inner .__service_container .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
body.plan .sec-kazoku .__inner .__service_container .__header_container::before {
  display: none;
}
body.plan .sec-kazoku .__inner .__service_container .__header_container .__line {
  width: 1rem;
  height: 5px;
  display: block;
  background-color: #164E95;
}
body.plan .sec-kazoku .__inner .__service_container .__header_container .__en {
  color: #A7A7A7;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list {
  margin: 4% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg-plan-service-item.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right 20% center;
  z-index: -1;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container .__no {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(128px, 14.4478844169vw, 140px);
  margin-bottom: 0;
  line-height: 1;
  color: #237CDB;
  opacity: 0.1;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: -1rem;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img {
  width: 6em;
  height: 6em;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__icon_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__flex_container .__flex_vertical .__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 2.2703818369vw, 22px);
  line-height: 1.6;
  color: #164E95;
  margin-bottom: 0;
}
body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__text {
  font-size: clamp(12px, 1.4447884417vw, 14px);
  line-height: 1.6;
  color: #6E6E6E;
  margin-bottom: 0;
  margin-left: 3em;
}
@media screen and (max-width: 991px) {
  body.plan .sec-kazoku .__inner .__service_container {
    margin: 8% 4%;
    width: auto;
    background-color: #FAFAFA;
    padding: 4%;
    padding-top: 8%;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  body.plan .sec-kazoku .__inner .__service_container .__service_list {
    margin: 8% 0;
    gap: 0;
    row-gap: 1rem;
  }
  body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item {
    width: 33%;
  }
  body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item .__title {
    font-weight: bold;
    color: #164E95;
    font-size: clamp(12px, 1.4447884417vw, 14px);
    margin-bottom: 0;
  }
  body.plan .sec-kazoku .__inner .__service_container .__service_list .__service_item::before {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  body.plan .sec-kazoku .__inner .__notice_container {
    margin: 12% auto;
    max-width: 1080px;
    width: 100%;
    padding: 0 4%;
  }
}
body.plan .sec-option {
  position: relative;
  z-index: 1;
}
body.plan .sec-option .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.plan .sec-option .__inner .__flex_container {
  margin: 6% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
body.plan .sec-option .__inner .__flex_container .__img_container {
  width: calc(60% - 2rem);
}
body.plan .sec-option .__inner .__flex_container .__img_container .__img {
  width: 100%;
}
body.plan .sec-option .__inner .__flex_container .__text_container {
  width: 40%;
}
body.plan .sec-option .__inner .__flex_container .__text_container .__h3_header.__option {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #6AC0D0;
  margin-bottom: 1em;
}
body.plan .sec-option .__inner .__flex_container .__text_container .__text {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
  margin-bottom: 0;
}
body.plan .sec-option .__inner .__btn_container {
  width: 100%;
}
body.plan .sec-option .__inner .__btn_container .__btn.__soloio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  line-height: 1;
  background-color: #FFF;
  color: #164E95;
  box-shadow: inset 0 0 0 2px #164E95;
}
body.plan .sec-option .__inner .__btn_container .__btn.__soloio:hover {
  animation: fadeToBlue 0.5s forwards;
}
@keyframes fadeToBlue {
  from {
    background-color: #FFF;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
  to {
    background-color: #164E95;
    color: #FFF;
    box-shadow: unset;
  }
}
@media screen and (max-width: 991px) {
  body.plan .sec-option .__inner .__header_container {
    padding: 0;
  }
  body.plan .sec-option .__inner .__flex_container {
    flex-direction: column;
    gap: 2rem;
  }
  body.plan .sec-option .__inner .__flex_container .__img_container {
    width: 100%;
  }
  body.plan .sec-option .__inner .__flex_container .__img_container .__img {
    width: 100%;
    height: auto;
  }
  body.plan .sec-option .__inner .__flex_container .__text_container {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  body.plan .sec-option {
    margin-top: 32% !important;
    background-color: #FFF;
  }
  body.plan .sec-option .__bg.__top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
  }
  body.plan .sec-option .__bg.__center {
    transform: rotate(25deg);
    position: relative;
    z-index: -1;
  }
}
body.plan .sec-post .__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
}
body.plan .sec-post .__inner .__btn_container {
  margin: 4% 0 2%;
}
body.plan .sec-post .__inner .__btn_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #FFF;
  background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 1.5em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
body.plan .sec-post .__inner .__btn_container .__btn:hover {
  animation: fadeToWhite 0.5s forwards;
}
@keyframes fadeToWhite {
  from {
    background: linear-gradient(90deg, #164E95 0%, #2784E9 100%);
    color: #FFF;
    box-shadow: none;
  }
  to {
    background: #ffffff;
    color: #164E95;
    box-shadow: inset 0 0 0 2px #164E95;
  }
}
body.plan .sec-post .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
body.plan .sec-post .__inner .__flex_container .__title {
  font-size: clamp(18px, 2.2703818369vw, 22px);
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}
body.plan .sec-post .__inner .__flex_container .__address_container {
  background-color: #F6F6F6;
  padding: 4rem 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.plan .sec-post .__inner .__flex_container .__address_container .__address_container_inner {
  display: inline-block;
}
body.plan .sec-post .__inner .__flex_container .__address_container p {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
body.plan .sec-post .__inner .__flex_container .__address_container p.__company {
  font-size: clamp(16px, 1.8575851393vw, 18px);
}
body.plan .sec-post .__inner .__flex_container .__address_container p.__address {
  font-size: clamp(14px, 1.6511867905vw, 16px);
}
@media screen and (max-width: 991px) {
  body.plan .sec-post .__inner {
    padding: 0;
  }
  body.plan .sec-post .__inner .__flex_container {
    margin-top: 8%;
  }
  body.plan .sec-post .__inner .__flex_container .__address_container {
    padding: 2rem;
  }
  body.plan .sec-post .__inner .__flex_container .__address_container .__address_container_inner .__company {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 1rem;
    font-size: clamp(16px, 1.8575851393vw, 18px);
  }
  body.plan .sec-post .__inner .__flex_container .__address_container .__address_container_inner .__address {
    text-align: center;
  }
  body.plan .sec-post .__inner .__btn_container {
    padding: 0 4%;
  }
}

/* ===========================================
 * Faq
 * ===========================================
*/
body.faq {
  /* ===========================================
  * FAQ
  * ===========================================
  */
}
body.faq .page-header {
  position: relative;
  z-index: 1;
}
body.faq .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.faq .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.faq .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
body.faq .sec-faq {
  margin: 4% 0;
}
body.faq .sec-faq .__lead {
  text-align: center;
}

/* ===========================================
 * Contact
 * ===========================================
*/
body.contact,
body.thanks,
body.thanks-request {
  /* ===========================================
  * Header
  * ===========================================
  */
  /* ===========================================
  * Form
  * ===========================================
  */
  /* ===========================================
  * CTA
  * ===========================================
  */
}
body.contact .page-header,
body.thanks .page-header,
body.thanks-request .page-header {
  position: relative;
  z-index: 1;
}
body.contact .page-header .__h1_header_container,
body.thanks .page-header .__h1_header_container,
body.thanks-request .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.contact .page-header .__h1_header_container .__h1_header,
body.thanks .page-header .__h1_header_container .__h1_header,
body.thanks-request .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.contact .page-header .__h1_header_container .__en,
body.thanks .page-header .__h1_header_container .__en,
body.thanks-request .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.contact .page-header .__h1_header_container,
  body.thanks .page-header .__h1_header_container,
  body.thanks-request .page-header .__h1_header_container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 4%;
  }
}
body.contact .sec-header,
body.thanks .sec-header,
body.thanks-request .sec-header {
  margin: 4% 0;
}
body.contact .sec-header .__inner,
body.thanks .sec-header .__inner,
body.thanks-request .sec-header .__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4%;
  background-color: #FFF;
  box-shadow: 0 3px 35px rgba(0, 0, 0, 0.1);
  padding: 4rem;
}
body.contact .sec-header .__inner .__header_container .__title,
body.thanks .sec-header .__inner .__header_container .__title,
body.thanks-request .sec-header .__inner .__header_container .__title {
  font-family: "Kazahana";
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  color: #00449C;
  border-bottom: 1px solid #CECECE;
}
body.contact .sec-header .__inner .__header_container .__lead,
body.thanks .sec-header .__inner .__header_container .__lead,
body.thanks-request .sec-header .__inner .__header_container .__lead {
  margin-top: 2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.contact .sec-header,
  body.thanks .sec-header,
  body.thanks-request .sec-header {
    padding: 0 4%;
  }
  body.contact .sec-header .__inner,
  body.thanks .sec-header .__inner,
  body.thanks-request .sec-header .__inner {
    padding: 2rem 1.5rem;
  }
  body.contact .sec-header .__inner .__header_container .__lead,
  body.thanks .sec-header .__inner .__header_container .__lead,
  body.thanks-request .sec-header .__inner .__header_container .__lead {
    color: #9D9D9D;
  }
}
body.contact .sec-form .__inner,
body.thanks .sec-form .__inner,
body.thanks-request .sec-form .__inner {
  max-width: 1080px;
  margin: 0 auto;
}
body.contact .sec-form .__inner .contact-form .__select_container,
body.thanks .sec-form .__inner .contact-form .__select_container,
body.thanks-request .sec-form .__inner .contact-form .__select_container {
  padding: 0 4rem;
}
body.contact .sec-form .__inner .contact-form .__main_container,
body.thanks .sec-form .__inner .contact-form .__main_container,
body.thanks-request .sec-form .__inner .contact-form .__main_container {
  padding: 2rem 4rem;
  background: #EAF0F7;
}
body.contact .sec-form .__inner .contact-form .__content_container,
body.thanks .sec-form .__inner .contact-form .__content_container,
body.thanks-request .sec-form .__inner .contact-form .__content_container {
  padding: 4rem;
  align-items: flex-start;
}
body.contact .sec-form .__inner .contact-form .__content_container .form-label,
body.thanks .sec-form .__inner .contact-form .__content_container .form-label,
body.thanks-request .sec-form .__inner .contact-form .__content_container .form-label {
  margin-top: 1rem;
}
body.contact .sec-form .__inner .contact-form .form-text,
body.thanks .sec-form .__inner .contact-form .form-text,
body.thanks-request .sec-form .__inner .contact-form .form-text {
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
}
body.contact .sec-form .__inner .contact-form .__pp_container,
body.thanks .sec-form .__inner .contact-form .__pp_container,
body.thanks-request .sec-form .__inner .contact-form .__pp_container {
  padding: 2rem 4rem;
  text-align: center;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label,
body.thanks-request .sec-form .__inner .contact-form .__pp_container .form-check-label {
  justify-content: center;
  font-weight: 400;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label .required,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label .required,
body.thanks-request .sec-form .__inner .contact-form .__pp_container .form-check-label .required {
  color: #F06363;
  background-color: unset;
  margin: 0;
  padding: 0;
}
body.contact .sec-form .__inner .contact-form label,
body.thanks .sec-form .__inner .contact-form label,
body.thanks-request .sec-form .__inner .contact-form label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  color: #00449C;
  margin-bottom: 0.25rem;
}
body.contact .sec-form .__inner .contact-form label .required,
body.thanks .sec-form .__inner .contact-form label .required,
body.thanks-request .sec-form .__inner .contact-form label .required {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #FFF;
  background-color: #F06363;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.contact .sec-form .__inner .contact-form label .optional,
body.thanks .sec-form .__inner .contact-form label .optional,
body.thanks-request .sec-form .__inner .contact-form label .optional {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #00449C;
  background-color: #C1D5EB;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.contact .sec-form .__inner .contact-form input[type=text],
body.contact .sec-form .__inner .contact-form input[type=email],
body.contact .sec-form .__inner .contact-form input[type=tel],
body.contact .sec-form .__inner .contact-form select,
body.contact .sec-form .__inner .contact-form textarea,
body.thanks .sec-form .__inner .contact-form input[type=text],
body.thanks .sec-form .__inner .contact-form input[type=email],
body.thanks .sec-form .__inner .contact-form input[type=tel],
body.thanks .sec-form .__inner .contact-form select,
body.thanks .sec-form .__inner .contact-form textarea,
body.thanks-request .sec-form .__inner .contact-form input[type=text],
body.thanks-request .sec-form .__inner .contact-form input[type=email],
body.thanks-request .sec-form .__inner .contact-form input[type=tel],
body.thanks-request .sec-form .__inner .contact-form select,
body.thanks-request .sec-form .__inner .contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0 !important;
  padding: 1rem;
  font-size: 1rem;
}
body.contact .sec-form .__inner .contact-form textarea,
body.thanks .sec-form .__inner .contact-form textarea,
body.thanks-request .sec-form .__inner .contact-form textarea {
  resize: vertical;
}
body.contact .sec-form .__inner .contact-form .form-select,
body.thanks .sec-form .__inner .contact-form .form-select,
body.thanks-request .sec-form .__inner .contact-form .form-select {
  background-image: url("../img/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
body.contact .sec-form .__inner .contact-form .form-submit,
body.thanks .sec-form .__inner .contact-form .form-submit,
body.thanks-request .sec-form .__inner .contact-form .form-submit {
  text-align: center;
}
body.contact .sec-form .__inner .contact-form .form-submit button,
body.thanks .sec-form .__inner .contact-form .form-submit button,
body.thanks-request .sec-form .__inner .contact-form .form-submit button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: #004a91;
  color: #fff;
  padding: 2rem 0;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-family: "Zen Old Mincho", serif;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  body.contact .sec-form .__inner,
  body.thanks .sec-form .__inner,
  body.thanks-request .sec-form .__inner {
    padding: 0;
  }
  body.contact .sec-form .__inner .contact-form,
  body.thanks .sec-form .__inner .contact-form,
  body.thanks-request .sec-form .__inner .contact-form {
    padding: 0;
    padding-bottom: 32% !important;
  }
  body.contact .sec-form .__inner .contact-form .row label,
  body.thanks .sec-form .__inner .contact-form .row label,
  body.thanks-request .sec-form .__inner .contact-form .row label {
    margin-bottom: 1rem;
  }
  body.contact .sec-form .__inner .contact-form .__select_container,
  body.thanks .sec-form .__inner .contact-form .__select_container,
  body.thanks-request .sec-form .__inner .contact-form .__select_container {
    padding: 0 4%;
    justify-content: center;
  }
  body.contact .sec-form .__inner .contact-form .__select_container .form-text,
  body.thanks .sec-form .__inner .contact-form .__select_container .form-text,
  body.thanks-request .sec-form .__inner .contact-form .__select_container .form-text {
    font-size: 13px;
    color: #164E95;
  }
  body.contact .sec-form .__inner .contact-form .__main_container,
  body.thanks .sec-form .__inner .contact-form .__main_container,
  body.thanks-request .sec-form .__inner .contact-form .__main_container {
    padding: 2rem 4%;
  }
  body.contact .sec-form .__inner .contact-form .__main_container .row,
  body.thanks .sec-form .__inner .contact-form .__main_container .row,
  body.thanks-request .sec-form .__inner .contact-form .__main_container .row {
    justify-content: center;
  }
  body.contact .sec-form .__inner .contact-form .__content_container,
  body.thanks .sec-form .__inner .contact-form .__content_container,
  body.thanks-request .sec-form .__inner .contact-form .__content_container {
    padding: 2rem 8%;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container,
  body.thanks .sec-form .__inner .contact-form .__pp_container,
  body.thanks-request .sec-form .__inner .contact-form .__pp_container {
    padding: 2rem 4%;
    padding-top: 0;
    margin-bottom: 0 !important;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container .form-text,
  body.thanks .sec-form .__inner .contact-form .__pp_container .form-text,
  body.thanks-request .sec-form .__inner .contact-form .__pp_container .form-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label,
  body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label,
  body.thanks-request .sec-form .__inner .contact-form .__pp_container .form-check-label {
    gap: 0.25rem;
  }
  body.contact .sec-form .__inner .contact-form .form-submit,
  body.thanks .sec-form .__inner .contact-form .form-submit,
  body.thanks-request .sec-form .__inner .contact-form .form-submit {
    padding: 8%;
  }
}
body.contact .sec-cta,
body.thanks .sec-cta,
body.thanks-request .sec-cta {
  display: none;
}

/* ===========================================
 * Request Materials
 * ===========================================
*/
body.request-materials {
  /* ===========================================
  * Form
  * ===========================================
  */
  /* ===========================================
  * CTA
  * ===========================================
  */
}
body.request-materials .page-header {
  position: relative;
  z-index: 1;
}
body.request-materials .page-header .__h1_header_container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.request-materials .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #00449C;
}
body.request-materials .page-header .__h1_header_container .__en {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #2784E9;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.request-materials .page-header .__h1_header_container {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    margin-top: 4%;
  }
}
body.request-materials .sec-form .__inner {
  max-width: 1080px;
  margin: 4% auto;
}
body.request-materials .sec-form .__inner .contact-form .__main_container {
  padding: 2rem 4rem;
  background: #EAF0F7;
}
body.request-materials .sec-form .__inner .contact-form .__content_container {
  padding: 4rem;
  align-items: flex-start;
}
body.request-materials .sec-form .__inner .contact-form .__content_container .form-label {
  margin-top: 1rem;
}
body.request-materials .sec-form .__inner .contact-form .form-text {
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
}
body.request-materials .sec-form .__inner .contact-form .__pp_container {
  padding: 2rem 4rem;
  text-align: center;
}
body.request-materials .sec-form .__inner .contact-form .__pp_container .form-check-label {
  justify-content: center;
  font-weight: 400;
}
body.request-materials .sec-form .__inner .contact-form .__pp_container .form-check-label .required {
  color: #F06363;
  background-color: unset;
  margin: 0;
  padding: 0;
}
body.request-materials .sec-form .__inner .contact-form label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  color: #00449C;
  margin-bottom: 0.25rem;
}
body.request-materials .sec-form .__inner .contact-form label .required {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #FFF;
  background-color: #F06363;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.request-materials .sec-form .__inner .contact-form label .optional {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #00449C;
  background-color: #C1D5EB;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.request-materials .sec-form .__inner .contact-form input[type=text],
body.request-materials .sec-form .__inner .contact-form input[type=email],
body.request-materials .sec-form .__inner .contact-form input[type=tel],
body.request-materials .sec-form .__inner .contact-form select,
body.request-materials .sec-form .__inner .contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0 !important;
  padding: 1rem;
  font-size: 1rem;
}
body.request-materials .sec-form .__inner .contact-form textarea {
  resize: vertical;
}
body.request-materials .sec-form .__inner .contact-form .form-select {
  background-image: url("../img/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
body.request-materials .sec-form .__inner .contact-form .form-submit {
  text-align: center;
}
body.request-materials .sec-form .__inner .contact-form .form-submit button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: #004a91;
  color: #fff;
  padding: 2rem 0;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-family: "Zen Old Mincho", serif;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  body.request-materials .sec-form .__inner {
    padding: 0;
  }
  body.request-materials .sec-form .__inner .contact-form {
    padding: 0;
    padding-bottom: 32% !important;
  }
  body.request-materials .sec-form .__inner .contact-form .row label {
    margin-bottom: 1rem;
  }
  body.request-materials .sec-form .__inner .contact-form .__select_container {
    padding: 0 4%;
    justify-content: center;
  }
  body.request-materials .sec-form .__inner .contact-form .__select_container .form-text {
    font-size: 13px;
    color: #164E95;
  }
  body.request-materials .sec-form .__inner .contact-form .__main_container {
    padding: 2rem 4%;
  }
  body.request-materials .sec-form .__inner .contact-form .__main_container .row {
    justify-content: center;
  }
  body.request-materials .sec-form .__inner .contact-form .__content_container {
    padding: 2rem 8%;
  }
  body.request-materials .sec-form .__inner .contact-form .__pp_container {
    padding: 2rem 4%;
    padding-top: 0;
    margin-bottom: 0 !important;
  }
  body.request-materials .sec-form .__inner .contact-form .__pp_container .form-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
  }
  body.request-materials .sec-form .__inner .contact-form .__pp_container .form-check-label {
    gap: 0.25rem;
  }
  body.request-materials .sec-form .__inner .contact-form .form-submit {
    padding: 8%;
  }
}
body.request-materials .sec-cta {
  display: none;
}/*# sourceMappingURL=lca-style.css.map */