@charset "UTF-8";

/*
color
-----------------------------------------------------*/
:root {
--main: #242424;
--border: #E3E3E3;
--pink: #EDD9EF;
--pink2:#F9D8D0;
--pink3: #EEA2B6;
--pink4: #FAEDED;
--pink5: #D17D93;
--green: #06C755;
--gray: #85818A;
--gray2: #747474;
--ease-up: cubic-bezier(0.16, 0.88, 0.25, 1);
--parallax-height: 130%;

}

#wpadminbar{
  display: none;
}


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

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

/*
  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%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  color: #242424;
  text-rendering: optimizeLegibility;
  font: 1.6rem "Noto Serif JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
body.is-drawerActive {
  overflow: hidden;
}

html,
body,
a {
  cursor: none;
}

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;
  display: block;
}

dt,
dd {
  display: inline-block;
}

*[lang=en] {
  font-family: haboro-contrast-condensed, sans-serif;
}

#top{
   opacity: 0;
}

.__center{
  text-align: center;
}
@media screen and (min-width: 768px){
.__center_pc {
  text-align: center;
}
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="submit"] {
  color: inherit;
    -webkit-appearance: none;
      border-radius: 0;
}
/* =====================================================
  1.0 - Foundation
===================================================== */
._half {
  width: 50%;
}

.italic {
  font-style: italic;
}

.font-golden {
  font-family: "goldenbook", "serif";
}

.serif {
  font-family: "Noto Serif", "serif";
}

.sans {
  font-family: "Noto Sans JP", "serif";
}

.upper {
  text-transform: uppercase;
}

.cap {
  text-transform: capitalize;
}

/*最小値:1.1rem → 可変（0.9rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.6rem*/
.font-size-S {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 1.6rem);
}

/*最小値:1.2rem → 可変（1rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:1.7rem*/
.font-size-M {
  font-size: clamp(1.2rem, 1rem + 0.625vw, 1.7rem);
}

/*最小値:1.6rem → 可変（2.2rem + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px））→ 最大値:2.9rem*/
.font-size-L {
  font-size: clamp(2.4rem, 2.2rem + 0.625vw, 2.9rem);
}

.opacity a:hover {
  opacity: 0.5;
}

.blur a:hover {
  -webkit-filter: blur(1px);
  filter: blur(1px);
}
/*
  font
-----------------------------------------------------*/

.body-text{
  font-size: .8125em;
  @media screen and (min-width: 768px){
    font-size: .9375em;
  }
}

._text1314 p{
  font-size: .8125em;
  padding-bottom: .8125em;
}
    @media screen and (min-width: 768px) {
    ._text1314 p {
        font-size: .875em;
        padding-bottom: .875em;
      }
    }
/* =====================================================
  2.0 - Layout
===================================================== */
/*
  Centering
-----------------------------------------------------*/
.l-container {
  margin: 0 auto;
  max-width: 1080px;
  /* width: 90%; */
  width: calc(100% - 34px);
}
@media screen and (min-width: 768px) {
  .l-footer-area .l-container,
  .l-container.__header{
    width: 95%;
    max-width: none;
  }
}

.l-container.pc-top_header{
  width: 95%;
   max-width: none;
}

.l-container._w700{
  max-width: 700px;
}

.l-container._w900{
  max-width: 900px;
}

.l-container._slim{
  width: 80%;
}

.l-container.p-join-us_office_area{
  width: 95%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px){
  .l-container.p-join-us_office_area{
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px){
.p-join-us_point .l-container {
    /* max-width: 1300px;
    margin: 0 auto 0 0;
    width: 85%; */

  }
}

.l-container.__brand{
  max-width: 1382px;

}

._center {
  text-align: center;
}
/*
  reserve
-----------------------------------------------------*/
/*
  Header
-----------------------------------------------------*/
/*
.l-header_outer {
transition: background-color 1.2s cubic-bezier(.22, .54, .18, 1) 0s, transform 1.2s cubic-bezier(.19, 1, .22, 1) 0s, -webkit-backdrop-filter 1.2s cubic-bezier(.16, 1, .3, 1) 0s;
  transition: background-color 1.2s cubic-bezier(.22, .54, .18, 1) 0s, transform 1.2s cubic-bezier(.19, 1, .22, 1) 0s, backdrop-filter 1.2s cubic-bezier(.16, 1, .3, 1) 0s;
  transition: background-color 1.2s cubic-bezier(.22, .54, .18, 1) 0s, transform 1.2s cubic-bezier(.19, 1, .22, 1) 0s, backdrop-filter 1.2s cubic-bezier(.16, 1, .3, 1) 0s, -webkit-backdrop-filter 1.2s cubic-bezier(.16, 1, .3, 1) 0s;
}

.l-header_outer:hover {
  background-color: #ffffff4d;
} */
.l-header-sns {
  padding: 1.875rem 0;
}
.l-header-sns-list {
  gap: 2.6666666667vw;
}
.l-header-sns-link {
  position: relative;
}
.l-header-sns-link path {
  fill: #efd9e0;
  /* mix-blend-mode: overlay; */
}
.l-header-sns-link img {
  -webkit-filter: drop-shadow(1px 1px 1px #D0D0D0);
          filter: drop-shadow(1px 1px 1px #D0D0D0);
  width: 30px;
}
.l-header-sns-link:after {
  background: #242424;
  position: absolute;
  bottom: 0;
  left: -8px;
  content: "";
  width: 150%;
  height: 1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}


.l-header{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 998;
    /* mix-blend-mode: color-burn; */

}
.l-header_logo{
  text-align: center;
  z-index: 998;
  /* mix-blend-mode: color-burn; */

}
/* @media screen and (min-width: 768px){
.l-header_logo {
    text-align: left;
  }
} */
.l-header_logo_link{
  margin: 23.5px 0;
  /* width: 210px; */
  display: inline-block;
  line-height: 13px;
  width: clamp(180px, 18vw, 210px);
}


/*
  Hamburger
*/
.hamburger_area {
  position: relative;
  z-index: 997;
}

.p-hamburger {
  /* position: absolute;
  top: 0;
  right: 2.5%;
  bottom: 0;
  left: auto;
  z-index: 2;
  margin: auto 0;
  width: 24px;
  height: 24px;
  outline: 0;
  border: 0;
  background-color: transparent;
  -webkit-box-shadow: 0 0 40px transparent;
  box-shadow: 0 0 40px transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; */
}

.p-hamburger:focus {
  -webkit-box-shadow: 0 0 0 1px #212121;
  box-shadow: 0 0 0 1px #212121;
}

.p-hamburger_tex_area{
  display: inline-block;
  position: relative;
  padding-left: 14px;
  font-weight: 700;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 8px;
  /* font-size: clamp(1.6rem, 2vw, 1.8rem); */
  line-height: 1.2em;
  height: 1.2em;
  /* mix-blend-mode: color-burn; */
}

.p-hamburger_tex_area:before{
  content: "";
  background-color: var(--main);
  width: 6px;
  height: 6px;
  transition: transform 1.4s var(--ease-up);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-hamburger_tex{
  font-size: inherit;
  line-height: inherit;
  transition: transform 1.4s var(--ease-up);
  color: var(--main);
}

.show .p-hamburger_tex {
  transform: translateY(1.2em);
}





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

.is-drawerActive .p-hamburger__line:before,
.is-drawerActive .p-hamburger__line:after {
  top: 0;
  background-color: #666666;
  width: 20px;
}

.is-drawerActive .p-hamburger__line:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.is-drawerActive .p-hamburger__line:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* global nav */
.header-nav{
  padding-top: 2.5em;
}

.flex-item-left,
.flex-item-right{
  width: 100%;
}
.header-nav .nav_link{
  font-size: ;
  color: #fff;
  text-decoration: none;
  font-size: 2.8vw;
  display: inline-block;
  background-color: var(--main);
  line-height: 1.2;
  padding: 0 3%;
}

/* 10秒後に0.5秒かけて"late-open"を実行する */
.hoge-box {
  opacity: 0;
  animation: fadeIn 3.5s forwards;
}

/* late-open = display: block; */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*  */
.nav-area{
  background-color: var(--pink4);
  overflow-y: scroll;
  height: 90vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--bg-main); */
  clip-path: inset(0% 0 100% 0);
  transform: translateY(-20%);
  /* transition: clip-path 1s var(--ease-up), transform 1.4s var(--ease-up); */
  transition: clip-path 1s cubic-bezier(0.16, 0.88, 0.25, 1), transform 1.4s cubic-bezier(0.16, 0.88, 0.25, 1);
  pointer-events: none;
  /* display: none; */
  z-index: 400;
}

.nav-area.active {
  clip-path: inset(0% 0 0 0);
  transform: translateY(0%);
  pointer-events: all;
  /* display: block; */
}


.nav_link{
  text-decoration: none;
  color: inherit;
  padding: 1.875em 0;
  border-bottom: 1px solid var(--gray);
}
.nav_link .nav_tex{
  font-size: 1.125em;
  font-weight: 700;
  transition: transform .4s ease, letter-spacing .6s ease-out;
}

.nav_img{
width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* transform: rotate(-180deg); */
}

.l-header_sec{
  padding-top: 4.375em;

}

.l-header_tit{
  font-size: 1.125em;
  font-weight: 700;

}

.l-header_inner{
  padding-top: 1.25em;
}

.l-header_com_inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 28px 34px;
}

.l-header_com-link{
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.6666666667vw 0;
}

.l-header__sns{
    display: flex;
    gap: 40px;
}

.l-header-area{
  padding: 100px 0
}

@media screen and (min-width: 768px) {
  .l-header-area .flex-item-left{
    width: 46.3%;
  }
  .l-header-area .flex-item-right {
    width: 40.5%;
  }
  .l-header_sec{
    padding-top: 0;
  }
  .l-header_tit{
    padding-bottom: .625em;
    border-bottom: 1px solid;
  }

  .l-header_com-link{
    background: none;
    display: inline;
    padding: 0;
  }
  .l-header_com_inner{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

  }

  .l-header_com_tit{
    padding-top: 1.875em;
  }

  .l-header_sns_tit{
    padding-top: 3.125em;
  }

  .nav_list .nav_link{
    transition: opacity 0.4s var(--ease-up);
  }

  .nav_list .nav_link.hide {
    opacity: .2;
  }


  .nav_link:hover .nav_tex {
    transform: translateX(6px) skewX(-8deg);
  }


  .nav_link:hover .nav_img {
    animation: hoverArrowRightHead .4s var(--ease-up) running;
  }
}

@keyframes hoverArrowRightHead {
  0% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0)
  }

  40% {
    transform: translateX(8px);
    clip-path: inset(0 0 0 100%);
    opacity: 1
  }

  42% {
    opacity: 0
  }

  49% {
    opacity: 0;
    transform: translateX(-8px);
    clip-path: inset(0 100% 0% 0%)
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0% 0% 0%)
  }
}
/*
  Contents
-----------------------------------------------------*/
.l-contents {
  clear: both;
  padding: 6.25em 0;
}
@media screen and (min-width: 768px) {
  .l-contents {
    padding: 7.5em 0;
  }
  .l-contents.p-join-us_line{
    padding: 6.81em 0;
  }

  .l-contents.-w70{
    max-width: 700px;

  }
}

.l-contents__top{
padding: 0 0 6.25em 0;
}

.l-contents__button {
  max-width: 400px;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .l-contents__button {
    margin-top: 3rem;
  }
}

/*
  Main
-----------------------------------------------------*/
.l-main {
  clear: both;
}
.page-inner{
  padding-top: 5.375em;
}
@media screen and (min-width: 768px){
  .page-inner {
  padding-top: 7.5em;
  }
}

/* パンくず */

.l-breadcrumbs.__pink{
  background-color: var(--pink4);
  padding-top: 4.375em;
}


.p-join-us .breadcrumbs_area{
 background-color: var(--pink4);
}

.breadcrumbs a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.breadcrumbs .current-item {
  font-size: 0.8125em;
}

.l-breadcrumbs {
  padding-bottom: 6.25em;
  text-align: center;
}

.breadcrumb__item{
  display: inline-block;
  position: relative;
  margin-left: 5rem;
  font-size: .75em;
}

.breadcrumb__item:before {
  background-color: var(--main);
  content: "";
  height: 1px;
  left: -4rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 3rem;
}

.breadcrumb__item:first-of-type{
  margin-left: 0;
}

.breadcrumb__item:first-of-type:before{
  content: none;
}


/* .itemListElement+.itemListElement{
  margin-left: 5rem;

} */

@media screen and (min-width: 768px){
  .l-breadcrumbs{
    padding-bottom: 0;
  }
.p-join-us .breadcrumbs_area {
    background-color: #fff;
        padding-top: 2rem;
  }
    .l-breadcrumbs.__pink{
      background: none;
      padding-top: 0;
    }
    .p-profile .l-breadcrumbs.__pink {
      padding-top: 6.25em;
    }
}




/*
  Footer
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  footer .l-footer .l-footer-top{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 3;
    bottom: 0;
    background: #fff;
  }
}
footer .l-footer-area {
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  footer .l-footer-area {
    padding: 0;
  }
}
footer .l-footer-tit {
  font-size: clamp(18px, 4.8vw, 484px);
  padding-bottom: 12vw;
}
footer .l-footer-company-inner {
  row-gap: 8vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  footer .l-footer-company-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 5.3333333333vw;
       -moz-column-gap: 5.3333333333vw;
            column-gap: 5.3333333333vw;
  }
}
footer .l-footer-company-list {
  border: 1px solid #E3E3E3;
  width: calc(50% - 2rem);
}
@media screen and (min-width: 768px) {
  footer .l-footer-company-list {
    border: none;
    width: auto;
  }
}
footer .l-footer-company-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  footer .l-footer-company-link {
    padding: 1.3333333333vw 0;
  }
}
footer .l-footer-sns {
  background-color: #EDD9EF;
}
footer .l-footer-sns-inner {
  padding: 5.3333333333vw;
  -webkit-column-gap: 10.6666666667vw;
     -moz-column-gap: 10.6666666667vw;
          column-gap: 10.6666666667vw;
}

.l-footer-nav{
  background-color: var(--pink3);
}
.l-footer-nav .nav_link {
  color: #fff;
  text-decoration: none;
  font-size: 1.125em;
  text-align: left;
  padding: 1.11em 0;
}

.l-footer-nav_list {
  border-top: 1px solid #fff;
}

.l-footer-nav_list:first-of-type {
  border-top: none;
}

@media screen and (min-width: 768px){


}

/* footer page */

.l-footer_page{
background-color: var(--pink4);
padding-bottom: 1.875em;
}
@media screen and (min-width: 768px){
  .l-footer_page{
    background-color: #fff;
    padding-top: 6.25em;
  }
}

.l-footer_page .l-footer-sns-inner{
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer_logo{
  width: 126px;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
.l-footer_page_inner{
  max-width: 200px;
  margin: 0 auto;

}
.l-footer_page .l-footer-sns-inner{
  column-gap: 0;
  padding: 1vw 0 5.3333333333vw 0;
  justify-content: space-between;
}
}

/*
 Settings
--------------------------------- */
/*
  Base
--------------------------------- */
/*
  <div class="flex">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item">C</div>
  </div>
*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.flex__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

/*
  Direction
--------------------------------- */
/*
  <div class="flex" data-dir="reverse">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item">C</div>
  </div>
*/
.flex[data-dir=normal] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex[data-dir=reverse] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*
  Alignment
--------------------------------- */
/*
  <div class="flex" data-align="center">
    <div class="flex__item">A</div>
    <div class="flex__item">B</div>
    <div class="flex__item" data-align="end middle">C</div>
  </div>
*/
.flex[data-align~=start] {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex[data-align~=center] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex[data-align~=end] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex[data-align~=justify] {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex[data-align~=top] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex[data-align~=middle] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex[data-align~=bottom] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex[data-align~=baseline] {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.flex__item[data-align~=start] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex__item[data-align~=center] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex__item[data-align~=end] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex__item[data-align~=top] {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.flex__item[data-align~=middle] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.flex__item[data-align~=bottom] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

/*
  Grid
--------------------------------- */
/*
  <div class="flex" data-gutter="normal">
    <div class="flex__item" data-grid="sp12 tab4 lap6">A</div>
    <div class="flex__item" data-grid="sp6 tab4 lap3">B</div>
    <div class="flex__item" data-grid="sp6 tab4 lap3">C</div>
  </div>
*/
.flex[data-gutter] {
  width: auto;
}
.flex[data-gutter] > .flex__item {
  border: solid transparent;
  background-clip: padding-box;
}
.flex[data-gutter=small] {
  margin: -1.25vw;
}
.flex[data-gutter=small] > .flex__item {
  border-width: 1.25vw;
}
.flex[data-gutter=normal] {
  margin: -2.5vw;
}
.flex[data-gutter=normal] > .flex__item {
  border-width: 2.5vw;
}
.flex[data-gutter=large] {
  margin: -3.75vw;
}
.flex[data-gutter=large] > .flex__item {
  border-width: 3.75vw;
}
.flex__item[data-grid~=sp1] {
  width: 8.3333333333%;
}
.flex__item[data-grid~=sp2] {
  width: 16.6666666667%;
}
.flex__item[data-grid~=sp3] {
  width: 25%;
}
.flex__item[data-grid~=sp4] {
  width: 33.3333333333%;
}
.flex__item[data-grid~=sp5] {
  width: 41.6666666667%;
}
.flex__item[data-grid~=sp6] {
  width: 50%;
}
.flex__item[data-grid~=sp7] {
  width: 58.3333333333%;
}
.flex__item[data-grid~=sp8] {
  width: 66.6666666667%;
}
.flex__item[data-grid~=sp9] {
  width: 75%;
}
.flex__item[data-grid~=sp10] {
  width: 83.3333333333%;
}
.flex__item[data-grid~=sp11] {
  width: 91.6666666667%;
}
.flex__item[data-grid~=sp12] {
  width: 100%;
}
.flex__item[data-grid~=spFive] {
  width: 20%;
}

@media screen and (min-width: 375px) {
  .flex__item[data-grid~=se1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=se2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=se3] {
    width: 25%;
  }
  .flex__item[data-grid~=se4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=se5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=se6] {
    width: 50%;
  }
  .flex__item[data-grid~=se7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=se8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=se9] {
    width: 75%;
  }
  .flex__item[data-grid~=se10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=se11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=se12] {
    width: 100%;
  }
  .flex__item[data-grid~=seFive] {
    width: 20%;
  }
  .flex__item[data-grid~=seAuto] {
    width: auto;
  }
}
@media screen and (min-width: 480px) {
  .flex__item[data-grid~=sp1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=sp2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=sp3] {
    width: 25%;
  }
  .flex__item[data-grid~=sp4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=sp5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=sp6] {
    width: 50%;
  }
  .flex__item[data-grid~=sp7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=sp8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=sp9] {
    width: 75%;
  }
  .flex__item[data-grid~=sp10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=sp11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=sp12] {
    width: 100%;
  }
  .flex__item[data-grid~=spFive] {
    width: 20%;
  }
  .flex__item[data-grid~=spAuto] {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .flex[data-gutter=small] {
    margin: -0.5vw;
  }
  .flex[data-gutter=small] > .flex__item {
    border-width: 0.5vw;
  }
  .flex[data-gutter=normal] {
    margin: -1vw;
  }
  .flex[data-gutter=normal] > .flex__item {
    border-width: 1vw;
  }
  .flex[data-gutter=large] {
    margin: -1.5vw;
  }
  .flex[data-gutter=large] > .flex__item {
    border-width: 1.5vw;
  }
  .flex__item[data-grid~=tab1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=tab2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=tab3] {
    width: 25%;
  }
  .flex__item[data-grid~=tab4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=tab5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=tab6] {
    width: 50%;
  }
  .flex__item[data-grid~=tab7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=tab8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=tab9] {
    width: 75%;
  }
  .flex__item[data-grid~=tab10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=tab11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=tab12] {
    width: 100%;
  }
  .flex__item[data-grid~=tabFive] {
    width: 20%;
  }
  .flex__item[data-grid~=tabAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .flex__item[data-grid~=lap1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=lap2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=lap3] {
    width: 25%;
  }
  .flex__item[data-grid~=lap4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=lap5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=lap6] {
    width: 50%;
  }
  .flex__item[data-grid~=lap7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=lap8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=lap9] {
    width: 75%;
  }
  .flex__item[data-grid~=lap10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=lap11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=lap12] {
    width: 100%;
  }
  .flex__item[data-grid~=lapFive] {
    width: 20%;
  }
  .flex__item[data-grid~=lapAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .flex__item[data-grid~=desk1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=desk2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=desk3] {
    width: 25%;
  }
  .flex__item[data-grid~=desk4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=desk5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=desk6] {
    width: 50%;
  }
  .flex__item[data-grid~=desk7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=desk8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=desk9] {
    width: 75%;
  }
  .flex__item[data-grid~=desk10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=desk11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=desk12] {
    width: 100%;
  }
  .flex__item[data-grid~=deskFive] {
    width: 20%;
  }
  .flex__item[data-grid~=deskAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .flex__item[data-grid~=vr1] {
    width: 8.3333333333%;
  }
  .flex__item[data-grid~=vr2] {
    width: 16.6666666667%;
  }
  .flex__item[data-grid~=vr3] {
    width: 25%;
  }
  .flex__item[data-grid~=vr4] {
    width: 33.3333333333%;
  }
  .flex__item[data-grid~=vr5] {
    width: 41.6666666667%;
  }
  .flex__item[data-grid~=vr6] {
    width: 50%;
  }
  .flex__item[data-grid~=vr7] {
    width: 58.3333333333%;
  }
  .flex__item[data-grid~=vr8] {
    width: 66.6666666667%;
  }
  .flex__item[data-grid~=vr9] {
    width: 75%;
  }
  .flex__item[data-grid~=vr10] {
    width: 83.3333333333%;
  }
  .flex__item[data-grid~=vr11] {
    width: 91.6666666667%;
  }
  .flex__item[data-grid~=vr12] {
    width: 100%;
  }
  .flex__item[data-grid~=vrFive] {
    width: 20%;
  }
  .flex__item[data-grid~=vrAuto] {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .align_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .space-evenly {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

/*
  single news
-----------------------------------------------------*/
/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
.c-grid {
  display: table;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 0;
}
.c-grid__item {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
  text-align: left;
  font-size: medium;
  width: 100%;
}
.c-grid__item a {
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  display: block;
}
.c-grid__item a:hover img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: 1s all;
  transition: 1s all;
}
.c-grid.-gutter {
  display: block;
  margin: -20px;
  width: auto;
}
.c-grid.-gutter > .c-grid__item {
  border: 20px solid transparent;
  background-clip: padding-box;
}
.c-grid__item.-sp1Of12 {
  width: 8.3333333333%;
}
.c-grid__item.-sp2Of12 {
  width: 16.6666666667%;
}
.c-grid__item.-sp3Of12 {
  width: 25%;
}
.c-grid__item.-sp4Of12 {
  width: 33.3333333333%;
}
.c-grid__item.-sp5Of12 {
  width: 41.6666666667%;
}
.c-grid__item.-sp6Of12 {
  width: 50%;
}
.c-grid__item.-sp7Of12 {
  width: 58.3333333333%;
}
.c-grid__item.-sp8Of12 {
  width: 66.6666666667%;
}
.c-grid__item.-sp9Of12 {
  width: 75%;
}
.c-grid__item.-sp10Of12 {
  width: 83.3333333333%;
}
.c-grid__item.-sp11Of12 {
  width: 91.6666666667%;
}
.c-grid__item.-sp12Of12 {
  width: 100%;
}
.c-grid__item.-spFive {
  width: 20%;
}

@media screen and (min-width: 768px) {
  .c-grid.-gutter {
    margin: -8px;
  }
  .c-grid.-gutter > .c-grid__item {
    border-width: 8px;
  }
  .c-grid__item.-tab1Of12 {
    width: 8.3333333333%;
  }
  .c-grid__item.-tab2Of12 {
    width: 16.6666666667%;
  }
  .c-grid__item.-tab3Of12 {
    width: 25%;
  }
  .c-grid__item.-tab4Of12 {
    width: 33.3333333333%;
  }
  .c-grid__item.-tab5Of12 {
    width: 41.6666666667%;
  }
  .c-grid__item.-tab6Of12 {
    width: 50%;
  }
  .c-grid__item.-tab7Of12 {
    width: 58.3333333333%;
  }
  .c-grid__item.-tab8Of12 {
    width: 66.6666666667%;
  }
  .c-grid__item.-tab9Of12 {
    width: 75%;
  }
  .c-grid__item.-tab10Of12 {
    width: 83.3333333333%;
  }
  .c-grid__item.-tab11Of12 {
    width: 91.6666666667%;
  }
  .c-grid__item.-tab12Of12 {
    width: 100%;
  }
  .c-grid__item.-tabFive {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .c-grid.-gutter {
    margin: -16px;
  }
  .c-grid.-gutter > .c-grid__item {
    border-width: 16px;
  }
  .c-grid__item.-lap1Of12 {
    width: 8.3333333333%;
  }
  .c-grid__item.-lap2Of12 {
    width: 16.6666666667%;
  }
  .c-grid__item.-lap3Of12 {
    width: 25%;
  }
  .c-grid__item.-lap4Of12 {
    width: 33.3333333333%;
  }
  .c-grid__item.-lap5Of12 {
    width: 41.6666666667%;
  }
  .c-grid__item.-lap6Of12 {
    width: 50%;
  }
  .c-grid__item.-lap7Of12 {
    width: 58.3333333333%;
  }
  .c-grid__item.-lap8Of12 {
    width: 66.6666666667%;
  }
  .c-grid__item.-lap9Of12 {
    width: 75%;
  }
  .c-grid__item.-lap10Of12 {
    width: 83.3333333333%;
  }
  .c-grid__item.-lap11Of12 {
    width: 91.6666666667%;
  }
  .c-grid__item.-lap12Of12 {
    width: 100%;
  }
  .c-grid__item.-lapFive {
    width: 20%;
  }
}
@media screen and (min-width: 1280px) {
  .c-grid.-gutter {
    margin: -20px;
  }
  .c-grid.-gutter > .c-grid__item {
    border-width: 20px;
  }
  .c-grid__item.-desk1Of12 {
    width: 8.3333333333%;
  }
  .c-grid__item.-desk2Of12 {
    width: 16.6666666667%;
  }
  .c-grid__item.-desk3Of12 {
    width: 25%;
  }
  .c-grid__item.-desk4Of12 {
    width: 33.3333333333%;
  }
  .c-grid__item.-desk5Of12 {
    width: 41.6666666667%;
  }
  .c-grid__item.-desk6Of12 {
    width: 50%;
  }
  .c-grid__item.-desk7Of12 {
    width: 58.3333333333%;
  }
  .c-grid__item.-desk8Of12 {
    width: 66.6666666667%;
  }
  .c-grid__item.-desk9Of12 {
    width: 75%;
  }
  .c-grid__item.-desk10Of12 {
    width: 83.3333333333%;
  }
  .c-grid__item.-desk11Of12 {
    width: 91.6666666667%;
  }
  .c-grid__item.-desk12Of12 {
    width: 100%;
  }
  .c-grid__item.-deskFive {
    width: 20%;
  }
}
.c-card__thumbnail {
  overflow: hidden;
}

.news .c-grid__item,
.blog .c-grid__item {
  padding-bottom: 2.5em;
}

.sidebar-news .c-grid__item {
  padding-top: 2.5em;
}
.sidebar-news .flex {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.sidebar-news .c-card {
  padding-top: 0;
}
.sidebar-news .c-card__thumbnail {
  position: initial;
  margin-right: 1.25em;
}
.sidebar-news .c-card__body {
  position: relative;
}
.sidebar-news .c-card__body ._date {
  position: absolute;
  bottom: 0;
}
.sidebar-news .c-card .p-article__text {
  margin-bottom: 0;
}

.__mask{
  background: rgba(0, 0, 0, .6);
  height: 100%;
}

/*
  current
*/
.cursor {
  display: none;
}

@media screen and (min-width: 768px) {
  .cursor {
    display: block;
  }
  #cursor {
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: rgb(0, 0, 0);
    -webkit-transform: translate(-100px, -100px);
            transform: translate(-100px, -100px);
    border-radius: 50%;
    z-index: 999;
  }
  #stalker {
    pointer-events: none;
    position: fixed;
    top: -25px;
    left: -25px;
    background: transparent;
    border: 1px solid;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transform: translate(-100px, -100px);
            transform: translate(-100px, -100px);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    z-index: 999;
  }
  #stalker.hov_ {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    border: transparent;
    background: rgba(0, 0, 0, 0.3);
  }
}
/*
  Button
*/
.c-button {
  display: inline-block;
  border: 0;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-button.-scuare {
  max-width: 260px;
  background-color: #fff;
  margin-top: 3.125em;
  width: 100%;
  text-align: center;
  position: relative;
}

.c-button .btn {
  text-decoration: none;
}

.c-button.-scuare.btn-line{
  border: 1px solid var(--green);
  transition: .3s;
}
.c-button.-scuare.btn-line .btn{
  color: var(--green);
  gap: 0 1rem;
  justify-content: center;
  padding: .625em 0;
}

.c-button.-scuare.btn-line .btn svg{
  fill: var(--green);

}
@media screen and (min-width: 768px){
  .c-button.-scuare.btn-line .btn:hover{
    background-color: var(--green);
    color: #fff;
  }

  .c-button.-scuare.btn-line .btn:hover svg{
  fill: #fff;
  }
}



/*
  contact_Button
*/

.c-button.__form{
  display: block;
}
.c-button.__form input{
  width: 210px;
  border: 1px solid;
  font-size: .875em;
  background-color: transparent;
  font-family: inherit;
  margin: 2.5em auto 0 auto;
  padding: .625em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*
  underline_Button
*/

.line-button{
  padding-top: 2.5em;
}

.line-button .btn{
  text-decoration: none;
  color: inherit;
  padding-bottom: 10px;
  font-size: .875em;
  display: inline-block;
  position: relative;
}

.line-button .btn:after{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--main);
}

/*
ボタン　back
*/

.button_back{
    width: 16rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5em;
}

.button_back .btn{
    padding: .8rem 0 1rem 2rem;
    text-align: right;
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid;

}

.button_back .btn:after{
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    height: 15px;
    margin: auto;
    width: 30px;
    transition: .3s;
    background-image: url(../images/arrow2.svg);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px){
  .button_back .btn{
    font-size: 1.25em;
    transition: opacity .3s linear;
  }

  .button_back .btn .btn_tex{
    display: block;
    transition: transform .4s ease, letter-spacing .6s ease-out;
  }
  .button_back .btn:hover .btn_tex{
  }
  .button_back .btn:hover:after{
    animation: hoverArrowLeft .9s var(--ease-up) running;
  }
@keyframes hoverArrowLeft {
  0% {
    transform: translate(0, -50%);
    clip-path: inset(0 0 0 0);
  }

  40% {
    transform: translate(-10px, -50%);
    clip-path: inset(0 100% 0 0 );
    opacity: 1;
  }

  42% {
    opacity: 0;
  }

  49% {
    opacity: 0;
    transform: translate(8px, -50%);
    clip-path: inset(0 0% 0% 100%);
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translate(0, -50%);
    clip-path: inset(0 0% 0% 0%);
  }
}
}

/*
ボタン　more
*/
.button_more {
  width: 16rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5em;
}

.button_more .button_more_inner {
  padding: .8rem 0 1rem;
  font-size: 1.25em;
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  /* border-bottom: 1px solid; */
  width: 16rem;
  background: none;
  border: none;
  border-bottom: 1px solid;
  text-align: left;
  font-weight: 700;
}

.button_more .button_more_inner:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  margin: auto;
  width: 18px;
  transition: .3s;
  background-image: url(../images/arrow4.svg);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px){
  .button_more .button_more_inner:hover:after{
    animation: hoverArrowUp .9s var(--ease-up) running;
  }
    .button_more .button_more_inner span {
    display: block;
      transition: transform .4s ease, letter-spacing .6s ease-out;
    }
  .button_more .button_more_inner:hover span{
    transform: translateX(6px) skewX(-8deg);
  }
}
@keyframes hoverArrowUp {
  0% {
    transform: translate(0, -50%);
    clip-path: inset(0 0 0 0)
  }

  40% {
    transform: translate(0, -20%);
    clip-path: inset(100% 0 0 0);
    opacity: 1
  }

  42% {
    opacity: 0;
  }

  49% {
    opacity: 0;
    transform: translate(0, -100%);
    clip-path: inset(0 0 100% 0);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(0, -50%);
    clip-path: inset(0 0% 0% 0%);
  }
}
/*
ボタン pagenation
*/
.post-navigation .nav-links a{
  position: relative;
}

.post-navigation .nav-links.nav-previous a{
  padding-left: 3.125em;
}

.post-navigation .nav-links.nav-next a {
  padding-right: 3.125em;
}

.post-navigation .nav-links a:before {
  content: "";

  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 30px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.post-navigation .nav-links.nav-previous a:before{
  background-image: url(../images/arrow2.svg);
  left: 0;
}

.post-navigation .nav-links.nav-next a:before {
  right: 0;
  background-image: url(../images/arrow2_r.svg);
}
@media screen and (min-width: 768px){
  .post-navigation .nav-links.nav-next a:hover:before{
    animation: hoverArrowRight .9s var(--ease-up) running;
  }
  .post-navigation .nav-links.nav-previous a:hover:before {
    animation: hoverArrowLeft .9s var(--ease-up) running;
  }
}
@keyframes hoverArrowRight {
  0% {
    transform: translate(0, -50%);
    clip-path: inset(0 0 0 0)
  }

  40% {
    transform: translate(8px, -50%);
    clip-path: inset(0 0 0 100%);
    opacity: 1
  }

  42% {
    opacity: 0
  }

  49% {
    opacity: 0;
    transform: translate(-8px, -50%);
    clip-path: inset(0 100% 0% 0%)
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translate(0, -50%);
    clip-path: inset(0 0% 0% 0%)
  }
}
/*
    Banner LINE
*/
.LineBanner{
  position: fixed;
  bottom: 0;
  right: 0;
  transition: .3s;
  z-index: 900;
}

.LineBanner_link{
  text-decoration: none;
  background-color: var(--green);
  color: #fff;
  padding: .625em;
  font-weight: 700;
  transition: all 0.16s;
  /* transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1); */
}

.LineBanner_link_inner{
flex-direction: column;
}

.LineBanner.fixed_none{
  opacity: 0;

}

@media screen and (min-width: 768px){
  .LineBanner_link_tex {
    font-size: 1.125em;
  }
  .LineBanner_link{
    padding: .875em;
  }

  .LineBanner_link:hover{
    transform: scale(1.05);

  }

}

/*
  ボタン　ブランド　corporate site
*/

.button_site{
  padding-top: 2.5em;
}

.button_site .btn{
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 200px;
  border-bottom: 1px solid;
  font-size: 1.125em;
  position: relative;
}

.button_site .btn:before{
  content: "";
  background-image: url(../images/arrow3.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px){
.button_site .btn span {
    display: block;
    transition: transform .4s ease, letter-spacing .6s ease-out;
  }

  .button_site .btn:hover span {
    transform: translateX(6px) skewX(-8deg);
  }

  .button_site .btn:hover:before {
    animation: hoverArrowRightUp .4s var(--ease-up) running;
  }
}


@keyframes hoverArrowRightUp {
  0% {
    /* transform: rotateX(45); */
    transform: translateY(-50%);
    clip-path: inset(0 0 0 0)
  }

  40% {
    transform: translateY(-75%);
    clip-path: inset(0 0 0 100%);
    opacity: 1
  }

  42% {
    opacity: 0
  }

  49% {
    opacity: 0;
    transform: translateY(-15%);
    clip-path: inset(0 100% 0% 0%)
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translateY(-50%);
    clip-path: inset(0 0% 0% 0%)
  }
}



/*
  Media
*/
.c-media {
  overflow: hidden;
  display: block;
}
.c-media__body {
  float: right;
  width: 65.9793814433%;
}
.c-media__thumbnail {
  width: 31.9587628866%;
  float: left;
}
.c-media__thumbnail img {
  width: 100%;
}


/*
  Heading
*/
.c-heading.-primary {
  font-size: 2.125em;
  margin-bottom: 1.1764705882em;
  color: #ebd67d;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 2;
}
.c-heading.-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-heading.-primary {
    font-size: 3em;
  }
}
/*
  element
*/
.element ._ele._title {
  color: #ebd67d;
  font-size: 1.25em;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .element ._ele._title {
    font-size: 1.75em;
    padding-bottom: 5rem;
  }
}
.element .ele_list {
  padding-bottom: 3.125em;
}
@media screen and (min-width: 768px) {
  .element .ele_list {
    padding-bottom: 5em;
  }
}
.element .l-container.-wele {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
.element .l-container.-wele li {
  padding-bottom: 1.875em;
  position: relative;
}
.element .l-container.-wele:first-of-type {
  margin-top: 0;
}
.element ._ele_card {
  width: 82%;
  margin: 0 auto;
}
.element ._ele_card ._borderarea {
  position: relative;
}
.element ._ele_card ._text {
  padding-top: 1.25em;
}
.element ._ele_icon {
  position: relative;
  width: 86%;
}
.element .__text {
  padding-top: 0.625rem;
  font-size: 0.875em;
  font-weight: 700;
}


/*
  3.2 - Project
-----------------------------------------------------*/
/*
  Header
*/
@media screen and (min-width: 768px) {
  .p-header {
    width: 95%;
    margin: 0 auto;
  }
}
.p-header .header-area {
  position: relative;
}
.p-header .open .header__nav {
  width: 100%;
  display: block;
}

/*
  page-title
*/
.p-title_area{
  padding-bottom: 3.75em;
}
.p-title{
  font-size: 1.5625em;
}

@media screen and (min-width: 768px){
  .p-title {
      font-size: 1.875em;
    }
}

.p-title_sub{
  display: block;
  font-size: .48em;
  line-height: 1;
}

@media screen and (min-width: 768px){
  .p-title_area{
  position: fixed;
  top: 50%;
  left: 5%;
  transform: rotate(270deg);
  z-index: 900;
  white-space: nowrap;
  }

   .p-profile .p-title_area{
    position: sticky;
    display: inline-block;

    }

}


/*
  Hero
*/
.p-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
  /*
    TOP_Hero
  */
}
.p-hero.-home {
  margin: auto;
  height: auto;
}

.p-hero_center{
  position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    text-align: left;
    top: 50%;
}

.p-hero_tit,
.header-nav {
  width: 90%;
  margin: 0 auto;
}

.header-nav-area{
  gap: 3rem;

}

.p-hero_tit_header {
  text-shadow: 1px 1px 2px #666;
  font-size: clamp(51px, 40.6640826873px + 2.7562446167vw, 83px);
  line-height: 1;
  font-weight: 700;
}

.mv {
  height: 100svh;
  position: relative;
  overflow-x: hidden;
}

.mv .swiper-wrapper {
  height: 100svh;
}

.swiper-slide .swiper_mv_img {
  width: 100vw;
    height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}



/*
  top-mv-swiper
*/
.p-hero.-home #text-animation span {
  opacity: 0;
}
.p-hero.-home .swiper {
  width: auto;
  overflow: visible;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-hero .swiper-slide {
  overflow: hidden;
}
.p-hero .swiper-slide-prev img,
.p-hero .swiper-slide-active img,
.p-hero .swiper-slide-duplicate-active img {
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
/*
  page
*/

.p_head{
  font-size: 1.375em;
  padding-bottom: 3%;
  position: relative;
  margin-bottom: 1.81em;
  font-weight: 600;
}

.p_head:before{
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--main);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px){
    .p_head:before{
      display: none;
    }

}



/*
  page-contact
*/
.p-contact_body{
  padding: 2.5em 0;
}

.p-contact_body .Form-Item-Label,
.p-contact_body .Form-Item-Answer{
  display: block;
  text-align: left;
}

.p-contact_body .Form-Item-Label{
  font-size: 13px;
}
.p-contact_body .Form-Item-Answer{
  margin-bottom: 2.5em;
}

.p-contact_body {
  width: 100%;
}
.wpcf7-form-control {

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.radio .wpcf7-form-control{
  margin-top: 30px;
  justify-content: flex-start;
}

.p-contact_body input[type=text],
.p-contact_body input[type=email],
.p-contact_body input[type=tel],
.p-contact_body textarea{
  width: 100%;
  height: 62px;
}


.p-contact_body input[type=text],
.p-contact_body input[type=email],
.p-contact_body input[type=tel]{
  border: none;
  border-bottom: 1px solid var(--border);
}

.p-contact_body textarea{
  border-color: var(--border);
  height: 140px;
  margin-top: 1.25em;
  padding: 1.25em;

}

.p-contact_body .wpcf7-list-item{
  margin: 0;
  min-width: 50%;
}
.p-contact_body .wpcf7-list-item-label{
  padding-left: 1em;
  font-size: .75em;
}
.p-contact_body .radio input{
  vertical-align: middle;
  margin: 0;
}

.p-contact_term{
  border: 1px solid var(--border);
  padding: 1.875em;
  margin-bottom: 3.75em;
}

.p-contact_term_tit,
.p-contact_term_tex{
  font-size: 12px;
}

.p-contact_term_tit{
  font-weight: 700;
  padding-bottom: 1.25em;
}

.p-contact_term_tex p{
  padding-bottom: 2%;
}

.p-contact_term_inner{
    width: 100%;
    height: 150px;
    overflow: auto;
}

.agreement_tex,
.agreement{
  font-size: .75em;
}

.p-contact_body ::placeholder{
  color: var(--pink2);
  font-size: 15px;
  font-family: "Noto Serif JP", sans-serif;
}

/* contact-確認 */
  /*確認画面と完了画面を非表示*/
  .confirm_area,
  .thanks_area {
    display: none;
  }

  /*デフォルトのサンクスメッセージを非表示*/
  .wpcf7-response-output {
    display: none;
  }



/*
  page-contact-confirm
*/
.p-confirmation_tit{
  font-size: 1.125em;
  font-weight: 700;
}
.p-confirmation_tex{
  padding-top: 3.75em;
}
@media screen and (min-width: 768px){
  .p-confirmation_tex {
      padding-top: 2.5em;
  }
}
.p-contact-confirm_body{
  padding-top: 5em;
}
.p-contact-confirm_body{
  width: 100%;
}
.p-contact-confirm_body .Form-Item-Label,
.p-contact-confirm_body .Form-Item-Answer{
  display: block;
  text-align: left;
}
.p-contact-confirm_body .Form-Item-Label{
  font-size: .8125em;
  color: var(--pink3);
}

.p-contact-confirm_body .Form-Item-Answer{
  padding: 1.25em 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5em;
  font-size: .8125em;
}


/*
  page-thanks
*/
.p-thanks_tit{
  font-size: 1.125em;
  font-weight: 700;
}

.p-thanks_inner{
  padding-top: 2.5em;
}

/*
  page-join-us
*/

.p-join-us .p-join-us_message_inner{
  padding-top: 1.875em;
}

.p-join-us_message_tit{
  font-size: 1.375em;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

.p-join-us_message_tit .__line_under{
  position: relative;
  padding-bottom: 1.5%;
  display: inline-block;
}

.p-join-us_message_tit .__line_under:before{
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--pink3);
}

.p-join-us_job_list{
  padding-top: 5em;
}

.p-join-us_job_list:first-of-type{
  padding-top: 0;
}

.p-join-us_job_bg{
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}

.p-join-us_job_img{
  position: relative;
}

.p-join-us_job_bg:before{
  content: "";
  width: 100%;
  height: 80px;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.p-join-us_message_text{
  padding-top: 2.5em;
}

.p-join-us_message_text .space{
  padding-bottom: 1.25em;
}

.p-join-us_job{
  padding-top: 4em;
}

.p-join-us_job_list_inner{
  color: #fff;
  width: 88%;
  margin: 0 auto;
  padding-top: 2.5em;
  max-width: 940px;
}

.p-join-us_job_num{
  padding-bottom: 2.5em;
}

.p-join-us_job_num p,
.p-join-us_job_com p{
  font-size: .875em;
}

.p-join-us_job_tit{
  font-size: clamp(1em, 1.4vw, 1.25em);
  background-color: #fff;
  color: var(--main);
  display: inline-block;
  padding: 0 10px;
}


.p-join-us_job_com{
  padding-top: 1.25em;
  font-weight: 700;
}




.p-join-us_job_tex{
  font-weight: 600;
  padding: 1.25em 0 2.5em;
}

.p-join-us_job_tex p{
  font-size: .83em;
}



@media screen and (min-width: 768px){
  .p-join-us_job {
    padding-top: 9.375em;
  }
  .p-join-us_message_area{
    position: relative;
  }
  .p-join-us_message_wrap{
    /* height: 34vw; */
    background-position: top right;
    background-image: url(../images/message.png);
    background-repeat: no-repeat;
    position: relative;
    background-size: 43%;
  }
.p-join-us .p-join-us_message_inner {
    width: 50%;
  }
  .p-join-us_message_tit{
      font-size: 1.7em;
      text-align: left;
  }
  .p-join-us_message_tit .__line_under{
    padding-bottom: 0;
    margin-bottom: 2%;
  }
  .p-join-us_job_list_box {
    width: 50%;
  }
  .p-join-us_job_tit{
    /* font-size: 1.3em; */

  }
  .p-join-us_job_img{
    width: 40%;
    top: 11rem;
    position: absolute;
  }
  .p-join-us_job_list:nth-child(odd) .p-join-us_job_img {
    right: 7rem;
  }
  .p-join-us_job_list:nth-child(even) .p-join-us_job_img{
    left: 7rem;
  }
  .p-join-us_job_bg:before{
    display: none;
  }
  .p-join-us_job_list_inner{
    padding-top: 3.125em;
    /* margin-bottom: 11rem; */
  }
  .p-join-us_job_com{
    padding-top: .625em;
  }
  .p-join-us_job_tex{
    padding: 1.875em 0 3.125em;
    min-height: 16vh;
  }
  .p-join-us_job_list{
    padding-top: 13.4375em;
  }
  .p-join-us_job_list:nth-child(even) .flex{
    flex-direction: row-reverse;
  }
}


.p-join-us_point{
  position: relative;
  overflow: hidden;

}

.p-join-us_point_list_tit{
  font-weight: 600;
  font-size: 2rem;
}
.p-join-us_point_list_tex p{
  font-size: 1.4rem;
}
.p-join-us_point_list_tex{
  padding-top: 1.875em;
}

.p-join-us_point_list{
  padding: 2.5em 0;
  border-bottom: 1px solid var(--pink3);
}

.p-join-us_point_list:first-of-type{
  padding-top: 0;
}

.p-join-us_point_inner{
  position: relative;
}

.p-join-us_point_logo{
  position: absolute;
  top: 50%;
  right: -19%;
  z-index: -1;
  transform: translateY(-50%);
}

.p-join-us_slider .p-join-us_slider_list:nth-child(odd){
  padding-top: 2.5em;
}

.p-join-us_slider{
transition-timing-function: linear;
}


@media screen and (min-width: 768px){
  .p-join-us_point_area{
    gap: 0 4rem;
    /* align-items: flex-end; */
  }
  .p-join-us_point{
    padding: 12.5em 0;
  }
  .p-join-us_point_inner{
    /* width: 72.3%; */
    max-width: 780px;
  }
  .p-join-us_point_left{
    max-width: 45.2rem;
  }

  .p-join-us_point_img{
    /* position: absolute;
    left: 0;
    bottom: 7.5em;
    width: 27%;
     */
    width: 28%;
    /* height: 58rem; */
    z-index: -2;
    position: absolute;
    left: 0;
    bottom: 20rem;
    overflow: hidden;
    max-height: 49rem;
    /* background-image: url(../images/point.png); */
  }
    .p-join-us_point{
      /* width: 28%;
      height: 58rem;
      position: absolute;
      left: 0;
      bottom: 7.5em;
      overflow: hidden;
      background-image: url(../images/point.png); */
    }
  }

  .p-join-us_point_logo{
    right: auto;
    left: -20%;
    bottom: -110px;
    transform: translateY(0);
  }

}

.p-join-us_office_img_wrap{
  margin-bottom: 1.25em;

}

.p-join-us_office_tit{
  font-weight: 600;
}

.p-join-us_office_tex{
  padding-top: 1.25em;
}

.swiperOffice .swiper-wrapper{
  height: auto;

}

.p-join-us_office_area .swiperOffice{
  padding-bottom: 80px;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
  bottom: 0;
  top: auto;
}
.swiper-button-prev{
  left: 0;
}

.swiper-button-next{
  left: 100px;

}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after,
.swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
   transition: .3s;
  background-image: url(../images/arrow_swp.svg);

}


/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  transform: rotate(180deg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}



.p-join-us_office_font{
  display: flex;
}

.p-join-us_office_font img{
  -webkit-animation: infinity-scrollt 40s infinite linear 0.5s both;
  animation: infinity-scroll 40s infinite linear 0.5s both;
  max-width: none;
}

.p-join-us_office,
.p-join-us_office_area{
  position: relative;
}
.p-join-us_office{
  overflow: hidden;
}
.p-join-us_office_font_wrap{
  position: absolute;
  top: 12%;
  z-index: 0;
}

@media screen and (min-width: 768px){
.p-join-us_office_img_wrap {
    position: relative;
  }
  .p-join-us_office_img_wrap:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgb(255, 255, 255, .6);;
    left: 0;
    bottom: 0;
  }
  .p-join-us_office_font img{
   width: 210rem;
  }

  .swiper-slide-active .p-join-us_office_img_wrap:after {
    background-color: transparent;
  }
  .p-join-us_office_area .swiperOffice{
    padding-bottom: 0;
  }
  .swiper-button-prev,
  .swiper-button-next{
    top: 30%;
    bottom: auto;
    transition-duration: 0.2s;
  }
  .swiper-button-prev{
    left: 26%;
  }
  .swiper-button-next{
    right: 26%;
    left: auto;
  }
  .swiper-button-prev:hover:after,
  .swiper-button-next:hover:after{
    background-color: var(--pink5);
    border-radius: 50%;
    background-image: url(../images/arrow_swp_white.svg);
  }
}



.p-join-us_line{
  background-color: var(--pink4);
  position: relative;
  overflow: hidden;
}

.p-join-us_line_tex{
  padding-top: 2.5em;
}

.p-join-us_line_font{
      display: flex;
  /* display: flex;
  gap: 2em;
  width: 250px;
    -webkit-animation: infinity-scroll 40s infinite linear 0.5s both;
    animation: infinity-scroll 40s infinite linear 0.5s both; */

}

.p-join-us_line_font img{
  -webkit-animation: infinity-scroll 40s infinite linear 0.5s both;
    animation: infinity-scroll 40s infinite linear 0.5s both;
    /* width: 2614rem; */
    max-width: none;
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}
.p-join-us_line_font_wrap{
  position: absolute;
  top: 24%;
  z-index: 0;
}

.p-join-us_line_wrap{
  position: relative;
}

@media screen and (min-width: 768px){
  .p-join-us_line_img,
  .p-join-us_line_tex,
  .btn_line{
    max-width: 600px;
    margin: 0 auto;
  }

  .p-join-us_line_tex{
    font-weight: 600;
    text-align: center;
  }

  .p-join-us_line_tex p{
    padding-bottom: 1%;
  }

  .btn_line{
    text-align: right;
  }

    .p-join-us_line_font img{
      width: 210rem;
      }

}
.p-join-us_recruit{
  position: relative;
}
.p-join-us_recruit:before{
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 90%;
  background: var(--border);
  height: 1px;
}

.p-join-us_recruit_area{
  width: 100%;
}
.p-join-us_recruit_link{
  background-color: var(--pink5);
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1.875em 2.5em;
}

.p-join-us_recruit_com{
  border: 1px solid #fff;
  font-size: .75em;
  display: inline-block;
  padding: 0 4%;
}

.p-join-us_recruit_job{
  font-weight: 600;
  font-size: 1.125em;
  padding-top: 2%;
}

.p-join-us_recruit_link_right,
.p-join-us_recruit_link_left{
  width: 100%;
}


.p-join-us_recruit_link_right{
  justify-content: flex-end;
  gap: 1.25em;
  padding-top: 1.875em;
}

.p-join-us_recruit_list{
  border-bottom: 1px solid #fff;

}

.p-join-us_recruit .p_head:before,
.p-join-us_recruit-site .p_head:before{
  display: none;
}

.p-join-us_recruit-site_area{
  display: grid;
  gap: 5px;
}



@media screen and (min-width: 768px){
  .p-join-us_recruit_area,
  .p-join-us_recruit-site_area{
    width: 72.3%;
  }

.p-join-us_recruit_link_right,
.p-join-us_recruit_link_left {
  width: 50%;
}
.p-join-us_recruit_link_right{
  transition: .3s;
}

.p-join-us_recruit_link:hover .p-join-us_recruit_link_right{
  transform: translate(0.5rem, 0);
}
.p-join-us_recruit-site_list{
  padding-top: 0;
}
.p-join-us_recruit-site_area{
  grid-template-columns: 1fr 1fr;

}
}

.p-join-us_site_area{
  background-color: var(--pink4);

}

.p-join-us_site_tit{
  font-size: 1.625em;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--pink4) 50%, var(--pink4) 100%);
}
.p-join-us_site_inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65em 1em;
  padding: 2.5em 0;
}
.p-join-us_site_link{
  background-color: #fff;
}

.p-join-us_site_list{
  display: block;
  text-align: center;

}

@media screen and (min-width: 768px){
  .p-join-us_site_inner{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    padding: 5em 0 6.25em;
  }
  .p-join-us_site_tit{
    font-size: 2.5em;
  }
}
/*
  page brand
-----------------------------------------------------*/
.p-ambience-image{
  position: relative;
}

.p-ambience-image-area{
aspect-ratio: 375 / 662;
  position: relative;
}

.p-ambience-image-group01{
  width: 77.333333%;
  margin: 0 0 0 auto;
  max-width: 600px;
}

.p-ambience-image-group02{
    width: 23.8%;
    margin: 80px auto 0 0 ;
    max-width: 320px;
}

.p-ambience-image-group03{
    width: 17.8%;
    position: absolute;
    bottom: 90px;
    right: 190px;
    max-width: 240px;
}

.p-ambience-image-group04{
    width: 54.3%;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 450px;
}

.p-ambience-image-tex{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* .animationLeft{
  animation: Left-image linear both;
  animation-timeline: view();
  animation-range: contain 0% contain 50%;
  display: block;
}
  @keyframes Left-image {
    from {
          clip-path: inset(0% 0 0 50%);
    }
    to {
          clip-path: inset(0% 0 0 0);
    }
  }

.animationRight {
  animation: Right-image linear both;
  animation-timeline: view();
  animation-range: contain 0% contain 50%;
  display: block;
}

@keyframes Right-image {
  from {
    clip-path: inset(0 50% 0 0);
  }

  to {
    clip-path: inset(00 0 0 0);
  }
} */

@media screen and (min-width: 768px){
.p-ambience-image-area{
  aspect-ratio: 1536 / 1009;
}
.p-ambience-image-group01{
  margin-right: 10%;
}
.p-ambience-image-tex{
  width: auto;
}
.p-ambience-image-group02{
  margin-top: -250px;
}
.p-ambience-image-group03 {
  left: 10%;
    right: auto;
}
}
/* test */
/* .l-brand__gallery{
    position: relative;
    display: flex;
    justify-content: center;
}


.l-brand__gallery__container{
  position: relative;
  width: 100%;
  max-width: 768px;
  aspect-ratio: 375 / 662;
}

.l-brand__gallery__photo{
  position: absolute;
  z-index: 2;

}
.l-brand__gallery__photo--1{
  top: 0;
  right: 0;
  width: 78%;
}

.l-brand__gallery__photo--2 {
  top: 36%;
  left: 0;
  width: 24%;
}

.l-brand__gallery__photo--3 {
  right: 40%;
  width: 50%;
  top: 70%;
}

.l-brand__gallery__photo--4 {
    right: 0;
    width: 54%;
    top: 79%;
}

.l-brand___gallery__photo--a .p-index__gallery__photo__mask,
.p-index__gallery__photo--c .p-index__gallery__photo__mask,
.p-index__gallery__photo--f .p-index__gallery__photo__mask {
  -webkit-mask-position: -100% 0%;
  mask-position: -100% 0%
}

.l-brand__gallery__photo__image{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.l-brand__gallery__tex{
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 auto;
  aspect-ratio: 375 / 662;
  top: 0%;
  width: 90%;
}
.l-brand__gallery__photo--1 .l-brand__gallery__photo__mask,
.p-index__gallery__photo--c .p-index__gallery__photo__mask,
.p-index__gallery__photo--f .p-index__gallery__photo__mask{
    -webkit-mask-position: -100% 0%;
    mask-position: -100% 0%;
}
.l-brand__gallery__tex__img{
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image:url(../images/gallery5.png);
    transform-origin: bottom center;
}

.l-brand__gallery__photo__mask{
  position: absolute;
  inset: 0;
  transform-origin: bottom center;
  -webkit-mask-position: 100% 0%;
  mask-position: 100% 0%;
  -webkit-mask-size: 200% 200%;
  mask-size: 200% 200%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0 / 0) 50%, rgb(0 0 0 / 0) 100%);
  mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0 / 0) 50%, rgb(0 0 0 / 0) 100%);
  backface-visibility: hidden;
}


.l-brand__gallery__photo__mask_img{
  width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover

} */

/*  */
.l-brans-list .luxy-el{
  display: block;

}

._parallax{

}

/* .l-brans-list1{
  background-image: url(../images/brand1-1-sp@2x.jpg);
}
.l-brans-list2 {
  background-image: url(../images/brand2-1-sp@2x.jpg);
}
.l-brans-list3 {
  background-image: url(../images/brand3-1-sp@2x.jpg);
}
.l-brans-list4 {
  background-image: url(../images/brand4-1-sp@2x.jpg);
}
.l-brans-list5 {
  background-image: url(../images/brand5-1-sp@2x.jpg);
} */

.l-brans-list1_img1{
  /* background-size: cover;
  background-repeat: no-repeat;
  /* background-size: cover; */
  /* background-size: 120%; */
  /* width: 100%;
  height: clamp(240px, 65.625vw, 500px);
  overflow: hidden; */ */
}


.l-brans-list_inner{
    width: 78.2%;
    margin: 0 auto;
    padding-top: 1.875em;
}

.l-brans-list_num{
  font-size: 1.25em;
}

.l-brans-list_logo{
  padding: 1.25em 0 1.875em;
}


.l-brans-list_tex p{
  font-size: .875em;
}

.l-brans-list1_img2{
  width: 75%;
  margin-left: auto;
  position: relative;
  margin-top: 3.75em;
}

.l-brans-list1_img2:before{
  content: "";
  position: absolute;
  text-align: right;
  top: 270px;
  left: -50px;
  font-size: 30px;
  text-transform: uppercase;
  font-style: italic;
  color: var(--pink4);
  z-index: 1;
}

.l-brans-list{
  margin-top: 8.125em;
    position: relative;
}

.l-brans-list:first-child{
  margin-top: 0;
}


@media screen and (min-width: 768px){
/* .l-brans-list1 {
    background-image: url(../images/brand1-1@2x.jpg);
  }
.l-brans-list2 {
  background-image: url(../images/brand2-1@2x.jpg);
}
.l-brans-list3 {
  background-image: url(../images/brand3-1@2x.jpg);
}
.l-brans-list4 {
  background-image: url(../images/brand4-1@2x.jpg);
}
.l-brans-list5 {
  background-image: url(../images/brand5-1@2x.jpg);
} */
.l-brans-list_tex p {
    font-size: 1em;
  }

  .l-brans-list_flex-item{
    width:50%;
  }

    .l-brans-list_inner{
      padding-top: 6.875em;

    }

  .l-brans-list1_img2{
    width: 34%;
    margin-top: 0;
  }
  .l-brans-list_logo{
    padding: .625em 0 1.25em;

  }

  .l-brans-list1_img2:before{
    font-size: 3.5em;
    top: 380px;
    left: -80px;

  }
}

/* 1-オーソリティー空調 */
.l-brans-list:first-child .l-brans-list_logo img {
  width: 173px;
}

.l-brans-list:first-child .l-brans-list1_img2:before {
  content: "authority";
}

@media screen and (min-width: 768px) {
  .l-brans-list:first-child .l-brans-list_logo img {
    width: 207px;
  }
}

/* 2-ReAir */
.l-brans-list:nth-child(2) .l-brans-list_logo img {
  width: 173px;
}

.l-brans-list:nth-child(2) .l-brans-list1_img2:before {
  content: "ReAir";
  text-transform: none;
}

@media screen and (min-width: 768px) {
  .l-brans-list:nth-child(2) .l-brans-list_logo img {
    width: 207px;
  }
}

/* 3-LEAF&BEAN */
.l-brans-list:nth-child(3) .l-brans-list_logo img {
  width: 173px;
}

.l-brans-list:nth-child(3) .l-brans-list1_img2:before {
  content: "leaf&bean";
}

@media screen and (min-width: 768px) {
  .l-brans-list:nth-child(3) .l-brans-list_logo img {
    width: 207px;
  }
}

/* 4-NEIGHBORFIT */
.l-brans-list:nth-child(4) .l-brans-list_logo img {
  width: 173px;
}

.l-brans-list:nth-child(4) .l-brans-list1_img2:before {
  content: "neighborfit";
}

@media screen and (min-width: 768px) {
  .l-brans-list:nth-child(4) .l-brans-list_logo img {
    width: 207px;
  }
}

/* 5-LAKA */
.l-brans-list:nth-child(5) .l-brans-list_logo img {
  width: 173px;
}

.l-brans-list:nth-child(5) .l-brans-list1_img2:before {
  content: "laka";
}

@media screen and (min-width: 768px) {
  .l-brans-list:nth-child(5) .l-brans-list_logo img {
    width: 207px;
  }
}

/*
  page profile
-----------------------------------------------------*/
.flex.__profile-inner{
  gap: 2.5em;
}
.l-profile-img{
  width: 100%;
}
.l-profile .l-profile-tit{
  font-size: 1.75em;
  font-weight: 600;
  padding-bottom: 1.25rem;
}

.l-profile-tit-en{
  font-weight: 700;
  font-size: .875em;
  color: var(--gray2);
}

.l-profile-sns{
  padding-top: 1.25em;
  column-gap: 2.5em;
}

.__profile-tex{
  padding-top: 3.75em;
  gap: 2.5em;
}

.l-profile-jp p{
  font-size: .9375em;
  padding-bottom:.9375em ;
}

.l-profile-en p{
  font-size: .8125em;
  padding-bottom: .8125em;
  color: var(--gray);
  font-family: "Noto Sans", "serif";
}

.l-profile-subimg{
  width: 90%;
  padding-top: 3.125em;
}

@media screen and (min-width: 768px){
  .l-profile-flex-item{
    width: 44.5%;
  }
.l-profile-jp p {
  font-size: 1em;
  padding-bottom: 1em;
}
.l-profile-en p {
  font-size: .8125em;
    padding-bottom: .8125em;
}

.l-profile-subimg {
  padding-top: 6.25em;
}
}

.l-story{
  background-color: var(--pink4);
  padding-top: 5.375em;
}

.l-story__tit{
  z-index: 2;
}
.l-story__step{
  background-color: var(--pink5);
  color: #fff;
  font-weight: 600;
  margin-left: 1.25em;
  width: 165px;
  font-size: 1.125em;
  padding: 5px 0;
  text-align: center;
  position: relative;
}

.l-story__step:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 10px 7px 0;
    border-color: transparent var(--pink5) transparent transparent;
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -7px;
}

.l-story__th{
  color: var(--pink5);
  padding: 1.875em 0 1.25em;
  border-bottom: 1px dashed var(--pink5);
  font-size: 1.125em;
}

.l-story__td{
  margin-left: 1.25em;
  /* padding-top: 1.25em; */
}

.l-story__tex{
  padding-top: 1.25em;

}

.l-story__tex p{
  font-size:.9375em ;
}

.l-story__list{
  padding-bottom: 5em;
  position: relative;
}

.l-story__list:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--pink5);
    top: 16px;
    left: 0;
}

.l-story__list:last-of-type{
  padding-bottom: 0;
}

.border-line{
  position: absolute;
  left: 4.5px;
  background-color: var(--pink5);
  top: 0;
  width: 1px;
  height: 0;
  margin-top: 17px;
}

@media screen and (min-width: 768px){
  .l-story {
    padding-top: 7.5em;
  }

  .l-story__th{
    font-size: 1.25em;
    padding-top: 0;
  }

  .l-story__td{
    width: 75%;

  }

  .l-story__td p{
    font-size: 1em;
  }

  .l-story__step{
    margin-left: 0;
  }
  .l-story__step:before{
    content: none;
  }
  .border-line{
    left: 82.5px;
  }
}

/*
  single pick up
-----------------------------------------------------*/
.p-article__title{
  font-size: 1.125em ;
}

.p-article_date{
  padding-top: .625em;
}
.p-article__time,
.p-article_cat{
  color: var(--gray);
  font-size: .8125em;
  text-decoration: none;
  line-height: 1;
}

.p-article_cat{
  padding-left: 1.25em;
}

.p-article__eyecatch{
  padding-top: 2.5em;
}

.p-article__body h2{
  background-color: var(--pink4);
  color: var(--pink5);
  font-size: .9375em;
  padding: 1.25em;
  margin: 1.875em 0 1.25em;
}

.p-article__body h3 {
  font-size: .9375em;
  border-bottom: 1px solid var(--pink5);
  padding-bottom: .625em;
  margin-bottom: 1.25em;
}

.cat-list{
  padding-bottom: 1.875em;

}

.cat-list li{
  margin: 0 1rem;
}

.cat-list-link{
  font-size: max(1rem, 10px);
  letter-spacing: 0;
  line-height: 2em;
  padding: .1rem 1rem;
  color: var(--gray);
  display: block;
  text-decoration: none;
  position: relative;
}

.current.cat-list-link{
  background-color: var(--gray);
  color: #fff;
  border-radius: 1rem;

}

@media screen and (min-width: 768px){
  .p-article__title {
      font-size: 1.25em;
    }
    .p-article__time,
    .p-article_cat {
      font-size: .875em;
    }

    .p-article__body h2 {
      font-size: 1.0625em;
      padding: 1.25em;
      margin: 1.875em 0 1.25em;
    }
    .cat-list-link{
      font-size: max(1.2rem, 10px);
      letter-spacing: 0;
      line-height: 1.6666666667em;
      margin: 1.2rem;
    }

    .cat-list-link:hover{

    }
}

/* ページネーション */
.post-navigation{
  padding-top: 3.75em;
}

.nav-links a{
  color: inherit;
  text-decoration: none;
}
/*
  archive pick up
-----------------------------------------------------*/
.c-card__body{
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  padding-top: 1.25em;
}

.c-card__list:first-of-type .c-card__body{
  padding-top: 0;
}

.p-project__title{

  font-size: .8125em;
}

.p-project__title{
  padding:1.25em 0 1.875em;
}
.p-article__text{
  line-height: 1;
}



/*
インスタグラム
*/

.a-ig{
  background-position: top right;
  background-image: url(../images/ig_back.jpg);
  background-repeat: no-repeat;
  position: relative;
  background-size: 100%;
  background-size: cover;
  overflow: hidden;
}

.a-ig:before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0,50%);
}

.a-ig_font_wrap{
  position: absolute;
  bottom: 18%;
  z-index: 0;
}

.a-ig_font{
  display: flex;
}
.a-ig_font img {
  -webkit-animation: infinity-scrollt 40s infinite linear 0.5s both;
  animation: infinity-scroll 40s infinite linear 0.5s both;
  max-width: none;
  padding-right: 2.5em;
}
@media screen and (min-width: 768px){
  .a-ig{margin-top: 7.5em;}
}

/*
  スクロールアニメーション
-----------------------------------------------------*/
.Animation img{
    /* animation: grow-progress linear;
    animation-timeline: view();
    animation-range: cover; */
    -webkit-mask-image: url(../images/mask.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 200%;
    -webkit-mask-position: center bottom;
    z-index: 0;
    mask-image: url(../images/mask.png);
    mask-mode: alpha;
    mask-position: center bottom;
    mask-repeat: no-repeat;
    mask-size: auto 200%;
    opacity: 0
}

.Animation img.isActive{
  animation: 2.3s mask-animation cubic-bezier(.115, .405, .24, 1) 0s forwards;

}

@keyframes mask-animation {
  from {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0
  }

  20% {
    opacity: 1
  }

  to {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1
  }
}

.AnimationText{
  opacity: 0;
}

.AnimationText.isActive {
  animation: 2s text-animation ease-in-out 0s forwards;
}

@keyframes text-animation {
  0% {
      opacity: 0;
    }
  90% {
    opacity: 1;
  }
    100% {
      opacity: 1;
    }
}

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


/*
  Break
*/
.u-break .-sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-break .-sp {
    display: none;
  }
}
.u-break .-lap {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .u-break .-lap {
    display: none;
  }
}
.u-break .-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-break .-tab {
    display: inline-block;
  }
}
.u-break .-desk {
  display: none;
}
@media screen and (min-width: 1200px) {
  .u-break .-desk {
    display: inline-block;
  }
}

.u-break02 .-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-break02 .-sp {
    display: none;
    overflow-y: inherit;
  }
}
.u-break02 .-lap {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .u-break02 .-lap {
    display: none;
  }
}
.u-break02 .-lap02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-break02 .-lap02 {
    display: block;
  }
}
.u-break02 .-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-break02 .-tab {
    display: block;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

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


/* test */
.p-index__gallery{
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 200px;
}

.p-index__gallery {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 200px
}

@media(max-width: 768px) {
  .p-index__gallery {
    margin-top: 100px
  }
}

.p-index__gallery__container {
  position: relative;
  width: 100%
}

@media(min-width: 993px) {
  .p-index__gallery__container {
    max-width: 1600px;
    min-width: 1100px;
    aspect-ratio: 1440/1064
  }
}

@media(max-width: 992px) {
  .p-index__gallery__container {
    max-width: 768px;
    aspect-ratio: 375/607
  }
}

.p-index__gallery__logo {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 auto;
  aspect-ratio: 700/216
}

@media(min-width: 993px) {
  .p-index__gallery__logo {
    top: 39.0037593985%;
    width: 60.6944444444%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__logo {
    top: 42.5041186161%;
    width: 85.3333333333%
  }
}

.p-index__gallery__logo__image {
  position: absolute;
  inset: 0;
  background-color: rgb(var(--rgb-color-text-inv));
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/shared/logo.svg");
  mask-image: url("../images/shared/logo.svg");
  transform-origin: bottom center
}

.p-index__gallery__photo {
  position: absolute;
  z-index: 2
}

.p-index__gallery__photo--a {
  aspect-ratio: 790/1050
}

@media(min-width: 993px) {
  .p-index__gallery__photo--a {
    top: 0%;
    left: 15.9027777778%;
    width: 27.4305555556%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--a {
    top: 16.9686985173%;
    left: 8.2666666667%;
    width: 38.9333333333%
  }
}

.p-index__gallery__photo--b {
  aspect-ratio: 750/1220
}

@media(min-width: 993px) {
  .p-index__gallery__photo--b {
    top: 13.7218045113%;
    left: 63.4722222222%;
    width: 26.0416666667%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--b {
    top: 0%;
    left: 54.9333333333%;
    width: 37.3333333333%
  }
}

.p-index__gallery__photo--c {
  aspect-ratio: 1110/830
}

@media(min-width: 993px) {
  .p-index__gallery__photo--c {
    z-index: 3;
    top: 60.9962406015%;
    left: -6.5277777778%;
    width: 38.5416666667%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--c {
    top: 75.2883031301%;
    left: -17.6%;
    width: 53.3333333333%
  }
}

.p-index__gallery__photo--d {
  aspect-ratio: 640/660
}

@media(min-width: 993px) {
  .p-index__gallery__photo--d {
    top: 60.4323308271%;
    left: 50.5555555556%;
    width: 22.2222222222%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--d {
    top: 56.5074135091%;
    left: 54.4%;
    width: 32%
  }
}

.p-index__gallery__photo--e {
  aspect-ratio: 1120/770
}

@media(min-width: 993px) {
  .p-index__gallery__photo--e {
    z-index: 1;
    top: 30.3571428571%;
    left: -11.1111111111%;
    width: 38.8888888889%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--e {
    z-index: 1;
    top: 55.5189456343%;
    left: -31.7333333333%;
    width: 56%
  }
}

.p-index__gallery__photo--f {
  aspect-ratio: 700/890
}

@media(min-width: 993px) {
  .p-index__gallery__photo--f {
    z-index: 1;
    top: 36.1842105263%;
    left: 77.2222222222%;
    width: 24.3055555556%
  }
}

@media(max-width: 992px) {
  .p-index__gallery__photo--f {
    z-index: 3;
    top: 23.5584843493%;
    left: 75.4666666667%;
    width: 34.6666666667%
  }
}

.p-index__gallery__photo__image {
  position: absolute;
  inset: 0;
  backface-visibility: hidden
}

.p-index__gallery__photo__mask {
  position: absolute;
  inset: 0;
  transform-origin: bottom center;
  -webkit-mask-position: 100% 0%;
  mask-position: 100% 0%;
  -webkit-mask-size: 200% 200%;
  mask-size: 200% 200%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0/0) 50%, rgb(0 0 0/0) 100%);
  mask-image: linear-gradient(to right, black 0%, black 50%, rgb(0 0 0/0) 50%, rgb(0 0 0/0) 100%);
  backface-visibility: hidden
}

.p-index__gallery__photo--a .p-index__gallery__photo__mask,
.p-index__gallery__photo--c .p-index__gallery__photo__mask,
.p-index__gallery__photo--f .p-index__gallery__photo__mask {
  -webkit-mask-position: -100% 0%;
  mask-position: -100% 0%
}

@media(max-width: 992px) {
  .p-index__gallery__photo--d .p-index__gallery__photo__mask {
    -webkit-mask-position: -100% 0%;
    mask-position: -100% 0%
  }
}

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