@charset "UTF-8";
:root{
  --scale: 1;
  --px: 1px;
  --rem: 1rem;
  --font_color: #333;
  --black: #000;
  --main:#5B8E89;
  --sub:#8aa2b8;
  --light-green:#E4EFEE;
  --blue-bg:#F2F9FF;
  --blue-bg2:#E1EDEC;
  --line:#06C755;
  --point:#E9943C;
  --gray1: #DEDEDE;
  --gray2: #919191;
  --gray3: #DBDBDB;
  --gray4: #CECECE;
  --gray5: #F7F7F7;
  --gray6: #CCCCCC;
  --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;
	/* --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-block:calc(123px * var(--scale)) ;
}

@media screen and (max-width: 1210px) {
  body.logged-in {
    padding-block:calc(41 * var(--px))
  }
  body {
    padding-block:calc(55 * 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
-----------------------------------------------------*/

.admin-bar .l-header {
    top: 32px;
  }

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

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

.l-header_inner {
  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{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(12 * var(--px));
}

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

.l-header-nav_pc .l-header-nav_link {
  display: block;
  padding: 0;
  color: var(--font_color);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: calc(13 * var(--px));
  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.__instagram .l-header-nav_link {
  display: block;
  width: calc(36px * var(--scale));
  height: calc(36px * var(--scale));
  border: 1px solid var(--main);
  border-radius: 50%;
  background: url(../images/icon_instagram_outline_main.svg) center / calc(20px * var(--scale)) calc(20px * var(--scale)) no-repeat;
}

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

.l-header-nav_pc .l-header-nav_item.__line .l-header-nav_link {
  background: var(--line);
  color: #fff;
  border: 1px solid var(--line);
  padding: calc(13px * var(--scale)) calc(10px * var(--scale)) calc(13px * var(--scale)) calc(30px * var(--scale));
}

.l-header-nav_pc .l-header-nav_item.__line .l-header-nav_link::before{
  content: "";
  position: absolute;
  left: 10px;
  margin: auto;
  width: calc(17px * var(--scale));
  height: calc(17px * var(--scale));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/icon_line_white.svg);
}

.l-header-nav_pc .l-header-nav_item.__line .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 {
    opacity: .85;
  }

  .l-header-nav_pc .l-header-nav_item.__line .l-header-nav_link:hover{
    background-color: #fff;
    color: var(--line);
  }
  .l-header-nav_pc .l-header-nav_item.__line .l-header-nav_link:hover::before{
    background-image: url(../images/icon_line_green.svg);
  }
  .l-header-nav_pc .l-header-nav_item.__instagram .l-header-nav_link:hover{
    background-color: var(--main);
    background-image: url(../images/icon_instagram_white.svg);
  }
}

@media screen and (max-width: 1210px) {
  .l-header_inner {
    height: 55px;
  }

  .header-logo {
    width: 120px;
  }

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


@media screen and (max-width: 1210px) {
  .l-header_right.u-break .-pc {
    display: none;
  }

  .l-header_right.u-break .-sp {
    display: block;
  }
}

/* SP hamburger */
body.is-drawerActive .l-header.HeaderChange{
  background-color: var(--main);
}
.l-header-nav_sp {
  margin-right: 0;
}

.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-inline: calc(20px * var(--scale));

  transform: translateX(110%);
   margin-inline: calc(-20px * var(--scale));
  overflow-y: auto;
}

@media screen and (max-width: 1210px) {
  .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(130 * var(--px));
  padding: calc(56px * var(--scale)) calc(40px * var(--scale)) calc(40px * var(--scale));
}
.p-globalNav__cta {
  display: grid;
  gap: calc(20px * var(--scale));
  margin-bottom: calc(40px * var(--scale));
}

.p-globalNav .l-header-nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 calc(16px * var(--scale));
}

.p-globalNav .l-header-nav_item {
  border-bottom: 1px solid var(--gray1);
}

.p-globalNav .l-header-nav_item:nth-child(-n+2) {
  border-top: 1px solid var(--gray1);
}

.p-globalNav .l-header-nav_link {
  display: block;
  padding: calc(18px * var(--scale)) 0;
  color: var(--main);
  font-size: calc(15px * 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;
}
/*
  Contents
-----------------------------------------------------*/
.l-contents {
  clear: both;
  padding-block: calc(120px * var(--scale)) ;
  overflow: hidden;
}


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

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

.l-contents.job-position{
 padding-block:calc(120px * var(--scale)) ;
}

@media screen and (max-width: 767px){
  .l-contents.p-about{
    padding-top:calc(120px * var(--scale));
  }
  .l-contents.job-position{
  padding-block: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;
}

.Scroll-Fade.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: .8s;
          animation-duration: .8s;
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (prefers-reduced-motion: reduce) {
  .Scroll-Fade {
    opacity: 1;
    animation: none !important;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    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: clamp(14px, 1.5vw + 9px, 16px);
}

.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));

  }
}

.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 {
  font-family: var(--font-en);
  font-weight: 600;
  text-align: right;
  letter-spacing: -.06em;
  font-style: italic;
}

@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__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(--light-green);
}

.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(20px * var(--scale));
  display: flex;
  gap: calc(20px * var(--scale));
  font-size: calc(12 * var(--px));
  line-height: 1;
}

.p-news__date {
  display: block;
}

.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: clamp(14px, 1.5vw + 9px, 16px);
  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;
    gap: calc(60 * var(--px));
  }
  .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));
  }
}

/* concept */
.p-concept__content{
  grid-column: 1 / 7;
}

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

.p-concept__inner .p-concept__body {
  grid-column: 2 / 8;
}

.p-concept__gallery {
  width: 100%;
  grid-column: 8 / 13;
}

.p-concept__gallery .__img{
  width: 100%;
}

.p-concept__heading{
  color: var(--main);
  font-weight: 700;
  font-size: calc(40px * var(--scale));
  padding-bottom: calc(20px * var(--scale));
}

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

.p-concept__body__tex{
  font-weight: 700;
  font-size: clamp(14px, 1.5vw + 9px, 16px);
}

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

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

.p-concept__strip {
  margin-top: calc(64px * var(--scale));
  width: 100%;
  overflow: hidden;
}

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

.p-concept__stripItem {
  width: calc(360px * var(--scale));
  flex-shrink: 0;
}

.p-concept__stripItem:nth-child(even){
  padding-top: calc(40px * var(--scale));
}

.p-concept__stripPicture,
.p-concept__stripItem img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-concept__inner {
    display: block;
  }
  .p-concept__body {
    padding-left: calc(40px * var(--scale));
  }
  .p-concept__heading{
    padding-bottom: calc(20 * var(--px));
  }
  .p-concept__gallery{
    padding-bottom: calc(40 * var(--px));
  }

  .p-concept__strip {
    margin-top: calc(40 * var(--px));
  }
  .p-concept__stripItem {
    width: calc(240 * var(--px));
  }
}

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

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

.p-feature__list {
  max-width: 1200px;
  margin: calc(70px * var(--scale)) auto 0;
  width: 90%;
}

.p-feature__item {
  padding-block: calc(48px * var(--scale));
  border-top: 1px solid #fff;
  align-items: center;
}

.p-feature__item:last-child {
  padding-bottom: 0;
}

.p-feature__image{
  grid-column: 1 / 6;
}

.p-feature__body{
  grid-column: 7 / 13;
}

.p-feature__picture,
.p-feature__picture .__img {
  display: block;
  width: 100%;
}

.p-feature__tag {
  display: inline-block;
  background-color: var(--blue-bg2);
  color: var(--main);
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
  font-size: calc(20px * var(--scale));
  padding: calc(1px * var(--scale)) calc(5px * var(--scale));
  margin-bottom: calc(18px * var(--scale));
}

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

.p-feature__title .break{
  display: block;
}

.p-feature__text {
  font-size: clamp(14px, 1.5vw + 9px, 16px);
}

@media screen and (max-width: 767px) {
  .p-feature__lead {
    font-size: calc(16 * var(--px));
  }

  .p-feature__list {
    width: auto;
    margin: calc(70px * var(--scale)) auto 0 calc(40px * var(--scale));
  }

  .p-feature__image,
  .p-feature__body{
    grid-column: auto;
  }

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

  .p-feature__item {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--px));
    padding-block: calc(40 * var(--px));
  }
}

/* machine */
.p-machine__body{
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.p-machine__category {
  background: var(--blue-bg2);
  color: var(--main);
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  padding: calc(10px * var(--scale)) calc(24px * var(--scale));
  margin-bottom: calc(32px * var(--scale));
}

.p-machine__category:last-of-type{
  margin-top: calc(60px * var(--scale));
}

.p-machine__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(30px * var(--scale)) calc(24px * var(--scale));
  margin-bottom: calc(56px * var(--scale));
}

.p-machine__image{
  border: 1px solid var(--blue-bg2);
}

.p-machine__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-machine__name {
  margin-top: calc(20px * var(--scale));
  font-size:  clamp(14px, 1.5vw + 9px, 16px);
  font-weight: 700;
  text-align: center;
}

.p-machine__other {
  position: relative;
  padding: calc(100px * var(--scale)) 0 calc(96px * var(--scale));
}

.p-machine__other-inner {
  position: relative;
  align-items: center;
  gap: calc(40px * var(--scale));
  background: var(--blue-bg2);
}

.p-machine__other-body {
  grid-column: 2 / 7;
  padding-block: calc(60px * var(--scale));
}

.p-machine__other-label {
  color: var(--main);
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  margin-bottom: calc(20px * var(--scale));
}

.p-machine__other-title {
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  margin-bottom: calc(20px * var(--scale));
}

.p-machine__other-text {
  font-size: clamp(14px, 1.5vw + 9px, 16px);
}

.p-machine__other-text p {
  margin: 0;
}

.p-machine__other-image {
  border: 1px solid var(--blue-bg2);
  grid-column: 8 / 12;
  margin-top: -100px;
  /* padding-right: calc(60px * var(--scale)); */
}

.p-machine__other-image img {
  /* width: 100%;
  height: auto;
  display: block; */
}

.p-machine__optionTit {

}

.p-machine__grid--option {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-machine__body{
    width: 100%;

  }
  .p-machine__category {
    text-align: center;
    padding: calc(10 * var(--px)) 0;
    margin-bottom: calc(24 * var(--px));
  }

  .p-machine__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(32 * var(--px)) calc(10 * var(--px));
    margin-bottom: 0;
  }

  .p-machine__name {
    margin-top: calc(10 * var(--px));
  }

  .p-machine__other {
    padding-break:calc(76 * var(--px)) 0;
  }

  .p-machine__other::before {
    content: none;
  }

  .p-machine__other-inner {
    grid-template-columns: none;
    gap: 0;
    background: linear-gradient(to bottom, #ffffff 20%, var(--blue-bg2) 20%);
  }

  .p-machine__other-image {
    order: -1;
    grid-column: unset;
    width: 80%;
    margin: 0 auto;
    margin-top: 0;
  }

  .p-machine__other-body {
    grid-column: unset;
    padding: calc(32 * var(--px)) calc(24 * var(--px)) calc(40 * var(--px));
  }


  .p-machine__grid--option {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* price */
.p-price {
  background: var(--blue-bg2);
}

.p-price__plan {
  background: #fff;
  max-width: calc(1000px * var(--scale));
  margin: 0 auto calc(40px * var(--scale));
}

.p-price__planItem {
  padding-block: calc(40px * var(--scale)) ;
  text-align: center;
  border-bottom: 10px solid var(--blue-bg2);
}

.p-price__planItem:last-child {
  border-bottom: none;
}

.p-price__planLabel {
  color: var(--main);
  font-weight: 700;
  font-size: calc(28px * var(--scale));
  margin-bottom: calc(10px * var(--scale));
  line-height: 1.5;
}

.p-price__planPrice {
  line-height: 1.5;
  font-weight: 700;
  font-size: calc(48px * var(--scale));
}

.p-price__planUnit {
  font-size: calc(25px * var(--scale));
  font-weight: 700;
  margin-left: calc(4px * var(--scale));
}

.p-price__planTax {
  font-size: calc(13px * var(--scale));
  margin-left: calc(12px * var(--scale));
}

.p-price__option{
  max-width: calc(1000px * var(--scale));
  margin: 0 auto;

}

.p-price__heading {
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  margin-bottom: calc(20px * var(--scale));
}

.p-price__heading:not(:first-of-type) {
  margin-top: calc(48px * var(--scale));
}

.p-price__list {
  display: flex;
  flex-direction: column;
  gap: calc(10px * var(--scale));
}

.p-price__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: #fff;
  padding: calc(20px * var(--scale)) calc(60px * var(--scale));
}

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

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

.p-price__rowUnit {
  font-size: calc(13px * var(--scale));
  margin-left: calc(3px * var(--scale));
}

.p-price__rowTax {
  font-size: clamp(14px, 1.5vw + 9px, 16px);;
  margin-left: calc(10px * var(--scale));
}

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

  .p-price__planTax{
    font-size: calc(20 * var(--px));
    margin-left: 0;
  }

  .p-price__heading:not(:first-of-type) {
    margin-top: calc(32 * var(--px));
  }

  .p-price__row {
    flex-direction: column;
    align-items: center;
    padding: calc(20 * var(--px));
  }

  .p-price__rowPrice {
    font-size: calc(24 * var(--px));
  }
}

/* flow */
.p-flow__steps {
  max-width: calc(1200px * var(--scale));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: calc(20px * var(--scale));
  padding-bottom: calc(60px * var(--scale));
}

.p-flow__step {
  text-align: center;
}

.p-flow__stepBody{
  border: 1px solid var(--main);
  padding-block: calc(30px * var(--scale));
}

.p-flow__stepLabel {
  color: var(--main);
  font-family: var(--font-en);
  font-style: italic;
  font-size: calc(23px * var(--scale));
  text-align: left;
  margin-bottom: calc(-3px * var(--scale));
  font-weight: 500;
  line-height: 1;
}

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

.p-flow__stepPicture {
  display: block;
}

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

.p-flow__bottom {
  display: grid;
  grid-template-columns: 56.8% 1fr;
  gap: calc(80px * var(--scale));
  max-width: calc(1200px * var(--scale));
  margin: 0 auto;
}

.p-flow__bottomLabel {
  background: var(--blue-bg2);
  color: var(--main);
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  text-align: center;
  padding: calc(10px * var(--scale));
  margin-bottom: calc(40px * var(--scale));
}

.p-flow__initialBoxes {
  display: flex;
  align-items: stretch;
  gap: calc(16px * var(--scale));
}

.p-flow__initialBox {
  position: relative;
  flex: 1;
  border: 1px solid var(--main);
  color: var(--main);
  padding: calc(24px * var(--scale)) calc(16px * var(--scale));
  text-align: center;
  font-weight: 700;
  font-size: calc(14 * var(--px));
}

.p-flow__initialBoxText{
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-flow__plus {
  position: relative;
  width: calc(32px * var(--scale));
  flex-shrink: 0;
}

.p-flow__plus::before,
.p-flow__plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--main);
}

.p-flow__plus::before {
  width: 30px;
  height: 1px;
}

.p-flow__plus::after {
  width: 1px;
  height: 30px;
}

.p-flow__paymentText {
  font-weight: 700;
  font-size: clamp(14px, 1.5vw + 9px, 16px);;
  margin-bottom: calc(16px * var(--scale));
}

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

.p-flow__cardList img {
  display: block;
}

.p-flow__paymentNote {
  font-size: calc(14 * var(--px));
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-flow__steps {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: calc(50 * var(--px));
    margin-bottom: calc(48 * var(--px));
  }

  .p-flow__stepLabel{
    font-size: calc(23 * var(--px));
    margin-bottom: calc(-5 * var(--px));
  }

  .p-flow__initialBoxes{
    flex-direction: column;
    gap: calc(30px * var(--scale));
  }

  .p-flow__plus{
    width: auto;
  }

  .p-flow__initialBoxText{
    position: unset;
  }

  .p-flow__plus::before{
    width: 20px;
  }

  .p-flow__plus::after{
    height: 20px;
  }




  .p-flow__stepBody {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(30 * var(--px));
    padding-block: calc(40 * var(--px));
  }

  .p-flow__stepImage{
    padding-left: calc(30 * var(--px));
    margin-bottom: 0;
  }

  .p-flow__stepText{
    width: 50%;
    text-align: left;
  }

  .p-flow__bottom {
    grid-template-columns: 1fr;
    gap: calc(48 * var(--px));
  }
}

/* faq */
.p-faq {
  background: var(--blue-bg2);
}

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

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

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

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

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

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

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

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

.p-faq__question {
  padding-block: calc(30px * var(--scale));
  line-height: 1.3;
  align-items: center;
  grid-template-columns: 25px 1fr auto;
}

.p-faq__question,
.p-faq__answer {
  display: grid;
  gap: calc(32px * var(--scale));
  cursor: pointer;
  list-style: none;
  align-items: center;
}

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

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

}

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

.p-faq__question-text {
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 365px) / (1440 - 365)), 16px);
  font-weight: 500;
  line-height: 1.8;
  transition: color .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-faq__question:hover .p-faq__question-text {
    color: var(--main);
  }
}

.p-faq__icon {
  width: calc(20px * var(--scale));
  height: calc(20px * var(--scale));
  position: relative;
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--main);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

.p-faq__answer {
  grid-template-columns: calc(25px * 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;
}

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

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

.p-faq__answer-text p {
  margin: 0;
}

.p-faq__empty {
  font-size: calc(14px * var(--scale));
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-faq__item {
    padding-inline: 5%;
  }

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

  .p-faq__cat-list {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
  }

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

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

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

  .p-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;
  }

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

  .p-faq__cat-button.is-open::before {
    transform: translateY(-50%) rotate(45deg);
  }

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

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

  .p-faq__question {
    gap: calc(10 * var(--px));
    padding-block: calc(24 * var(--px));
  }

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

  .p-faq__mark.is-answer{
    line-height: 1.5;
  }

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

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

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

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

/* access */

.p-access__inner.l-grid{
  grid-template-columns: repeat(7, minmax(0, 1fr));
  row-gap: 0;
  grid-column: 1 / 6;
}


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

.p-access__info{
  grid-column: 2 / 6;

}

.p-access__name {
  font-weight: 700;
  font-size: calc(24 * var(--px));
  margin-bottom: calc(18 * var(--px));
}

.p-access__address {
  font-size: calc(16 * var(--px));
  margin-bottom: calc(18 * var(--px));
}

.p-access__row {
  font-size: calc(16 * var(--px));
}

.p-access__label {
  display: inline-block;
  width: calc(80px * var(--scale));
}

.p-access__note {
  font-size: calc(14 * var(--px));
  margin-top: calc(20px * var(--scale));
}

.p-access__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  grid-column: 6 / 12;
}

.p-access__mapFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-access__inner {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--px));
  }

  .p-access__map {
    aspect-ratio: 1 / 1;
    padding-left: calc(40 * var(--px));
    padding-bottom: calc(30 * var(--px));
  }
  .p-access__info{
    padding-left: calc(40 * var(--px));
  }

  .l-grid.p-access_area,
  .p-access__inner.l-grid{
    grid-template-columns: unset;
    gap: 0;
  }

  .p-access__inner.l-grid,
  .p-access__info,
  .p-access__map,
  .p-access .section_tit{
    grid-column: unset;
  }

}

/* staff */
.p-staffPreview .l-contents{
  border-bottom:1px solid var(--font_color); ;
}
.staff-card__link {
  display: block;
}

.staff-card__image {
  display: block;
  overflow: hidden;
}

.staff-card__image .__img {
  transition: transform .4s ease;
}

.staff-card__name {
  margin-top: calc(20px * var(--scale));
  font-size: clamp(14px, 1.5vw + 9px, 16px);
  font-weight: 700;
}

.staff-card__text {
  margin-top: calc(10px * var(--scale));
  font-size: calc(14 * var(--px));
  line-height: 1.5;
}

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

.p-staffPreview__list {
  max-width: calc(1000px * var(--scale));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(60px * var(--scale));
}

@media screen and (min-width: 768px) {
  .p-staffPreview__list .staff-card:nth-child(n+3) {
    display: none;
  }
}

.p-staffPreview__empty {
  font-size: calc(14px * var(--scale));
  text-align: center;
}

.staff-archive__list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(56px * var(--scale)) calc(50px * var(--scale));
}

.staff-archive__empty {
  font-size: calc(14px * var(--scale));
  margin-top: calc(40px * var(--scale));
}

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

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

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

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

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

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

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

.staff-archive__pagination .prev::before,
.staff-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;
}

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

.staff-single__image{
  grid-column: 3 / 6;
  overflow: hidden;
}

.staff-single__body{
  grid-column: 7 / 11;
}
.staff-single__qualification{
  grid-column: 3 / 11;
}
@media (hover: hover) and (pointer: fine) {
  .staff-archive__pagination:hover .prev,
  .staff-archive__pagination:hover .next{
    background: var(--main);
  }

}

/* single-staff */

.staff-single__image .__img {
  object-position: center;
  object-fit: cover;
  height: 368px;
}

.staff-single__name {
  font-size: calc(24px * var(--scale));
  font-weight: 700;
  margin-bottom: calc(40px * var(--scale));
}

.staff-single__text {
  font-size: clamp(14px, 1.5vw + 9px, 16px);
}

.staff-single__text p {
  margin: 0;
}

.staff-single__sns {
  display: inline-flex;
  margin-top: calc(40px * var(--scale));
}

.staff-single__sns-icon {
  display: block;
  width: calc(32px * var(--scale));
  height: calc(28px * var(--scale));
}

.staff-single__sns-icon.is-instagram {
  background: url(../images/icon_instagram_black.svg) center / calc(28px * var(--scale)) calc(28px * var(--scale)) no-repeat;
}

.staff-single__qualification {
  margin-top: calc(60px - 24px * var(--scale));
}

.staff-single__qualification-title {
  color: var(--main);
  font-weight: 700;
  font-size: calc(18px * var(--scale));
  margin-bottom: calc(20px * var(--scale));
}

.staff-single__qualification-list {
  background: var(--blue-bg2);
  padding: calc(50px * var(--scale)) calc(42px * var(--scale));
}

.staff-single__qualification-item {
  padding-block: calc(20px * var(--scale));
  font-size: clamp(14px, 1.5vw + 9px, 16px);
  font-weight: 500;
  border-bottom: 1px solid #fff;
}

.staff-single__qualification-item:first-child {
  padding-top: 0;
}

.staff-single__back {
  display: flex;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine){
  .staff-single__sns:hover .staff-single__sns-icon.is-instagram{
    background-image: url(../images/icon_instagram_outline_main.svg);
  }
}

@media screen and (max-width: 767px) {
  .staff-single .l-grid{
    grid-template-columns: unset;
    gap: calc(46 * var(--px));
  }

  .staff-single__image,
  .staff-single__body,
  .staff-single__qualification{
    grid-column: unset;

  }
  .staff-card{
    border-bottom: 1px solid var(--gray4);
    padding-bottom: calc(30 * var(--px));
  }
  .p-staffPreview__list {
    grid-template-columns: 1fr;
    gap: calc(50 * var(--px));
    margin-bottom: calc(40 * var(--px));
  }

  .staff-archive__list {
    grid-template-columns: 1fr;
    gap: calc(40 * var(--px));
    margin-top: calc(40 * var(--px));
  }

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

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

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

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

  .staff-single__inner {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--px));
  }

  .staff-single__name {
    font-size: calc(18 * var(--px));
  }

  .staff-single__qualification {
    margin-top: 0;
  }

  .staff-single__qualification-title{
    font-size: calc(16 * var(--px));
  }
  .staff-single__qualification-list{
    padding: calc(40 * var(--px)) calc(20 * 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));
  font-weight: 500;
}

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

.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;
  font-weight: 500;
}

.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__operator {
  margin-top: calc(40px * var(--scale));
  font-size: calc(14 * var(--px));
  font-weight: 400;
}

.l-footer__companyName{
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  transition: color .3s ease;
}

.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__companyName:hover  */
  .l-footer__nav-link:hover{
    color: var(--main);
  }

}


.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));
}

.c-snsButton {
  border: 1px solid var(--line);
  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(--line);
  transition: background-color .3s ease, color .3s ease;
}

.c-snsButton.is-instagram {
  border-color: var(--point);
  color: var(--point);
}

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

.c-snsButton__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-line .c-snsButton__icon::before {
  background-image: url(../images/icon_line_green.svg);
}

.is-instagram .c-snsButton__icon::before {
  background-image: url(../images/icon_instagram_orange.svg);
}

.c-snsButton__text {
  font-family: var(--font-en);
  font-size: calc(16 * var(--px));
  line-height: 1.3;
  letter-spacing: -.06em;
}

.c-snsButton__arrow {
  width: calc(55px * var(--scale));
  height: calc(55px * var(--scale));
  background: var(--line);
  position: relative;
  overflow: hidden;
  transition: background-color .3s ease;
}

.is-instagram .c-snsButton__arrow {
  background: var(--point);
}

.c-snsButton__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) {
  .c-snsButton:hover {
    background: var(--line);
    color: #fff;
  }

  .c-snsButton.is-instagram:hover {
    background: var(--point);
  }

  .c-snsButton:hover .c-snsButton__arrow {
    background: #fff;
  }

  .c-snsButton:hover .c-snsButton__arrow::before {
    background-image: url(../images/arrow_line.svg);
    background-position: 70% center;
  }

  .c-snsButton.is-instagram:hover .c-snsButton__arrow::before {
    filter: none;
    background-image: url(../images/arrow_orange.svg);
  }
}

.l-footer__bottom {
  margin-top: calc(88px * var(--scale));
  margin-bottom:calc(30px * 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));
  transition: color .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__legal-link:hover {
    color: var(--main);
  }
}

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

.sp-only {
  display: none;
}

@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));
  }

  .c-snsButton {
    gap: calc(10 * var(--px));
    padding: calc(20 * var(--px));
  }


  .c-snsButton__icon::before {
    background-size: calc(24 * var(--px)) calc(24 * var(--px));
  }

  .c-snsButton__arrow {
    width: calc(50 * var(--px));
    height: calc(50 * var(--px));
  }

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

  .l-footer__nav-item{
    line-height: 1;
  }

  .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));
}

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

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

.service-page__sns {
  display: 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(190px * var(--scale));
  border-bottom: 1px solid var(--black);
  padding-bottom: calc(10px * var(--scale));
}

.service-page__button-text {
  font-family: var(--font-en);
  font-size: calc(13px * var(--scale));
  font-weight: 700;
  letter-spacing: -.06em;
}

.service-page__button-arrow {
  width: calc(42px * var(--scale));
  height: calc(42px * var(--scale));
  background: var(--black);
  position: relative;
}

.service-page__button-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(15px * var(--scale));
  height: calc(15px * var(--scale));
  background: url(../images/arrow_white.svg) center / contain no-repeat;
}

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

@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__logo--sheep {
    width: calc(158 * var(--px));
  }

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

  .service-page__sns-link {
    gap: calc(20 * 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-text {
    font-size: calc(11 * var(--px));
  }

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

  .service-page__button-arrow::before {
    width: calc(14 * var(--px));
    height: calc(14 * 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 {
  display: flex;
  align-items: flex-start;
  gap: calc(24px * var(--scale));
}

.company-page__parallax-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: calc(24px * var(--scale));
  will-change: transform;
}

.company-page__parallax-col.-offset {
  margin-top: calc(80px * var(--scale));
}

.company-page__parallax-item {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(calc(60px * var(--scale)));
  transition: opacity .8s ease, transform .8s ease;
}

.company-page__parallax-item.-portrait {
  width: calc(330px * var(--scale));
  aspect-ratio: 330 / 420;
}

.company-page__parallax-item.-landscape {
  width: calc(410px * var(--scale));
  aspect-ratio: 410 / 330;
}

.company-page__parallax-item:nth-child(2) {
  transition-delay: .15s;
}

.company-page__parallax-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.company-page__parallax-item .__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 {
    gap: calc(12 * var(--px));
  }

  .company-page__parallax-col {
    gap: calc(12 * var(--px));
  }

  .company-page__parallax-item.-portrait {
    width: calc(125 * var(--px));
  }

  .company-page__parallax-item.-landscape {
    width: calc(155 * var(--px));
  }

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

  .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: clamp(14px, 1.5vw + 9px, 16px);
  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;
}

.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;
}

.recruit-page__gallery .swiper-slide {
  aspect-ratio: 3 / 2;
}

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

.recruit-gallery-swiper__nav .swiper-button-prev,
.recruit-gallery-swiper__nav .swiper-button-next {
  top: 50%;
  width: calc(50px * var(--scale));
  height: calc(50px * var(--scale));
  margin-top: 0;
  transform: translateY(-50%);
  background: var(--main);
  border-radius: 50%;
}

.recruit-gallery-swiper__nav .swiper-button-prev::after,
.recruit-gallery-swiper__nav .swiper-button-next::after {
  color: #fff;
  font-size: clamp(14px, 1.5vw + 9px, 16px);
}

.recruit-gallery-swiper__nav .swiper-button-prev {
  left: calc(-25px * var(--scale));
}

.recruit-gallery-swiper__nav .swiper-button-next {
  right: calc(-25px * var(--scale));
}

.recruit-gallery-swiper__nav .swiper-button-disabled {
  opacity: .3;
}

.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;
  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));
  transition: opacity .3s ease;
}

.job-position__title {
  color: var(--main);
  font-size: calc(18px * var(--scale));
  font-weight: 700;
  transition: opacity .3s ease;
}

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

.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);
  }

  .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__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: center;
}

.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-gallery-swiper__nav .swiper-button-prev,
  .recruit-gallery-swiper__nav .swiper-button-next {
    width: calc(40 * var(--px));
    height: calc(40 * var(--px));
  }

  .recruit-gallery-swiper__nav .swiper-button-prev {
    left: calc(-10 * var(--px));
  }

  .recruit-gallery-swiper__nav .swiper-button-next {
    right: calc(-10 * 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;
  }

  .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);
  }

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

  }

  .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(--gray2);
  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);
}

/* 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-green);
  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: clamp(14px, 1.5vw + 9px, 16px);
  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__body a {
  color: var(--main);
  text-decoration: underline;
  word-break: break-all;
}

.news-single__body blockquote {
  position: relative;
  background: var(--gray5);
  padding: calc(30px * var(--scale)) calc(32px * var(--scale));
  margin-block: calc(30px * var(--scale));
  font-style: italic;
}

.news-single__body blockquote p {
  margin: 0;
}

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

.news-single__body blockquote cite {
  display: block;
  margin-top: calc(10px * var(--scale));
  font-size: calc(13 * var(--px));
  font-style: normal;
  color: var(--gray2);
}

.news-single__body hr {
  border: none;
  border-top: 1px solid var(--gray1);
  margin-block: calc(50px * var(--scale));
}

.news-single__body img {
  height: auto;
  display: block;
}

.news-single__body figure {
  margin-block: calc(30px * var(--scale));
}

.news-single__body figure img {
  width: 100%;
}

.news-single__body figcaption {
  margin-top: calc(10px * var(--scale));
  font-size: calc(13 * var(--px));
  color: var(--gray2);
  text-align: center;
}

.news-single__body .alignleft {
  float: left;
  margin: 0 calc(24px * var(--scale)) calc(16px * var(--scale)) 0;
}

.news-single__body .alignright {
  float: right;
  margin: 0 0 calc(16px * var(--scale)) calc(24px * var(--scale));
}

.news-single__body .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.news-single__body .alignwide,
.news-single__body .alignfull {
  width: 100%;
}

.news-single__body table {
  width: 100%;
  border-collapse: collapse;
  margin-block: calc(30px * var(--scale));
  font-size: calc(14 * var(--px));
}

.news-single__body th,
.news-single__body td {
  border: 1px solid var(--gray1);
  padding: calc(12px * var(--scale)) calc(16px * var(--scale));
  text-align: left;
}

.news-single__body th {
  background: var(--light-blue);
  color: var(--main);
  font-weight: 700;
}

.news-single__body code {
  background: var(--gray5);
  padding: 0.2em 0.4em;
  font-size: .9em;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.news-single__body pre {
  background: var(--font_color);
  color: #fff;
  padding: calc(24px * var(--scale));
  margin-block: calc(30px * var(--scale));
  overflow-x: auto;
  line-height: 1.6;
}

.news-single__body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.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-list.is-open .news-archive__cat-item._cat-all{
    display: none;

  }

  .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;
  }

  .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);
  }

  .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__body blockquote {
    padding: calc(24 * var(--px));
    margin-block: calc(24 * var(--px));
  }

  .news-single__body hr {
    margin-block: calc(40 * var(--px));
  }

  .news-single__body figure,
  .news-single__body table {
    margin-block: calc(24 * var(--px));
  }

  .news-single__body th,
  .news-single__body td {
    padding: calc(10 * var(--px)) calc(12 * var(--px));
  }

  .news-single__body pre {
    padding: calc(18 * var(--px));
    margin-block: calc(24 * var(--px));
  }

  .news-single__body .alignleft {
    margin: 0 calc(16 * var(--px)) calc(12 * var(--px)) 0;
  }

  .news-single__body .alignright {
    margin: 0 0 calc(12 * var(--px)) calc(16 * 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(74px * var(--scale));
}

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

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

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

.btn.__center{
  display: flex;
  justify-content: center;
}


.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);
}

/* hover演出はマウス操作可能な環境のみ（SPのタップでは発火させない） */
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    border-color: var(--main);
  }

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

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

  .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{
    color: var(--main);
  }

  .c-button:hover .c-button__arrow1:after{
      background-color: var(--main);
      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;
  }
}

@media screen and (max-width: 768px){
  .c-button__arrow1:after{
    width: 44px;
    height: 44px;
  }
  .btn.__rightSp{
  display: flex;
  justify-content: flex-end;
}
}

/*
  Button　top news
*/
/*
  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: clamp(14px, 1.5vw + 9px, 16px);
  font-weight: 700;
}

.p-cta__text {
  font-size: clamp(14px, 1.5vw + 9px, 16px);
  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-image: url(../images/arrow_main.svg);
    background-position: 70% center;
  }
}
@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;
    width: 90%;
    margin: 0 auto;
  }

  .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));
  }
}

/*
  cta-line
-----------------------------------------------------*/
.p-lineCta {
  position: relative;
  overflow: hidden;
  background: var(--font_color);
  padding-block: calc(80px * var(--scale));
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-lineCta__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: hidden;
  align-items: center;
}

.p-lineCta__marqueeTrack {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: p-lineCta-marquee 24s linear infinite;
}

.p-lineCta__marqueeTrack span {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 700;
  font-size: calc(64px * var(--scale));
  color: #fff;
  padding-inline: calc(24px * var(--scale));
  line-height: 1;
}

@keyframes p-lineCta-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .p-lineCta__marqueeTrack {
    animation: none;
  }
}

.p-lineCta__card {
  position: relative;
  z-index: 1;
  /* display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; */
  gap: calc(24px * var(--scale));
  width: 90%;
  max-width: calc(800px * var(--scale));
  background: #fff;
  padding: calc(40px * var(--scale));
  transition: background-color .3s ease;
}

.p-lineCta__icon {
  width: calc(48px * var(--scale));
  height: calc(48px * var(--scale));
  background: url(../images/icon_line_green.svg) center / contain no-repeat;
}

.p-lineCta__body {
  display: flex;
  flex-direction: column;
  gap: calc(4px * var(--scale));
  align-items: center;
}

.p-lineCta__bodyInner{
  display: flex;
  gap: calc(10px * var(--scale));
  align-items: center;
}

.p-lineCta__title {
  color: var(--line);
  font-size: calc(20 * var(--px));
  font-weight: 700;
  transition: color .3s ease;
}

.p-lineCta__text {
  font-weight: 700;
  color: var(--font_color);
  font-size: clamp(14px, 1.5vw + 9px, 16px);
  transition: color .3s ease;
}

.p-lineCta__area{
  position: relative;
}

.p-lineCta__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  height: calc(50px * var(--scale));
  background: var(--line);
  /* position: relative; */
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
}

.p-lineCta__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(-45deg);
  background-image: url(../images/arrow_white.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-lineCta__card:hover {
    background-color: var(--line);
  }

  .p-lineCta__card:hover .p-lineCta__title,
  .p-lineCta__card:hover .p-lineCta__text {
    color: #fff;
  }

  .p-lineCta__card:hover .p-lineCta__arrow::before{
    background-image: url(../images/arrow_line.svg);
  }

  .p-lineCta__card:hover .p-lineCta__arrow{
    background-color: #fff;
  }

  .p-lineCta__card:hover .p-lineCta__icon {
    background-image: url(../images/icon_line_white.svg);
  }

  .p-lineCta__card:hover .p-lineCta__arrow::before {
    background-position: 70% center;
  }
}

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

  .p-lineCta__marqueeTrack span {
    font-size: calc(32 * var(--px));
  }

  .p-lineCta__card {
    padding: calc(40 * var(--px)) calc(20 * var(--px));
  }

  .p-lineCta__body {
    align-items: center;
  }
    .p-lineCta__bodyInner{
    flex-direction: column;
  }

  .p-lineCta__arrow {
    width: calc(44 * var(--px));
    height: calc(44 * var(--px));
  }
    .p-lineCta__area{
    padding-bottom: calc(64 * var(--px));
  }

  .p-lineCta__arrow{
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 0);
  }
}

/*
  footer-service
-----------------------------------------------------*/
.footer-service {
  background: var(--main);
  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(3, 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);
}

.footer-service__body {
  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 {
  display: block;
  margin: 0 auto;
  height: 60px;
}

.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: 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));
  transition: opacity .3s ease;
}

.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;
}

.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_white.svg);
}

.footer-service__sns-icon.is-instagram::before {
  background-image: url(../images/icon_instagram_gray.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 var(--gray1);
    padding: calc(30 * var(--px)) 0;
  }

  .footer-service__item:first-child {
    border-top: 1px solid var(--gray1);
  }

  .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;
  }

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

  .footer-service__arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    -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);
  font-family: var(--font-en);
  letter-spacing: -0.8px;
}

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

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


/*
  fixed LINE button (PC only)
-----------------------------------------------------*/
.p-fixedLine {
  position: fixed;
  right: 0;
  bottom: calc(40px * var(--scale));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(6px * var(--scale));
  width: fit-content;
  padding: calc(26px * var(--scale)) calc(24px + 1rem * var(--scale)) calc(26px * var(--scale)) calc(24px * var(--scale));
  /* padding-block: calc(26px * var(--scale));
  padding-inline: calc(24px * var(--scale)); */
  background: var(--line);
  color: #fff;
  text-align: center;
  translate: 1rem;
  -webkit-transition: translate .2s ease;
  transition: translate .2s ease
}

.p-fixedLine__icon {
  width: calc(35px * var(--scale));
  height: calc(35px * var(--scale));
  background: url(../images/icon_line_white.svg) center / contain no-repeat;
}

.p-fixedLine__text {
  font-size: calc(14 * var(--px));
  font-weight: 700;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .p-fixedLine:hover {
    translate:0

  }
}

@media screen and (max-width: 767px) {
  .p-fixedLine {
    bottom: 0;
    left: 0;
    right: 0;
    translate: none;
    width: 100%;
    padding-inline: 0;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding-block: calc(20px * var(--scale));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .p-fixedLine.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

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

}

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

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

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

.l-footer ._logo {
  width: 120px;
}
@media (hover: hover) and (pointer: fine) {
  .l-header .header-logo:hover{
    opacity: .85;
  }
}

@media screen and (max-width: 1210px) {
  .l-footer ._logo {
    width: 204px;
  }

  .l-header .header-logo{
    line-height: 55px;
    padding-block: 0;
  }

  .l-header-nav_sp{
    height: 55px;
  }

  .is-drawerActive .l-header .header-logo .__white{
    display: inline-block;

  }

  .is-drawerActive .l-header .header-logo .__color{
    display: none;
  }
}
/*
  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);
  /* margin-top: calc(90 * var(--px)); */
  position: relative;
}

/*
  p-mv
-----------------------------------------------------*/
.p-mv {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: calc(60px * var(--scale)) calc(80px * 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: calc(540px * var(--scale));
  max-width: 70vw;
  aspect-ratio: 1 / 1;
  margin-block: calc(40px * var(--scale));
}

.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: baseline;
  flex-wrap: wrap;
  gap: calc(24px * var(--scale));
}

.p-mv__logo {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.p-mv__catch {
  font-size: clamp(0.8rem, 0.6rem + 0.6vw, 1rem);
  font-weight: 500;
  color: var(--main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

  .swiper_mv {
    width: calc(220px * var(--scale));
    margin-block: calc(24 * var(--px));
  }

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

  .p-mv__logo {
    font-size: clamp(1.6rem, 1.2rem + 4vw, 2.2rem);
  }
}

/*
  p-fv
-----------------------------------------------------*/
.p-fv {
  position: relative;
  display: grid;
  grid-template-columns: 44% 1fr;
  overflow: hidden;
  height: calc(100vh - 120px);
}

.p-fv__visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 0;
}

.p-fv__image {
  display: block;
  width: 100%;
  height: 100%;
}

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

.p-fv__panel {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--main);
  padding-inline: var(--space-side);
  padding-block: calc(60px * var(--scale));
}

.p-fv__date {
  color: #fff;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: calc(58px * var(--scale));
  letter-spacing: -.08em;
  line-height: 1;
}

.p-fv__heading-wrap {
  position: relative;
  margin-bottom: calc(24px * var(--scale));
}

.p-fv__heading {
  color: #fff;
  display: block;
  font-family: var(--font-en);
  font-weight: 300;
  font-size: calc(124px * var(--scale));
  line-height: 1;
  letter-spacing: -.08em;
  white-space: nowrap;
  -webkit-text-stroke: 3px var(--main);
  text-stroke: 3px var(--main);
  paint-order: stroke;
}

.p-fv__heading--outline {
  /* color: transparent;
  -webkit-text-stroke: 1px #fff; */
}

.p-fv__heading--fill {
  /* position: absolute;
  inset: 0;
  overflow: hidden;
  color: #fff; */
}

.p-fv__catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(10px * var(--scale));
}

.p-fv__catch-item {
  background-color: #fff;
  color: var(--main);
  font-weight: 700;
  font-size: calc(32px * var(--scale));
  padding: calc(10px * var(--scale)) calc(20px * var(--scale));
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-fv {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    height: calc(100vh - 55px);
    height: calc(100dvh - 55px);
    height: calc(var(--vh, 1vh) * 100 - 55px);
  }
  .p-fv__heading-wrap{
    margin-bottom: 2%;
  }

  .p-fv__visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
  }

  .p-fv__panel {
    grid-column: 1;
    grid-row: 2;
    padding-block: calc(30px * var(--scale)) ;
  }

  .p-fv__heading {
    white-space: normal;
  }

  .p-fv__heading--outline {
    font-size: calc(56 * var(--px));
  }


  .p-fv__catch-item {
    font-size: 0.9rem;
    padding: calc(4 * var(--px)) calc(10 * var(--px));
  }
  .p-fv__date{
    font-size: calc(26 * var(--px));

  }
}

/*
  p-campaignBanner
-----------------------------------------------------*/
.p-campaignBanner{
  padding-block: calc(60px * var(--scale));
}
.p-campaignBanner__link {
  display: block;
  transition: opacity .3s ease;
}

.p-campaignBanner__picture {
  display: block;
}

.p-campaignBanner__image {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px){
.p-campaignBanner{
  padding-block: calc(20px * var(--scale));
}
}

@media (hover: hover) and (pointer: fine) {
  .p-campaignBanner__link:hover {
    opacity: .8;
  }
}

.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;
}

.section_tit.__center-pc{
  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: clamp(14px, 1.5vw + 9px, 16px);
  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;
  }

  .section_tit.__center-pc{
    text-align: left;
    margin: 0;
  }

}



/*
  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%;
  }
}

/*
  Article
*/


/*
  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
-----------------------------------------------------*/

/*
  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;
}
