@charset "UTF-8";
/* main.css
----------------------------------------------------------------- */
@layer components {
  /* header、footerスタイル
  ----------------------------------------------------------------- */
  .header__fix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100%;
  }
  .header__container {
    width: 100%;
    margin: -1px auto 0;
    position: relative;
    z-index: 2;
  }
  .header__block {
    padding-block: 24px;
  }
  @media screen and (max-width: 1000px) {
    .header__block {
      padding-block: 0;
    }
  }
  .header__navi {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    padding-inline: 26px 28px;
    box-sizing: border-box;
    transition: 0.2s ease-in-out;
  }
  @media screen and (max-width: 1000px) {
    .header__navi {
      padding-inline: 16px 0;
    }
  }
  .header__naviList {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
  }
  .header__naviItem:nth-child(1) {
    position: relative;
    z-index: 5;
    max-width: 150px;
    width: 100%;
    margin-right: 1em;
  }
  @media screen and (max-width: 1000px) {
    .header__naviItem:nth-child(1) {
      max-width: 165.5px;
    }
  }
  .header__naviItem:nth-child(2) {
    margin-left: auto;
  }
  @media screen and (max-width: 1000px) {
    .header__naviItem:nth-child(2) {
      display: none;
    }
  }
  @media screen and (max-width: 1000px) {
    .header__naviItem:nth-child(3) {
      margin-left: auto;
    }
  }
  .header__logo {
    width: 100%;
  }
  .header__logoLink {
    display: block;
    width: 100%;
  }
  .header__navMenu {
    display: flex;
    align-items: center;
  }
  .header__navMenuLink {
    display: block;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #000;
    padding-inline: 23px;
  }
  @media screen and (max-width: 1200px) {
    .header__navMenuLink {
      font-size: 16px;
      padding-inline: 18px;
    }
  }
  .header__naviContList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
  }
  @media screen and (max-width: 1000px) {
    .header__naviContItem:first-child {
      display: none;
    }
  }
  @media (max-width: 1366px) {
    .header__naviContItem:nth-child(2) {
      width: auto;
    }
  }
  .header__btnList {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  .header__btnItem {
    padding-left: 23px;
  }
  @media screen and (max-width: 1200px) {
    .header__btnItem {
      padding-left: 18px;
    }
  }
  .header__btnContact {
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    max-width: 214px;
    min-width: 214px;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-block: 16px;
    padding-inline: 2em 1em;
  }
  @media screen and (max-width: 1200px) {
    .header__btnContact {
      max-width: 190px;
      min-width: 190px;
      gap: 28px;
      font-size: 14px;
    }
  }
  .header__btnContact::after {
    content: "";
    display: inline-block;
    width: 18px;
    aspect-ratio: 37/33;
    background: url("../img/common/icon_arrow_white.png") center/contain no-repeat;
    transition: all 0.3s ease-in-out;
  }
  @media (min-width: 767px) {
    .header__btnContact:hover::after {
      transform: translateX(4px);
    }
  }
  .header__btnTel {
    display: block;
    max-width: 214px;
    width: 100%;
  }
  .header__naviArea.open .header__drawer {
    right: 0;
    opacity: 1;
  }
  .header__naviArea.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  .header__drawer {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    background: #FFFFFF;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    right: -30%;
    width: 30%;
  }
  @media (max-width: 1366px) {
    .header__drawer {
      right: -65%;
      width: 65%;
    }
  }
  @media (max-width: 768px) {
    .header__drawer {
      right: -100%;
      width: 100%;
    }
  }
  .header__drawerInner {
    font-size: 18px;
    color: #fff;
    padding-block: 5em 4em;
    padding-inline: 4em;
  }
  @media (max-width: 768px) {
    .header__drawerInner {
      padding-block: 6em 2em;
      padding-inline: 2em;
    }
  }
  .header__drawerNaviItem {
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: relative;
  }
  .header__drawerNaviTitle > span {
    display: inline-block;
    font-size: 12px;
    padding-right: 1rem;
  }
  .header__drawerNaviLink {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #000;
    transition: all 0.2s ease-in-out;
    padding-block: 1.5em;
  }
  .header__drawerNaviLink > span {
    display: inline-block;
    padding-right: 0.8rem;
  }
  .header__drawerNaviLink::after {
    content: "";
    display: inline;
    width: 14px;
    aspect-ratio: 56/50;
    background: url("../img/common/icon_arrow_gray.png") center/contain no-repeat;
  }
  .header__drawerContact {
    max-width: 330px;
    width: 100%;
    margin-inline: auto;
    margin-top: 1.5em;
  }
  .header__drawerContactLink {
    position: relative;
    border-radius: 32.5px;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding-block: 22.5px;
  }
  .header__drawerContactLink::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 14px;
    aspect-ratio: 56/50;
    background: url("../img/common/icon_arrow_white.png") center/contain no-repeat;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
  }
  .header__toggleBtn {
    display: none;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 30;
    position: relative;
  }
  @media screen and (max-width: 1000px) {
    .header__toggleBtn {
      display: block;
    }
  }
  .header__openBtn {
    position: relative;
    width: 60px;
    height: 77px;
    cursor: pointer;
  }
  .header__openBtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 15px;
    height: 3px;
    background-color: #bfbfbf;
  }
  .header__openBtn span:nth-of-type(1) {
    top: 29px;
    width: 50%;
  }
  .header__openBtn span:nth-of-type(2) {
    top: 36.5px;
    width: 50%;
  }
  .header__openBtn span:nth-of-type(3) {
    top: 44px;
    width: 50%;
  }
  .header__openBtn.active span {
    background-color: #000;
  }
  .header__openBtn.active span:nth-of-type(1) {
    top: 31px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  }
  .header__openBtn.active span:nth-of-type(2) {
    width: 0;
  }
  .header__openBtn.active span:nth-of-type(3) {
    top: 43px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  }
  #mask {
    display: none;
    transition: all 0.5s;
  }
  .footer {
    background: #fff;
  }
  .footer__inner {
    max-width: 1150px;
    width: 77%;
    margin-inline: auto;
  }
  .footer__cols {
    display: flex;
    gap: 50px;
  }
  @media screen and (max-width: 768px) {
    .footer__cols {
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
  }
  .footer__detielsWrap {
    width: max-content;
  }
  @media screen and (max-width: 768px) {
    .footer__detielsWrap {
      display: contents;
    }
  }
  .footer__logo {
    max-width: 366px;
    width: 100%;
  }
  .footer__logo > a {
    display: block;
  }
  .footer__texts {
    font-size: 12px;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
  }
  .footer__adress {
    font-weight: normal;
  }
  .footer__btn {
    max-width: 214px;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .footer__btn {
      order: 98;
      max-width: 100%;
    }
  }
  .footer__btnLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-block: 16px;
    padding-inline: 2em 1em;
  }
  .footer__btnLink::after {
    content: "";
    display: inline-block;
    width: 18px;
    aspect-ratio: 37/33;
    background: url("../img/common/icon_arrow_white.png") center/contain no-repeat;
    transition: all 0.3s ease-in-out;
  }
  @media screen and (max-width: 768px) {
    .footer__btnLink::after {
      position: absolute;
      top: 50%;
      right: 1.5em;
      transform: translateY(-50%);
    }
  }
  @media (min-width: 767px) {
    .footer__btnLink:hover::after {
      transform: translateX(4px);
    }
  }
  .footer__menu {
    display: flex;
    gap: 20%;
    margin-left: 13.83%;
  }
  @media screen and (max-width: 1350px) {
    .footer__menu {
      display: block;
      margin-left: 6%;
    }
  }
  @media screen and (max-width: 768px) {
    .footer__menu {
      width: 100%;
      margin-left: 0;
    }
  }
  .footer__menuList {
    min-width: max-content;
  }
  .footer__menuList > li {
    margin-block: 10px;
  }
  @media screen and (max-width: 768px) {
    .footer__menuList > li {
      margin-block: 15px;
    }
  }
  .footer__menuList > li > a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    color: #000;
    white-space: nowrap;
  }
  @media screen and (max-width: 768px) {
    .footer__menuList > li > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }
  @media screen and (max-width: 768px) {
    .footer__menuList > li > a::after {
      content: "";
      display: inline-block;
      width: 14px;
      aspect-ratio: 56/50;
      background: url("../img/common/icon_arrow_gray.png") center/contain no-repeat;
    }
  }
  .footer__returnBtn {
    max-width: 39px;
    width: 100%;
    margin-left: auto;
  }
  @media screen and (max-width: 768px) {
    .footer__returnBtn {
      order: 99;
      max-width: 47px;
      margin-inline: auto;
    }
  }
  .footer__returnBtnLink {
    display: block;
    width: 100%;
  }
  .footer__copyright {
    text-align: center;
    font-size: 12px;
  }
  /* header、footerスタイル終わり
  ----------------------------------------------------------------- */
  /* 共通コンポーネント
  ----------------------------------------------------------------- */
  /* secTtl
  ----------------------------------------------------------------- */
  .secTtl {
    position: relative;
    z-index: 1;
  }
  .secTtl__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(18px, 2.2222222222vw, 24px);
    font-weight: 600;
    letter-spacing: 0;
  }
  .secTtl__label::before {
    content: "";
    display: inline-block;
    width: clamp(15.5px, 2.037037037vw, 22px);
    height: 1px;
    background-color: #de0515;
  }
  .secTtl__heading {
    font-size: clamp(26px, 3.8888888889vw, 42px);
    font-weight: 500;
    margin-top: 6px;
  }
  /* btnRound
  ----------------------------------------------------------------- */
  .btnRound {
    max-width: 213px;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .btnRound {
      max-width: 250px;
    }
  }
  .btnRound__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 2px solid #de0515;
    border-radius: 100px;
    width: 100%;
    padding-block: 14px;
    padding-inline: 1em 2em;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s;
  }
  @media screen and (max-width: 768px) {
    .btnRound__link {
      padding-block: 19px;
      padding-inline: 1em 1.5em;
    }
  }
  @media (min-width: 767px) {
    .btnRound__link:hover .btnRound__iconWrap {
      right: 8.8%;
    }
  }
  .btnRound__iconWrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10.8%;
    width: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
  }
  /* subMv（下層ページ共通MV）
  ----------------------------------------------------------------- */
  .subMv {
    width: 100%;
  }
  .subMv--column .subMv__bg img {
    object-position: center bottom;
  }
  .subMv__bg {
    width: calc((100vw - 100%) / 2 + 100%);
    height: 260px;
  }
  @media screen and (max-width: 768px) {
    .subMv__bg {
      height: 163px;
    }
  }
  .subMv__bg img {
    border-bottom-left-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* subHeading（下層ページ共通h1エリア）
  ----------------------------------------------------------------- */
  .subHeading {
    padding-block: 4em 2em;
    border-bottom: 1px solid #e4e5e5;
  }
  @media screen and (max-width: 768px) {
    .subHeading {
      padding-block: 3em 2em;
    }
  }
  /* linkSec
  ----------------------------------------------------------------- */
  .linkSec {
    overflow: hidden;
    padding-block: 50px 150px;
  }
  @media screen and (max-width: 768px) {
    .linkSec {
      padding-block: 50px 107px;
    }
  }
  .linkSec__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em 4.52%;
  }
  @media (max-width: 768px) {
    .linkSec__grid {
      grid-template-columns: 1fr;
    }
  }
  .linkSec__card {
    border-radius: 15px;
    box-shadow: 6px 0 21px rgba(75, 75, 75, 0.15);
    position: relative;
    display: flex;
    background: #FFFFFF;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }
  @media (min-width: 767px) {
    .linkSec__card:hover .linkSec__cardIco {
      transform: translateX(5px);
    }
    .linkSec__card:hover .linkSec__cardImgWrap img {
      transform: scale(1.04);
    }
  }
  .linkSec__cardBody {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-block: clamp(44px, 5.9259259259vw, 64px) clamp(40px, 5.0925925926vw, 55px);
    padding-inline: clamp(29px, 3.5928143713vw, 48px);
    position: relative;
    z-index: 1;
  }
  .linkSec__cardLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(16px, 2.2222222222vw, 24px);
    font-weight: 600;
    letter-spacing: 0;
  }
  .linkSec__cardLabel::before {
    content: "";
    display: inline-block;
    width: clamp(14px, 1.8518518519vw, 20px);
    height: 1px;
    background-color: #de0515;
  }
  .linkSec__cardHeading {
    font-size: clamp(24px, 2.6946107784vw, 36px);
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.3;
  }
  @media screen and (max-width: 768px) {
    .linkSec__cardHeading {
      margin-top: 3px;
    }
  }
  .linkSec__cardIco {
    width: clamp(25px, 3.1437125749vw, 42px);
    margin-top: auto;
    transition: transform 0.3s ease-in-out;
  }
  @media screen and (max-width: 768px) {
    .linkSec__cardIco {
      margin-top: auto;
    }
  }
  .linkSec__cardImgWrap {
    width: 49.2%;
    flex-shrink: 0;
    align-self: stretch;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .linkSec__cardImgWrap {
      width: 50%;
    }
  }
  .linkSec__cardImgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease-in-out;
  }
  /* 共通コンポーネント終わり
  ----------------------------------------------------------------- */
}