@charset "UTF-8";
/*###################################################################
※※※※ 直接編集禁止 ※※※※
このCSSファイルはSassから生成されていますので直接編集しないようご注意ください。
  編集は拡張子「.scss」ファイルを編集して当ファイルにコンパイルしてください。
  もしくは別途cssファイルを作成して読み込ませてください。
###################################################################*/
:root {
  --base: #d3d3d3;
  --main: #022c47;
  --main-l: #0066A7;
  --text: #000;
}

/*###################################################################
  base（共通設定）
###################################################################*/
/*----------------------------------
  html
----------------------------------*/
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: clamp(4.25rem, 2.6741803279rem + 3.2786885246vw, 5.625rem);
}
@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 70px;
  }
}

body {
  background-color: var(--base);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

/*###################################################################
  animation（共通設定）
###################################################################*/
/*----------------------------------
  zoom
----------------------------------*/
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*----------------------------------
  mv-title
----------------------------------*/
@-webkit-keyframes mvTitle {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes mvTitle {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}
.header_sticky {
  position: fixed;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.header_sticky .header__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header_sticky .header__inner {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.header_sticky .header__logo {
  max-width: clamp(7rem, 0.4818368107rem + 13.5618479881vw, 12.6875rem);
}
.header_sticky .header__logo-link {
  position: static;
}
.header_sticky .header__logo-top-img1 {
  display: none;
}
.header_sticky .header__logo-top-img2 {
  display: inline-block;
}
.header_lower {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.header_lower .header__inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header_lower .header__inner {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.header_lower .header__logo-link {
  position: static;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding-left: clamp(0.625rem, -1.5238450075rem + 4.4709388972vw, 2.5rem);
}
@media (max-width: 768px) {
  .header__inner {
    padding-top: 25px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
.header__logo {
  max-width: clamp(4.125rem, 1.3315014903rem + 5.8122205663vw, 6.5625rem);
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 80px;
  }
}
.header__logo_lower {
  max-width: clamp(7rem, 0.4818368107rem + 13.5618479881vw, 12.6875rem);
}
.header__logo-link {
  width: 100%;
  position: absolute;
  top: clamp(0.5rem, -0.0013971684rem + 1.043219076vw, 0.9375rem);
  left: 0;
}
@media (max-width: 768px) {
  .header__logo-link {
    top: 0;
  }
}
.header__logo-top-img2 {
  display: none;
}
.header__menu {
  max-width: clamp(38.8125rem, 19.4728949329rem + 40.2384500745vw, 55.6875rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-clip-path: polygon(6.2% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(6.2% 0%, 100% 0, 100% 100%, 0% 100%);
  background-color: #fff;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__contact {
  max-width: clamp(14.375rem, 9.289400149rem + 10.5812220566vw, 18.8125rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.header__tel-shadow {
  max-width: 208px;
  width: 100%;
  -webkit-filter: drop-shadow(-1px 1px 0px var(--main)) drop-shadow(1px 0px 0px var(--main)) drop-shadow(0px -1px 0 var(--main)) drop-shadow(0px 0px 0 var(--main));
          filter: drop-shadow(-1px 1px 0px var(--main)) drop-shadow(1px 0px 0px var(--main)) drop-shadow(0px -1px 0 var(--main)) drop-shadow(0px 0px 0 var(--main));
  margin-right: clamp(-5.625rem, -8.8482675112rem + 6.7064083458vw, -2.8125rem);
  margin-left: auto;
}
.header__contact-link {
  width: 100%;
  height: clamp(3.625rem, 2.0491803279rem + 3.2786885246vw, 5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(0.5rem, 0.3567436662rem + 0.2980625931vw, 0.625rem);
  font-size: clamp(0.75rem, 0.6067436662rem + 0.2980625931vw, 0.875rem);
}
.header__contact-link::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.header__contact-link_tel {
  max-width: clamp(9.375rem, 5.2205663189rem + 8.6438152012vw, 13rem);
  -webkit-clip-path: polygon(21.5% 0%, 100% 0, 78.5% 100%, 0% 100%);
          clip-path: polygon(21.5% 0%, 100% 0, 78.5% 100%, 0% 100%);
  background-color: #fff;
  color: var(--main);
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
}
.header__contact-link_tel::before {
  width: clamp(1.125rem, 0.9101154993rem + 0.4470938897vw, 1.3125rem);
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  background-color: var(--main);
}
.header__contact-link_mail {
  max-width: clamp(6.5625rem, 4.1987704918rem + 4.9180327869vw, 8.625rem);
  -webkit-clip-path: polygon(31.5% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(31.5% 0%, 100% 0, 100% 100%, 0% 100%);
  background-color: var(--main);
  color: #fff;
  padding-left: 23px;
}
.header__contact-link_mail::before {
  width: clamp(1.25rem, 0.9634873323rem + 0.5961251863vw, 1.5rem);
  aspect-ratio: 24/19;
  -webkit-mask-image: url(../images/icon-mail.svg);
          mask-image: url(../images/icon-mail.svg);
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .header__contact-link {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__contact-link:hover, .header__contact-link:focus {
    background-color: var(--main-l);
  }
  .header__contact-link_tel {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .header__contact-link_tel::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__contact-link_tel:hover, .header__contact-link_tel:focus {
    color: #fff;
  }
  .header__contact-link_tel:hover::before, .header__contact-link_tel:focus::before {
    background-color: #fff;
  }
}
.header-nav {
  max-width: 590px;
  width: 100%;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__items {
  max-width: 485px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
  margin-inline: auto;
}
.header-nav__link {
  font-size: clamp(0.8125rem, 0.5976154993rem + 0.4470938897vw, 1rem);
}
.header-nav__link_home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.3125rem, 0.0976154993rem + 0.4470938897vw, 0.5rem);
     -moz-column-gap: clamp(0.3125rem, 0.0976154993rem + 0.4470938897vw, 0.5rem);
          column-gap: clamp(0.3125rem, 0.0976154993rem + 0.4470938897vw, 0.5rem);
}
.header-nav__link_home::before {
  content: "";
  min-width: clamp(0.625rem, 0.4817436662rem + 0.2980625931vw, 0.75rem);
  aspect-ratio: 12/14;
  background-color: var(--text);
  -webkit-mask-image: url(../images/icon-home.svg);
          mask-image: url(../images/icon-home.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (hover: hover) and (pointer: fine) {
  .header-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .header-nav__link:hover, .header-nav__link:focus {
    color: var(--main-l);
  }
  .header-nav__link_home::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header-nav__link_home:hover::before, .header-nav__link_home:focus::before {
    background-color: var(--main-l);
  }
}
/*###################################################################
  footer（module）
###################################################################*/
.footer_top {
  margin-top: calc(clamp(-6.1875rem, -8.025rem + 7.84vw, -3.125rem) * -1);
}
.footer_lower {
  margin-top: 100px;
}
.footer__map {
  max-width: 1400px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .footer__map {
    padding: 0 clamp(0.78125rem, 0.3339694656rem + 1.9083969466vw, 1.25rem);
  }
}
.footer__gmap {
  width: 100%;
  height: clamp(18.1875rem, 16.2194656489rem + 8.3969465649vw, 20.25rem);
}
.footer__hr {
  width: 100%;
  height: 1px;
  background-color: var(--main);
  border: none;
  margin-top: 10px;
}
.footer__bg {
  background-color: var(--main);
  margin-top: 10px;
}
.footer__inner {
  max-width: 671px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 25px 30px 31px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 27px clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 33px;
  }
}
.footer__logo {
  max-width: 105px;
  width: 100%;
}
.footer__contact {
  max-width: 490px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px 10px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__tel, .footer__mail {
  width: 220px;
  height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  color: #fff;
  font-size: 1.125rem;
  border: 1px solid #fff;
}
.footer__tel::before, .footer__mail::before {
  content: "";
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer__tel::after, .footer__mail::after {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 2px;
  bottom: 2px;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.footer__tel::before {
  width: 18px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
}
.footer__mail::before {
  width: 20px;
  aspect-ratio: 24/19;
  -webkit-mask-image: url(../images/icon-mail.svg);
          mask-image: url(../images/icon-mail.svg);
  margin-top: 2px;
}
.footer__nav {
  margin-top: 30px;
}
.footer__copy {
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

@media (hover: hover) and (pointer: fine) {
  .footer__tel, .footer__mail {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .footer__tel::before, .footer__mail::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__tel:hover, .footer__tel:focus, .footer__mail:hover, .footer__mail:focus {
    background-color: #fff;
    color: var(--main);
  }
  .footer__tel:hover::before, .footer__tel:focus::before, .footer__mail:hover::before, .footer__mail:focus::before {
    background-color: var(--main);
  }
}
.footer-nav {
  width: 100%;
}
.footer-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1.0625rem, 0.8835877863rem + 0.7633587786vw, 1.25rem) 5px;
}
@media (max-width: 768px) {
  .footer-nav__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-nav__link {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .footer-nav__link:hover, .footer-nav__link:focus {
    color: var(--main-l);
  }
}
/*###################################################################
  breadcrumb（module）
###################################################################*/
.breadcrumb__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px clamp(0.625rem, 0.5589788732rem + 0.2816901408vw, 0.8125rem);
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  letter-spacing: 0.0625em;
}

/*###################################################################
  c-link（module）
###################################################################*/
.c-link-more-w {
  max-width: 329px;
  width: 100%;
  height: 55px;
  display: block;
  position: relative;
  color: var(--main);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 55px;
  letter-spacing: 0.15em;
  -webkit-clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
          clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
}
@media (max-width: 768px) {
  .c-link-more-w {
    font-size: 1rem;
  }
}
.c-link-more-w::before, .c-link-more-w::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #fff;
  pointer-events: none;
}
.c-link-more-w::before {
  width: 68px;
  left: 0;
  -webkit-clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
          clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
}
.c-link-more-w::after {
  width: 281px;
  right: 0;
  -webkit-clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
          clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
}
.c-link-more-w__text {
  position: relative;
  padding-left: 117px;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-more-w::before, .c-link-more-w::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .c-link-more-w:hover::before, .c-link-more-w:hover::after, .c-link-more-w:focus::before, .c-link-more-w:focus::after {
    background-color: var(--main-l);
  }
  .c-link-more-w:hover .c-link-more-w__text, .c-link-more-w:focus .c-link-more-w__text {
    color: #fff;
  }
  .c-link-more-w__text {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
}
.c-link-more-m {
  max-width: 329px;
  width: 100%;
  height: 55px;
  display: block;
  position: relative;
  color: #fff;
  -webkit-clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
          clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
}
@media (max-width: 768px) {
  .c-link-more-m {
    font-size: 1rem;
  }
}
.c-link-more-m::before, .c-link-more-m::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background-color: var(--main);
  pointer-events: none;
}
.c-link-more-m::before {
  width: 68px;
  -webkit-clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
          clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
  left: 0;
}
.c-link-more-m::after {
  width: 281px;
  -webkit-clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
          clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
  right: 0;
}
.c-link-more-m__text {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 55px;
  letter-spacing: 0.15em;
  padding-left: 117px;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-more-m::before, .c-link-more-m::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .c-link-more-m:hover::before, .c-link-more-m:hover::after, .c-link-more-m:focus::before, .c-link-more-m:focus::after {
    background-color: var(--main-l);
  }
}
/*###################################################################
  c-title（module）
###################################################################*/
.c-title-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  color: var(--main);
  font-size: 1.625rem;
  font-weight: bold;
}
.c-title-1::before, .c-title-1::after {
  content: "";
  width: 3px;
  height: 28px;
  background-color: currentColor;
  -webkit-transform: rotate(21deg);
      -ms-transform: rotate(21deg);
          transform: rotate(21deg);
}

/*###################################################################
  c-img-band（module）
###################################################################*/
.c-img-band-4 {
  container-type: inline-size;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.c-img-band-4_pos {
  margin-top: clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
}
.c-img-band-4__item {
  height: 18.0555555556cqw;
  overflow: hidden;
}
.c-img-band-4__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*###################################################################
  br（module）
###################################################################*/
.br-1000-b {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000-b {
    display: block;
  }
}
.br-900-b {
  display: none;
}
@media (max-width: 900px) {
  .br-900-b {
    display: block;
  }
}
.br-800-b {
  display: none;
}
@media (max-width: 800px) {
  .br-800-b {
    display: block;
  }
}
.br-sp-b {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-b {
    display: block;
  }
}
.br-600-b {
  display: none;
}
@media (max-width: 600px) {
  .br-600-b {
    display: block;
  }
}
.br-500-b {
  display: none;
}
@media (max-width: 500px) {
  .br-500-b {
    display: block;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 54px;
  height: 54px;
  display: inline-block;
  position: relative;
  z-index: 30;
  background-color: var(--main);
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(-7px) rotate(150deg);
      -ms-transform: translateY(-7px) rotate(150deg);
          transform: translateY(-7px) rotate(150deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(7px) rotate(-150deg);
      -ms-transform: translateY(7px) rotate(-150deg);
          transform: translateY(7px) rotate(-150deg);
}
.hamburger__line {
  width: 24px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: #fff;
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: #fff;
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: 7px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .hamburger:hover {
    background-color: var(--main-l);
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 300px;
  height: 100vh;
  -webkit-transform: translateX(300px);
      -ms-transform: translateX(300px);
          transform: translateX(300px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--base);
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0;
}
.drawer__inner {
  padding-bottom: 100px;
}
.drawer__top {
  width: 100%;
  height: 90px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--base);
  z-index: 1;
}
.drawer__item {
  border-bottom: 1px solid var(--text);
}
.drawer__item:first-of-type {
  border-top: 1px solid var(--text);
}
.drawer__link {
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
  padding-left: 20px;
}

.is-drawer-active {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__link {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .drawer__link:hover, .drawer__link:focus {
    background-color: var(--main);
    color: #fff;
  }
}
.drawer-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*###################################################################
  hover（module）
###################################################################*/
@media (hover: hover) and (pointer: fine) {
  .op {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op:hover, .op:focus {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fn {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fn:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-im {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-im:hover, .op-im:focus {
    opacity: 0.7 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fnim {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fnim:hover {
    opacity: 0.7 !important;
  }
}
/*###################################################################
  lower（module）
###################################################################*/
.lower-mv {
  padding-top: clamp(3.625rem, 2.0491803279rem + 3.2786885246vw, 5rem);
}
.lower-mv__body {
  height: clamp(6.25rem, 5.8098591549rem + 1.8779342723vw, 7.5rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(0.875rem, 0.7429577465rem + 0.5633802817vw, 1.25rem);
  position: relative;
  background-color: var(--main-l);
  color: #fff;
}
.lower-mv__body::before, .lower-mv__body::after {
  content: "";
  max-width: clamp(3.75rem, -5.7790492958rem + 40.6572769953vw, 30.8125rem);
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--main);
}
.lower-mv__body::before {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
  left: 0;
}
.lower-mv__body::after {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: 0;
  right: 0;
}
.lower-mv__title {
  font-size: clamp(1.5rem, 1.323943662rem + 0.7511737089vw, 2rem);
  font-weight: bold;
  letter-spacing: 0.0625em;
}

/*###################################################################
  form（module）
###################################################################*/
.contact1__card {
  width: 100%;
  margin-top: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
  padding: clamp(2.5rem, 1.75rem + 3.2vw, 3.75rem) clamp(0.9375rem, -3.0113636364rem + 16.8484848485vw, 9.625rem);
  background-color: #fff;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__body {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);
}
.form__paragraph {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 768px) {
  .form__paragraph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}
.form__paragraph_radio {
  row-gap: 20px;
}
.form__paragraph_message {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form__title {
  width: clamp(14.375rem, 9.5895562771rem + 9.9567099567vw, 15.8125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-top: 9px;
}
@media (max-width: 768px) {
  .form__title {
    width: auto;
    padding-top: 0;
  }
}
.form__title_message {
  padding-top: 0;
}
.form__label {
  color: #000;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
.form__required {
  color: #f40000;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.form__radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
  padding-top: 11px;
}
@media (max-width: 768px) {
  .form__radio {
    padding-top: 0;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media (max-width: 450px) {
  .form__radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 10px;
  }
}
.form__radio .wpcf7-list-item {
  margin: 0;
}
.form__radio .wpcf7-list-item label {
  cursor: pointer;
}
.form__radio .wpcf7-list-item-label {
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding-left: 10px;
}
.form__radio input[type=radio] {
  width: 20px;
  height: 20px;
  position: relative;
  background-color: transparent;
  border: 1px solid var(--main);
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  cursor: pointer;
}
.form__radio input[type=radio]:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main);
}
.form__input {
  width: 100%;
  height: 40px;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  background-color: rgba(2, 44, 71, 0.2);
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 clamp(0.9375rem, -2.1834415584rem + 6.4935064935vw, 1.875rem);
}
.form__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.form__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.form__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.form__input_message {
  min-height: 200px;
  padding: 12px clamp(0.9375rem, -2.1834415584rem + 6.4935064935vw, 1.875rem);
  resize: vertical;
}
.form__button-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  margin-top: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
}
.form__action {
  max-width: 329px;
  width: 100%;
  height: 55px;
  position: relative;
  cursor: pointer;
  -webkit-clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
          clip-path: polygon(9.73% 0, 100% 0, 89.97% 100%, 0 100%);
}
.form__action::before, .form__action::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  background-color: var(--main);
  pointer-events: none;
}
.form__action::before {
  width: 68px;
  left: 0;
  -webkit-clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
          clip-path: polygon(47.06% 0, 100% 0, 57.35% 100%, 0 100%);
}
.form__action::after {
  width: 281px;
  right: 0;
  -webkit-clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
          clip-path: polygon(11.39% 0, 100% 0, 88.43% 100%, 0 100%);
}
.form__action-text {
  width: 281px;
  height: 55px;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 55px;
  letter-spacing: 0.5555555556em;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.form__action-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  background-color: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  z-index: 1;
}
.form .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .form .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
  }
}
.form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: clamp(0.75rem, 0.6307251908rem + 0.5089058524vw, 0.875rem);
}
.form .wpcf7-response-output {
  width: 100%;
  margin: 10px auto 0;
  padding: 15px !important;
}
.form[data-status=sent] .form__button-wrapper {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .form__action::before, .form__action::after {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .form__action:hover::before, .form__action:hover::after, .form__action:focus-within::before, .form__action:focus-within::after {
    background-color: var(--main-l);
  }
}
/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
/*###################################################################
  top（page）
###################################################################*/
.top-mv {
  container-type: inline-size;
  position: relative;
}
.top-mv::before, .top-mv::after {
  content: "";
  max-width: 34.2361111111cqw;
  width: 100%;
  height: 6.4583333333cqw;
  position: absolute;
  z-index: 3;
  background-color: var(--main);
}
@media (min-width: 1441px) {
  .top-mv::before, .top-mv::after {
    height: 93px;
  }
}
@media (max-width: 768px) {
  .top-mv::before, .top-mv::after {
    max-width: 100%;
    height: 24.8cqw;
  }
}
.top-mv::before {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
  left: 0;
}
.top-mv::after {
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: 0;
  right: 0;
}
.top-mv__box {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: 6.9444444444cqw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  text-shadow: 4px 4px 4px #000;
}
@media (max-width: 768px) {
  .top-mv__box {
    top: calc(50% + 18.9333333333cqw);
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.top-mv__title {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  font-size: 2.5cqw;
  line-height: 1.7;
  letter-spacing: 0.05em;
  -webkit-animation: mvTitle 1s ease-in 0.7s forwards;
          animation: mvTitle 1s ease-in 0.7s forwards;
}
@media (max-width: 768px) {
  .top-mv__title {
    font-size: 6.4cqw;
    line-height: 2;
  }
}
.top-mv__text {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  font-size: 1.6666666667cqw;
  line-height: 2.0833333333;
  -webkit-animation: mvTitle 1s ease-in 1.7s forwards;
          animation: mvTitle 1s ease-in 1.7s forwards;
}
@media (max-width: 768px) {
  .top-mv__text {
    font-size: 4.2666666667cqw;
    line-height: 3.8;
  }
}
.top-mv .swiper-slide-active img,
.top-mv .swiper-slide-duplicate-active img,
.top-mv .swiper-slide-prev img {
  -webkit-animation: zoom 7s linear 0s normal both;
          animation: zoom 7s linear 0s normal both;
}

.top-about {
  position: relative;
}
@media (max-width: 768px) {
  .top-about {
    overflow: hidden;
  }
}
.top-about::before {
  content: "";
  max-width: clamp(16.0625rem, 11.0889084507rem + 21.220657277vw, 30.1875rem);
  width: 100%;
  aspect-ratio: 483/755;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/top-about-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-about-deco-1.webp) 1x, url(../images/top-about-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/top-about-deco-1.webp) 1x, url(../images/top-about-deco-1@2x.webp) 2x);
}
.top-about__inner {
  max-width: 1120px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 145px;
}
@media (max-width: 1000px) {
  .top-about__inner {
    padding: clamp(3rem, -0.6375rem + 15.52vw, 9.0625rem) clamp(1.09375rem, 0.3482824427rem + 3.1806615776vw, 1.875rem) 0;
  }
}
.top-about__title {
  color: var(--main);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .top-about__title {
    line-height: 1.36;
  }
}
.top-about__title-l {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .top-about__title-comma {
    display: none;
  }
}
.top-about__text {
  max-width: 1120px;
  width: 100%;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 2.2222222222;
  text-align: center;
  margin-top: clamp(1.9375rem, 0.804389313rem + 4.834605598vw, 3.125rem);
}
@media (max-width: 768px) {
  .top-about__text {
    max-width: clamp(20.1875rem, -8.6666666667rem + 123.1111111111vw, 37.5rem);
    line-height: 2.5;
    text-align: left;
  }
}
.top-about__images {
  max-width: clamp(21.25rem, 2.125rem + 81.6vw, 53.125rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  margin-top: clamp(1.9375rem, 0.804389313rem + 4.834605598vw, 3.125rem);
}
.top-about__images::after {
  content: "";
  max-width: clamp(12.5rem, 3.0944227006rem + 19.5694716243vw, 18.75rem);
  width: 100%;
  aspect-ratio: 300/344;
  position: absolute;
  top: clamp(-15.625rem, -22.4251760563rem + 29.014084507vw, 3.6875rem);
  left: calc(clamp(2.1875rem, -15.9375rem + 32.2222222222vw, 13.0625rem) * -1);
  z-index: -1;
  background: url(../images/top-about-deco-2.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-about-deco-2.webp) 1x, url(../images/top-about-deco-2@2x.webp) 2x);
  background-image: image-set(url(../images/top-about-deco-2.webp) 1x, url(../images/top-about-deco-2@2x.webp) 2x);
  opacity: 0.4;
}
@media (max-width: 768px) {
  .top-about__images::after {
    left: -35px;
    opacity: 0.2;
  }
}
.top-about__img {
  max-width: 400px;
  width: 100%;
  border: 1px solid var(--main);
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.top-business_pos {
  margin-top: clamp(6.5rem, 4.6625rem + 7.84vw, 9.5625rem);
}
.top-business__title {
  text-align: center;
}
.top-business__bg {
  max-width: 1400px;
  position: relative;
  background: url(../images/top-business-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-business-bg.webp) 1x, url(../images/top-business-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-bg.webp) 1x, url(../images/top-business-bg@2x.webp) 2x);
  margin-top: clamp(2.75rem, 2.2729007634rem + 2.0356234097vw, 3.25rem);
  margin-inline: auto;
  padding: 37px 22px 34px;
}
@media (max-width: 768px) {
  .top-business__bg {
    max-width: 100%;
    background: url(../images/top-business-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-business-bg_sp.webp) 1x, url(../images/top-business-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-business-bg_sp.webp) 1x, url(../images/top-business-bg_sp@2x.webp) 2x);
    padding: 48px clamp(1.375rem, 0.8979007634rem + 2.0356234097vw, 1.875rem);
  }
}
.top-business__bg-inner {
  max-width: 1085px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2.5rem, 1.784351145rem + 3.0534351145vw, 3.25rem) 15px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-business__bg-inner {
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-business__box {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-business__box {
    max-width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-business__subtitle {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .top-business__subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.top-business__text {
  color: #fff;
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: 1.6666666667;
  margin-top: clamp(1.8125rem, 0.8583015267rem + 4.0712468193vw, 2.8125rem);
}
@media (max-width: 768px) {
  .top-business__text {
    line-height: 1.875;
  }
}
.top-business__more {
  margin-top: clamp(1.625rem, 1.0286259542rem + 2.5445292621vw, 2.25rem);
}
.top-business__items1 {
  max-width: clamp(20.228125rem, 9.1146946565rem + 47.417302799vw, 31.875rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1.375rem, 0.5997137405rem + 3.3078880407vw, 2.1875rem);
}
.top-business__item1 {
  width: 100%;
  container-type: inline-size;
  position: relative;
}
.top-business__link1 {
  max-width: 76.4705882353cqw;
  height: 26.4705882353cqw;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-business__link1 {
    max-width: clamp(15.46875rem, 6.9704198473rem + 36.2595419847vw, 24.375rem);
    height: clamp(5.354375rem, 2.4124618321rem + 12.5521628499vw, 8.4375rem);
  }
}
.top-business__link1::after {
  content: "";
  width: 3.137254902cqw;
  aspect-ratio: 16/15;
  position: absolute;
  right: 0.7843137255cqw;
  bottom: 0.7843137255cqw;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .top-business__link1::after {
    width: clamp(0.6875rem, 0.3893129771rem + 1.272264631vw, 1rem);
    right: clamp(0.1875rem, 0.1278625954rem + 0.2544529262vw, 0.25rem);
    bottom: clamp(0.1875rem, 0.1278625954rem + 0.2544529262vw, 0.25rem);
  }
}
.top-business__icon1 {
  max-width: 31.3725490196cqw;
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .top-business__icon1 {
    max-width: clamp(6.34625rem, 2.8598473282rem + 14.8753180662vw, 10rem);
  }
}
.top-business__icon1::after {
  content: "";
  max-width: 19.6078431373cqw;
  width: 100%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 768px) {
  .top-business__icon1::after {
    max-width: clamp(3.96625rem, 1.7870992366rem + 9.2977099237vw, 6.25rem);
  }
}
.top-business__icon1_1::after {
  background-image: url(../images/icon-business-1.svg);
}
.top-business__icon1_2::after {
  background-image: url(../images/icon-business-2.svg);
}
.top-business__icon1_3::after {
  background-image: url(../images/icon-business-3.svg);
}
.top-business__label1 {
  position: relative;
  color: #fff;
  font-size: 3.9215686275cqw;
  font-weight: bold;
}
@media (max-width: 768px) {
  .top-business__label1 {
    font-size: clamp(1rem, 0.7614503817rem + 1.0178117048vw, 1.25rem);
  }
}
.top-business__inner {
  max-width: 1124px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: clamp(1.75rem, 0.8554389313rem + 3.8167938931vw, 2.6875rem);
}
@media (max-width: 768px) {
  .top-business__inner {
    padding: 0 clamp(1.40625rem, 0.9589694656rem + 1.9083969466vw, 1.875rem);
  }
}
.top-business__items2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.875rem, 0.975rem + 3.84vw, 3.375rem) clamp(0.9375rem, -7.0572407045rem + 16.6340508806vw, 6.25rem);
}
@media (max-width: 768px) {
  .top-business__items2 {
    max-width: clamp(20.228125rem, 9.1146946565rem + 47.417302799vw, 31.875rem);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }
}
.top-business__item2 {
  width: 100%;
  container-type: inline-size;
  position: relative;
}
.top-business__link2 {
  max-width: 76.4705882353cqw;
  height: 26.4705882353cqw;
  display: grid;
  place-items: center;
  background-color: #fff;
  border: 1px solid var(--main);
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-business__link2 {
    max-width: clamp(15.661875rem, 7.3478244275rem + 35.4732824427vw, 24.375rem);
    height: clamp(5.42125rem, 2.543148855rem + 12.2798982188vw, 8.4375rem);
  }
}
.top-business__link2::after {
  content: "";
  width: 3.137254902cqw;
  aspect-ratio: 16/15;
  position: absolute;
  right: 0.7843137255cqw;
  bottom: 0.7843137255cqw;
  background-color: var(--main);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .top-business__link2::after {
    width: clamp(0.6875rem, 0.3893129771rem + 1.272264631vw, 1rem);
    right: clamp(0.1875rem, 0.1278625954rem + 0.2544529262vw, 0.25rem);
    bottom: clamp(0.1875rem, 0.1278625954rem + 0.2544529262vw, 0.25rem);
  }
}
.top-business__icon2 {
  max-width: 31.3725490196cqw;
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  background-color: var(--main);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .top-business__icon2 {
    max-width: clamp(6.425625rem, 3.0149618321rem + 14.5521628499vw, 10rem);
  }
}
.top-business__icon2::after {
  content: "";
  max-width: 19.6078431373cqw;
  width: 100%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 768px) {
  .top-business__icon2::after {
    max-width: clamp(4.015625rem, 1.8835877863rem + 9.096692112vw, 6.25rem);
  }
}
.top-business__icon2_1::after {
  background-image: url(../images/icon-business-4.svg);
}
.top-business__icon2_2::after {
  background-image: url(../images/icon-business-5.svg);
}
.top-business__icon2_3::after {
  background-image: url(../images/icon-business-6.svg);
}
.top-business__icon2_4::after {
  background-image: url(../images/icon-business-7.svg);
}
.top-business__label2 {
  position: relative;
  color: var(--main);
  font-size: 3.9215686275cqw;
  font-weight: bold;
}
@media (max-width: 768px) {
  .top-business__label2 {
    font-size: clamp(1rem, 0.7614503817rem + 1.0178117048vw, 1.25rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-business__link1 {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .top-business__link1:hover, .top-business__link1:focus {
    background-color: var(--main-l);
  }
  .top-business__link2 {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .top-business__link2:hover, .top-business__link2:focus {
    background-color: var(--main-l);
  }
  .top-business__link2:hover .top-business__label2, .top-business__link2:focus .top-business__label2 {
    color: #fff;
  }
  .top-business__label2 {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
}
.top-staff_pos {
  margin-top: clamp(6.75rem, 6.3325381679rem + 1.7811704835vw, 7.1875rem);
}
.top-staff__body {
  max-width: 1440px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: calc(clamp(-4rem, -4.5963740458rem + 2.5445292621vw, -3.375rem) * -1);
  margin-inline: auto;
  padding-inline: clamp(0.9375rem, 0.5793591654rem + 0.7451564829vw, 1.25rem);
}
@media (max-width: 768px) {
  .top-staff__body {
    max-width: clamp(23.4375rem, 10.0190839695rem + 57.2519083969vw, 37.5rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: clamp(0.78125rem, 0.3339694656rem + 1.9083969466vw, 1.25rem);
  }
}
.top-staff__img {
  width: 52.474%;
  aspect-ratio: 734.633/400;
}
@media (max-width: 768px) {
  .top-staff__img {
    width: 100%;
    aspect-ratio: 350/191;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.top-staff__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-staff__box {
  width: 52.474%;
  min-width: 400px;
  min-height: 400px;
  aspect-ratio: 734.633/400;
  position: relative;
  margin-left: -4.948%;
  background-color: #c60000;
  -webkit-clip-path: polygon(9.43% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(9.43% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .top-staff__box {
    width: 100%;
    min-width: inherit;
    aspect-ratio: auto;
    min-height: 400px;
    margin-left: 0;
    background-color: transparent;
    border: 2px solid #c60000;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .top-staff__box {
    background-color: #fff;
  }
}
.top-staff__box::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #fff;
  -webkit-clip-path: polygon(9.43% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(9.43% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .top-staff__box::before {
    content: none;
  }
}
.top-staff__content {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: clamp(1.25rem, -0.0393070045rem + 2.6825633383vw, 2.375rem);
  position: relative;
  padding: 40px clamp(1.875rem, -1.3482675112rem + 6.7064083458vw, 4.6875rem) 40px clamp(2.3125rem, -5.0652011923rem + 15.3502235469vw, 8.75rem);
}
@media (max-width: 768px) {
  .top-staff__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
    padding: clamp(2.375rem, 2.2557251908rem + 0.5089058524vw, 2.5rem) clamp(0.625rem, -0.5677480916rem + 5.0890585242vw, 1.875rem) 40px;
  }
}
.top-staff__subtitle {
  color: var(--main);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: normal;
}
.top-staff__text {
  width: 100%;
  color: var(--main);
  font-size: clamp(1rem, 0.811888454rem + 0.3913894325vw, 1.125rem);
  line-height: 1.6666666667;
}
@media (max-width: 768px) {
  .top-staff__text {
    max-width: clamp(18.75rem, 6.822519084rem + 50.8905852417vw, 31.25rem);
    font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
    line-height: 2.1875;
  }
}

.top-partners {
  overflow: hidden;
}
.top-partners_pos {
  margin-top: clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
}
.top-partners__bg {
  max-width: 1120px;
  background: url(../images/top-partners-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-partners-bg.webp) 1x, url(../images/top-partners-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-partners-bg.webp) 1x, url(../images/top-partners-bg@2x.webp) 2x);
  margin-inline: auto;
  padding: clamp(0.3125rem, 0.125rem + 0.8vw, 0.625rem);
}
@media (max-width: 768px) {
  .top-partners__bg {
    max-width: 100%;
    background: url(../images/top-partners-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-partners-bg_sp.webp) 1x, url(../images/top-partners-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-partners-bg_sp.webp) 1x, url(../images/top-partners-bg_sp@2x.webp) 2x);
  }
}
.top-partners__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 65px 30px 62px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(2rem, 1.2125rem + 3.36vw, 3.3125rem);
  border: clamp(0.0625rem, 0.0028625954rem + 0.2544529262vw, 0.125rem) solid var(--main);
}
@media (max-width: 1280px) {
  .top-partners__inner {
    padding: clamp(3.6875rem, 3.3296755725rem + 1.5267175573vw, 4.0625rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) clamp(3.5625rem, 3.2643129771rem + 1.272264631vw, 3.875rem);
  }
}
.top-partners__text {
  color: var(--main);
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  line-height: 1.6666666667;
  text-align: center;
}
@media (max-width: 768px) {
  .top-partners__text {
    max-width: clamp(18.75rem, -4.3296755725rem + 98.4732824427vw, 42.9375rem);
    line-height: 2.1875;
    text-align: left;
  }
}

.top-company_pos {
  margin-top: 100px;
}
.top-company__inner {
  max-width: 1120px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .top-company__inner {
    padding: 0 clamp(0.78125rem, -0.2624045802rem + 4.4529262087vw, 1.875rem);
  }
}
.top-company__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 25px;
}
.top-company__desc {
  color: var(--main);
  font-size: 1.125rem;
  line-height: normal;
  text-align: center;
}
.top-company__body {
  max-width: 1120px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(2.375rem, 1.925rem + 1.92vw, 3.125rem);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-company__body {
    max-width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-company__img {
  width: 53.571%;
  aspect-ratio: 600/360;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .top-company__img {
    width: 100%;
    aspect-ratio: 350/250;
  }
}
.top-company__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-company__info {
  width: 49.107%;
  aspect-ratio: 550/300;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.25rem, 1.1723066298rem + 0.3314917127vw, 1.4375rem);
  background-color: #fff;
  margin-left: -2.679%;
  padding: 30px 15px;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-company__info {
    width: 94.286%;
    aspect-ratio: 330/265;
    row-gap: 20px;
    margin-top: -30px;
    margin-left: 0;
    padding: 35px 15px;
  }
}
.top-company__list {
  max-width: 350px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
  margin-inline: auto;
}
.top-company__row {
  display: grid;
  grid-template-columns: 173px 1fr;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .top-company__row {
    padding-bottom: 7px;
  }
}
.top-company__label {
  color: var(--main);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: normal;
}
@media (max-width: 768px) {
  .top-company__label {
    padding-left: 16px;
  }
}
.top-company__value {
  color: var(--main);
  font-size: clamp(1rem, 0.8807251908rem + 0.5089058524vw, 1.125rem);
  line-height: normal;
}
.top-company__tel {
  width: 220px;
  height: 47px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  color: var(--main);
  font-size: 1.125rem;
  border: 1px solid #c60000;
}
.top-company__tel::before {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  background-color: var(--text);
  -webkit-mask: url(../images/icon-tel.svg) no-repeat center/contain;
          mask: url(../images/icon-tel.svg) no-repeat center/contain;
}
.top-company__tel::after {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 2px;
  bottom: 2px;
  background-color: #c60000;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}
.top-company__more {
  margin-top: clamp(2.5rem, 2.125rem + 1.6vw, 3.125rem);
  margin-inline: auto;
}

@media (hover: hover) and (pointer: fine) {
  .top-company__tel {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .top-company__tel::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .top-company__tel:hover, .top-company__tel:focus {
    background-color: #c60000;
    color: #fff;
  }
  .top-company__tel:hover::before, .top-company__tel:focus::before {
    background-color: #fff;
  }
}
/*###################################################################
  business（page）
###################################################################*/
.business1 {
  overflow: hidden;
}
.business1_pos {
  margin-top: clamp(3.75rem, 2.1375rem + 6.88vw, 6.4375rem);
  padding-bottom: 30px;
}
.business1__outer {
  max-width: 1440px;
  position: relative;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .business1__outer {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.business1__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(3.75rem, 1.1025rem + 11.296vw, 8.1625rem);
}
.business1__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(1.875rem, -0.075rem + 8.32vw, 5.125rem);
}
@media (max-width: 768px) {
  .business1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.business1__body_odd {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .business1__body_odd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.business1__box {
  max-width: 802px;
  width: 100%;
  min-height: 233px;
  display: grid;
  place-items: center;
  background-color: #f2f2f2;
  padding: 30px 45px;
}
@media (max-width: 768px) {
  .business1__box {
    margin-top: -30px;
    padding: 30px 15px;
  }
}
.business1__box_odd {
  padding-right: clamp(0.9375rem, -1.2113450075rem + 4.4709388972vw, 2.8125rem);
}
.business1__box_even {
  padding-left: clamp(0.9375rem, -1.2113450075rem + 4.4709388972vw, 2.8125rem);
}
.business1__text {
  max-width: 486px;
  font-size: 16px;
  line-height: 1.875;
  white-space: pre-line;
}
.business1__img-wrapper {
  max-width: 638px;
  width: 100%;
  aspect-ratio: 738/410;
  position: relative;
}
@media (max-width: 768px) {
  .business1__img-wrapper {
    aspect-ratio: inherit;
  }
}
.business1__img {
  width: clamp(30.3125rem, 8.1077682563rem + 46.1997019374vw, 49.6875rem);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .business1__img {
    width: 100%;
    position: static;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.business1__img_odd {
  left: -75px;
}
.business1__img_even {
  right: -75px;
}

/*###################################################################
  staff（page）
###################################################################*/
.staff1_pos {
  margin-top: clamp(2.5rem, 0.2875rem + 9.44vw, 6.1875rem);
}
.staff1__inner {
  max-width: 900px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .staff1__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.staff1__lead {
  max-width: 1040px;
  width: 100%;
  color: var(--main);
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.875;
  letter-spacing: 0.125em;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .staff1__lead {
    max-width: 600px;
  }
}

.staff-interview_pos {
  margin-top: clamp(3.75rem, 1.8375rem + 8.16vw, 6.9375rem);
}
.staff-interview__inner {
  max-width: 1133px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .staff-interview__inner {
    max-width: clamp(21.5625rem, 6.3549618321rem + 64.8854961832vw, 37.5rem);
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.staff-interview__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.25rem, 0.725rem + 2.24vw, 2.125rem);
}
.staff-interview__en {
  color: #c60000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1.75rem, 1.225rem + 2.24vw, 2.625rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.238em;
  text-transform: uppercase;
}
.staff-interview__ja {
  color: var(--main);
  font-size: clamp(0.875rem, 0.65rem + 0.96vw, 1.25rem);
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1em;
}
.staff-interview__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
  margin-top: clamp(2.5rem, 0.4rem + 8.96vw, 6rem);
}
.staff-interview__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px 15px;
  background-color: #fff;
  padding: clamp(1.25rem, 0.5rem + 3.2vw, 2.5rem);
}
@media (max-width: 768px) {
  .staff-interview__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.staff-interview__item_even {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .staff-interview__item_even {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.staff-interview__img {
  max-width: clamp(17.5rem, 1.5535092807rem + 33.1786542923vw, 26.4375rem);
  width: 100%;
}
@media (max-width: 768px) {
  .staff-interview__img {
    max-width: 500px;
  }
}
.staff-interview__body {
  max-width: 590px;
  width: 100%;
}
@media (max-width: 768px) {
  .staff-interview__body {
    max-width: 500px;
  }
}
.staff-interview__role {
  color: #0066a7;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}
.staff-interview__name {
  color: var(--main);
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.083em;
  margin-top: clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
}
.staff-interview__text {
  color: var(--main);
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  line-height: 1.875;
  margin-top: clamp(1.5625rem, 1.375rem + 0.8vw, 1.875rem);
}

/*###################################################################
  partners（page）
###################################################################*/
.partners1_pos {
  margin-top: clamp(2.5rem, 0.2875rem + 9.44vw, 6.1875rem);
}
.partners1__title {
  color: var(--main-l);
  font-size: clamp(1.375rem, 1.2196132597rem + 0.6629834254vw, 1.75rem);
  font-weight: bold;
  line-height: 2.1428571429;
  letter-spacing: 0.0714285714em;
  text-align: center;
  white-space: pre-line;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}
.partners1_img-band {
  margin-top: clamp(2.5rem, 0.2125rem + 9.76vw, 6.3125rem);
}

.partners2_pos {
  margin-top: clamp(3.75rem, 0.2625rem + 14.88vw, 9.5625rem);
}
.partners2__inner {
  max-width: 1005px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.875rem, 1.0125rem + 3.68vw, 3.3125rem);
}
@media (max-width: 768px) {
  .partners2__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.partners2__text {
  color: #000;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.125em;
  white-space: pre-line;
}

.partners3_pos {
  margin-top: clamp(3.75rem, 0.225rem + 15.04vw, 9.625rem);
}
.partners3__inner {
  max-width: 1003px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.875rem, 1.0125rem + 3.68vw, 3.3125rem);
}
@media (max-width: 768px) {
  .partners3__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.partners3__text {
  color: #000;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.125em;
  text-align: center;
}

.partners4_pos {
  margin-top: clamp(3.75rem, 0.3375rem + 14.56vw, 9.4375rem);
}
.partners4__bg {
  width: 100%;
  height: clamp(4.6875rem, 0rem + 20vw, 12.5rem);
  display: grid;
  place-items: center;
  background: url(../images/partners4-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/partners4-bg.webp) 1x, url(../images/partners4-bg@2x.webp) 2x);
  background-image: image-set(url(../images/partners4-bg.webp) 1x, url(../images/partners4-bg@2x.webp) 2x);
}
.partners4__title {
  color: #fff;
  font-size: clamp(1.125rem, 0.75rem + 1.6vw, 1.75rem);
  font-weight: bold;
  letter-spacing: 0.25em;
  text-align: center;
}
.partners4__inner {
  max-width: 1005px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
}
@media (max-width: 768px) {
  .partners4__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.partners4__text {
  color: #000;
  font-size: 1rem;
  line-height: 2.1875;
  letter-spacing: 0.125em;
}

/*###################################################################
  company（page）
###################################################################*/
.company1_pos {
  margin-top: clamp(2.5rem, 0.1375rem + 10.08vw, 6.4375rem);
}
.company1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .company1__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.company1__box {
  margin-top: clamp(1.875rem, 0.975rem + 3.84vw, 3.375rem);
  padding: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem) clamp(0.625rem, 0.0568181818rem + 2.4242424242vw, 1.875rem) clamp(2.5rem, 1rem + 6.4vw, 5rem);
  background-color: #fff;
}
.company1__list {
  max-width: 1060px;
  display: grid;
  grid-template-columns: clamp(4.625rem, -0.0909090909rem + 20.1212121212vw, 15rem) 1fr;
  -webkit-column-gap: clamp(0.5rem, 0.1590909091rem + 1.4545454545vw, 1.25rem);
     -moz-column-gap: clamp(0.5rem, 0.1590909091rem + 1.4545454545vw, 1.25rem);
          column-gap: clamp(0.5rem, 0.1590909091rem + 1.4545454545vw, 1.25rem);
  font-size: clamp(0.875rem, 0.7613636364rem + 0.4848484848vw, 1.125rem);
  line-height: 2;
  margin-inline: auto;
}
.company1__th {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid var(--main);
  padding: clamp(0.8125rem, 0.6420454545rem + 0.7272727273vw, 1.1875rem) 0;
}
.company1__td {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
  font-weight: 500;
  border-bottom: 2px solid var(--main);
  padding: clamp(0.8125rem, 0.6420454545rem + 0.7272727273vw, 1.1875rem) clamp(0rem, -0.8522727273rem + 3.6363636364vw, 1.875rem);
  padding-right: 0;
}
.company1__map {
  margin-top: clamp(2.5rem, 2.125rem + 1.6vw, 3.125rem);
}
.company1__gmap {
  width: 100%;
  height: 300px;
}

.contact1_pos {
  margin-top: clamp(3.75rem, 0.2625rem + 14.88vw, 9.5625rem);
}
.contact1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .contact1__inner {
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.contact1__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
  margin-top: clamp(1.875rem, 1.0125rem + 3.68vw, 3.3125rem);
}
.contact1__lead {
  color: #000;
  font-size: clamp(0.875rem, 0.725rem + 0.64vw, 1.125rem);
  line-height: 1.9444444444;
  letter-spacing: 0.1111111111em;
}
.contact1__required {
  color: #f40000;
}
.contact1__tel {
  max-width: clamp(15.25rem, 12.85rem + 10.24vw, 19.25rem);
  width: 100%;
  height: clamp(3.125rem, 2.6375rem + 2.08vw, 3.9375rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
     -moz-column-gap: clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
          column-gap: clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
  position: relative;
  color: var(--main);
  font-size: clamp(1.125rem, 0.855rem + 1.152vw, 1.575rem);
  border: 1px solid var(--main);
}
.contact1__tel::before {
  content: "";
  width: clamp(1.125rem, 0.8625rem + 1.12vw, 1.5625rem);
  aspect-ratio: 1/1;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contact1__tel::after {
  content: "";
  width: 12px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 4px;
  bottom: 3px;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, var(--main)), color-stop(50%, transparent));
  background: -webkit-linear-gradient(bottom right, var(--main) 50%, transparent 50%);
  background: linear-gradient(to top left, var(--main) 50%, transparent 50%);
}
.contact1__form-bg {
  width: 100%;
  background-color: #fff;
  padding: 50px 20px 27px;
}
.contact1__form-wrapper {
  max-width: 973px;
  margin-inline: auto;
}

@media (hover: hover) and (pointer: fine) {
  .contact1__tel {
    -webkit-transition: background-color 0.4s ease, color 0.4s ease;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  .contact1__tel::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .contact1__tel::after {
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .contact1__tel:hover, .contact1__tel:focus {
    background-color: var(--main);
    color: #fff;
  }
  .contact1__tel:hover::before, .contact1__tel:focus::before {
    background-color: #fff;
  }
  .contact1__tel:hover::after, .contact1__tel:focus::after {
    background: -webkit-gradient(linear, right bottom, left top, color-stop(50%, #fff), color-stop(50%, transparent));
    background: -webkit-linear-gradient(bottom right, #fff 50%, transparent 50%);
    background: linear-gradient(to top left, #fff 50%, transparent 50%);
  }
}
/*###################################################################
  page-404（page）
###################################################################*/
.page-404_pos {
  margin-top: clamp(3.75rem, 2.0833333333rem + 6.6666666667vw, 6.25rem);
}
.page-404__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .page-404__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) 100px;
  }
}
.page-404__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.page-404__text {
  line-height: 2;
  white-space: pre-line;
  margin-top: 50px;
}
.page-404__button {
  width: 175px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  border: 1px solid var(--text);
  margin: 50px auto 0;
}

@media (hover: hover) and (pointer: fine) {
  .page-404__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .page-404__button:hover, .page-404__button:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  js-（js制御用）
###################################################################*/