@charset "UTF-8";
:root{
  --scale: 1;
  --px: 1px;
  --rem: 1rem;
  --font_color: #333;
  --black: #000;
  --main:#0B335B;
  --sub:#8aa2b8;
  --light-blue:#DAE9F7;
  --blue-bg:#F2F9FF;
  --blue-bg2:#E1EDEC;
  --green:#5B8E89;
  --point:#E9943C;
  --gray1: #DEDEDE;
  --gray2: #919191;
  --gray3: #DBDBDB;
  --gray4: #CECECE;
  --gray5: #F7F7F7;
  --gray6: #CCCCCC;
  --gray7: #606060;
  --hero-bg-gym: #E4EEE8;
  --hero-bg-cafe: #E2ECF6;
  --hero-bg-kids: #EFF3D6;
  --hero-bg-shisei: #FBE8D8;

  --font-en: "Geologica",-apple-system,BlinkMacSystemFont,"Segoe UI","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
  --font-noto: "Noto Sans","Noto Sans JP",-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;


 	--100vw: 100vw;
	--1rem: 1rem;
  --scale: 1;
  --scale-en: 1;
  --round-xl: 26rem;
  --round-l: clamp(1.6rem, 1.327rem + 1.17vw, 2.4rem);
  --round-r: clamp(0.8rem, 0.527rem + 1.17vw, 1.6rem);
  --round-s: clamp(0.4rem, 0.263rem + 0.58vw, 0.8rem);

  --window-width: calc(tan(atan2(var(--100vw), 1px)) * min(1, 16 / tan(atan2(var(--1rem), 1px))));
  --space-side: calc(100vw * var(--my-side-margin) / var(--my-width));
  --space-slim-side: calc(100vw * var(--my-side-margin2) / var(--my-width));
  --my-width: 390;
  --my-side-margin: 16;
  --my-side-margin2: 38;
  --my-gutter: 16;
  --my-grid-number: 4;
  --mh--header--height: 63px;
	/* --scale: max(1, var(--window-width) / 1440);
  --window-width: calc(tan(atan2(var(--100vw), 1px)) * min(1, 16 / tan(atan2(var(--1rem), 1px))));
  --space-side: calc(100vw * var(--my-side-margin) / var(--my-width));
  --space-slim-side: calc(100vw * var(--my-side-margin2) / var(--my-width));
  --my-width: 390;
  --my-side-margin: 16;
  --my-side-margin2: 38;
  --my-gutter: 16;
  --my-grid-number: 4;

  --vw-min: 365;
  --vw-max: 1440;

  --fs-sp: 14;
  --fs-pc: 15;
  --fs-pc-sub: 18;
  --fs-sp-h2: 44;
  --fs-pc-h2: 58;

  --fs-fluid: calc(
    (var(--fs-sp) * 1px) +
    (var(--fs-pc) - var(--fs-sp)) * 1px *
    (var(--window-width) - var(--vw-min)) /
    (var(--vw-max) - var(--vw-min))
     );

  --fs-fluid-sub: calc(
    (var(--fs-sp) * 1px) +
    (var(--fs-pc-sub) - var(--fs-sp)) * 1px *
    (var(--window-width) - var(--vw-min)) /
    (var(--vw-max) - var(--vw-min))
  );
    --fs-fluid-h2: calc(
    (var(--fs-sp-h2) * 1px) +
    (var(--fs-pc-h2) - var(--fs-sp-h2)) * 1px *
    (var(--window-width) - var(--vw-min)) /
    (var(--vw-max) - var(--vw-min))
  );

  --rem: clamp(1rem, calc(100vw / 1440 * 1rem), 1.3rem); */
  --px: clamp(1px, calc(100vw / 1440), 1.3px);
  --rem-px: calc(1rem / 16);
}
@media (max-width: 768px) {
  :root {
    --scale: 0.8;
    --scale-en: .5;
  }
}
@supports (width: tan(1deg)) {
  :root{
    --100vw: 100vw;
    --1rem: 1rem;
    --window-width: calc(
      tan(atan2(var(--100vw), 1px)) * min(1, 16 / tan(atan2(var(--1rem), 1px)))
    );
    --scale: max(1, var(--window-width) / 1440);
    /* --px: calc(1px * var(--scale));
    --rem: calc(1rem * var(--scale)); */
  }
}

@media screen and (min-width: 768px){
    :root {
        --my-width: 1440;
        --my-side-margin: 46;
        --my-gutter: 20;
        --my-grid-number: 12;
    }
}


/* =====================================================
  1.0 - Foundation
===================================================== */
.upper {
  text-transform: uppercase;
}

.cap {
  text-transform: capitalize;
}

/*
  Reset
-----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.9;
  opacity: 0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

#wpadminbar{
  /* display: none; */
  position: fixed;
}

/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  height: 100%;
  color: var(--font_color);
  text-rendering: optimizeLegibility;
  font: 1em/2 "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  position: relative;
  padding-top: calc(100 * var(--px));
}

body.home{
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: calc(78 * var(--px));
  }
}
body.is-drawerActive {
  overflow: hidden;
}

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

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: inherit;
}


.white {
  background-color: #fff;
}

.opacity a{
  transition: .3s ease-in-out;
}
.opacity a:hover {
  filter: brightness(1.30);
}

.cursor {
  cursor: pointer;
}



/* =====================================================
  2.0 - Layout
===================================================== */
/*
  Centering
-----------------------------------------------------*/
.wrap {
  padding-inline: var(--space-side);
}

.wrap-1200{
  max-width: 1200px;
  margin: 0 auto;
}


@media screen and (max-width: 768px) {
  .wrap_pc{
    padding-inline: 0;
  }

  .wrap_sp{
    padding-inline: var(--space-side);
  }
  .l-footer .wrap{
    padding-inline: 0;
  }
}

.c-wrap{
  width: 90%;
  margin: auto;
  max-width: 800px;
}

/*
  grid
-----------------------------------------------------*/
.l-grid{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

.l-grid.tit-grid{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media screen and (max-width: 767px) {
  .l-grid.tit-grid{
    display: block;
  }
}

/*
  Header
-----------------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

  .admin-bar .l-header {
    top: 42px;
  }
@media screen and (min-width: 768px) {
  .admin-bar .l-header {
    top: 2em;
  }
}

/*
  Contents
-----------------------------------------------------*/
.l-contents {
  clear: both;
  padding-block: calc(90px * var(--scale)) ;
  overflow: hidden;
}


.l-contents.__bottom{
   padding-top:0;
}

.l-contents.p-about{
   padding-top:calc(224px * var(--scale));
}


@media screen and (max-width: 767px){
  .l-contents.p-about{
    padding-top:calc(120px * var(--scale));
  }


}

/*
  Main
-----------------------------------------------------*/
.l-main {
  clear: both;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-main.-single {
    width: auto;
    float: none;
  }
}
/*
  fade animation
*/
.Scroll-Fade {
  /* opacity: 0; */
}

/* .isActive {
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;root
    transform: none;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.is-fade-image {
  opacity: 0;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.is-fade-image.isFade {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
} */

/*
  front page
-----------------------------------------------------*/


.p-about__content{
  grid-column: 1 / 7;
}

.p-about__inner .section_tit{
  grid-column: 1 / 8;
}

.p-about__inner .p-about__body {
  grid-column: 2 / 8;
}
.p-about__gallery {
  width: 100%;
  grid-column: 8 / 13;
}


.p-about__body__tit{
  font-weight: 700;
  font-size: calc(22px * var(--scale));
  padding-bottom: calc(64px * var(--scale));
}

.p-about__body__tex{
  font-weight: 700;
  font-size: calc(16px * var(--scale));
}

.p-about__body__tex .__text{
  padding-bottom: calc(10px * var(--scale));
}

.p-about__body__tex .__text:last-of-type{
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-about__inner {
    display: block;
  }
  .p-about__body {
    padding-left: calc(40px * var(--scale));
  }
  .p-about__body__tit{
    padding-bottom: calc(48 * var(--px));
  }
  .p-about__gallery{
    padding-top: calc(60px * var(--scale));

  }
}

/*
  origin (社名の由来)
-----------------------------------------------------*/
.p-origin .section_tit {
  padding-bottom: calc(32px * var(--scale));
}

.p-origin .section_tit .en {
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  letter-spacing: normal;
}

.p-origin .section_tit .jp {
  font-size: calc(14px * var(--scale));
  padding-right: 0;
}

.p-origin .section_tit .jp:before {
  position: static;
  display: inline-block;
  margin-left: calc(8px * var(--scale));
  top: auto;
}

.p-origin__inner {
  /* display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  grid-template-areas:
    "head  table"
    "text  table";
  column-gap: calc(80px * var(--scale));
  align-items: start; */
}

.p-origin__left{
  grid-column: 2 / 5;
}

.p-origin_tit{
  display: flex;
  flex-direction: column;
}

.p-origin_tit .en{
  color: var(--light-blue);
  font-size: calc(18px * var(--scale));
  font-family: var(--font-en);
  letter-spacing: -.06em;
}

.p-origin_tit .jp{
  color: var(--main);
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(40px * var(--scale));
}

.p-origin__logo img {
  width: calc(260px * var(--scale));
  /* height: auto; */
}

.p-origin__text {
  grid-column: 2 / 5;
  /* grid-area: text; */
  margin-top: calc(40px * var(--scale));
}

.p-origin__text .__text {
  /* grid-column: 2 / 5; */
  font-size: calc(0.875rem, calc(16px * var(--scale)), 1rem);
  padding-bottom: 1em;
}

.p-origin__text .__text:last-of-type {
  padding-bottom: 0;
}

.p-origin__table {
  grid-column: 6 / 12;
}

.p-origin__group:first-of-type{
  padding-bottom: calc(50px * var(--scale));
}

.p-origin__group__head {
  background: var(--main);
  color: #fff;
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  text-align: center;
  padding-block: calc(16px * var(--scale));
  margin-bottom: calc(32px * var(--scale));
}

.p-origin__group.__base .p-origin__group__head {
  background: var(--green);
}

.p-origin__group__head .__sub {
  font-size: calc(14px * var(--scale));
  font-weight: 400;
  margin-left: calc(8px * var(--scale));
}

.p-origin__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(20px * var(--scale));
  text-align: center;
}

.p-origin__list.__base {
  grid-template-columns: repeat(4, 1fr);
}

.p-origin__list__word {
  font-family: var(--font-en);
  font-size: calc(28px * var(--scale));
  font-weight: 700;
  line-height: 1;
}

.p-origin__list__word .__accent {
  color: var(--point);
}

.p-origin__list__mean {
  font-size: calc(13px * var(--scale));
  font-weight: 700;
  padding-top: calc(8px * var(--scale));
}

@media screen and (max-width: 767px) {
  .p-origin__inner {
    display: flex;
    flex-direction: column;
    padding-left: calc(40px * var(--scale));
  }
  .p-origin__head {
    order: 1;
  }
  .p-origin__table {
    order: 2;
    margin-top: calc(48 * var(--px));
    gap: calc(32 * var(--px));
  }
  .p-origin__text {
    order: 3;
    margin-top: calc(48 * var(--px));
  }
  .p-origin__logo img {
    width: calc(180 * var(--px));
  }
  .p-origin__group__head {
    font-size: calc(18 * var(--px));
  }
  .p-origin__list,
  .p-origin__list.__base {
    grid-template-columns: 1fr;
    text-align: left;
    gap: calc(16 * var(--px));
  }
  .p-origin__list__item {
    display: flex;
    align-items: baseline;
    gap: calc(16 * var(--px));
  }
  .p-origin__list__word {
    font-size: calc(24 * var(--px));
    min-width: calc(130 * var(--px));
  }
  .p-origin__list__mean {
    padding-top: 0;
  }
}

.p-service__inner {
  border-top: 1px solid var(--font_color);
  border-bottom: 1px solid var(--font_color);
}
.p-service__list{
  max-width: 1200px;
  margin: 0 auto;
}

.p-service__item{
    display: grid;
    gap: 40px;
    position: relative;
    grid-template-columns: auto 32% 38%;
    padding-bottom: calc(60px * var(--scale));
}

.p-service__item:last-of-type{
  padding-bottom: 0;
}

.p-service__text{
  display: grid;
  align-content: space-between;
}

.p-service__text .__text{
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);

}

.p-service__brand__name{
  font-size: calc(14 * var(--px));
}

.p-service__status {
  padding-top: calc(40 * var(--px));
  font-family: var(--font-en);
  font-weight: 600;
  text-align: right;
  letter-spacing: -.06em;
  font-style: italic;
  padding-right: 1%;
}

@media screen and (max-width: 767px) {
  .p-service__item{
    grid-template-columns: 1fr;
    gap: calc(20 * var(--px));
    padding-bottom: calc(70 * var(--px)) ;
  }
  .p-service__brand{
    padding-bottom: calc(10 * var(--px)) ;
  }

  .p-service__brand .p-service__brand__logo{
    height: 36px;

  }

  .p-service__text{
    gap: calc(30 * var(--px));
  }

}

/* company */

.p-company__inner {
  display: grid;
  grid-template-columns: 47% 1fr;
  gap: calc(120px * var(--scale));
  align-items: center;
  padding-right: calc(116px * var(--scale));
}



.p-company__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-company__content .section_tit {
  padding-bottom: calc(70px * var(--scale));
}

.p-company__nav li + li {
  margin-top: calc(30px * var(--scale));
}

.c-button__inner__jp {
  display: inline-block;
  font-weight: 700;
  font-size: calc(22px * var(--scale));
  margin-right: calc(18px * var(--scale));
}

.c-button__inner__en {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  color: var(--main);
  letter-spacing: -.06em;
}

@media screen and (max-width: 767px) {
 .p-company__inner{
    grid-template-columns: 1fr;
    padding-right: 0px;
 }
 .p-company__visual{
  padding-right: calc(var(--space-side) * 2);
 }
 .p-company__right{
  padding-right: calc(var(--space-side) * 2);
 }

 .p-company__right .p-company__content{
  padding-left: calc(60 * var(--px));
 }
 .c-button__inner__text{
  display: flex;
  flex-direction: column;
 }

}
/* news */
.p-news {
  background: var(--main);
  color: #fff;
}

.p-news .section_tit .en,
.p-news .section_tit .jp,
.p-news .c-button,
.p-news .c-button_text {
  color: #fff;
}

.p-news .c-button {
  border-bottom-color: #fff;
}



.p-news__inner {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: calc(48px * var(--scale));
}

.p-news__head .section_tit {
  flex-direction: column;
  padding-bottom: calc(40px * var(--scale));
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: calc(20px * var(--scale));
}

.p-news__link {
  display: block;
}

.p-news__thumb {
  display: block;
  overflow: hidden;
}

.p-news__thumb img{
  width: 100%;
  transition: transform .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover .p-news__thumb img {
    transform: scale(1.08);
  }
}

.p-news__item:first-child{
  grid-column: 1 / 5;
}

.p-news__item:nth-child(2 ){
  grid-column: 5 / 8;
}
.p-news__item:nth-child(3 ){
  grid-column: 8 / 11;
}

.p-news__group{
  padding-top: calc(20 * var(--px));
  display: flex;
  gap: calc(20px * var(--scale));
  font-size: calc(12 * var(--px));
  line-height: 1;
}

.p-news__date {
  display: block;
  /* font-family: var(--font-en);
  letter-spacing: -.06em; */
}

.p-news__title {
  font-size: calc(14 * var(--px));
  font-weight: 700;
  padding-top: calc(10px * var(--scale));
}

.p-news__empty {
  font-size: calc(14px * var(--scale));
}
@media screen and (max-width: 767px) {
  .p-service__item{
    grid-template-columns: 1fr;
    gap: calc(20 * var(--px));
    padding-bottom: calc(74 * var(--px)) ;
  }

  .p-news__list{
    width: 90%;
    margin: 0 auto;
  }

    .p-news__inner {
    display: block;
  }

  .p-news__head .section_tit {
    padding-bottom: calc(40 * var(--px));
  }

  .p-news__list {
    display: flex;
    flex-direction: column;
    gap: calc(48 * var(--px));
  }

  .p-news__btn{
    width: 90%;
    margin: 0 auto;
  }

}

/* recruit */
.p-recruit__inner {
  display: grid;
  grid-template-columns: 1fr 49.3%;
  justify-content: space-between;
  gap: calc(100px * var(--scale));
}

.p-recruit__content {
  padding-left: var(--space-side);
}

.p-recruit__text {
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  max-width: 620px;
  padding-left: calc(80px * var(--scale));
}



.p-recruit__visual picture:nth-child(2) {
  transform: translateY(calc(-70px * var(--scale)));
}

.p-recruit__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 767px){
  .p-recruit__inner{
    grid-template-columns: 1fr;
  }
  .p-recruit__visual{
    order: -1;
    padding-right: calc(var(--space-side) * 2);
  }
  .p-recruit__text{
    padding-left: 0;
  }
  .p-recruit__left{
    padding-right: var(--space-side);
  }
  .p-recruit__left .p-recruit__content{
    padding-left: calc(60 * var(--px));
  }
}

/*
  Footer
-----------------------------------------------------*/

.l-footer {
  padding: calc(88px * var(--scale)) 0 calc(70px * var(--scale));
}

.l-footer__main {
  display: grid;
  grid-template-columns: 1fr 25% 42%;
  gap: calc(70px * var(--scale));
}

.l-footer__logo-link {
  display: block;
  width: calc(196px * var(--scale));
  margin-bottom: calc(40px * var(--scale));
  transition: opacity .3s ease;
}

.l-footer__logo-img {
  width: 100%;
  height: auto;
}

/* .l-footer__name,
.l-footer__address {
  font-size: calc(17px * var(--scale));
} */

.l-footer__name {
  margin-bottom: calc(20px * var(--scale));
}

.l-footer__address {
  margin-bottom: calc(20 * var(--px));
  font-size: calc(14px * var(--scale));
}

.l-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: calc(10px * var(--scale));
  font-size: calc(14 * var(--px));
  text-decoration: underline;
  transition: color .3s ease;
}

.l-footer__map-link::before {
  content: "";
  width: calc(24px * var(--scale));
  height: calc(32px * var(--scale));
  background: url(../images/icon_map_orange.svg) center / contain no-repeat;
}

.l-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(70px * var(--scale));
}

.l-footer__nav-item {
  margin-bottom: calc(30 * var(--px));
}

.l-footer__nav-link {
  font-size: calc(13px * var(--scale));
  font-weight: 800;
  letter-spacing: .04em;
  transition: color .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__logo-link:hover {
    opacity: .6;
  }

  .l-footer__map-link:hover {
    color: var(--main);
  }

  .l-footer__service-link:hover{
    color: var(--main);
  }

  .l-footer__nav-link:hover {
    color: var(--point);
  }
}


.l-footer__service-link {
  color: var(--gray2);
  font-size: calc(12px * var(--scale));
  font-weight: 700;
  padding-left: 10px;
  position: relative;
}

.l-footer__service-link::before {
  content: "";
  position: absolute;
  background-color: var(--main);
  width: 5px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

}

.l-footer__buttons {
  display: grid;
  gap: calc(40px * var(--scale));
}

.l-footer__button-link {
  border: 1px solid var(--point);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: calc(20px * var(--scale));
  padding: calc(30px * var(--scale)) calc(40px * var(--scale));
  color: var(--point);
  transition: background-color .3s ease, color .3s ease;
}

.l-footer__button-link.is-instagram {
  border-color: var(--main);
  color: var(--main);
}

.l-footer__button-icon {
  width: calc(60 * var(--px));
  height: calc(60 * var(--px));
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.l-footer__button-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: 50% center;
  background-size: calc(28px * var(--scale)) calc(28px * var(--scale));
  background-repeat: no-repeat;
}

.is-contact .l-footer__button-icon::before {
  background-image: url(../images/icon_contact_orange.svg);
}

.is-instagram .l-footer__button-icon::before {
  background-image: url(../images/icon_instagram_blue.svg);
}

.l-footer__button-text {
  font-family: var(--font-en);
  font-size: calc(16 * var(--px));
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.06em;
}

.l-footer__button-arrow {
  width: calc(55px * var(--scale));
  height: calc(55px * var(--scale));
  background: var(--point);
  position: relative;
  overflow: hidden;
  transition: background-color .3s ease;
}

.is-instagram .l-footer__button-arrow {
  background: var(--main);
}

.l-footer__button-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(-45deg);
  background-image: url(../images/arrow_white.svg);
  background-position: 50% center;
  background-size: calc(25px * var(--scale)) calc(25px * var(--scale));
  background-repeat: no-repeat;
  transition: background-position .4s ease, filter .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__button-link:hover {
    background: var(--point);
    color: #fff;
  }

  .l-footer__button-link.is-instagram:hover {
    background: var(--main);
  }

  .l-footer__button-link:hover .l-footer__button-arrow {
    background: #fff;
  }

  .l-footer__button-link:hover .l-footer__button-arrow::before {
    background-image: url(../images/arrow_orange.svg);
    background-position: 70% center;
  }

  .l-footer__button-link.is-instagram:hover .l-footer__button-arrow::before {
    filter: none;
    background-image: url(../images/arrow_main.svg);
  }

  .l-footer__service-link:hover{
    color: var(--main);
  }
}

.l-footer__bottom {
  margin-top: calc(88px * var(--scale));
  /* padding-inline: var(--space-side); */

}

.l-footer__bottom__inner{
  border-top: 1px solid var(--gray3);
  padding-top: calc(30 * var(--px));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-footer__legal-list {
  display: flex;
  gap: calc(40px * var(--scale));
}

.l-footer__legal-link{
  font-size: calc(12px * var(--scale));
}

.l-footer__copy{
    font-size: calc(12 * var(--px));
}

.sp-only {
  display: none;
}
@media (hover: hover) and (pointer: fine) {

  .l-footer__legal-link:hover{
    opacity:.5;

  }
}


@media screen and (max-width: 767px) {


  .l-footer__main {
    display: flex;
    flex-direction: column;
    gap: calc(70 * var(--px));
    width: 80%;
    margin: 0 auto;
  }

  .l-footer__buttons {
    order: 1;
    gap: calc(30 * var(--px));
  }

  .l-footer__nav {
    order: 2;
    grid-template-columns: 1fr 1fr;
    gap: calc(36 * var(--px));
  }

  .l-footer__company {
    order: 3;
    padding-top: calc(30 * var(--px));
  }

  .l-footer__button-link {
    gap: calc(10 * var(--px));
    padding: calc(20 * var(--px));
  }


  .l-footer__button-icon::before {
    background-size: calc(24 * var(--px)) calc(24 * var(--px));
  }

  .l-footer__button-arrow {
    width: calc(50 * var(--px));
    height: calc(50 * var(--px));
  }

  .l-footer__nav-link {
    font-size: calc(14 * var(--px));
  }

  .l-footer__service-list {
    margin-top: calc(10 * var(--px));
  }

  .l-footer__service-link {
    font-size: calc(12 * var(--px));
  }

  .l-footer__logo-link {
    width: calc(240 * var(--px));
    margin-bottom: calc(40 * var(--px));
  }

  .l-footer__name{
    font-size: calc(16 * var(--px));
  }

  .l-footer__address {
    font-size: calc(14 * var(--px));
  }

  .l-footer__map-link::before {
    width: calc(22 * var(--px));
    height: calc(30 * var(--px));
  }

  .l-footer__bottom {
    margin-top: calc(58 * var(--px));

  }

  .l-footer__bottom__inner{
    display: block;
    margin-inline: var(--space-side);
  }

  .l-footer__legal-list {
    justify-content: space-around;
    gap: calc(16 * var(--px));
    margin-bottom: calc(30 * var(--px));
  }

  .l-footer__legal-link {
    font-size: calc(12 * var(--px));
  }

  .l-footer__copy {
    text-align: center;
    color: var(--gray2);
  }

  .sp-only {
    display: block;
  }
}

/* =====================================================
  about page
===================================================== */


.about-page__area{
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-gap: 1.5rem;
    gap: calc(90px * var(--scale));
}

.about-page__head {
    grid-column: 3 / 13;
}

.about-page__philosophy{
  grid-column: 3 / 13;

}


.about-page__lead {
  font-size: clamp(0.875rem, calc(16px * var(--scale)), 1rem);
  font-weight: 500;
}


.about-page__item {
  border-bottom: 1px solid var(--gray2);
  padding-block: calc(90px * var(--scale));
}

.about-page__item:first-child {
  padding-top: 0;
}

.about-page__item-en {
  color: var(--light-blue);
  font-size: calc(18px * var(--scale));
  font-family: var(--font-en);
  letter-spacing: -.06em;
}

.about-page__item-title {
  color: var(--main);
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(40px * var(--scale));
}

.about-page__item-text {
  font-size: calc(28px * var(--scale));
  font-weight: 800;
}

/* facility */
.facility-page {
  overflow: hidden;
}

.facility-page__inner {
  padding-bottom: calc(60px * var(--scale));
}

.facility-page__text {
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
}

.facility-page__gallery {
  display: flex;
  flex-direction: column;
  gap: calc(36px * var(--scale));
}

.facility-swiper {
  width: 100%;
  overflow: hidden;
}

.facility-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.facility-page__image {
  display: block;
  width: calc(310px * var(--scale));
  overflow: hidden;
  flex-shrink: 0;
}

.facility-page__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media screen and (max-width: 767px) {

  .about-page {
    padding-bottom: calc(100 * var(--px));
  }

  .about-page__head {
    display: block;
  }

  .about-page__area{
    display: block;
    padding-left: calc(40 * var(--px));

  }

  .about-page__item {
    padding-block: calc(56 * var(--px)) ;
  }

  .about-page__item:first-child {
    padding-top: calc(56 * var(--px));
  }

  .about-page__item-title {
    margin-bottom: calc(24 * var(--px));
  }

  .about-page__item-text {
    font-size: calc(18 * var(--px));
  }

  .facility-page {
    padding-bottom: calc(60 * var(--px));
  }

  .facility-page__inner {
    padding-bottom: calc(35 * var(--px));
  }


  .facility-page__gallery {
    gap: calc(12 * var(--px));
  }

  .facility-page__image {
    width: calc(130 * var(--px));
    aspect-ratio: 130 / 150;
  }

}
/* =====================================================
  service page
===================================================== */

.service-page {
  padding-bottom: calc(105px * var(--scale));
}

.service-page .section_tit {
  padding-bottom: calc(105px * var(--scale));
}

.service-page__list {
  max-width: 1200px;
  margin: 0 auto;
}

.service-page__item {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  border-top: 1px solid var(--gray1);
  padding-block: calc(70px * var(--scale));
}

.service-page__item:last-child {
  padding-bottom: 0;
}

.service-page__head {
  grid-column: 1 / 4;
}

.service-page__logo {
  display: block;
  margin-bottom: calc(10px * var(--scale));
  height: 36px;
  width:auto ;
}

.service-page__name {
  font-size: calc(14 * var(--px));
}

.service-page__sns {
  display: inline-grid;
  gap: calc(20px * var(--scale));
  margin-top: calc(46px * var(--scale));
}

.service-page__sns-link {
  display: flex;
  align-items: center;
  gap: calc(18px * var(--scale));
  color: var(--green);
}

.service-page__sns-icon {
  width: calc(60px * var(--scale));
  height: calc(60px * var(--scale));
  border: 1px solid var(--green);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.service-page__sns-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(23px * var(--scale));
  height: calc(23px * var(--scale));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.service-page__sns-icon.is-line::before {
  background-image: url(../images/icon_line_green.svg);
}

.service-page__sns-icon.is-instagram::before {
  background-image: url(../images/icon_instagram_green.svg);
}

.service-page__sns-text {
  font-size: calc(12 * var(--px));
  font-weight: 500;
}

.service-page__body {
  grid-column: 4 / 13;
}

.service-page__image {
  display: block;
  margin-bottom: calc(30px * var(--scale));
}

.service-page__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page__flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

}

.service-page__text {
  width: min(100%, calc(530px * var(--scale)));
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  font-weight: 500;
}

.service-page__button {
  display: flex;
  justify-content: flex-end;
  margin-top: calc(34px * var(--scale));
}

.service-page__button-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(36px * var(--scale));
  width: calc(220px * var(--scale));
  border-bottom: 1px solid var(--black);
  padding-bottom: calc(10px * var(--scale));
  transition: border-color .3s ease;
}

.service-page__button-text {
  font-family: var(--font-en);
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  letter-spacing: -.06em;
  transition: transform .3s ease, color .3s ease;
}

.service-page__button-arrow {
  width: calc(42px * var(--scale));
  height: calc(42px * var(--scale));
  background: var(--black);
  position: relative;
  overflow: hidden;
  transition: background-color .3s ease;
}

.service-page__button-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/arrow_white.svg);
  background-position: 50% center;
  background-size: calc(15px * var(--scale)) calc(15px * var(--scale));
  background-repeat: no-repeat;
  transition: background-position .4s ease;
}

.service-page__status {
  font-family: var(--font-en);
  font-size: calc(18px * var(--scale));
  font-weight: 600;
  letter-spacing: -.06em;
}

@media (hover: hover) and (pointer: fine) {
  .service-page__sns-link:hover .service-page__sns-icon{
    background-color: var(--green);
  }

  .service-page__sns-link:hover .service-page__sns-icon{
    transition: all 0.3s ease-in-out;
  }

  .service-page__sns-link:hover .service-page__sns-icon.is-line::before{
    background-image: url(../images/icon_line_white.svg);
  }
  .service-page__sns-link:hover .service-page__sns-icon.is-instagram::before{
    background-image: url(../images/icon_instagram_white.svg);
  }

  .service-page__button-link:hover {
    border-color: var(--point);
    color: var(--point);
  }

  .service-page__button-link:hover .service-page__button-arrow {
    background: var(--point);
  }

  .service-page__button-link:hover .service-page__button-arrow::before {
    background-position: 70% center;
  }

  .service-page__button-link:hover .service-page__button-text{
    transform: translateX(6px);
  }
}

@media screen and (max-width: 767px) {
  .service-page {
    padding-bottom: calc(45 * var(--px));
  }

  .service-page .section_tit {
    padding-bottom: calc(38 * var(--px));
  }

  .service-page__item {
    display: block;
    padding-block: calc(56 * var(--px));
  }

  .service-page__flex{
    flex-direction: column;
    align-items: stretch;
  }

  .service-page__button-text{
    font-size: calc(13 * var(--px));
  }


  /* .service-page__logo--sheep {
    width: calc(158 * var(--px));
  } */

  .service-page__sns {
    gap: calc(16 * var(--px));
  }

  .service-page__sns-link {
    gap: calc(10 * var(--px));
  }


  .service-page__sns-icon::before {
    width: calc(22 * var(--px));
    height: calc(22 * var(--px));
  }


  .service-page__image {
    margin-top: calc(28 * var(--px));
    margin-bottom: calc(17 * var(--px));
  }

  .service-page__text {

  }

  .service-page__button {
    margin-top: calc(30 * var(--px));
  }

  .service-page__button-link {
    width: calc(150 * var(--px));
    gap: calc(18 * var(--px));
    padding-bottom: calc(8 * var(--px));
  }


  .service-page__button-arrow {
    width: calc(38 * var(--px));
    height: calc(38 * var(--px));
  }

  .service-page__status {
    margin-top: calc(30 * var(--px));
    font-size: calc(16 * var(--px));
    text-align: right;
  }
}
/* =====================================================
  company page
===================================================== */

.company-page {
  padding-bottom: calc(200px * var(--scale));
  position: relative;
}

.company-page__head {

}

.company-page__content {
  padding-top: calc(95px * var(--scale));
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: 1.5rem;
}

.company-page .section_tit {
  padding-bottom: calc(80px * var(--scale));
  grid-column: 1 / 7;
}

.company-page__main-image {
  position: absolute;
  top: 0;
  right: 0;
}



.company-page__list {
  border-top: 1px solid var(--gray1);
  grid-column: 2 / 9;
}

.company-page__item {
  display: grid;
  grid-template-columns: calc(170px * var(--scale)) 1fr;
  border-bottom: 1px solid var(--gray1);
  padding-block: calc(30 * var(--px));
}

.company-page__term,
.company-page__desc {
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
}

.company-page__desc{
  font-weight: 500;
}

.company-page__term{
  font-weight: 700;
}

.company-page__gallery {
  margin-top: calc(200px * var(--scale));
  overflow: hidden;
}

.company-page__parallax {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 1600;
}

.company-page__parallax-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
}

.company-page__parallax-photo--a {
  top: 0%;
  left: 15.9027778%;
  width: 27.4305556%;
  aspect-ratio: 790 / 1050;
}

.company-page__parallax-photo--b {
  top: 13.7218045%;
  left: 53.472222%;
  width: 26.0416667%;
  aspect-ratio: 900/ 1220;
}

.company-page__parallax-photo--c {
  z-index: 3;
  top: 52.996241%;
  left: 3.472222%;
  width: 38.5416667%;
  aspect-ratio: 1110 / 830;
}

.company-page__parallax-photo--d {
  /* top: 60.4323308%; */
  bottom: 0;
  left: 50.5555556%;
  width: 35.222222%;
  aspect-ratio: 640 / 660;
}

.company-page__parallax-photo--e {
  z-index: 1;
  top: 30.3571429%;
  left: -11.1111111%;
  width: 32.305556%;
  aspect-ratio: 1120 / 770;
}

.company-page__parallax-photo--f {
  z-index: 1;
  top: 36.1842105%;
  right: 0;
  width: 24.3055556%;
  aspect-ratio: 700 / 890;
}

.company-page__parallax-photo__image {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  will-change: transform;
}

.company-page__parallax-photo__mask {
  position: absolute;
  inset: 0;
  transform-origin: bottom center;
  -webkit-mask-position: 100% 0%;
  mask-position: 100% 0%;
  -webkit-mask-size: 200% 200%;
  mask-size: 200% 200%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0 / 0) 50%, rgb(0 0 0 / 0) 100%);
  mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0 / 0) 50%, rgb(0 0 0 / 0) 100%);
  will-change: transform;
}

.company-page__parallax-photo--a .company-page__parallax-photo__mask,
.company-page__parallax-photo--c .company-page__parallax-photo__mask,
.company-page__parallax-photo--f .company-page__parallax-photo__mask {
  -webkit-mask-position: -100% 0%;
  mask-position: -100% 0%;
}

.company-page__parallax-photo__mask .__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* message */

.message-page__inner.l-grid {
  grid-template-columns: repeat(15, minmax(0, 1fr));
}

.message-page__image {
  grid-column: 1 / 6;
}


.message-page__content {
  grid-column: 7 / 16;
}

.message-page .section_tit {
  padding-bottom: calc(72px * var(--scale));
}

.message-page__lead {
  font-size: calc(22px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(40px * var(--scale));
}

.message-page__text {
  font-size: calc(14 * var(--px));
  font-weight: 400;
}

.message-page__text p + p {
  margin-top: calc(20px * var(--scale));
}

.message-page__name {
  text-align: right;
  font-size: calc(16 * var(--px));
  font-weight: 700;
  margin-top: calc(30px * var(--scale));
}

@media screen and (max-width: 767px) {
  .company-page {
    padding-bottom: calc(80 * var(--px));
  }

  .company-page__head {
    display: flex;
    flex-direction: column;
    gap: calc(32 * var(--px));
  }

  .company-page__content {
    padding-top: 0;
    display: block;
  }

  .company-page__main-image {
    position: static;
  }

  .company-page__main-image .__img{
    width: 100%;
  }

  .company-page .section_tit {
    padding-bottom: calc(32 * var(--px));
  }

  .company-page__list {
    margin-top: calc(40 * var(--px));
  }

  .company-page__item {
    display: block;
  }


  .company-page__gallery {
    margin-top: calc(70 * var(--px));
  }

  .company-page__parallax {
    aspect-ratio: 375 / 700;
  }

  .company-page__parallax-photo--a {
    top: 6.968698%;
    left: 8.2666667%;
    width: 38.9333333%;
  }

  .company-page__parallax-photo--b {
    top: 0%;
    left: 54.9333333%;
    width: 37.3333333%;
  }

  .company-page__parallax-photo--c {
    z-index: 2;
    bottom: 9.333333%;
    top: auto;
    left: 0;
    width: 53.3333333%;
  }

  .company-page__parallax-photo--d {
    left: 50.4%;
    width: 42%;
  }

  .company-page__parallax-photo--d .company-page__parallax-photo__mask {
    -webkit-mask-position: -100% 0%;
    mask-position: -100% 0%;
  }

  .company-page__parallax-photo--e {
    z-index: 1;
    top: 49.518946%;
    left: 21.518946%;
    width: 56%;
    width: 56%;
  }

  .company-page__parallax-photo--f {
    z-index: 3;
    top: 23.5584843%;
    width: 34.6666667%;
  }

  .message-page {
    padding-bottom: calc(56 * var(--px));
  }

  .message-page__inner {
    display: block;
  }

  .message-page__sp{
    padding-left: calc(40 * var(--px));
  }

  .message-page__image {
    padding-bottom: calc(50 * var(--px));
  }

  .message-page__content {
    padding-top: 0;
  }

  .message-page .section_tit {
    padding-bottom: calc(32 * var(--px));
  }

  .message-page__name{
    margin-top: calc(36 * var(--px));
  }


  .message-page__text p + p {
    margin-top: calc(16 * var(--px));
  }

}

/* =====================================================
  contact entry form pages
===================================================== */

.page-form .section_tit {
  padding-bottom: calc(90px * var(--scale));
}

.page-form__lead {
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(60px * var(--scale));
  max-width: 1127px;
  margin-inline: auto;
  width: 90%;
}

.page-form__inner {
  width: min(100%, calc(1000px * var(--scale)));
  margin-inline: auto;
  background: var(--gray5);
  padding-block: calc(100px * var(--scale));
}

.page-form__form-area{
  max-width: 700px;
  margin: 0 auto;
  width: 90%;
}

.page-entry .page-form__inner {
  background: #edf6fd;
}

.page-form__inner p {
  margin: 0;
}

.page-form__row {
  margin-bottom: calc(30 * var(--px));
}

.page-form__label {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--px));
  color: var(--main);
  font-size: calc(14 * var(--px));
  font-weight: 800;
  margin-bottom: calc(10 * var(--px));
}

.page-form__required {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: 0 calc(6 * var(--px));
  font-weight: 500;
  line-height: 1.5;
}

.page-form__input,
.page-form__textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: calc(14 * var(--px)) calc(18 * var(--px));
}

.page-form__textarea {
  min-height: calc(180px * var(--scale));
}

.page-form__checkbox-list .wpcf7-checkbox{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(80px * var(--scale));
  row-gap: calc(20 * var(--px));
  font-size: calc(14 * var(--px));
}

.page-form__privacy {
  text-align: center;
  margin-top: calc(40px * var(--scale));
  font-size:calc(12 * var(--px)) ;
}

.page-form__submit {
  display: flex;
  justify-content: center;
  margin-top: calc(10px * var(--scale));
}

.page-form__submit .c-button {
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* Contact Form 7 */
.page-form .wpcf7-form-control-wrap {
  display: block;
}

.page-form input[type="text"],
.page-form input[type="email"],
.page-form input[type="tel"],
.page-form textarea {
  width: 100%;
  border: none;
  background: #fff;
  padding: calc(14 * var(--px)) calc(18 * var(--px));
}

.page-form textarea {
  min-height: calc(180px * var(--scale));
}

.page-form input[type="checkbox"] {
  margin-right: calc(8 * var(--px));
}

.page-form input[type="file"] {
  font-size: calc(12 * var(--px));
}

.page-form .wpcf7-list-item {
  margin: 0;
}

.page-form .wpcf7-submit {
  display: none;
}

.page-form .btn {
  display: flex;
  justify-content: center;
  padding-top: calc(60px * var(--scale));
}

@media screen and (max-width: 767px) {
  .page-form .section_tit {
    padding-bottom: calc(48 * var(--px));
  }

  .page-form__lead {
    margin-bottom: calc(64 * var(--px));
    padding-inline: var(--space-side);

  }

  .page-form__checkbox-list .wpcf7-checkbox{
    column-gap: 0;
  }


  .page-form__textarea,
  .page-form textarea {
    min-height: calc(144 * var(--px));
  }

  .page-form__checkbox-list {
    grid-template-columns: 1fr;
    row-gap: calc(11 * var(--px));
  }

  .page-form__privacy {
    margin-top: calc(40 * var(--px));
  }

  .page-form .btn {
    padding-top: calc(48 * var(--px));
  }
}


/* =====================================================
  thanks page
===================================================== */


.thanks-page__inner {
  margin: 0 auto;
  text-align: center;
}

.thanks-page__icon {
  max-width: calc(272 * var(--px));
  display: block;
  margin: 0 auto;
}


.thanks-page__title {
  font-size: calc(28px * var(--scale));
  font-weight: 800;
  margin-block: calc(50px * var(--scale));
}

.thanks-page__text {
  font-size: calc(18px * var(--scale));
}

@media screen and (max-width: 767px) {


  .thanks-page__icon {
    width: calc(190 * var(--px));
    margin-bottom: calc(46 * var(--px));
  }

  .thanks-page__title{
    font-size: calc(18 * var(--px));
    margin: calc(40 * var(--px)) 0 calc(48 * var(--px));

  }

}

/* =====================================================
404 page
===================================================== */

.notfound-page__inner {
  text-align: center;
}

.notfound-page__icon {
  display: block;
  margin: 0 auto calc(60px * var(--scale));
}


.notfound-page__text {
  font-size: calc(18px * var(--scale));
  font-weight: 700;
}

.notfound-page .btn {
  padding-top: calc(70px * var(--scale));
}

.page-404 .p-cta {
  border-top: 1px solid var(--font_color);
}

@media screen and (max-width: 767px) {

  .notfound-page__icon {
    width: calc(248 * var(--px));
    margin-bottom: calc(56 * var(--px));
  }

  .notfound-page__text{
    font-weight: 600;
  }
}

/* =====================================================
  legal pages
===================================================== */

.legal-page .section_tit {
  padding-bottom: calc(110px * var(--scale));
}

.legal-page__body {
  max-width: calc(800px * var(--scale));
  margin-inline: auto;
  font-size: clamp(0.875rem, calc(16px * var(--scale)), 1rem);
}

.legal-page__section + .legal-page__section,
.legal-page__body > p + .legal-page__section {
  margin-top: calc(30px * var(--scale));
}

.legal-page__heading {
  font-weight: 800;
  margin-bottom: calc(8 * var(--px));
}

.legal-page__list,
.legal-page__ordered-list {
  margin-top: calc(8 * var(--px));
}

.legal-page__list-item,
.legal-page__ordered-item {
  position: relative;
  padding-left: calc(18 * var(--px));
}

.legal-page__list-item::before {
  content: "";
  position: absolute;
  top: .85em;
  left: 0;
  width: calc(5 * var(--px));
  height: calc(5 * var(--px));
  background: var(--black);
  border-radius: 50%;
}

.legal-page__ordered-list {
  counter-reset: legal-counter;
}

.legal-page__ordered-item {
  counter-increment: legal-counter;
}

.legal-page__ordered-item::before {
  content: counter(legal-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.legal-page__list-item + .legal-page__list-item,
.legal-page__ordered-item + .legal-page__ordered-item {
  margin-top: calc(6 * var(--px));
}

.legal-page__date {
  text-align: right;
  margin-top: calc(36px * var(--scale));
}

.page-legal .p-cta {
  border-top: 1px solid var(--font_color);
}

@media screen and (max-width: 767px) {
  .legal-page .section_tit {
    padding-bottom: calc(48 * var(--px));
  }

  .legal-page__body {
    max-width: none;
  }

  .legal-page__section + .legal-page__section,
  .legal-page__body > p + .legal-page__section {
    margin-top: calc(29 * var(--px));
  }

  .legal-page__date {
    margin-top: calc(29 * var(--px));
  }
}

/* =====================================================
  recruit / recruitment
===================================================== */

.recruit-page .section_tit,
.job-position .section_tit,
.recruitment-detail .section_tit {
  padding-bottom: calc(90px * var(--scale));
}


.recruit-page__text {
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  font-weight: 700;
  grid-column: 2 / 6;
  padding-top: calc(100px * var(--scale));
}

.recruit-page__lead {
  font-size: calc(22px * var(--scale));
  margin-bottom: calc(40px * var(--scale));
}

.recruit-page__main-image,
.recruit-page__gallery-image {
  display: block;
  overflow: hidden;
}

.recruit-page__main-image {
  grid-column: 7 / 15;
}

.recruit-page__main-image .__img,
.recruit-page__gallery-image .__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-page__gallery {
  margin-top: calc(120px * var(--scale));
  position: relative;
  overflow: hidden;
}

.recruit-gallery-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.recruit-page__gallery .swiper-slide {
  width: calc(400px * var(--scale));
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}

.recruit-page__gallery .swiper-slide:nth-child(odd){
  margin-top: calc(40px * var(--scale));
}

.recruit-page__gallery .recruit-page__gallery-image {
  width: 100%;
  height: 100%;
}

.job-position__list {
  /* width: min(100%, calc(960px * var(--scale)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(50px * var(--scale));
  row-gap: calc(34px * var(--scale)); */
  grid-template-columns: repeat(13, minmax(0, 1fr));
}

.job-position__item{
  grid-column: 3 / 8;
}

.job-position__item:nth-child(even) {
  grid-column: 8 / 13;
}

.job-position__link {
  display: block;
  border: 1px solid var(--gray1);
  padding: calc(40px * var(--scale)) calc(40px * var(--scale)) calc(50px * var(--scale)) calc(40px * var(--scale));
  position: relative;
  transition: border-color .3s ease;
}

.job-position__service {
  display: inline-block;
  background-color: #fff;
  color: var(--green);
  border: 1px solid var(--green);
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  padding-inline:calc(10 * var(--px));
  margin-bottom: calc(10px * var(--scale));
}

.job-position__title {
  color: var(--main);
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  /* margin-bottom: calc(12 * var(--px)); */
}

.job-position__type {
  color: var(--gray2);
  font-size: calc(12 * var(--px));
  font-weight: 500;
}

.job-position__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(50px * var(--scale));
  height: calc(50px * var(--scale));
  background: var(--black);
  overflow: hidden;
}

.job-position__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/arrow_white.svg);
  background-position: 50% center;
  background-size: calc(18px * var(--scale)) calc(18px * var(--scale));
  background-repeat: no-repeat;
  transition: background-position .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .job-position__link:hover {
    border-color: var(--main);
    background-color: var(--blue-bg);
  }

  .job-position__link:hover .job-position__arrow{
    background-color: var(--main);
  }

  .job-position__link:hover .job-position__arrow::before {
    background-position: 70% center;
  }

  /* .job-position__link:hover .job-position__service,
  .job-position__link:hover .job-position__title,
  .job-position__link:hover .job-position__type {
    opacity: .5;
  } */
}

/* faq */
.recruit-faq {
  background: var(--blue-bg);
}

.recruit-faq .section_tit {
  justify-content: center;
  padding-bottom: calc(70px * var(--scale));
}

.recruit-faq__cat-list {
  display: flex;
  justify-content: center;
  gap: calc(48px * var(--scale));
  /* margin-bottom: calc(60px * var(--scale)); */
  font-weight: 700;
}

.recruit-faq__cat-link {
  color: var(--gray2);
  font-weight: 700;
  background: none;
  border: none;
  transition: opacity .3s ease;
}

.recruit-faq__cat-link.is-active {
  color: var(--main);
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .recruit-faq__cat-link:hover {
    opacity: .6;
  }
}

.recruit-faq__panel {
  display: none;
}

.recruit-faq__panel.is-active {
  display: block;
}

.recruit-faq__list {
  width: min(100%, calc(1000px * var(--scale)));
  margin-inline: auto;
  margin-top: calc(60px * var(--scale));
}

.recruit-faq__item {
  background: #fff;
  padding-inline:calc(40px * var(--scale)) ;
  /* padding: calc(36px * var(--scale)) calc(40px * var(--scale)); */
}

.recruit-faq__item + .recruit-faq__item {
  margin-top: calc(20px * var(--scale));
}

.recruit-faq__question{
  padding-block: calc(36px * var(--scale));
  line-height: 1.3;
}

.recruit-faq__question,
.recruit-faq__answer  {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(32px * var(--scale));
  cursor: pointer;
  list-style: none;
  align-items: start;
}

.recruit-faq__question::-webkit-details-marker {
  display: none;
}

.recruit-faq__mark {
  color: var(--main);
  font-family: var(--font-en);
  font-size: calc(40px * var(--scale));
  line-height: 1;
  letter-spacing: -.06em;
}

.recruit-faq__mark.is-answer {
  color: var(--point);
  line-height: 1.4;
}

.recruit-faq__question-text {
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 365px) / (1440 - 365)), 16px);
  font-weight: 700;
  line-height: 1.8;
}

.recruit-faq__icon {
  width: calc(40px * var(--scale));
  height: calc(40px * var(--scale));
  position: relative;
}
.recruit-faq__icon::before,
.recruit-faq__icon::after{
  content: "";
  position: absolute;
  background: var(--main);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruit-faq__icon::after {
  width: calc(2px * var(--scale));
  height: calc(26px * var(--scale));
}

.recruit-faq__icon::before{
  width: calc(26px * var(--scale));
  height: calc(2px * var(--scale));
}

.recruit-faq__item.is-open .recruit-faq__icon::after {
  display: none;
}

.recruit-faq__answer {
  grid-template-columns: calc(70px * var(--scale)) 1fr;
  margin-right: calc((32px + 26px) * var(--scale));
  border-top: 1px solid var(--blue-bg2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-block: 0;
  border-top-width: 0;
  transition: max-height .4s ease, opacity .3s ease, padding-block .4s ease, border-top-width .4s ease;
}

.recruit-faq__item.is-open .recruit-faq__answer {
  max-height: 1000px;
  opacity: 1;
  padding-block: calc(36px * var(--scale));
  border-top-width: 1px;
}

.recruit-faq__answer-text {
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 365px) / (1440 - 365)), 16px);
  font-weight: 500;
  line-height: 2;
}

/* detail */
.recruitment-detail__head,
.recruitment-detail__list {
  margin-inline: auto;
}

.recruitment-detail__head{
  width: min(100%, calc(1200px * var(--scale)));
}

..recruit-page__intro{
  grid-template-columns: repeat(14, minmax(0, 1fr));

}

.recruitment-detail__service {
  display: inline-block;
  color: var(--green);
  border: 1px solid var(--green);
  font-size: calc(14 * var(--px));
  font-weight: 700;
  padding: calc(4 * var(--px)) calc(12 * var(--px));
  margin-bottom: calc(28px * var(--scale));
}

.recruitment-detail__title {
  font-size: calc(28px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(80px * var(--scale));
}

.recruitment-detail__list {
  border-top: 1px solid var(--gray1);
  width: min(100%, calc(1000px * var(--scale)));
}

.recruitment-detail__item {
  display: grid;
  grid-template-columns: calc(180px * var(--scale)) 1fr;
  gap: calc(50px * var(--scale));
  border-bottom: 1px solid var(--gray1);
  padding-block: calc(40px * var(--scale));
}

.recruitment-detail__term {
  color: var(--main);
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  font-weight: 800;
}

.recruitment-detail__desc {
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  font-weight: 500;
}

.recruitment-detail .btn {
  display: flex;
  justify-content: center;
  padding-top: calc(70px * var(--scale));
}

@media screen and (max-width: 767px) {
  .recruit-page .section_tit,
  .job-position .section_tit,
  .recruitment-detail .section_tit {
    padding-bottom: calc(48 * var(--px));
  }

  .recruit-page__intro {
    grid-template-columns: unset;
        gap: calc(40 * var(--px));
  }

  .recruit-page__text {
    padding-top: 0;
    grid-column: unset;
  }

  .recruit-page__main-image {
    order: -1;
    grid-column: unset;

  }

  .recruit-page__gallery {
    margin-top: calc(64 * var(--px));
  }

  .recruit-page__gallery .swiper-slide {
    width: calc(200 * var(--px));
  }

  .job-position__list {
    grid-template-columns: 1fr;
    row-gap: calc(40 * var(--px));
  }

  .job-position__item,
  .job-position__item:nth-child(even){
    grid-column: auto;
  }

  .job-position__link {
    padding: calc(30 * var(--px)) 6% calc(50 * var(--px)) 6%;
  }

  .job-position__arrow {
    width: calc(40 * var(--px));
    height: calc(40 * var(--px));
  }

  .job-position__arrow::before {
    background-size: calc(14 * var(--px)) calc(14 * var(--px));
  }

  .recruit-faq__item{
    padding-inline: 5%;
  }

  .recruit-faq .section_tit {
    padding-bottom: calc(56 * var(--px));
  }

  .recruit-faq__cat-list {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
    /* margin-bottom: calc(48 * var(--px)); */
  }

  .recruit-faq__cat-list.is-open {
    max-height: 1000px;
  }

  .recruit-faq__cat-item--all {
    display: none;
  }

  .recruit-faq__cat{
    background: #fff;
    border: .5px solid var(--main);

  }

  .recruit-faq__cat-button {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: calc(20 * var(--px)) calc(18 * var(--px));
    font-size: calc(18px * var(--scale));
    font-weight: 700;
    position: relative;
    color: var(--main);
  }

  .recruit-faq__cat-button:before{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    border-top: 1px solid var(--main);
    border-right: 1px solid var(--main);
    transition: max-height .4s ease;
  }

  .recruit-faq__cat-button.is-open:before{
    -webkit-transform: translateY(-50%) rotate(315deg);
    transform: translateY(-50%) rotate(315deg);

  }

  .recruit-faq__cat-link{
    color: inherit;
    padding: calc(20 * var(--px)) calc(18 * var(--px));
    display: block;
  }

  .recruit-faq__item + .recruit-faq__item {
    margin-top: calc(14 * var(--px));
  }

  .recruit-faq__question {
    gap: calc(10 * var(--px));
    padding: calc(30 * var(--px))0;
  }

  .recruit-faq__mark{
    font-size: calc(23 * var(--px));
  }

  .recruit-faq__answer {
    gap: calc(14 * var(--px));
    margin-right: calc((12px + 10px) * var(--scale));
    grid-template-columns: auto 1fr;
  }

  .recruitment-detail__title {
    margin-bottom: calc(56 * var(--px));
  }

  .recruitment-detail__item {
    display: block;
  }

  .recruitment-detail__term {
    margin-bottom: calc(10 * var(--px));
  }

  .recruit-faq__icon::before{
    height: calc(1px * var(--scale));
    width: calc(15px * var(--scale));
  }
  .recruit-faq__icon::after{
    height: calc(15px * var(--scale));
    width: calc(1px * var(--scale));
  }

  .recruit-faq__icon{
    width: calc(15px * var(--scale));
    height: calc(25px * var(--scale));
  }

  /* .recruitment-detail .btn {
    padding-top: calc(56 * var(--px));
  } */
}
/*
  news
-----------------------------------------------------*/
.p-article__text {
  transition: .3s ease-in-out;
  font-size: clamp(13px , calc(13px + (16 - 13) * (100vw - 365px) / (1440 - 365)) , 16px);
}
.c-grid__item .c-grid__date,
.p-article .c-grid__date{
  gap: calc(40 * var(--px));
  align-items: center;
}

.p-article__text.__cat{
  padding: calc(5 * var(--px)) calc(20 * var(--px));
  background-color: var(--gray3);
}



.p-news .p-project__title{
  font-size: var(--fs-fluid);
  padding-top: calc(24 * var(--px));
  transition: .3s ease-in-out;
}
@media screen and (min-width: 768px) {
.p-news .p-project__title{
  padding-top: 0;

}
}


/* =====================================================
  news archive / single
===================================================== */

.news-archive .section_tit {
  padding-bottom: calc(110px * var(--scale));
}

.news-archive__cat-list {
  display: flex;
  gap: calc(50px * var(--scale));
  border-bottom: 1px solid var(--font_color);
  padding-bottom: calc(30px * var(--scale));
  margin-bottom: calc(70px * var(--scale));
}

.news-archive__cat-link {
  color: var(--gray2);
  font-size: calc(16 * var(--px));
  font-weight: 700;
}

.news-archive__cat-link.is-active {
  color: var(--main);
}

.news-archive__list,
.recommend-news__list {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: calc(68 * var(--px));
  row-gap: calc(50 * var(--px));
}
.news-archive__list{
  padding-inline: calc(100px * var(--scale));
}

.news-card__link {
  display: block;
  border-bottom: 1px solid var(--gray4);
  padding-bottom: calc(20px * var(--scale));
}

.news-card__image {
  display: block;
  margin-bottom: calc(30px * var(--scale));
  overflow: hidden;
}

.news-card__image .__img {
  width: 100%;
  transition: transform .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .news-card__link:hover .news-card__image .__img {
    transform: scale(1.08);
  }
}

.news-card__meta {
  display: flex;
  gap: calc(20px * var(--scale));
  color: var(--gray7);
  font-size: calc(12 * var(--px));
  margin-bottom: calc(10 * var(--px));
}

.news-card__title {
  font-size: calc(14 * var(--px));
  font-weight: 700;
}

.news-archive__pagination {
  margin-top: calc(110px * var(--scale));
}

.news-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(30px * var(--scale));
  position: relative;
}

.news-archive__pagination .page-numbers {
  color: var(--gray4);
  font-size: calc(20px * var(--scale));
  font-weight: 700;
}

.news-archive__pagination .page-numbers.current {
  color: var(--main);
}

.news-archive__pagination .prev,
.news-archive__pagination .next {
  position: absolute;
  top: 50%;
  width: calc(55px * var(--scale));
  height: calc(55px * var(--scale));
  background: var(--black);
  transform: translateY(-50%);
}

.news-archive__pagination .prev {
  left: 0;
}

.news-archive__pagination .next {
  right: 0;
}

.news-archive__pagination .prev::before,
.news-archive__pagination .next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(20px * var(--scale));
  height: calc(20px * var(--scale));
  background: url(../images/arrow_white.svg) center / contain no-repeat;
}

.news-archive__pagination .prev::before {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
 .news-archive__pagination .prev:hover,
 .news-archive__pagination .next:hover{
  background-color: var(--main);
 }
}

/* single */
.news-single__inner {
  max-width: calc(700px * var(--scale));
  margin-inline: auto;
  width: 90%;
}

.news-single__meta {
  display: flex;
  gap: calc(20px * var(--scale));
  color: var(--gray2);
  font-size: calc(12 * var(--px));
  margin-bottom: calc(16px * var(--scale));
}

.news-single__title {
  font-size: calc(24px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(30px * var(--scale));
}

.news-single__image {
  display: block;
  margin-bottom: calc(40px * var(--scale));
}

.news-single__image .__img {
  width: 100%;
}

.news-single__body {
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  font-weight: 500;
}

.news-single__body h1 {
  color: var(--main);
  font-size: calc(26px * var(--scale));
  font-weight: 800;
  line-height: 1.5;
  margin-top: calc(50px * var(--scale));
  margin-bottom: calc(24px * var(--scale));
}

.news-single__body h2 {
  background: var(--light-blue);
  color: var(--main);
  font-size: calc(18px * var(--scale));
  font-weight: 800;
  padding: calc(18px * var(--scale)) calc(22px * var(--scale));
  margin-top: calc(50px * var(--scale));
  margin-bottom: calc(30px * var(--scale));
}

.news-single__body h3 {
  color: var(--main);
  font-size: calc(17px * var(--scale));
  font-weight: 700;
  line-height: 1.6;
  padding-left: calc(16px * var(--scale));
  border-left: 4px solid var(--main);
  margin-top: calc(40px * var(--scale));
  margin-bottom: calc(20px * var(--scale));
}

.news-single__body h4 {
  color: var(--font_color);
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 1.6;
  margin-top: calc(32px * var(--scale));
  margin-bottom: calc(16px * var(--scale));
}

.news-single__body h5 {
  color: var(--font_color);
  font-size: calc(15px * var(--scale));
  font-weight: 700;
  line-height: 1.6;
  margin-top: calc(28px * var(--scale));
  margin-bottom: calc(14px * var(--scale));
}

.news-single__body h6 {
  color: var(--gray2);
  font-size: calc(14px * var(--scale));
  font-weight: 700;
  line-height: 1.6;
  margin-top: calc(24px * var(--scale));
  margin-bottom: calc(12px * var(--scale));
}

.news-single__body > h1:first-child,
.news-single__body > h2:first-child,
.news-single__body > h3:first-child,
.news-single__body > h4:first-child,
.news-single__body > h5:first-child,
.news-single__body > h6:first-child {
  margin-top: 0;
}

.news-single__body strong,
.news-single__body b {
  font-weight: 700;
}

.news-single__body em,
.news-single__body i {
  font-style: italic;
}

.news-single__body ul,
.news-single__body ol {
  padding-left: 1.4em;
  margin-top: calc(24px * var(--scale));
  margin-bottom: calc(24px * var(--scale));
}

.news-single__body ul {
  list-style: disc;
}

.news-single__body ol {
  list-style: decimal;
}

.news-single__body li + li {
  margin-top: calc(8px * var(--scale));
}

.news-single__body ul ul,
.news-single__body ul ol,
.news-single__body ol ul,
.news-single__body ol ol {
  margin-top: calc(8px * var(--scale));
  margin-bottom: 0;
}

.news-single__body p + p {
  margin-top: calc(24px * var(--scale));
}

.news-single .btn {
  display: flex;
  justify-content: center;
  padding-top: calc(70px * var(--scale));
}

.recommend-news__inner {
  border-top: 1px solid var(--font_color);
  max-width: calc(1173px * var(--scale));
  margin: 0 auto;
  width: 90%;
}

.recommend-news .section_tit {
  padding-bottom: calc(70px * var(--scale));
}

@media screen and (max-width: 767px) {
  .news-archive .section_tit {
    padding-bottom: calc(48 * var(--px));
  }

  .news-archive__cat {
    background: #fff;
    border: .5px solid var(--main);
    margin-bottom: calc(56 * var(--px));
  }

  .news-archive__cat-list {
    display: block;
    border: none;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
  }

  .news-archive__cat-list.is-open {
    max-height: 1000px;
  }

  .news-archive__cat-button {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: calc(20 * var(--px)) calc(18 * var(--px));
    font-size: calc(16 * var(--px));
    font-weight: 700;
    position: relative;
    color: var(--main);
  }

  .news-archive__cat-button:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    -webkit-transform: translateY(-50%) rotate(135deg);
    transform: translateY(-50%) rotate(135deg);
    border-top: 1px solid var(--main);
    border-right: 1px solid var(--main);
    transition: max-height .4s ease;
  }

  .news-archive__cat-button.is-open:before {
    -webkit-transform: translateY(-50%) rotate(315deg);
    transform: translateY(-50%) rotate(315deg);
  }

  .news-archive__cat-link {
    display: block;
    padding: calc(14 * var(--px)) calc(18 * var(--px));
  }

  .news-archive__list,
  .recommend-news__list {
    grid-template-columns: 1fr;
    gap: calc(50 * var(--px));
    padding-inline: 0;
  }

  .news-card__link {
    padding-bottom: calc(20 * var(--px));
  }

  .news-archive__pagination {
    margin-top: calc(80 * var(--px));
  }

  .news-archive__pagination .nav-links {
    gap: calc(24 * var(--px));
  }

  .news-archive__pagination .prev,
  .news-archive__pagination .next {
    width: calc(40 * var(--px));
    height: calc(40 * var(--px));
  }

  .news-archive__pagination .prev::before,
  .news-archive__pagination .next::before {
    width: calc(14 * var(--px));
    height: calc(14 * var(--px));
  }

  .news-single__inner {
    max-width: none;
  }

  .news-single__meta {
    gap: calc(24 * var(--px));
    margin-bottom: calc(14 * var(--px));
  }

  .news-single__title {
    font-size: calc(22 * var(--px));
    margin-bottom: calc(32 * var(--px));
  }

  .news-single__image {
    aspect-ratio: 315 / 210;
    margin-bottom: calc(32 * var(--px));
  }

  .news-single__body h1 {
    font-size: calc(22 * var(--px));
    margin-top: calc(40 * var(--px));
    margin-bottom: calc(18 * var(--px));
  }

  .news-single__body h2 {
    padding: calc(14 * var(--px)) calc(18 * var(--px));
    margin-top: calc(40 * var(--px));
    margin-bottom: calc(24 * var(--px));
  }

  .news-single__body h3 {
    font-size: calc(16 * var(--px));
    margin-top: calc(32 * var(--px));
    margin-bottom: calc(16 * var(--px));
  }

  .news-single__body h4 {
    font-size: calc(15 * var(--px));
    margin-top: calc(26 * var(--px));
    margin-bottom: calc(14 * var(--px));
  }

  .news-single__body h5 {
    font-size: calc(14 * var(--px));
    margin-top: calc(22 * var(--px));
    margin-bottom: calc(12 * var(--px));
  }

  .news-single__body h6 {
    font-size: calc(13 * var(--px));
    margin-top: calc(20 * var(--px));
    margin-bottom: calc(10 * var(--px));
  }

  .news-single__body p + p {
    margin-top: calc(19 * var(--px));
  }

  .news-single .btn {
    padding-top: calc(56 * var(--px));
  }

  .recommend-news .section_tit {
    padding-bottom: calc(56 * var(--px));
  }
}


/*
  news single
-----------------------------------------------------*/
/* .s-news .p-article__title {
  font-size: clamp(14px , calc(14px + (36 - 14) * (100vw - 365px) / (1440 - 365)) , 36px);
  font-weight: 700;
  padding: calc(20 * var(--px)) 0 calc(30 * var(--px));
  border-bottom: 1px solid var(--gray1);
  margin-bottom: calc(30 * var(--px));
}
.s-news .p-article__eyecatch {
  margin-bottom: calc(40 * var(--px));
}


@media screen and (min-width: 768px) {
  .s-news .p-article__title  {
    padding: calc(40 * var(--px)) 0 calc(50 * var(--px));
    margin-bottom: calc(70 * var(--px));
  }
  .s-news .p-article__eyecatch {
    margin-bottom: calc(60 * var(--px));
  }
}

.p-article + .p-article {
  border-top: 1px solid #ddd;
}
.p-article__body {
  line-height: 2;
}
.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6,
.p-article__body p,
.p-article__body blockquote,
.p-article__body pre,
.p-article__body ul,
.p-article__body ol,
.p-article__body table,
.p-article__body figure {
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  .p-article__body h1,
  .p-article__body h2,
  .p-article__body h3,
  .p-article__body h4,
  .p-article__body h5,
  .p-article__body h6,
  .p-article__body p,
  .p-article__body blockquote,
  .p-article__body pre,
  .p-article__body ul,
  .p-article__body ol,
  .p-article__body table,
  .p-article__body figure {
    margin: 1.5rem 0 1em;
  }
}
.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  font-weight: bold;
}
.p-article__body h1 {
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-article__body h1 {
    font-size: 2em;
  }
}
.p-article__body h2 {
  font-size: 1.5em;
  padding: 0.25em 0;
}
@media screen and (min-width: 768px) {
  .p-article__body h2 {
    font-size: 1.75em;
  }
}
.p-article__body h3 {
  font-size: 1.25em;
  padding: 0.5em 1em;
}
@media screen and (min-width: 768px) {
  .p-article__body h3 {
    font-size: 1.5em;
  }
}
.p-article__body h4 {
  font-size: 1.125em;
  padding-left: 1em;
  border-left: 0.25rem solid #263238;
}
@media screen and (min-width: 768px) {
  .p-article__body h4 {
    font-size: 1.25em;
  }
}
.p-article__body h5 {
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  .p-article__body h5 {
    font-size: 1.125em;
  }
}
.p-article__body blockquote {
  background-color: #eee;
  padding: 0.25em 1em;
  border-left: 0.25em solid #263238;
}
.p-article__body blockquote p {
  margin: 1em 0;
}
.p-article__body ul,
.p-article__body ol {
  padding-left: 1.25em;
}
.p-article__body ul {
  list-style-type: disc;
}
.p-article__body ol {
  list-style-type: decimal;
}
.p-article__body dl {
  margin: 1.5em 0 0;
  position: relative;
  z-index: 0;
}
.p-article__body dt {
  position: relative;
  font-weight: bold;
  margin: 0 0.5em;
  padding: 0 0.5em;
  background-color: #fff;
  display: inline-block;
  z-index: 1;
}
.p-article__body dd {
  position: relative;
  top: -1em;
  padding: 2em 1em 1em;
  border: 1px solid #263238;
}

.p-article__body a{
    text-decoration: underline;
    color: var(--main-red);
}

.p-article__body strong{
   font-weight: 700;
}
.p-article__footer {
  margin: 2rem 0;
}


@media screen and (min-width: 768px) {
  .p-article__footer {
    margin: 4rem 0;
  }
} */
/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/

/*
  Button
*/
.btn {
  padding-top: calc(74 * var(--px));
}

.p-service__item .btn{
 padding-top: calc(40 * var(--px));
}

.p-cta .btn{
  padding-top: calc(30 * var(--px));
}

.btn.__right{
  display: flex;
  justify-content: flex-end;
}


.c-button {
  color: var(--font_color);
  border-bottom: 1px solid var(--font_color);
  padding-bottom: calc(10 * var(--px));
  cursor: pointer;
  width: 220px;
  display: inline-block;
  position: relative;
  transition: border-color .3s ease;
}

.p-cta .c-button{
  color: #fff;
  border-color: #fff;
}

.c-button.__wide{
  width: 100%;

}

.c-button__inner{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.c-button__inner.__back{
  flex-direction: row-reverse;

}

.c-button_text{
  font-family: var(--font-en);
  font-size: max(calc(16 * var(--px)), calc(18px * var(--scale)));
  font-weight: 600;
  letter-spacing: -.06em;
  display: inline-block;
  transition: transform .3s ease, color .3s ease;
}

.c-button__inner__text{
  display: inline-block;
  transition: transform .3s ease;
}

.c-button__arrow1{
  position: relative;
}

.c-button__arrow1:after{
  content: "";
  display: inline-block;
  width: 55px;
  height: 55px;
  background-image: url(../images/arrow_white.svg);
  background-position: 50% center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-color: var(--font_color);
  transition: background-color .3s ease, background-position .4s ease;
}

.c-button__arrow1.__back:after{
  background-image: url(../images/arrow_back_white.svg);

}

.p-cta .c-button__arrow1:after{
  background-color: #fff;
  background-image: url(../images/arrow_orange.svg);
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    border-color: var(--point);
  }

  .p-cta .c-button:hover{
    border-color: #fff;
  }


  .c-button:hover .c-button_text{
    transform: translateX(6px);
    color: var(--point);
  }

  .c-button:hover .c-button__inner.__back .c-button_text{
    transform: translateX(-6px);
  }

  .p-cta .c-button:hover .c-button_text{
    color: #fff;
  }

  .c-button:hover .c-button__inner__text{
    transform: translateX(6px);
  }

  .c-button:hover .c-button__inner__jp,
  .c-button:hover .c-button__inner__en{
    color: var(--point);
  }

  .c-button:hover .c-button__arrow1:after{
      background-color: var(--point);
      background-position: 70% center;
  }

  .c-button:hover .c-button__arrow1.__back:after{
      background-position: 30% center;
  }

  .p-cta .c-button:hover .c-button__arrow1:after{
      background-color: #fff;
  }

  .p-news .c-button:hover .c-button__arrow1:after{
      background-image: url(../images/arrow_white.svg);
  }
}

@media screen and (max-width: 768px){
  .c-button__arrow1:after{
    width: 44px;
    height: 44px;
  }
}

/*
  Button　top news
*/
.p-news .c-button__arrow1:after {
  background-color: #fff;
  background-image: url(../images/arrow_black.svg);

}
/*
  contact_Button
*/
.wpcf7-submit {
  background-color: var(--main-red);
  display: inline-block;
  text-transform: capitalize;
  margin: 0 auto;
  padding: calc(16 * var(--px)) 0 calc(16 * var(--px)) ;
  width: 270px;
  color: #fff;
  font-family:"Noto Sans","Noto Sans JP",-apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
  font-size: calc(18 * var(--px));
  border: none;
}



/*
  3.2 - Project
-----------------------------------------------------*/

/*
  cta-contact
-----------------------------------------------------*/
.p-cta {
  padding-block: calc(40px * var(--scale));
  border-top: 1px solid var(--font_color);
}

.p-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: calc(40px * var(--scale));
  background: var(--point);
  color: #fff;
  padding: calc(70px * var(--scale)) ;
  position: relative;
  overflow: hidden;
}

.p-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.p-cta__inner > * {
  position: relative;
  z-index: 1;
}

.p-cta__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: calc(62px * var(--scale));
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.06em;
}

.p-cta__title .jp {
  display: block;
  margin-top: calc(10px * var(--scale));
  font-size: calc(16px * var(--scale));
  font-weight: 700;
}

.p-cta__text {
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 1.8;
}

.p-cta__arrow {
  width: calc(54px * var(--scale));
  height: calc(54px * var(--scale));
  background: #fff;
  position: relative;
}

.p-cta__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/arrow_orange.svg);
  background-position: 50% center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  transition: background-position .4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-cta__inner:hover::before {
    transform: scaleX(1);
  }

  .p-cta__inner:hover .p-cta__arrow::before {
    background-position: 70% center;
    background-image: url(../images/arrow_main.svg);
  }
}
@media screen and (max-width: 767px) {

  .p-cta__inner {
    grid-template-columns: 1fr;
    gap: calc(20px * var(--px));
    padding: calc(60px * var(--scale)) 0;
    justify-items: center;
  }

  .p-cta__title .en {
    font-size: calc(34px * var(--px));
  }

  .p-cta__title .jp {
    font-size: calc(12px * var(--px));
  }

  .p-cta__text {
    font-size: calc(12px * var(--px));
    text-align: center;
  }

  .p-cta__arrow {
    width: calc(44px * var(--px));
    height: calc(44px * var(--px));
  }
}

/*
  footer-service
-----------------------------------------------------*/
.footer-service {
  background: var(--green);
  color: #fff;
  padding-block: calc(120px * var(--scale)) ;
}

.footer-service__title {
  font-family: var(--font-en);
  font-size: calc(40px * var(--scale));
  line-height: 1;
  margin-bottom: calc(40px * var(--scale));
  letter-spacing: -.06em;
}

.footer-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(26px * var(--scale));
}

.footer-service__link {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.footer-service__image {
  display: block;
  aspect-ratio: 356 / 238;
  overflow: hidden;
}

.footer-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform .4s ease; */
}

.footer-service__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .70);
  z-index: 1;

}

.footer-service__item.is-active .footer-service__link::before {
  background: rgba(11, 51, 91, .60);
  transition:.4s ease;
}

.footer-service__body {
  /* position: absolute; */
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-service__box{
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  position: absolute;
  z-index: 1;
}

.footer-service__logo {
  height: 30px;
  margin: 0 auto;
  transition: opacity .3s ease;
}

.footer-service__name {
  text-align: center;
  font-size: calc(12 * var(--px));
}

.footer-service__status {
    font-size: calc(20px * var(--scale));
    font-weight: 100;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-style: italic;
    z-index: 1;
}

.footer-service__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  position: relative;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  overflow: hidden;
}

.footer-service__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(-30deg);
  background-image: url(../images/arrow_white.svg);
  background-position: 50% center;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  transition: background-position .4s ease;
}

.footer-service__sp-links{
  display: none;
}


.footer-service__pc-sns {
  margin-top: calc(30px * var(--scale));
  display: inline-grid;
  gap: calc(20px * var(--scale));
}

.footer-service__sns {
  display: flex;
  align-items: center;
  gap: calc(20px * var(--scale));
  color: var(--gray1);
  font-size: calc(12px * var(--scale));
}

.footer-service__sns-icon {
  width: calc(60px * var(--scale));
  height: calc(60px * var(--scale));
  border: 1px solid var(--gray1);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  transition: all 0.3s ease-in-out;
}

.footer-service__sns-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(30px * var(--scale));
  height: calc(30px * var(--scale));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-service__sns-icon.is-home::before {
  background-image: url(../images/icon_home_white.svg);
}

.footer-service__sns-icon.is-line::before {
  background-image: url(../images/icon_line_gray.svg);
}

.footer-service__sns-icon.is-instagram::before {
  background-image: url(../images/icon_instagram_gray.svg);
}

@media (hover: hover) and (pointer: fine) {
  a.footer-service__link:hover .footer-service__image img {
    /* transform: scale(1.08); */
  }

  a.footer-service__link:hover .footer-service__arrow::before {
    background-position: 70% center;
  }

  .footer-service__item.is-active a.footer-service__link:hover::before{
    background: rgba(11, 51, 91, .90);
  }

  .footer-service__sns:hover .footer-service__sns-icon{
    background-color: var(--gray1);
    /* opacity: .6; */
  }

  .footer-service__sns:hover .footer-service__sns-icon.is-home::before {
    background-image: url(../images/icon_home_green.svg);
  }

  .footer-service__sns:hover .footer-service__sns-icon.is-line::before {
    background-image: url(../images/icon_line_green.svg);
  }

  .footer-service__sns:hover .footer-service__sns-icon.is-instagram::before {
    background-image: url(../images/icon_instagram_green.svg);
  }
}


@media screen and (max-width: 767px) {
  .footer-service {
    padding-block: calc(72px * var(--scale));
  }

  .footer-service__title {
    font-size: calc(40 * var(--px));
    margin-bottom: calc(38 * var(--px));
  }

  .footer-service__list {
    display: block;
  }

  .footer-service__item {
    border-bottom: 1px solid rgba(255, 255, 255, .8);
    padding: calc(30 * var(--px)) 0;
  }

  .footer-service__item:first-child {
    padding-top: 0;
  }

  .footer-service__link {
    overflow: visible;
  }

  .footer-service__image,
  .footer-service__link::before {
    display: none;
  }

  .footer-service__body {
    position: static;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: calc(20 * var(--px));
    align-items: center;
  }

  .footer-service__body > .footer-service__box {
    position: static;
    transform: none;
  }

  .footer-service__logo {
    width: auto;
    height: 30px;
    margin: 0 0 calc(10 * var(--px));
  }

  .footer-service__name {
    text-align: left;
  }

  .footer-service__arrow {
    width: calc(54 * var(--px));
    height: calc(54 * var(--px));
  }

  .footer-service__arrow::before,
  .footer-service__arrow::after {
    width: 20px;
    height: 1px;
    background-image: none;
    background: #fff;
    -webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
  }

  .footer-service__arrow::before {
    transform: rotate(0);
    -webkit-transform: rotate(0deg);
  }

  .footer-service__arrow::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .footer-service__item.is-open .footer-service__arrow::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .footer-service__status {
    bottom: 0;
    right: 0;
    font-size: calc(12 * var(--px));
  }


  .footer-service__pc-sns{
    display: grid;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease;
  }

  .footer-service__item.is-open .footer-service__pc-sns{
    max-height: 1000px;
    opacity: 1;
    margin-top: calc(40px * var(--scale));
  }


  .footer-service__sns {
    gap: calc(18 * var(--px));
    font-size: calc(14 * var(--px));
  }

  .footer-service__sns-icon {
    width: calc(60 * var(--px));
    height: calc(60 * var(--px));
  }

  .footer-service__sns-icon::before {
    width: calc(28 * var(--px));
    height: calc(28 * var(--px));
  }
}



/*
  パンくず
*/
.l-breadcrumbs{
  font-size: calc(12 * var(--px));
  margin-bottom: calc(60 * var(--px));
  color: var(--main);

}

.l-breadcrumbs a{
  opacity: .5;
}

.l-breadcrumbs .current-item{
  opacity: 1;
}

.l-breadcrumbs{

}
@media screen and (max-width: 767px) {
  /* .l-breadcrumbs{
    margin-bottom: calc(50 * var(--px));
  }

  .l-breadcrumbs a{
    padding-block: 0;
    position: relative;
    background: linear-gradient(var(--gray6), var(--gray6)) 0 100% / 0 1px no-repeat;
    transition: background .6s cubic-bezier(.4, 0, 0, 1);
  }
  .l-breadcrumbs a:hover{
    background-size: 100% 1px;
  } */
}

/*
  Header
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .3s ease;
  display: flex;
  flex-direction: column;
  height: calc(82px * var(--scale));
  overflow: hidden;
}

.is-drawerActive .l-header {
  height: 100vh;
}

.l-header_inner {
  height: calc(82px * var(--scale));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: block;
  width: calc(210px * var(--scale));
  line-height: 0;
  padding: 0;
}

.header-logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.l-header-nav_pc .l-header-nav_list {
  display: flex;
  align-items: center;
  gap: calc(42px * var(--scale));
}

.l-header-nav_pc .l-header-nav_link {
  display: block;
  padding: 0;
  color: var(--main);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: calc(14px * var(--scale));
  line-height: 1;
  letter-spacing: -.06em;
  position: relative;
}

.l-header-nav_pc .l-header-nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.l-header-nav_pc .l-header-nav_item.__contact .l-header-nav_link {
  background: var(--point);
  color: #fff;
  padding: calc(24px * var(--scale)) calc(52px * var(--scale));
  border: 1px solid var(--point);
}

.l-header-nav_pc .l-header-nav_item.__contact .l-header-nav_link::after {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .l-header-nav_pc .l-header-nav_link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .l-header-nav_pc .l-header-nav_item.__contact .l-header-nav_link:hover {
    background-color: #fff;
    color: var(--point);
  }
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    height: 55px;
  }

  .header-logo {
    width: 120px;
  }

  .l-header {
    height: 55px;
    padding-inline: calc(20px * var(--scale));
  }
}

/* SP hamburger */
.l-header-nav_sp {
  height: 55px;
}

.p-hamburger {
  position: relative;
  width: 47px;
  height: 55px;
  right: auto;
  margin: 0;
  border: none;
  background: transparent;
  z-index: 102;
  cursor: pointer;
}

.p-hamburger__line,
.p-hamburger__line::before,
.p-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 47px;
  height: 2px;
  transition: .3s ease;
}

.p-hamburger__line {
  top: 50%;
  transform: translateY(-50%);
}

.p-hamburger__line::before {
  top: -4px;
  background: var(--font_color);
}

.p-hamburger__line::after {
  top: 4px;
  background: var(--font_color);
}

.is-drawerActive .p-hamburger__line {
  background: transparent;
}

.is-drawerActive .p-hamburger__line::before {
  top: 0;
  transform: rotate(22deg);
  background: #fff;
}

.is-drawerActive .p-hamburger__line::after {
  top: 0;
  transform: rotate(-22deg);
  background: #fff;
}

/* SP drawer */
.p-globalNav {
  display: none;
  width: 100%;
  padding: calc(20px * var(--scale)) calc(20px * var(--scale)) calc(40px * var(--scale));
  transform: translateX(110%);
  transition: transform .35s ease;
  overflow-y: auto;
}

@media screen and (max-width: 768px) {
  .p-globalNav {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    width: auto;
    margin-inline: calc(-20px * var(--scale));
  }
}

.is-drawerActive .p-globalNav {
  transform: translateX(0);
}

.p-globalNav__inner {
  background: #fff;
  margin-bottom: calc(70px * var(--scale));
}

.p-globalNav .l-header-nav_list {
  padding: calc(56px * var(--scale)) calc(40px * var(--scale)) calc(40px * var(--scale));
}

.p-globalNav .l-header-nav_item {
  border: none;
  margin-bottom: calc(28px * var(--scale));
}

.p-globalNav .l-header-nav_item:last-child {
  margin-bottom: 0;
}

.p-globalNav .l-header-nav_link {
  padding: 0;
  color: var(--main);
  line-height: 1.2;
}

.p-globalNav .l-header-nav_link .en {
  display: block;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: calc(40px * var(--scale));
  letter-spacing: -.06em;
}

.p-globalNav .l-header-nav_link .jp {
  display: block;
  color: var(--sub1);
  font-size: calc(14px * var(--scale));
  font-weight: 500;
}

.p-globalNav__contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--point);
  color: #fff;
  padding: calc(20px * var(--scale)) calc(40px * var(--scale));
}

.p-globalNav__contact .en {
  display: block;
  font-family: var(--font-en);
  font-size: calc(40px * var(--scale));
  font-weight: 300;
  letter-spacing: -.06em;
  line-height: 1;
}

.p-globalNav__contact .jp {
  display: block;
  margin-top: calc(6px * var(--scale));
  font-size: calc(14px * var(--scale));
  font-weight: 700;
}

.p-globalNav__contact .arrow {
  width: calc(44px * var(--scale));
  height: calc(44px * var(--scale));
  background: #fff;
  position: relative;
}

.p-globalNav__contact .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../images/arrow_orange.svg) center / contain no-repeat;
}

/*
  logo
-----------------------------------------------------*/
.p-header__title{
  z-index: 3;
}

 .header-logo .__white{
    display: none;
  }

.l-header .header-logo {
  display: inline-block;
  line-height: 55px;
}

.front-page .l-header .header-logo{
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.front-page .is-HeaderAnimation .header-logo,
.front-page.is-drawerActive .l-header .header-logo {
  opacity: 1;
  pointer-events: auto;
}

.front-page .l-header.is-HeaderAnimation {
  background: #fff;
}

body:not(.front-page) .l-header {
  background: #fff;
}

/* ハンバーガーメニュー表示中は、スクロール状態(is-HeaderAnimation等)に関わらずheader背景をドロワーと同じ色で固定表示 */
body.is-drawerActive .l-header.HeaderChange {
  background: var(--main);
}

.l-footer ._logo {
  width: 120px;
}

@media (hover: hover) and (pointer: fine){
  .l-header .header-logo:hover{
    opacity: .85;
  }
}

@media screen and (max-width: 768px) {
  .is-drawerActive .header-logo .__white{
    display: inline-block;
  }
  .is-drawerActive .header-logo .__color{
    display: none;

  }
  .l-footer ._logo {
    width: 204px;
  }
}
/*
  logo-top
-----------------------------------------------------*/
.top_logo .top_logo_img{
  width: 170px;
  padding-bottom: calc(20 * var(--px));
}

@media screen and (min-width: 768px) {
  .top_logo .top_logo_img{
    width: 190px;
    padding-bottom: calc(20 * var(--px));

  }
}

/*
  hero
-----------------------------------------------------*/
.hero-wrap{
  margin-inline: var(--space-side);
  position: relative;
}

/*
  p-mv
-----------------------------------------------------*/
.p-mv {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: calc(60px * var(--scale)) calc(30px * var(--scale));
}

.p-mv__bg-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: var(--hero-bg-gym);
  transition: background-color .6s ease;
  clip-path: polygon(
    63.57% 0%,
    63.57% 29.89%,
    36.43% 0%,
    0% 0%,
    0% 100%,
    36.43% 100%,
    36.43% 40.14%,
    63.57% 70.03%,
    100% 70.03%,
    100% 0%
  );
}

.p-mv[data-mv-bg="cafe"]   .p-mv__bg-shape { background-color: var(--hero-bg-cafe); }
.p-mv[data-mv-bg="kids"]   .p-mv__bg-shape { background-color: var(--hero-bg-kids); }
.p-mv[data-mv-bg="shisei"] .p-mv__bg-shape { background-color: var(--hero-bg-shisei); }

.swiper_mv {
  position: relative;
  z-index: 1;
  width: min(calc(540px * var(--scale)), 70vw, calc(100vh - calc(240px * var(--scale))));
  aspect-ratio: 1 / 1;
}

.p-mv__foot {
  position: relative;
  z-index: 1;
}

.p-mv__image {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.p-mv__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-mv__foot {
  margin-top: calc(40px * var(--scale));
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: calc(24px * var(--scale));
}


.p-mv__catch {
  font-size: calc(30px * var(--scale));
  font-weight: 700;
  color: var(--main);
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding-block: calc(40 * var(--px)) calc(50 * var(--px));
  }

  .swiper_mv {
    width: min(300px, 52.2vh);
    margin-block: calc(24 * var(--px));
  }

  .p-mv__foot {
    gap: calc(12 * var(--px));
    padding-inline: var(--space-side);
  }


  .p-mv__logo {
    width: 168px;
  }

}

.mv_tit{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 10%;
}

.mv_tit_tex{
  font-size: clamp(68px, calc(68px + (105 - 68) * (100vw - 365px) / (1440 - 365)), 105px);
  font-weight: 700;
  display: block;
  position: relative;
  line-height: 1;
  padding-bottom: calc(40 * var(--px));
}

.mv_tit_tex::before{
    content: "";
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, rgba(220, 0, 28, 0) 0%, #DC001C 8%, #DC001C 92%, rgba(220, 0, 28, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mv_tit_sub{
  font-size: clamp(24px, calc(24px + (40 - 24) * (100vw - 365px) / (1440 - 365)), 40px);
   font-weight: 700;
}

@media screen and (min-width: 768px){
  .mv_tit{
    left: 5%;
  }
}


/*
  h2
-----------------------------------------------------*/
.section_tit{
  display: flex;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  gap: calc(20 * var(--px));
  padding-bottom: calc(80px * var(--scale));
}

.p-cta .section_tit{
  padding-bottom: 0;
}

.section_tit.__vertical{
  flex-direction: column;
}

.section_tit.__center{
  margin: 0 auto;
  align-items: center;
}

.tit-grid .section_tit{
  grid-column: 1 / 7;
}

.section_tit .en{
  color: var(--main);
  font-weight: 300;
  font-family:var(--font-en);
  line-height: 1;
  font-size: calc(80px * var(--scale-en));
  /* display: block; */
  position: relative;
  letter-spacing: -.06em;
}

.section_tit .jp{
  font-weight: 700;
  font-size: calc(16px * var(--scale));
  position: relative;
  padding-right: calc(20 * var(--px));
  /* display: block; */
}

.section_tit.__white .en,
.section_tit.__white .jp{
  color: #fff;
}

.section_tit .jp:before{
  content: "";
  width: 10px;
  height: 10px;
  background: var(--point);
  position: absolute;
  top: 10px;
  right: 0;
}

.section_tit.__white .jp:before{
  background: #fff;
}

@media screen and (max-width: 767px) {
  .section_tit{
    flex-direction: column;
    gap: 0;
    padding-bottom: calc(48 * var(--px));
  }
  .section_tit.__center{
    align-items: center;
  }
  .p-cta .section_tit{
    padding-bottom: calc(40 * var(--px));
    align-items: center;
  }

}



/*
  h2 sub
-----------------------------------------------------*/
.section_sub-tit{
  color: var(--main-red);
  padding-bottom: calc(40 * var(--px));
}

.section_sub-tit .en_tit{
  font-weight: 900;
  display: block;
  font-size: calc(25 * var(--px));


}

.section_sub-tit .jp_tit{
  font-weight: 900;
  display: block;
}
/*
  h2 top about
-----------------------------------------------------*/
.section_about-tit{
  font-weight: 900;
  text-align: center;
  font-size: calc(
  43px + (80 - 43) * (100vw - 365px) / (1440 - 365)
  );
  letter-spacing: .25px;
}
@media screen and (min-width: 768px){
  .section_about-tit{
    text-align: left;
  }
}

/*
  h2-archive products
-----------------------------------------------------*/
.products-term-tit{
  border-bottom: 2px solid var(--main-red);
  padding-bottom: 1%;
  margin-bottom: calc(30 * var(--px))
;
}
.products-term-tit .en_tit{
  font-weight: 900;
  display: block;
  font-size: clamp(30px, calc(30px + (50 - 30) * (100vw - 365px) / (1440 - 365)), 50px);

}

.products-term-tit .jp_tit{
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 365px) / (1440 - 365)), 16px);
}

@media screen and (min-width: 768px){
  .products-term-tit{
    margin-bottom: calc(50 * var(--px));
  }
  .products-term-tit .en_tit{
    display: inline-block;
    padding-right: calc(30 * var(--px));
  }
}


/*
  loading
*/
.top-op,
.top-op2 {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
}

.top-op {
  z-index: 99;
  background: #fff;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: top-op;
          animation-name: top-op;
}

.top-op2 {
  z-index: 100;
  background: #eff2ef;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: top-op2;
          animation-name: top-op2;
}

@-webkit-keyframes top-op {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

@keyframes top-op {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@-webkit-keyframes top-op2 {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes top-op2 {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}


/*
  Author
*/
.p-author {
  margin-top: 1rem;
  border: 1px solid #ddd;
}
.p-author__title {
  background-color: #263238;
  color: #fff;
  display: inline-block;
  padding: 0.25rem 1rem;
}
.p-author__name {
  padding: 1rem;
}

/*
  Comments
*/
.p-comments {
  margin-top: 1em;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-comments {
    margin-top: 2em;
  }
}
.p-comments__title {
  padding: 0.5em;
  font-size: 1.25em;
}
@media screen and (min-width: 768px) {
  .p-comments__title {
    padding: 1.5em;
    font-size: 1.5em;
  }
}
.p-comments__form {
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-comments__form {
    padding: 1.5em;
  }
}

.comment + .comment {
  border-top: 1px solid #ddd;
}
.children .comment {
  border-top: 1px dotted #ddd;
}
.comment .children {
  padding-left: 3em;
}
.comment .reply {
  text-align: right;
}
.comment-body {
  overflow: hidden;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .comment-body {
    padding: 1.5em;
  }
}
.comment-author {
  float: left;
  overflow: hidden;
  margin-right: 1.5em;
  text-align: center;
}
.comment-author img {
  display: block;
  overflow: hidden;
  margin-bottom: 0.5em;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .comment-author img {
    width: 5rem;
    height: 5rem;
  }
}
.comment-author .fn {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .comment-author .fn {
    font-size: 0.75rem;
  }
}
.comment-author .says {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  clip-path: inset(50%);
}
.comment-content {
  overflow: hidden;
}
.comment-respond {
  padding: 1.5em;
  border: 1px solid #ddd;
}
.comment-reply-title {
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.comment-form {
  margin-top: 0.25rem;
}
.comment-form .logged-in-as {
  margin: 0.25rem 0;
}
.comment-form .comment-form-comment {
  margin: 1rem 0;
}
.comment-form input,
.comment-form textarea {
  padding: 0.5em;
  border-radius: 0.5em;
  font-size: 1em;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.comment-form input[type=text],
.comment-form input[type=search] {
  display: inline-block;
  width: 80%;
  outline: none;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .comment-form input[type=text],
  .comment-form input[type=search] {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .comment-form input[type=text],
  .comment-form input[type=search] {
    width: 80%;
  }
}
.comment-form input[type=text]:focus,
.comment-form input[type=search]:focus {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.16);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.16);
}
.comment-form textarea {
  display: inline-block;
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
}
.comment-form textarea:focus {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.16);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.16);
}
.comment-form input[type=submit] {
  display: inline-block;
  padding: 0.6em 0.5em;
  border: 1px solid #ddd;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .comment-form input[type=submit] {
    margin-top: 0.5em;
    width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .comment-form input[type=submit] {
    margin-top: 0;
    width: 18%;
  }
}
.comment-form input[type=submit]:hover {
  border-color: #263238;
  background-color: #263238;
  color: #fff;
}


/*
  news archive
*/


/*
  news single Pagination
*/

.s-news-nav{
  padding-top: calc(70 * var(--px));
}

.s-news-nav_list{
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.s-news-nav-previous,
.s-news-nav-next {
  position: relative;
  font-size: clamp(14px, calc(14px + (18 - 14) * (100vw - 365px) / (1440 - 365)), 18px);

}
.s-news-nav-previous a:before,
.s-news-nav-next a:before {
  content: "";
  background-image: url(../images/i-link_arrow.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 13px;
  height: 25px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.s-news-nav-previous a{
  padding-left: calc(24 * var(--px));
}

.s-news-nav-previous a::before{
  left: 0;
}


.s-news-nav-next a{
  padding-right: calc(24 * var(--px));
}
.s-news-nav-next a:before{
  right: 0;
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .s-news-nav{
    padding-top: calc(120 * var(--px));
  }
  .s-news-nav-previous:hover a:before{
    left: -5px;
  }
  .s-news-nav-next:hover a:before{
    right: -5px;

  }
}

/*
  news Categories
-----------------------------------------------------*/

.post-categories {
  margin-bottom: calc(64 * var(--px));
  gap:calc(24 * var(--px)) ;
}

.post-categories .post-cat_items {
    position: relative;
    padding-top: 4px;
}

.post-categories .post-cat_link {
  font-size: calc(12px + (15 - 12) * (100vw - 365px) / (1440 - 365));

}
.post-categories .post-cat_link[href]:hover, .post-categories .post-cat_link.current {
  color: var(--main-red);

}
.post-categories .post-cat_link[href]:hover:before, .post-categories .post-cat_link.current:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 0;
  background-color: var(--main-red);
  border-radius: 50%;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .post-categories {
    margin-bottom: calc(80 * var(--px));
    gap: calc(50 * var(--px));
  }
}
/*
  products Categories
*/
.cat_brand .__link {
  font-weight: 700;
  display: block;
}
.cat_brand .cat_child {
  padding: 0.625em 0 4em;
}
.cat_brand .subcat__link {
  display: block;
}




/*
  3.2 - Utility
-----------------------------------------------------*/
/*
  hover
-----------------------------------------------------*/





/*
  Break
*/
  .u-break .-sp,
  .u-break .-lap {
      display: none;
  }

  @media screen and (max-width: 1024px){
    .u-break .-lap{
      display: block;
    }

    .u-break .-pc {
      display: none;
  }

  }

  @media screen and (max-width:768px) {
    /* .u-break .-lap {
        display: none;
      } */
      .u-break .-sp {
          display: block;
      }
  }

/*
  Screen Reader Text
*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
