@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--color-text);
  font-family: var(--base-font);
  word-break: break-all;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  html {
    scroll-padding-top: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}
body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  background: #0e3864;
  background: linear-gradient(135deg, rgb(14, 56, 100) 0%, rgb(0, 0, 0) 100%);
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.05em;
  height: 100%;
  position: relative;
}

body#page {
  background: #e2ddd3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.2em;
}

.sans-serif {
  font-family: var(--sub-font);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    transition: 0.3s;
  }
}

.center {
  text-align: center !important;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

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

.flex {
  display: flex;
}
.flex--alternating:nth-child(even) {
  flex-direction: row-reverse;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px; /* マージン調整 */
}
.grid .grid__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* オシャレ感追加 */
}

.btn {
  max-width: 260px;
  margin: 40px auto 0;
  background: #0dac9f;
  border: 1px solid #0dac9f;
  padding: 15px 30px;
  border-radius: 50px;
  display: block;
  text-align: left;
  position: relative;
  font-family: var(--sub-font);
  font-weight: 500;
}
.btn--consultation {
  background: #b59a66;
  border: 1px solid #b59a66;
}
@media (hover: hover) {
  .btn--consultation:hover {
    color: #b59a66 !important;
    border: 1px solid #b59a66 !important;
  }
  .btn--consultation:hover::before {
    background-color: #b59a66 !important;
  }
}
.btn--works {
  background: #fff;
  border: 1px solid #0dac9f;
  color: #0dac9f;
}
@media (hover: hover) {
  .btn--works:hover {
    color: #fff !important;
    background: #0dac9f !important;
  }
}
@media (hover: hover) {
  .btn:hover {
    background: #fff;
    color: #0dac9f;
    border: 1px solid #0dac9f;
    transition: 0.3s;
  }
  .btn:hover::before {
    background-color: #0dac9f;
  }
}
.btn--more {
  max-width: 320px;
  margin: 30px 0 0;
}
.btn--more.center {
  margin: 30px auto;
}
.btn__link {
  display: block;
  width: 100%;
  text-align: center;
  padding-block: 10px;
  border: 1px solid #39393e;
  border-radius: 5px;
}

i.new_icon {
  position: absolute;
  top: 20px;
  background-color: rgba(41, 31, 31, 0.6509803922);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 10px 10px 0px;
  font-size: 20px;
  line-height: 1;
}

.accordion__item {
  background: #fff;
  border-radius: 10px;
  padding: 25px 150px 25px 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .accordion__item {
    padding: 25px 40px 25px 20px;
  }
}
.accordion__item:not(:last-child) {
  margin-bottom: 30px;
}
.accordion__item .box {
  border-right: 2px solid #dbdbdb;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .accordion__item .box {
    padding-right: 15px;
  }
}
.accordion__item .box .btn_area {
  margin-top: 20px;
  margin-left: 45px;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .accordion__item .box .btn_area {
    flex-direction: column;
    margin-left: 0;
  }
}
.accordion__item .box .btn_area a {
  margin: 0 !important;
  width: 240px;
  text-align: center;
  font-size: 16px;
}
.accordion__item .box small {
  color: #39393e;
  display: block;
  margin-top: 20px;
  margin-left: 55px;
  font-size: 12px;
  display: table;
}
@media screen and (max-width: 1024px) {
  .accordion__item .box small {
    margin-left: 35px;
  }
}
.accordion__item .box small::before {
  content: "※";
  display: table-cell;
}
@media screen and (max-width: 1024px) {
  .accordion__item .box .answer {
    font-size: 14px;
  }
}
.accordion__item::before, .accordion__item::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion__item::before {
  border-top: 2px solid #39393e;
  width: 30px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 60px;
}
@media screen and (max-width: 1024px) {
  .accordion__item::before {
    width: 15px;
    right: 13px;
  }
}
.accordion__item::after {
  border-left: 2px solid #39393e;
  width: 0;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 74px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .accordion__item::after {
    height: 15px;
    right: 20px;
  }
}
.accordion__item.open::after {
  height: 0;
}
.accordion__title h3 {
  color: #0d3864;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.6em;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .accordion__title h3 {
    font-size: 14px;
    gap: 10px;
    align-items: flex-start;
  }
}
.accordion__title h3::before {
  content: "Q";
  width: 35px;
  height: 35px;
  aspect-ratio: 1;
  background-color: #0d3864;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .accordion__title h3::before {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
.accordion__content {
  margin-top: 15px;
  font-size: 18px;
  display: none;
}
.accordion__content p {
  color: #39393e;
  position: relative;
  display: flex;
  gap: 20px;
  align-items: baseline;
  line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
  .accordion__content p {
    gap: 10px;
  }
}
.accordion__content p::before {
  content: "A";
  width: 35px;
  height: 35px;
  aspect-ratio: 1;
  background-color: #b59a66;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .accordion__content p::before {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

.slider-box .slide-type-case .swiper {
  overflow: unset;
  position: static;
}
.slider-box .slide-type-case .swiper .swiper-button {
  position: absolute;
  top: 0%;
  right: 0;
}
.slider-box .slide-type-case .swiper .swiper-button .swiper-button-prev,
.slider-box .slide-type-case .swiper .swiper-button .swiper-button-next {
  top: 25px;
  background: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.slider-box .slide-type-case .swiper .swiper-button .swiper-button-prev {
  right: 100px;
  left: auto;
}
.slider-box .slide-type-case .swiper .swiper-button .swiper-button-next,
.slider-box .slide-type-case .swiper .swiper-button .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.slider-box .slide-type-case .swiper .swiper-wrapper .swiper-slide {
  border-right: 1px solid #cbc5b9;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .slider-box .slide-type-case .swiper .swiper-wrapper .swiper-slide {
    padding-right: 20px;
  }
}

.breadcrumbs {
  padding-block: 40px 0;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    white-space: nowrap; /* 改行（行送り）を禁止させる */
    overflow-x: scroll; /* 横スクロールを可能にする */
    padding-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumbs .container {
    padding: 0 25px;
  }
}
.breadcrumbs span {
  font-size: 14px;
  margin-inline: 5px;
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 1025px) {
  .pagination.vertical {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .pagination.vertical.show {
    opacity: 1;
    pointer-events: auto;
    align-items: center;
  }
  .dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .dot.active {
    content: "";
    background: url(../images/common/dot_icon.svg) no-repeat center;
    background-size: contain;
    width: 15px;
    height: 15px;
  }
}
.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  overflow: hidden;
  backdrop-filter: blur(12px);
  top: 0;
}
@media screen and (max-width: 1024px) {
  .header {
    overflow: visible;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgb(7, 28, 50) 0%, rgba(255, 255, 255, 0) 100%);
    padding-block: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .header.is-sticky {
    backdrop-filter: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header.is-sticky::before,
  .header.is-sticky .header__nav {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/header_bg.png);
    background-blend-mode: multiply;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  padding-block: 20px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    width: 90%;
    padding-block: 0px;
  }
}
.header__logo {
  display: block;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .header__sns {
    display: flex;
    gap: 10px;
    z-index: 999;
    margin-right: 50px;
  }
}
.header__nav {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.header__nav ul {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .header__nav ul {
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 0 0 0px;
  }
}
.header__nav ul li {
  position: relative;
}
.header__nav ul li:not(:last-child) {
  margin-right: 40px;
}
.header__nav ul li.sns_link {
  margin-inline: 10px;
}
.header__nav ul li a {
  padding-bottom: 5px;
  font-size: 16px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
  font-family: var(--sub-font);
}
@media (hover: hover) {
  .header__nav ul li a:hover {
    background-position: bottom left;
    background-size: 100% 1px; /* 下線の横幅を100%にする */
  }
}
.header .contact {
  gap: 10px;
}
.header .contact_link {
  width: 170px;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s;
}
.header .contact_link a {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: var(--sub-font);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.header .contact_link:nth-child(2) {
  background-color: #b59a66;
  border: 1px solid #b59a66;
}
@media (hover: hover) {
  .header .contact_link:nth-child(2):hover {
    background-color: #fff;
    color: #b59a66;
    border: 1px solid #b59a66;
  }
  .header .contact_link:nth-child(2):hover a {
    color: #b59a66;
  }
}
.header .contact_link:nth-child(1) {
  background-color: #0dac9f;
  border: 1px solid #0dac9f;
}
@media (hover: hover) {
  .header .contact_link:nth-child(1):hover {
    background-color: #fff;
    color: #0dac9f;
    border: 1px solid #0dac9f;
  }
  .header .contact_link:nth-child(1):hover a {
    color: #0dac9f;
  }
}

/* ハンバーガー初期状態（PCでは非表示） */
.modalbtn {
  display: none;
  /* flex-direction: column; */
  /* justify-content: space-between; */
  width: 32px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 999;
  position: fixed;
  top: 15px;
  right: 15px;
  flex-wrap: wrap;
}
.modalbtn span {
  display: block;
  height: 1px;
  background-color: #fff;
  width: 100%;
  transition: all 0.3s ease;
}
.modalbtn.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 10px);
}
.modalbtn.active span:nth-child(2) {
  opacity: 0;
}
.modalbtn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

@media screen and (max-width: 1024px) {
  .modalbtn {
    display: flex;
    gap: 5px;
  }
  .header__nav {
    transition: 0.3s;
    background: linear-gradient(135deg, rgb(14, 56, 100) 0%, rgb(0, 0, 0) 100%);
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 70%;
    padding-block: 80px;
  }
  .header__nav.active {
    display: block;
    right: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .header__nav.active .nav__list {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav.active .nav__list li {
    margin-bottom: 35px;
    width: 100%;
    margin-right: 0 !important;
  }
  .contact {
    display: none;
  }
  .contact-box .contact {
    margin: 0 0 30px;
  }
  .contact-box .contact_link {
    width: 80% !important;
    margin-inline: auto !important;
    margin-bottom: 10px !important;
    border-radius: 0;
  }
}
#page .header::before {
  background-image: none;
  background-color: #c9c4ba;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  #page .header {
    overflow: visible;
    backdrop-filter: none;
    background: linear-gradient(180deg, rgb(144, 144, 144) 0%, rgba(255, 255, 255, 0) 100%);
    padding-block: 10px;
  }
}

.cta_area {
  background: #0e3864;
  background: linear-gradient(135deg, rgb(14, 56, 100) 0%, rgb(0, 0, 0) 100%);
  padding: 5.8565153734vw 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .cta_area {
    padding: 60px 0;
  }
}
.cta_area .inner {
  max-width: 1125px;
  width: fit-content;
  margin: 0 auto;
  margin-right: 55%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cta_area .inner {
    margin-inline: auto;
    position: relative;
    z-index: 1;
  }
}
.cta_area .inner span {
  display: block;
  font-size: clamp(16px, 2.3426061493vw, 30px);
  font-weight: 500;
  line-height: 1.3em;
}
.cta_area .inner h2 {
  font-size: clamp(16px, 4.0995607613vw, 56px);
  line-height: 1.8em;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .cta_area .inner h2 {
    font-size: 28px;
  }
}
.cta_area .inner p {
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .cta_area .inner p {
    font-size: 14px;
  }
}
.cta_area::before {
  position: absolute;
  top: 0;
  right: 10px;
  content: "";
  background-image: url(../images/common/cta_bg.png);
  width: 52.9282576867vw;
  max-width: 723px;
  height: 100%;
  min-height: 488px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .cta_area::before {
    background-image: url(../images/common/cta_bg_sp.jpg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-height: auto;
    z-index: 0;
    background-size: cover;
    background-position: center center;
  }
}

#media {
  background: #0e3864;
  background: linear-gradient(135deg, rgb(14, 56, 100) 0%, rgb(0, 0, 0) 100%);
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  #media {
    padding: 60px 25px;
  }
}
#media .section__container {
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #media .section__container {
    width: 100%;
  }
}
#media h2 {
  margin-inline: auto;
  margin-bottom: 60px;
}
#media .flex {
  justify-content: space-between;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  #media .flex {
    flex-direction: column;
    row-gap: 10px !important;
  }
}
#media .flex li {
  width: 32.5%;
  border-radius: 5px;
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #media .flex li {
    width: 100%;
    aspect-ratio: 23/12;
  }
}
#media .flex li small {
  display: block;
  font-size: 14px;
}
#media .flex li img {
  display: block;
  margin: 0 auto;
}
#media .flex li a {
  display: block;
  width: 100%;
  height: 100%;
  align-content: center;
}
#media .flex li:nth-child(2) {
  background: url(../images/common/media_02.jpg) no-repeat center center;
  background-size: cover;
}
#media .flex li:nth-child(2) a {
  font-size: 22px;
}
#media .flex li:nth-child(3) {
  background-color: #0dac9f;
}
#media .flex li:nth-child(3) img {
  margin-bottom: 15px;
}

#page #media .section__container {
  padding: 0;
  text-align: center;
}
#page #media .section__container h2 b {
  position: relative;
}
#page #media .section__container h2 b::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  width: 5px;
  height: 5px;
  background-color: #0dac9f;
  border-radius: 50%;
}

.sp-contact-nav {
  display: flex;
  position: fixed;
  bottom: -1px;
  width: 100%;
  z-index: 9;
}
.sp-contact-nav a {
  padding: 20px 0px;
  text-align: center;
  display: block;
  width: 50%;
}
.sp-contact-nav a:nth-child(1) {
  background-color: #0dac9f;
}
.sp-contact-nav a:nth-child(2) {
  background-color: #b59a66;
}

.footer {
  background: #0e3864;
  background: linear-gradient(135deg, rgb(14, 56, 100) 0%, rgb(0, 0, 0) 100%);
  padding-block: 70px 40px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-block: 40px 100px;
  }
}
.footer__inner {
  max-width: 1125px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__inner--left {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__inner--left {
    width: 100%;
    text-align: center;
  }
}
.footer__inner--left .f-logo {
  width: 200px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer__inner--left .f-logo {
    margin-inline: auto;
    margin-bottom: 20px;
    max-width: 120px;
  }
}
.footer__inner--left .f-logo img {
  width: 100%;
}
.footer__inner--left .company-info {
  padding-bottom: 25px;
}
.footer__inner--left .company-info span,
.footer__inner--left .company-info a {
  display: block;
  font-family: var(--sub-font);
}
.footer__inner--left .company-info span {
  margin-bottom: 10px;
}
.footer__inner--left .company-info a {
  border: 1px solid #d3b884;
  width: fit-content;
  padding: 0 10px;
  color: #d3b884;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .footer__inner--left .company-info a {
    margin-inline: auto;
  }
}
.footer__inner--left .company-info a::after {
  content: "";
  background-color: #d3b884;
  mask-image: url(../images/common/blank_icon.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 12px;
  height: 12px;
  display: block;
}
@media (hover: hover) {
  .footer__inner--left .company-info a:hover {
    background-color: #d3b884;
    color: #fff;
  }
  .footer__inner--left .company-info a:hover::after {
    background-color: #fff;
  }
}
.footer__inner--right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .footer__inner--right {
    width: 100%;
  }
}
.footer__inner--right .grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  margin-bottom: 100px;
  width: 100%;
  gap: 0px;
}
@media screen and (max-width: 1024px) {
  .footer__inner--right .grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}
.footer__inner--right .grid .grid__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__inner--right .grid .grid__item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #d3b884;
}
.footer__inner--right .grid .grid__item ul li {
  font-size: 14px;
  margin-bottom: 10px;
}
.footer__inner--right .grid .grid__item ul li a {
  color: #fff;
}
@media (hover: hover) {
  .footer__inner--right .grid .grid__item ul li a:hover {
    text-decoration: underline;
  }
}
.footer__inner--sns {
  display: flex;
  justify-content: end;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__inner--sns {
    justify-content: center;
    gap: 15px;
    margin-block: 20px 30px;
  }
}
.footer__inner--nav {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .footer__inner--nav {
    flex-direction: unset;
    justify-content: center;
    gap: 30px;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}
.footer__inner--nav--item a {
  font-family: var(--sub-font);
}
@media screen and (max-width: 1024px) {
  .footer__inner--nav--item a {
    font-size: 14px;
  }
}
.footer__inner--nav--item a.btn {
  margin-top: 0;
  text-align: center;
}
.footer__inner--nav--item a.btn::before {
  display: none;
}
.footer__inner--nav--item.pp a {
  position: relative;
}
.footer__inner--nav--item.pp a::before {
  content: "";
  position: absolute;
  background: url(../images/common/blank_icon.svg) no-repeat center;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}
.footer__inner--nav:last-child {
  justify-content: space-between;
  row-gap: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__inner--nav:last-child {
    margin-top: 30px;
    row-gap: 10px;
  }
  .footer__inner--nav:last-child li {
    width: 100%;
  }
}
.footer__inner--copy {
  font-size: 14px;
  display: block;
  margin-top: 20px;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .footer__inner--copy {
    font-size: 9px;
    margin: 0 auto;
  }
}

#popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#popup-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
#popup-modal .modal-content {
  background: #f2f2f2;
  padding: 80px 0;
  max-width: 870px;
  overflow: scroll;
  height: auto;
  max-height: 85vh;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  #popup-modal .modal-content {
    width: 95%;
    padding: 40px 25px;
  }
}
#popup-modal .modal-content * {
  color: #1b252f;
}
#popup-modal .modal-content #modal-body {
  max-width: 630px;
  margin-inline: auto;
}
#popup-modal .modal-content #modal-body .case-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 10px;
}
#popup-modal .modal-content #modal-body .case-tag li {
  width: fit-content;
  border: 1px solid #b59a66;
  padding: 0px 5px;
  color: #b59a66;
}
@media screen and (max-width: 1024px) {
  #popup-modal .modal-content #modal-body .case-tag li {
    font-size: 12px;
  }
}
#popup-modal .modal-content #modal-body .company-name {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #popup-modal .modal-content #modal-body .company-name {
    font-size: 14px;
    word-break: auto-phrase;
    letter-spacing: -0.01em;
  }
}
#popup-modal .modal-content #modal-body h2 {
  font-size: 24px;
  line-height: 1.6em;
  border-bottom: 1px solid;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  #popup-modal .modal-content #modal-body h2 {
    font-size: 18px;
  }
}
#popup-modal .modal-content #modal-body p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #popup-modal .modal-content #modal-body p {
    font-size: 14px;
  }
}
#popup-modal .modal-content #modal-body img {
  margin-bottom: 20px;
}

:root {
  /* カラー設定 */
  --color-primary: #3498db;
  --color-secondary: #2ecc71;
  --color-accent: #e74c3c;
  --color-background: #ffffff;
  --color-text: #fff;
  /* フォント設定 */
  --base-font: "Noto Serif JP", serif;
  --sub-font: "Noto Sans", sans-serif;
  --font-size-base: 16px;
  --font-size-heading: 24px;
  /* スペーシング */
  --spacing-10: 10px;
  --spacing-15: 15px;
  --spacing-20: 20px;
  --spacing-25: 25px;
  --spacing-30: 30px;
  --spacing-35: 35px;
  --spacing-40: 40px;
  --spacing-45: 45px;
  --spacing-50: 50px;
  /* ボーダー・シャドウ */
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#home .fv {
  overflow: hidden;
  background: #0e3864;
  background: linear-gradient(135deg, rgba(14, 56, 100, 0.5) 0%, rgb(0, 0, 0) 100%);
  position: relative;
}
#home .fv__decoration {
  display: flex;
  position: absolute;
  bottom: 15%;
  right: 5%;
  z-index: 9;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  #home .fv__decoration {
    top: 36%;
    bottom: auto;
    gap: 5px;
  }
}
#home .fv__decoration img {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  #home .fv__decoration img {
    width: 90px;
  }
}
#home .fv__container {
  display: flex;
  padding: 0 3.2942898975vw;
  justify-content: space-between;
  margin-inline: auto;
  height: 750px;
}
@media screen and (max-width: 1024px) {
  #home .fv__container {
    flex-direction: column-reverse;
    padding-inline: 25px;
  }
}
#home .fv__container--left {
  width: 50%;
  padding: 80px 0px 80px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  #home .fv__container--left {
    width: 100%;
    padding: 40px 0px 40px 0px;
  }
}
#home .fv__container--left .color {
  color: #c6a25d;
  font-size: 42px;
}
#home .fv__container--left .color small {
  color: #c6a25d;
}
#home .fv__container--left .color small b {
  color: #c6a25d;
  font-size: 92px;
}
#home .fv__container--left h1 {
  width: 38.7994143485vw;
  max-width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #home .fv__container--left h1 {
    max-width: 100%;
    width: 100%;
  }
}
#home .fv__container--left h1 img {
  width: 100%;
}
#home .fv__container--left .btn {
  text-align: center;
}
#home .fv__container--left .btn::before {
  display: none;
}
#home .fv__container--right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 42.4597364568vw;
  position: relative;
  overflow: hidden;
  /* スライドの動き等速 */
  /* 画像のサイズ調整 */
}
@media screen and (max-width: 1024px) {
  #home .fv__container--right {
    max-width: 100%;
    height: 60vh;
  }
}
#home .fv__container--right .swiper {
  height: 100%;
  width: calc(50% - 10px);
  position: absolute !important;
}
#home .fv__container--right .swiper.swiper1 {
  left: 0;
  top: 0;
}
#home .fv__container--right .swiper.swiper2 {
  left: calc(50% + 10px);
  bottom: 0;
}
#home .fv__container--right .swiper-wrapper {
  transition-timing-function: linear;
}
#home .fv__container--right .swiper-slide {
  height: auto !important; /* スライドの高さを固定（お好みで調整） */
  border: 1px solid #707070;
  border-radius: 10px;
  overflow: hidden;
}
#home .fv__container--right .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or 'contain' depending on your layout */
  display: block;
}
@keyframes svelte-9bu12d-logo-list-slider {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: -2772px 0;
  }
}
#home .fv .scroll-infinity__wrap {
  position: relative;
  width: 100%;
  height: 90px;
  background-image: url(../images/top/slide_logo.png);
  background-repeat: repeat;
  background-size: cover;
  animation: svelte-9bu12d-logo-list-slider 46s linear infinite;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  #home .fv .scroll-infinity__wrap {
    height: 60px;
  }
}
#home .section {
  padding: 100px 0px;
}
@media screen and (max-width: 1024px) {
  #home .section {
    padding: 60px 0px;
    padding-inline: 25px;
  }
}
#home .section__title {
  font-size: 4.2rem;
  margin-bottom: 60px;
  color: #fff;
  line-height: 1.2em;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  #home .section__title {
    font-size: 3.2rem;
    padding-inline: 10px;
    margin-bottom: 30px;
  }
}
#home .section__title b {
  width: fit-content;
  position: relative;
  display: block;
  margin-inline: auto;
  font-weight: 500;
  margin-bottom: 5px;
}
#home .section__title b::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  width: 5px;
  height: 5px;
  background-color: #0dac9f;
  border-radius: 50%;
}
#home .section__title small {
  font-size: 1.6rem;
  display: block;
  line-height: 1.8em;
}
@media screen and (max-width: 1024px) {
  #home .section__title small {
    font-size: 1.4rem;
    margin-top: 15px;
    text-align: center;
  }
}
#home .section__title--line {
  font-size: 2.4rem;
  align-items: center;
  display: flex;
  justify-content: left;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  #home .section__title--line {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1;
  }
}
#home .section__title--line::before {
  background-color: #ffffff; /* 横線の色 */
  content: "";
  height: 1px; /* 横線の高さ */
  width: 40px; /* 横線の長さ */
}
#home .section__title--sub {
  font-size: 3.4rem;
  margin-bottom: 1em;
  line-height: 1.4em;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #home .section__title--sub {
    font-size: 1.8rem;
  }
}
#home .section--works {
  background: #f2f2f2;
}
#home .section--problem {
  background: #1b252f;
}
#home .section--feature {
  padding-block: 0;
}
#home .section--feature .section__container {
  max-width: unset;
}
#home .section--case {
  overflow: hidden;
  background: #1b252f;
  padding-block: 100px 140px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #home .section--case {
    padding-block: 80px;
  }
}
#home .section--case .btn {
  width: fit-content;
  max-width: unset;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #home .section--case .btn {
    position: unset;
    margin-top: 70px;
  }
}
#home .section--case .btn::before {
  display: none;
}
#home .section--case .slide-content .meta-box {
  margin-block: 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #home .section--case .slide-content .meta-box {
    flex-direction: column-reverse;
  }
  #home .section--case .slide-content .meta-box time {
    font-size: 12px;
  }
  #home .section--case .slide-content .meta-box .company-name {
    font-size: 14px;
    word-break: auto-phrase;
  }
}
#home .section--case .slide-content .slide-title {
  font-size: 20px;
  line-height: 1.8em;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  #home .section--case .slide-content .slide-title {
    font-size: 16px;
  }
}
#home .section--case .slide-content .case-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 10px;
}
#home .section--case .slide-content .case-tag--item {
  width: fit-content;
  border: 1px solid #b59a66;
  padding: 5px;
  color: #b59a66;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  #home .section--case .slide-content .case-tag--item {
    font-size: 12px;
    line-height: 1;
    display: block;
  }
}
#home .section--case .slide-content p {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  #home .section--case .slide-content p {
    font-size: 12px;
  }
}
#home .section--case .slide-media {
  background-color: #fff;
  aspect-ratio: 3/2;
}
#home .section--case .slide-media img {
  margin: 0 auto;
  height: 100%;
  object-fit: contain;
}
#home .section--plan {
  background: url(../images/top/plan_bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  #home .section--plan {
    padding-bottom: 60px;
    background: url(../images/top/plan_bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
#home .section--plan .section__container {
  max-width: 1000px;
}
#home .section--plan .section__container h2 {
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  #home .section--plan .section__container h2 {
    margin-bottom: 80px;
  }
}
#home .section--plan .plan_box {
  place-items: baseline;
  margin-bottom: 30px;
}
#home .section--plan .plan_box--card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  margin: 0 auto;
}
#home .section--plan .plan_box--card .plan-header {
  background: #0d3864;
  padding: 25px 0;
  border-radius: 16px 16px 0 0;
  color: #fff;
}
#home .section--plan .plan_box--card .plan-header h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
#home .section--plan .plan_box--card .plan-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
}
#home .section--plan .plan_box--card .inner {
  padding: 10px 25px 25px;
}
#home .section--plan .plan_box--card .inner .plan-price {
  margin: 0px;
  font-size: 28px;
  font-weight: bold;
  color: #4b4b4b;
}
#home .section--plan .plan_box--card .inner .plan-price .price {
  color: #0d3864;
  font-family: var(--sub-font);
  font-size: 42px;
}
#home .section--plan .plan_box--card .inner .plan-price .yen {
  font-size: 16px;
  margin-left: 4px;
  color: #0d3864;
  font-family: var(--sub-font);
}
#home .section--plan .plan_box--card .inner .plan-message {
  background: #f4f4f4;
  color: #000000;
  font-size: 18px;
  line-height: 1.4em;
  padding: 8px;
  border-radius: 8px;
  margin: 10px 0 20px;
  font-weight: 500;
}
#home .section--plan .plan_box--card .inner .plan-message span {
  color: #0dac9f;
  font-weight: 500;
}
#home .section--plan .plan_box--card .inner .plan-items {
  list-style: none;
  padding: 0;
  margin: 0 0 0px;
}
#home .section--plan .plan_box--card .inner .plan-items li {
  margin: 6px 0;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 15px;
}
#home .section--plan .plan_box--card .inner .plan-items li::before {
  content: "";
  background-image: url(../images/common/check_01.svg);
  margin-right: 8px;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  background-size: 100%;
  background-repeat: no-repeat;
}
#home .section--plan .plan_box--card .inner .plan-items li.enabled {
  color: #000;
}
#home .section--plan .plan_box--card .inner .plan-items li.disabled {
  color: #b1b1b1;
}
#home .section--plan .plan_box--card .inner .plan-items li.disabled::before {
  content: "";
  background-image: url(../images/common/check_04.svg);
}
#home .section--plan .plan_box--card .inner .plan-button {
  display: inline-block;
  width: 100%;
  background: #0dac9f;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  padding-block: 20px;
  padding-left: 50px;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.3s;
}
#home .section--plan .plan_box--card .inner .plan-button:hover {
  background: #fff;
  color: #0dac9f;
}
#home .section--plan .plan_box--card:nth-child(2) .plan-header {
  background-color: #21374e;
}
#home .section--plan .plan_box--card:nth-child(2) .plan-price .price,
#home .section--plan .plan_box--card:nth-child(2) .plan-price .yen {
  color: #21374e;
}
#home .section--plan .plan_box--card:nth-child(2) .plan-items li::before {
  content: "";
  background-image: url(../images/common/check_02.svg);
}
#home .section--plan .plan_box--card:nth-child(3) .plan-header {
  background-color: #484e56;
}
#home .section--plan .plan_box--card:nth-child(3) .plan-price .price,
#home .section--plan .plan_box--card:nth-child(3) .plan-price .yen {
  color: #484e56;
}
#home .section--plan .plan_box--card:nth-child(3) .plan-items li::before {
  content: "";
  background-image: url(../images/common/check_03.svg);
}
#home .section--plan .desc {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #home .section--plan .desc {
    font-size: 14px;
  }
}
#home .section--plan .btn {
  margin-top: 0;
  text-align: center;
}
#home .section--flow {
  background-color: #e2ddd3;
}
#home .section--flow .section__container {
  display: flex;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container {
    width: 100%;
    flex-direction: column;
  }
}
#home .section--flow .section__container .left {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .left {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .left h2 {
    margin-inline: auto;
  }
}
#home .section--flow .section__container .left h2 b,
#home .section--flow .section__container .left h2 small {
  color: #0d3864;
}
#home .section--flow .section__container .right {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .right {
    width: 100%;
  }
}
#home .section--flow .section__container .flow__step--item {
  background-color: #f5f4f2;
  padding: 40px 40px 40px 105px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--item {
    padding: 60px 25px 30px;
  }
}
#home .section--flow .section__container .flow__step--item:not(:last-child) {
  margin-bottom: 30px;
}
#home .section--flow .section__container .flow__step--item:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 20px 0 20px;
  border-color: #f5f4f2 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
}
#home .section--flow .section__container .flow__step--item:last-child h3 {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--item .flex {
    flex-direction: column;
  }
}
#home .section--flow .section__container .flow__step--item .btn {
  width: 200px;
  font-size: 16px;
  margin-top: 20px;
  padding: 12px 25px;
  margin-left: 0;
  margin-right: 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--item .btn {
    width: 100%;
  }
}
#home .section--flow .section__container .flow__step--item .btn::before {
  display: none;
}
#home .section--flow .section__container .flow__step--num {
  background: #0d3864;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 30px 5px 20px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
#home .section--flow .section__container .flow__step--title {
  color: #0d3864;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 1.6em;
  margin-bottom: 15px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 20px;
    row-gap: 15px;
  }
}
#home .section--flow .section__container .flow__step--title span {
  display: flex;
  color: #39393e;
  font-size: 14px;
  font-weight: 400;
  gap: 5px;
  background: #fff;
  width: fit-content;
  padding: 0 15px;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--title span {
    font-size: 12px;
    padding: 5px 15px;
  }
}
#home .section--flow .section__container .flow__step--title span img {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--title span img {
    width: 12px;
  }
}
#home .section--flow .section__container .flow__step--desc {
  font-size: 16px;
  color: #39393e;
  line-height: 1.8em;
  word-break: auto-phrase;
}
@media screen and (max-width: 1024px) {
  #home .section--flow .section__container .flow__step--desc {
    font-size: 14px;
  }
}
#home .section--flow .section__container .flow__step--desc b {
  font-weight: 600;
  color: #39393e;
  font-feature-settings: "palt";
  font-size: 14px;
  line-height: 1.6em;
  display: block;
}
#home .section--flow .section__container .flow__step img {
  margin-top: 20px;
}
#home .section--faq {
  background: url(../images/top/faq_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 140px 0;
}
@media screen and (max-width: 1024px) {
  #home .section--faq {
    padding: 80px 0;
  }
}
#home .section--faq h2 {
  margin-inline: auto;
}
#home .section__container {
  max-width: 1125px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
#home .section__container--s {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #home .section__container--s {
    padding-inline: 25px;
  }
}
#home #problem h2 {
  text-align: right;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  #home #problem h2 {
    text-align: center;
  }
}
#home #problem h2 b {
  margin-left: auto;
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  #home #problem h2 b {
    font-size: 20px;
  }
}
#home #problem .grid {
  margin: 40px 0 0;
}
@media screen and (max-width: 1024px) {
  #home #problem .grid {
    flex-direction: column;
  }
}
#home #problem .grid__item {
  background-color: #0d3864;
}
@media screen and (max-width: 1024px) {
  #home #problem .grid__item {
    width: 100%;
  }
}
#home #problem .grid__item figure {
  position: relative;
  height: 100%;
}
#home #problem .grid__item figure::before, #home #problem .grid__item figure::after {
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
#home #problem .grid__item figure::before {
  border-top: solid 35px #1b252f;
  border-right: solid 35px transparent;
  top: -1px;
}
#home #problem .grid__item figure::after {
  border-bottom: solid 35px #1b252f;
  border-left: solid 35px transparent;
  bottom: 0%;
  right: 0;
  left: auto;
}
#home #problem .grid__item figure img {
  width: 100%;
  border-radius: 0;
}
#home #problem .grid__item figure figcaption {
  font-size: 1.5rem;
  padding: 15px 25px;
}
#home #problem .grid__item figure figcaption h3 {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.6em;
}
@media screen and (max-width: 1024px) {
  #home #problem .grid__item figure figcaption h3 {
    font-size: 16px;
  }
}
#home #problem .grid__item figure figcaption h3 b {
  color: #d3b884;
}
#home #feature {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  #home #feature {
    padding-inline: 0px;
  }
}
#home #feature .section__container {
  height: 110vh !important;
  padding-block: 70px;
}
@media screen and (max-width: 1024px) {
  #home #feature .section__container {
    padding-block: 80px;
  }
}
#home #feature .section__container .en {
  margin-bottom: 30px;
  display: block;
  font-size: 18px;
}
#home #feature .section__container .inner {
  max-width: 1125px;
  margin-inline: auto;
  padding-inline: 120px;
}
@media screen and (max-width: 1024px) {
  #home #feature .section__container .inner {
    padding-inline: 25px;
  }
}
#home #feature .section__container .inner .desc {
  margin-bottom: 45px;
  line-height: 2em;
}
@media screen and (max-width: 1024px) {
  #home #feature .section__container .inner .desc {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
#home #feature .section__container .inner .list {
  background: #2e3d4d;
  background: linear-gradient(235deg, rgba(46, 61, 77, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  mix-blend-mode: hard-light;
  width: fit-content;
  padding: 25px 40px 25px;
}
@media screen and (max-width: 1024px) {
  #home #feature .section__container .inner .list {
    font-size: 12px;
    padding: 20px 20px;
  }
}
#home #feature .section__container .inner .list span {
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 1024px) {
  #home #feature .section__container .inner .list span {
    font-size: 14px;
  }
}
#home #feature .section__container .inner .list p {
  line-height: 1.8em;
}
@media screen and (max-width: 1366px) {
  #home #feature .section__container .inner .list p {
    font-size: 12px;
    line-height: 1.6em;
  }
}
#home #feature01 {
  background: url(../images/top/feature01_bg.jpg) no-repeat center center;
  background-size: cover;
}
#home #feature02 {
  background: url(../images/top/feature02_bg.jpg) no-repeat center center;
  background-size: cover;
}
#home #feature03 {
  background: url(../images/top/feature03_bg.jpg) no-repeat center center;
  background-size: cover;
}
#home #services .flex--alternating .left {
  width: 50%;
}
#home #services .flex--alternating .right {
  width: 50%;
  padding: 80px 0px 80px 50px;
}
#home #services .flex--alternating:not(:last-child) {
  margin-bottom: 120px;
}
#home #services .flex--alternating:nth-child(even) .right {
  padding: 80px 50px 80px 0px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  font-size: 40px;
  color: #0d3864 !important;
  cursor: pointer;
}

#page main {
  padding-top: 95px;
}
@media screen and (max-width: 1024px) {
  #page .section__container {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 1024px) {
  #page .section .flex {
    flex-direction: column;
    row-gap: 60px;
    padding-top: 0;
  }
}
#page .section__container {
  max-width: 1125px;
  margin: 0 auto;
  padding-block: 120px 180px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #page .section__container {
    padding-block: 60px 80px;
  }
}
#page .section__title {
  font-size: 4.2rem;
  margin-bottom: 1em;
  color: #fff;
  line-height: 1.2em;
  width: fit-content;
}
#page .section__title small {
  font-size: 1.6rem;
  display: block;
  line-height: 1.8em;
}
#page .section--contact .left {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .left {
    width: 100%;
  }
}
#page .section--contact .left h2 {
  line-height: 1.6em;
}
#page .section--contact .left h2 * {
  color: #0d3864;
}
#page .section--contact .left h2 b {
  display: block;
  font-size: 18px;
  position: relative;
  line-height: 1;
  margin-bottom: 10px;
}
#page .section--contact .left h2 b::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: #0dac9f;
  border-radius: 50%;
}
#page .section--contact .left h2 small {
  font-size: 35px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .left h2 small {
    font-size: 24px;
  }
}
#page .section--contact .left p {
  color: #0d3864;
}
#page .section--contact .right {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right {
    width: 100%;
  }
}
#page .section--contact .right form table {
  width: 100%;
}
#page .section--contact .right form table tr {
  display: block;
  margin-bottom: 20px;
}
#page .section--contact .right form table tr.plan-select {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr.plan-select {
    margin-top: 0px;
  }
}
#page .section--contact .right form table tr.plan-select th {
  color: #1b252f;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr.plan-select th {
    padding-bottom: 15px;
  }
}
#page .section--contact .right form table tr.plan-select th p {
  margin-block: 20px;
  color: #1b252f;
  word-break: auto-phrase;
}
#page .section--contact .right form table tr.plan-select th small {
  font-size: 14px;
  display: block;
  margin-block: 10px;
  color: #1b252f;
  position: relative;
  display: table;
}
#page .section--contact .right form table tr.plan-select th small::before {
  content: "※";
  display: table-cell;
}
#page .section--contact .right form table tr.plan-select td {
  flex-direction: column;
  color: #1b252f;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr.plan-select td {
    display: flex;
    gap: 10px;
  }
}
#page .section--contact .right form table tr.plan-select td span {
  margin-left: 0;
  color: #1b252f;
}
#page .section--contact .right form table tr.plan-select td label {
  display: flex;
  align-items: baseline;
  opacity: 1;
  transition: opacity 0.3s;
}
#page .section--contact .right form table tr.plan-select td label.not-selected {
  opacity: 0.3;
}
#page .section--contact .right form table tr.plan-select td label.selected {
  opacity: 1;
}
#page .section--contact .right form table tr.plan-select td label.active {
  border-color: #0073aa;
  background-color: #f0f8ff;
  opacity: 1;
}
#page .section--contact .right form table tr.plan-select td label input {
  width: fit-content;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr.plan-select td label input {
    margin-right: 4px;
  }
}
#page .section--contact .right form table tr.plan-select td.radio-group p {
  font-size: 18px;
  font-weight: bold;
  color: #1b252f;
  margin-top: 20px;
  margin-bottom: 10px;
}
#page .section--contact .right form table tr.option-box {
  margin-top: 40px;
  margin-bottom: 60px;
}
#page .section--contact .right form table tr.option-box th {
  display: block;
  margin-bottom: 30px;
}
#page .section--contact .right form table tr.option-box td {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr.option-box td {
    gap: 20px 15px;
  }
}
#page .section--contact .right form table tr.option-box td span {
  width: fit-content;
  margin-left: 0;
}
#page .section--contact .right form table tr.option-box td span label {
  display: flex;
  margin-bottom: 0;
  align-items: center;
}
#page .section--contact .right form table tr.option-box td span label span {
  font-size: 16px;
}
#page .section--contact .right form table tr th {
  text-align: left;
  padding-left: 3em;
  min-width: 240px;
  color: #1b252f;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr th {
    display: block;
    padding-left: 0em;
    padding-right: 0;
    margin-bottom: 10px;
  }
}
#page .section--contact .right form table tr th span {
  display: inline-block;
  font-size: 12px;
  margin-right: 15px;
  padding: 0px 5px;
  background-color: #0dac9f;
}
#page .section--contact .right form table tr th span.optional {
  background-color: #7b7b7b;
}
#page .section--contact .right form table tr td {
  width: 100%;
  padding-left: 3em;
  color: #1b252f;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form table tr td {
    display: flex;
    align-items: center;
    gap: 0px;
    padding-left: 0em;
  }
}
#page .section--contact .right form label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1b252f;
}
#page .section--contact .right form label span {
  margin-left: 8px;
  font-size: 12px;
  color: #1b252f;
}
#page .section--contact .right form input,
#page .section--contact .right form select,
#page .section--contact .right form textarea {
  width: 100%;
  padding: 20px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  color: #000;
}
#page .section--contact .right form textarea {
  min-height: 200px;
  resize: vertical;
}
#page .section--contact .right form input[type=radio] {
  width: auto !important;
  height: auto;
  padding: 0 !important;
  margin-right: 8px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form input[type=radio] {
    margin-right: 4px;
  }
}
#page .section--contact .right form input[type=checkbox] {
  width: auto !important;
  height: auto;
  padding: 0 !important;
  margin-right: 8px;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form input[type=checkbox] {
    margin-right: 4px;
  }
}
#page .section--contact .right form input[type=number] {
  -moz-appearance: number-input;
  -webkit-appearance: none;
  appearance: none;
}
#page .section--contact .right form input[type=number]::-webkit-inner-spin-button,
#page .section--contact .right form input[type=number]::-webkit-outer-spin-button {
  opacity: 1 !important;
  -webkit-appearance: inner-spin-button;
  appearance: auto;
}
#page .section--contact .right form input[type=submit],
#page .section--contact .right form button {
  width: 100%;
  padding: 14px 0;
  margin-top: 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #0dac9f;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #page .section--contact .right form input[type=submit],
  #page .section--contact .right form button {
    font-size: 14px;
  }
}
#page .section--contact .right form a {
  text-decoration: underline;
  font-size: 13px;
}
#page .section--contact .right form p.optional {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
}
#page .section--contact .right form .privacy {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  color: #1b252f;
}
#page .section--contact .right form .privacy label {
  margin-bottom: 10px;
  align-items: center;
}
#page .section--contact .right form .privacy label span {
  font-size: 16px;
  margin-left: 0;
}
#page .section--contact .right form .privacy p {
  color: #1b252f;
  word-break: auto-phrase;
}
#page .section--contact .right form .privacy a {
  color: #0dac9f;
  padding-right: 5px;
  font-size: 16px;
}
#page .section--thanks h1 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #1b252f;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #page .section--thanks h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
#page .section--thanks h1 small {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  color: #1b252f;
}
#page .section--thanks .desc {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  color: #1b252f;
}
@media screen and (max-width: 1024px) {
  #page .section--thanks .desc {
    font-size: 16px;
  }
}
#page .section--thanks a.btn-back {
  display: block;
  width: 200px;
  border-radius: 5px;
  margin: 0 auto;
  background-color: #0d3864;
  text-align: center;
  padding: 20px;
}
#page #estimate .left p {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left h2 {
    margin-bottom: 0;
  }
}
#page #estimate .left .item_img {
  max-width: 400px;
}
#page #estimate .left .item_img ul {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .item_img ul {
    grid-template-columns: 1fr 1fr;
  }
}
#page #estimate .left .item_img ul li {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
#page #estimate .left .item_img ul li span {
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .item_img ul li span {
    font-size: 12px;
  }
}
#page #estimate .left .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
#page #estimate .left .modal-content {
  display: block;
  margin: 100px auto;
  max-width: 490px;
  background: #f2f2f2;
  padding: 40px;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content {
    padding: 30px 25px;
  }
}
#page #estimate .left .modal-content img {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 30px;
}
#page #estimate .left .modal-content table tr:not(:last-child) td,
#page #estimate .left .modal-content table tr:not(:last-child) th {
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content table tr:not(:last-child) td,
  #page #estimate .left .modal-content table tr:not(:last-child) th {
    padding-bottom: 30px;
  }
}
#page #estimate .left .modal-content table td,
#page #estimate .left .modal-content table th {
  color: #1b252f;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content table td,
  #page #estimate .left .modal-content table th {
    display: block;
  }
}
#page #estimate .left .modal-content table td {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content table td {
    padding-right: 0;
    padding-bottom: 5px !important;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
  }
}
#page #estimate .left .modal-content table th {
  font-size: 14px;
  letter-spacing: 0.01em;
}
#page #estimate .left .modal-content table th small {
  font-size: 12px;
  color: #b70000;
  display: block;
}
#page #estimate .left .modal-content .caption {
  text-align: left;
  color: #1b252f;
  border-bottom: 1px solid #0d3864;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content .caption {
    font-size: 20px;
  }
}
#page #estimate .left .modal-content .close {
  position: absolute;
  top: 10px;
  right: 0;
  color: #1b252f;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  right: 20px;
  width: fit-content;
  left: unset;
  display: block;
}
@media screen and (max-width: 1024px) {
  #page #estimate .left .modal-content .close {
    font-size: 30px;
  }
}
#page #estimate .right .left {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #page #estimate .right .left {
    margin-top: 40px;
  }
}
#page #estimate td span {
  font-size: 16px;
  color: #1b252f;
}
@media screen and (max-width: 1024px) {
  #page #estimate td span {
    font-size: 14px;
    display: block;
  }
}
#page #estimate td span.mwform-radio-field {
  margin-right: auto;
}
#page #estimate td span.total-price {
  font-size: 24px !important;
  margin-left: 8px;
}
#page #estimate td input {
  max-width: 240px;
  padding: 12px 20px;
}
@media screen and (max-width: 1024px) {
  #page #estimate td input {
    max-width: unset;
    width: 65%;
  }
}

.error {
  color: #b70000 !important;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  tr.w-100 input {
    width: 100% !important;
  }
}

#page .policy .content {
  max-width: 1000px;
  background: #fff;
  margin: 80px auto;
  padding: 60px;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  #page .policy .content {
    width: 90%;
    padding: 60px 25px;
    margin-top: 0;
  }
}
#page .policy .content * {
  color: #1b252f;
}
#page .policy .content h1 {
  margin: 0 0 50px 0;
  font-size: 36px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #page .policy .content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
#page .policy .content h2 {
  margin: 50px 0 40px 0;
  padding: 5px 0 5px 20px;
  line-height: 1em;
  font-size: 24px;
  border-left: 5px solid #0e3864;
}
@media screen and (max-width: 1024px) {
  #page .policy .content h2 {
    font-size: 18px;
    margin: 50px 0 20px 0;
    line-height: 1.4em;
    padding-block: 0;
  }
}
@media screen and (max-width: 1024px) {
  #page .policy .content p {
    font-size: 14px;
  }
}

.radio-group01 .horizontal-item {
  position: relative;
}

.radio-group01 .horizontal-item label {
  margin-bottom: 0 !important;
}

.radio-group01 .horizontal-item:nth-of-type(1)::after {
  content: "標準（椅子装飾：4アイテム／ロールアップ：1アイテム）";
  display: block;
  font-size: 14px;
  color: #666;
  margin-left: 24px;
}

.radio-group01 .horizontal-item:nth-of-type(2)::after {
  content: "標準（椅子装飾：4アイテム／ロールアップ：1アイテム／タペストリー：1アイテム／テーブルクロス：1アイテム）";
  display: block;
  font-size: 14px;
  color: #666;
  margin-left: 24px;
}

.radio-group01 .horizontal-item:nth-of-type(3)::after {
  content: "標準（椅子装飾：8アイテム／ロールアップ：2アイテム／タペストリー：2アイテム／テーブルクロス：2アイテム／マットシート：2アイテム／壁面全体タペストリー：2アイテム）";
  display: block;
  font-size: 14px;
  color: #666;
  margin-left: 24px;
}

.radio-group01 .horizontal-item:nth-of-type(1),
.radio-group01 .horizontal-item:nth-of-type(2),
.radio-group01 .horizontal-item:nth-of-type(3) {
  margin-bottom: 10px;
}

.radio-group01 .horizontal-item.selected:nth-of-type(1)::after,
.radio-group01 .horizontal-item.selected:nth-of-type(2)::after,
.radio-group01 .horizontal-item.selected:nth-of-type(3)::after {
  opacity: 1;
}

.radio-group01 .horizontal-item.not-selected:nth-of-type(1)::after,
.radio-group01 .horizontal-item.not-selected:nth-of-type(2)::after,
.radio-group01 .horizontal-item.not-selected:nth-of-type(3)::after {
  opacity: 0.3;
}