@charset "utf-8";
/*--------------------------------------------------------------------------------
  main visual
--------------------------------------------------------------------------------*/
.mv {
  position: relative;
  padding-top: calc(var(--hdHight) + var(--space-2s));
  background: url("../image/bg_black.gif") repeat center bottom;
  background-size: var(--bgsize);
  color: #FFF;
}
.mv:before {
  content: "";
  height: 100%;
  background-color: rgba(255,255,255,0.05);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.mv-container {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
}
.mv_logo {
  width: clamp(160px, (560 / 1400 * 100vw), 560px);
  position: relative;
  z-index: 10;
}
.mv_logo.is-active {
  animation-delay: 0.4s !important;
}
.mv_lead {
  position: relative;
  z-index: 10;
  font-size: clamp(1.2em, 1.18vw + 0.75em, 1.8em);
  padding-top: var(--space-m);
}
.mv_lead_main {
  font-weight: 400;
  line-height: 1;
}
.mv_lead_main.is-active {
  animation-delay: 0.6s !important;
}
.mv_lead_sub {
  font-family: var(--ff-en);
  font-weight: 300;
  font-size: 0.6em;
}
.mv_lead_sub.is-active {
  animation-delay: 0.6s !important;
}
.mv-slider {
  position: relative;
  overflow: hidden;
}
.mv-slider .item {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mv-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width:761px) {
  .mv {
    padding-top: calc(var(--hdHight) + var(--space-2s));
    padding-bottom: var(--space-m);
  }
  .mv:before {
    width: min((720 / 1200 * 100vw), 720px);
  }
  .mv-container {
    height: min((740 / 1400 * 100vw), 740px);
  }
  .mv_logo {
    padding-top: var(--space-s);
  }
  .mv_photos {
    width: min((2000 / 1400 * 100vw), 2000px);
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
  .mv-slider01 {
    grid-area: 2 / 1 / 9 / 4;
  }
  .mv-slider02 {
    grid-area: 1 / 6 / 6 / 8;
  }
  .mv-slider03 {
    grid-area: 5 / 7 / 9 / 9;
  }
}
@media print, screen and (max-width:760px) {
  .mv {
    padding-top: var(--hdHight);
    padding-bottom: var(--space-l);
  }
  .mv:before {
    width: min((540 / 760 * 100vw), 540px);
  }
  .mv-container {
    padding-top: var(--space-2s);
  }
  .mv_logo {
    order: 1;
    padding-top: var(--space-2s);
  }
  .mv_lead {
    order: 2;
    font-size: clamp(1em, 2.17vw + 0.5em, 1.8em);
  }
  .mv_photos {
    order: 0;
    width: 100%;
    height: clamp(220px, (440 / 760 * 100vw), 440px);
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-column-gap: 2.5%;
  }
  .mv-slider02 {
    padding: 20% 0;
  }
}

/* ring
----------------------------------------*/
.mv-ring {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 30;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.mv-ring_img {
  display: inline-block;
}
.mv-ring_img img {
  animation: 18s mvRing linear infinite;
}
@media print, screen and (min-width:761px) {
  .mv-ring {
    max-width: min((920 / 1400 * 100vw), 920px);
  }
  .mv-ring_img {
    width: clamp(120px, (200 / 1400 * 100vw), 200px);
    height: clamp(120px, (200 / 1400 * 100vw), 200px);
    transform: translateY(30%);
  }
}
@media print, screen and (max-width:760px) {
  .mv-ring {
    bottom: calc(-1 * var(--space-m));
    overflow: hidden;
  }
  .mv-ring_img {
    width: clamp(80px, (180 / 760 * 100vw), 180px);
    height: clamp(80px, (180 / 760 * 100vw), 180px);
    transform: translateX(15%);
  }
}
@keyframes mvRing {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* photo slider
----------------------------------------*/
.mv-slider .slick-list,
.mv-slider .slick-track {
  width:100%;
  height:100%;
}
.mv-slider .item.is-active:not(.is-first) {
  opacity: 1 !important;
  clip-path: inset(0 100% 0 0);
  animation: mvSlide 1.2s var(--cubic-bezier) forwards;
}
.mv-slider:nth-of-type(2) .item.is-active {
  animation-delay: 0.2s;
}
.mv-slider:nth-of-type(3) .item.is-active {
  animation-delay: 0.4s;
}
.mv-slider .item img {
  transform: scale(1.1);
}
.mv-slider .item.is-active img {
  animation: mvPhoto 18s var(--cubic-bezier) forwards;
}
.mv-slider .item.is-out {
  opacity: 1 !important;
}
@keyframes mvSlide {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0); }
}
@keyframes mvPhoto {
  0% { transform: scale(1.1) rotate(0.1deg); }
  100% { transform: scale(1) rotate(0.1deg); }
}

/*--------------------------------------------------------------------------------
  blog
--------------------------------------------------------------------------------*/
.sec-blog {
  position: relative;
}
.blog-hdline {
  color: #FFF;
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
}
.blog-container {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
}
.blog-container:before {
  content: "";
  width: 100%;
  height: 55%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
  z-index: -1;
}
.blog {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-s);
  display: grid;
  grid-template-columns: repeat(auto-fit, 25%);
  justify-content: center;
}
.blog_item {
  max-width: 400px;
  background-color: #FFF;
  text-align: left;
  display: grid;
  grid-template-rows: auto 1fr;
}
@media print, screen and (max-width:760px) {
  .blog-container:before {
    height: clamp(260px, (440 / 760 * 100vw + 2em), 440px);
  }
  .blog {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog_item .photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.blog_item .txt {
  padding: var(--space-2s);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
.blog_item:not(:first-of-type) .txt {
  border-left: 1px solid rgba(var(--black-rgba),0.1);
}
.blog_item .cate-date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.5em;
}
.blog_item .cate {
  font-size: 0.9em;
}
.blog_item .date {
  font-size: 0.8em;
  padding-top: 0.2em;
  color: var(--gray);
}
.blog_item .more {
  display: block;
  text-align: right;
  margin-top: auto;
  padding-top: 3em;
  font-family: var(--ff-en);
  font-weight: 500;
}
.blog-all {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-m);
  text-align: right;
  font-size: 1.2em;
  font-family: var(--ff-en);
  font-weight: 500;
}
.blog-none {
  width: 100%;
  height: var(--space-max);
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
}

/*--------------------------------------------------------------------------------
  LEAVES
--------------------------------------------------------------------------------*/
.sec-leaves {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: var(--space-s);
  padding-bottom: var(--space-l);
}
@media print, screen and (max-width:760px) {
  .sec-leaves {
    padding-top: var(--space-m);
  }
  .blog-none + .sec-leaves {
    padding-top: var(--space-l);
  }
}
.leaves-bnr {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.leaves-bnr a {
  display: block;
  background-color: #FFF;
}
.leaves-btn {
  width: 100%;
  font-size: 1.1em;
}
.leaves-btn img {
  width: 2em;
  vertical-align: middle;
  margin-left: 1em;
}
.leaves {
  display: none;
  text-align: center !important;
  font-size: min(3vw, 16.5px);
}
.leaves .leaves-btn {
  margin-top: 2em;
}
@media print, screen and (min-width:481px) {
  .leaves-btn {
    max-width: 360px;
  }
}
@media print, screen and (max-width:640px) {
  .leaves-bnr a {
    background: url("../image/bnr_leaves-sp.png?d=0207") no-repeat center top;
    background-size: contain;
    height: calc(300 / 640 * 100vw);
  }
  .leaves-bnr img {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
  concept
--------------------------------------------------------------------------------*/
.sec-concept {
  background: url("../image/bg_white.gif") repeat center top;
  background-size: var(--bgsize);
}
.concept {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-max);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}
.concept_item {
  background-color: var(--beige);
  padding: var(--space-s);
}
.concept_item .photo {
  margin-top: calc(-1 * var(--space-l));
}
.concept_item .ttl {
  text-align: left;
  color: #FFF;
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: clamp(4.5em, 3vw + 3.5em, 6em);
  margin-top: -0.95em;
  margin-left: -0.25em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.concept_item .txt {
  text-align: left;
}
@media print, screen and (min-width:761px) {
  .concept_item:last-of-type {
    border-left: 1px solid rgba(255,255,255,0.25);
  }
}
@media print, screen and (min-width:481px) {
  .sec-concept {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
}
@media print, screen and (min-width:481px) and (max-width:760px) {
  .concept_item .photo,
  .concept_item .ttl,
  .concept_item .txt {
    padding-left: 10%;
    padding-right: 10%;
  }
  .concept_item .txt {
    padding-bottom: 10%;
  }
}
@media print, screen and (max-width:760px) {
  .concept {
    grid-template-columns: 1fr;
    max-width: var(--sp-max-width);
  }
  .concept_item:last-of-type {
    padding-top: var(--space-m);
    border-top: 1px solid rgba(255,255,255,0.25);
  }
  .concept_item:last-of-type .photo {
    margin-top: 0;
  }
}
@media print, screen and (max-width:480px) {
  .concept_item .photo,
  .concept_item .ttl,
  .concept_item .txt {
    padding-left: 5%;
    padding-right: 5%;
  }
  .concept_item .txt {
    padding-bottom: 5%;
  }
}

/*--------------------------------------------------------------------------------
  Suite hairとは
--------------------------------------------------------------------------------*/
.sec-about {
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
  position: relative;
  margin-top: calc(-1 * var(--space-m));
  padding-top: var(--space-max);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  color: #FFF;
}
.about {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-top: var(--space-m);
  padding-bottom: var(--space-max);
  display: grid;
  grid-template-columns: auto clamp(300px, (540 / 1400 * 100vw), 540px);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "about-ttl about-photo"
    "about-txt about-photo";
}
.about_ttl {
  grid-area: about-ttl;
  font-weight: inherit;
  font-size: clamp(1.6em, 4vw + 0.5em, 2.2em);
  overflow: visible;
}
.about_ttl .en {
  font-family: var(--ff-en);
  font-size: 1.6em;
}
.about_txt {
  grid-area: about-txt;
  padding-top: 2em;
}
.about_txt p:not(:first-of-type) {
  padding-top: 1.5em;
}
.about_photo {
  grid-area: about-photo;
  display: flex;
  align-items: center;
}
.about_photo .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.about_photo .item {
  position: absolute;
}
.about_photo .item:first-of-type {
  width: 40%;
  height: auto;
  left: 0;
  z-index: 1;
}
.about_photo .item:last-of-type {
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
}
.about_photo img {
  min-height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width:761px) {
  .about {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .about_ttl,
  .about_txt {
    padding-right: var(--space-s);
  }
  .about_txt {
    padding-bottom: var(--space-2s);
  }
  .about_photo {
    padding-top: var(--space-s);
  }
  .about_photo .inner {
    max-height: clamp(400px, (600 / 1400 * 100vw), 600px);
  }
  .about_photo .item:first-of-type {
    top: calc(-1 * var(--space-s));
  }
}
@media print, screen and (max-width:760px) {
  .about {
    max-width: var(--sp-max-width);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "about-ttl"
      "about-txt"
      "about-photo";
  }
  .about_txt {
    padding-bottom: var(--space-max);
  }
  .about_photo {
    padding-top: var(--space-s);
  }
  .about_photo .inner {
    height: clamp(200px, (500 / 760 * 100vw), 500px);
  }
  .about_photo .item:first-of-type {
    top: calc(-1 * var(--space-m));
  }
}

/*--------------------------------------------------------------------------------
  こだわり
--------------------------------------------------------------------------------*/
.sec-feature {
  position: relative;
  padding-bottom: var(--space-max);
}
.feature {
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  position: relative;
}
.feature-container {
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-s);
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.feature_photos {
  height: 100%;
  list-style: none;
}
.feature_items {
  counter-reset: count 0;
}
.feature_item {
  position: relative;
  counter-increment: count 1;
  padding: calc(var(--space-2s) + 1em) 0  calc(var(--space-2s) + 1.25em) 6em;
  border-bottom: 1px solid rgba(var(--black-rgba),0.15);
}
.feature_item:first-of-type {
  border-top: 1px solid rgba(var(--black-rgba),0.15);
}
.feature_item .ttl {
  font-weight: 500;
  font-size: clamp(1.3em, 1.68vw + 0.75em, 1.5em);
  padding-bottom: 0.5em;
  position: relative;
}
.feature_item .ttl:before {
  display: inline-block;
  content: counter(count, decimal-leading-zero);
  font-family: var(--ff-en);
  color: var(--brown);
  font-weight: 500;
  font-size: 1.8em;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -2em;
  margin-top: -0.45em;
}
@media print, screen and (min-width:981px) {
  .feature {
    margin-top: var(--space-s);
  }
  .feature:before {
    content: "";
    width: 50%;
    height: calc(100% - var(--space-s));
    background-color: var(--beige);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-420px);
  }
  .feature_photos {
    width: min((540 / 1000 * 100vw), 540px);
    min-width: 260px;
    height: clamp(400px, 60vh, 600px);
    top: var(--space-s);
    position: sticky;
  }
  .feature_photos li {
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  .feature_photos li:first-of-type,
  .feature_photos li.is-active {
    opacity: 1;
  }
  .feature_photos img {
    min-height: 100%;
    object-fit: cover;
  }
  .feature_items {
    padding-left: var(--space-m);
  }
}
@media print, screen and (min-width:981px) and (max-width:1480px) {
  .feature:before {
    transform: translateX(calc(-1 * (420 / 1480 * 100vw)));
  }
}
@media print, screen and (max-width:980px) {
  .feature-container {
    flex-direction: column;
  }
  .feature_photos {
    display: flex;
    gap: 2.5%;
  }
  .feature_photos li:nth-of-type(2) {
    padding-top: var(--space-m);
  }
  .feature_items {
    padding-top: var(--space-l);
  }
  .feature_item {
    padding-left: 4.5em;
  }
  .feature_item .ttl:before {
    margin-left: -1.5em;
  }
}

/* message
----------------------------------------*/
.feature-mess {
  padding: var(--space-max) var(--side-space) 0 var(--side-space);
}
.feature-mess .hdline {
  position: relative;
  font-size: 1.7em;
  font-weight: inherit;
}
.feature-mess .hdline:before {
  content: "Message";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-70%);
  color: #FFF;
  font-family: var(--ff-en);
  font-size: clamp(2.4em, 10.53vw + 0.5em, 3em);
  font-weight: 400;
  font-style: italic;
  z-index: -1;
}
.feature-mess .txt {
  max-width: 1200px;
  text-align: left;
  padding-top: var(--space-s);
}
@media print, screen and (min-width:761px) {
  .feature-mess .txt {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
}


/*--------------------------------------------------------------------------------
  スタッフ
--------------------------------------------------------------------------------*/
.sec-staff {
  background: url("../image/bg_black.gif") repeat center bottom;
  background-size: var(--bgsize);
  color: #FFF;
  padding-left: var(--space-2s);
  padding-right: var(--space-2s);
  padding-bottom: var(--space-max);
  box-sizing:border-box;
}
.staff-container {
  width:100%;
  max-width:1200px;
  padding-top: var(--space-2s);
  display:inline-block;
  flex-direction: row;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.staff {
  width: calc( 33.333% - 10px);
  text-align: left;
  position: relative;
  display: inline-block;
  float:left;
  padding-bottom: 15px;
  margin-right: 15px;
}

.staff:nth-child(3n) {
  margin-right:0;
}

@media screen and (max-width: 810px)  {
  .staff {
    width: calc( 50% - 7.5px);
  }
  .staff:nth-child(3n) {
    margin-right:15px;
  }
  .staff:nth-child(2n) {
    margin-right:0;
  }   
}

.staff:before {
  content: "";
  width: 100%;
  height: 150px;
  position: absolute;
  left: 0;
  bottom:20px ;
  background-color: rgba(255,255,255,0.05);
}
.staff_name {
  position: relative;
  z-index: 1;
  padding: 20px ;
  box-sizing: border-box;
}
.staff_name-en {
  opacity: 0.3;
  font-weight: 300;
  line-height: 1;
  font-family: var(--ff-en);
  font-size: clampclamp(1rem, 2.5vw, 2rem);
}
/*---.staff {
  width: 100%;
  text-align: left;
  display: grid;
  grid-column-gap: var(--space-s);
  grid-row-gap: var(--space-2s);
  padding: var(--space-s);
  position: relative;
}
.staff_photo,
.staff_name,
.staff_come,
.staff_name-en {
  position: relative;
  z-index: 1;
}
.staff_name-en {
  opacity: 0.3;
  font-weight: 300;
  line-height: 1;
  font-family: var(--ff-en);
  font-size: clamp(1.8em, 3vw + 0.25em, 2.6em);
}--*/
.staff_photo {
  position: relative;
  z-index: 1;
  height: auto;
  margin:0 auto;
  width: 100%;
  max-width: 200px;
}
.staff_name .ps {
  display: inline-block;
  font-size: 0.8em;
  background-color: var(--brown);
  line-height: 1.2;
  padding: 0.25em 0.5em;
}
.staff_name .name {
  font-size: 1.4em;
  display: block;
  margin-top: 0.2em;
}

.staff_name .br-sp {
  display: none;
}  

@media screen and (max-width: 810px)  {
  .staff_name .name {
    font-size: 1.2em;
    margin-top: 0.2em;
  }  
  .staff_name .br-sp {
    display: block;
  }  
}

.content{
  margin: 10px 0 10px 0;
  display: flex;
}
.image{
  width: 25%;
  height: 200px;
  background-color: #eee;
  text-align: center;
  margin: 10px;
}
/*--@media print, screen and (min-width:761px) {
  .staff-container {
    max-width: 1200px;
  }
  .staff {
    grid-template-columns: clamp(240px, (380 / 1200 * 100vw), 380px) auto;
    grid-template-rows: var(--space-max) 1fr 1fr;
  }
  .staff:before {
    height: calc(100% - var(--space-l));
    top: var(--space-l);
  }
  .staff_photo {
    grid-area: 1 / 1 / 4 / 2;
  }
  .staff_name-en {
    grid-area: 1 / 2 / 2 / 3;
    align-self: start;
    padding-top: var(--space-s); 
    text-align: right;
  }
  .staff_name {
    grid-area: 2 / 2 / 3 / 3;
    align-self: end;
  }
  .staff_come {
    grid-area: 3 / 2 / 4 / 3;
    align-self: start;
  }
}
@media print, screen and (max-width:760px) {
  .staff-container {
    max-width: var(--sp-max-width);
  }
  .staff {
    grid-template-columns: 15% 1fr;
  }
  .staff:before {
    height: calc(100% - var(--space-max));
    top: var(--space-max);
  }
  .staff_name-en {
    grid-area: 1 / 1 / 4 / 2;
    text-align: right;
  }
  .staff_name-en span {
    display: inline-block;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }
  .staff_photo {
    text-align: center;
    grid-area: 1 / 2 / 2 / 3;
  }
  .staff_photo img {
    width: 100%;
    max-width: 280px;
  }
  .staff_name {
    grid-area: 2 / 2 / 3 / 3;
    padding-top: var(--space-2s);
  }
  .staff_come {
    grid-area: 3 / 2 / 4 / 3;
    padding-bottom: 1.5em;
  }
}
@media print, screen and (max-width:540px) {
  .sec-staff {
    padding-left: 0;
    padding-right: 0;
  }
  .staff-container {
    max-width: 100%;
  }
}
@media print, screen and (max-width:440px) {
  .staff {
    grid-template-columns: 10% 1fr;
  }
}---*/


/*--------------------------------------------------------------------------------
  メディア掲載情報
--------------------------------------------------------------------------------*/
.sec-media {
  background: url("../image/bg_black.gif") repeat center bottom;
  background-size: var(--bgsize);
  color: #FFF;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: var(--space-ss);
  padding-bottom: var(--space-max);
  box-sizing: border-box;
}
.sub-media {
  background: url("../image/bg_black.gif") repeat center bottom;
  background-size: var(--bgsize);
  color: #FFF;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: var(--space-l);
  padding-bottom: var(--space-max);
  box-sizing: border-box;
}
.media-container {
  width:100%;
  max-width:1200px;
  padding-top: var(--space-2s);
  display:inline-block;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-y: hidden;;
}

.media {
  width: calc( 25% - 15px);
  text-align: left;
  position: relative;
  display: inline-block;
  float:left;
  padding-bottom: 15px;
  margin-right: 15px;
  box-sizing: border-box;
}

.media:nth-child(4n){
  margin-right: 0;
}

@media screen and (max-width: 810px)  {
  .media {
    width: calc( 50% - 10px);
  }
  .media:nth-child(2n){
    margin-right: 0;
  }
  .media:nth-child(4n){
    margin-right: unset;
  }
  .media-sp{
    display:none;
  }
}

.sec-media {
  position: relative;
}
.media-hdline {
  color: #FFF;
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
}
.media-container:before {
  content: "";
  width: 100%;
  height: 55%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../image/bg_black.gif") repeat center top;
  background-size: var(--bgsize);
  z-index: -1;
}
.media_item {
  max-width: 400px;
  background-color: #FFF;
  text-align: left;
  display: grid;
  grid-template-rows: auto 1fr;
}
.media_name{
  margin:15px 0 0;
  padding: 15px;
  box-sizing: border-box;
  border-top:1px #fff solid;
  border-bottom:1px #fff solid;
  color: #fff;
}
@media print, screen and (max-width:760px) {
  .media-container:before {
    height: clamp(260px, (440 / 760 * 100vw + 2em), 440px);
  }
  .media {
    grid-template-columns: repeat(2, 1fr);
  }
}
.media .media_photo {
  width: 100%;
  max-width: 275px;
  max-height: 347px;
}
.media .media_photo img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.media .txt {
  padding: var(--space-2s);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
.media:not(:first-of-type) .txt {
  border-left: 1px solid rgba(var(--black-rgba),0.1);
}
.media .cate-date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.5em;
}
.media .cate {
  font-size: 0.9em;
}
.media .date {
  font-size: 0.8em;
  padding-top: 0.2em;
  color: var(--gray);
}
.media .more {
  display: block;
  text-align: right;
  margin-top: auto;
  padding-top: 3em;
  font-family: var(--ff-en);
  font-weight: 500;
}
.media-all {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--space-s);
  text-align: right;
  font-size: 1.2em;
  font-family: var(--ff-en);
  font-weight: 500;
}

/*--------------------------------------------------------------------------------
  採用情報
--------------------------------------------------------------------------------*/

.sec-recruit{
  margin: -90px 0 90px;
  padding: 0 20px;
}



@charset "utf-8";
/*--------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/
.sub-recruit .l-pgttl-wrap:before  {
  background: url("../image/bg_black.gif") repeat center bottom;
  background-size: var(--bgsize);
  color: #FFF;
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-top: var(--space-max);
  padding-bottom: var(--space-max);
  box-sizing: border-box;
}

@media print, screen and (max-width:760px) {
  .sub-recruit .l-pgttl-wrap:before  {
    padding-top:125px; 
  }
}



/* メニュー
----------------------------------------*/
.recruit-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding:0;
}
@media screen and ( max-width:780px ){
  .recruit-container{
    margin: -45px 0 45px;
    padding: 20px 0 0;
  }
}
.sec-recruit-bnr{
  margin-top: 30px;
}
.rec-title {
  background-color:#2f2f34;
  display: block;
}
@media screen and ( max-width:780px ){
  .rec-title {
    margin-bottom: 30px;
  }
}  
.rec-title h3 {
  color:#fff;
  margin-bottom:0px;
}
.rec-title .p-hdline_en{
  color: #fff;
}
.recruit-info {
  padding-top: var(--space-s);
}
.recruit- {
  padding-top: var(--space-s);
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: var(--space-m);
}
.recruit-:not(:last-of-type) {
  padding-bottom: var(--space-l);
}
.recruit-item {
  overflow-x: hidden;
  line-height: 1.6;
}
.recruit-item .hdline {
  border-top: 1px solid rgba(var(--black-rgba), 0.7);
  font-weight: 500;
  font-size: clamp(1.4em, 1.68vw + 0.75em, 1.6em);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  display: grid;
  grid-template-columns: auto 1fr;
}
.recruit-item .hdline small {
  padding-left: 2em;
  font-size: 0.55em;
  padding-bottom: 0.25em;
  align-self: flex-end;
}
@media print, screen and (max-width:760px) {
  .recruit-_item {
    padding:0;
    box-sizing:border-box;
  }
}
.sec-recruit .rsb-btn {
  padding-top: var(--space-m);
}
.sec-recruit .rsb-btn .p-btn {
  width: 360px;
  font-size: 1.1em;
}
@media print, screen and (max-width:760px) {
  .sec-recruit .rsb-btn {
    padding-top: var(--space-l);
  }
}
@media print, screen and (max-width:480px) {
  .sec-recruit .rsb-btn .p-btn {
    width: 100%;
  }
}

/* table */
.recruit-Tbl-scr {
  overflow-x: auto;
}
.recruit-Tbl {
  width: 100%;
  border-collapse: separate;
  border: 0;
  margin:0 0 45px;
  background-color: #fff;
}
.recruit-Tbl-scr .recruit-Tbl thead th:first-of-type,
.recruit-Tbl-scr .recruit-Tbl tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}
.recruit-Tbl th,
.recruit-Tbl td {
  line-height: 1.4;
  padding: 1.25em 1em;
  vertical-align: middle;
}
.recruit-Tbl tr {
}
.recruit-Tbl th {
  padding: 1em;
  text-align: center;
  font-weight: 500;
  border-bottom:1px solid rgb(var(--black-rgba));
  white-space: nowrap;
}
.recruit-Tbl td {
  padding: 1em;
  text-align: left;
  font-weight: 500;
  border-bottom:1px solid rgb(var(--black-rgba));
}
p.recruit-com {
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
}

.recruit-bnr {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.recruit-bnr a {
  display: block;
  background-color: #FFF;
}
.recruit-btn {
  width: 100%;
  font-size: 1.1em;
}
.recruit-btn img {
  width: 2em;
  vertical-align: middle;
  margin-left: 1em;
}
.recruit {
  display: none;
  text-align: center !important;
  font-size: min(3vw, 16.5px);
}
.recruit .recruit-btn {
  margin-top: 2em;
}


/*--------------------------------------------------------------------------------
  アクセス
--------------------------------------------------------------------------------*/
.access-map {
  padding-top: var(--space-s);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
  padding-bottom: var(--space-l);
}
.access-map iframe {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  max-height: 600px;
  border: 0;
  vertical-align: bottom;
}

/*--------------------------------------------------------------------------------
  道順
--------------------------------------------------------------------------------*/
.access-route {
  width: 100%;
  position: relative;
  padding-bottom: var(--space-l);
}
.access-slider .slick-list,
.access-slider .slick-track {
  width: 100%;
  height: 100%;
}
.access-slider .item {
  width: 100%;
  max-width: 960px;
}
.access-slider .item .inner {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}
.access-slider .item img {
  max-width: 100%;
  height: auto;
}
.access-slider .item p {
  padding-top: 1em;
  line-height: 1.6;
}
@media print, screen and (max-width:980px) {
  .access-route {
    padding-left: calc(var(--side-space) * 2);
    padding-right: calc(var(--side-space) * 2);
  }
  .access-slider .item .inner {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
  .access-slider .item img {
    height: clamp(200px, (560 / 980 * 100vw), 560px);
    object-fit: cover;
  }
}
@media print, screen and (max-width:640px) {
  .access-route {
    padding-left: 0;
    padding-right: 0;
  }
  .access-slider .item .inner {
    padding-left: 0;
    padding-right: 0;
  }
  .access-slider .item img {
    width: 100%;
    height: auto;
  }
  .access-slider .item p {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
}

/* arrows
----------------------------------------*/
.access-arrow {
  list-style: none;
  width: 100%;
  max-width: calc(800px + (80px * 4));
  height: 560px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}
.access-arrow li {
  width: calc(80px * 2);
  text-align: center;
  align-self: center;
}
.access-arrow .arrow_btn {
  width: clamp(32px, (54 / 1200 * 100vw), 54px);
  height: clamp(32px, (54 / 1200 * 100vw), 54px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--black-rgba),1);
  border-radius: 100%;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease-in-out;
}
.access-arrow .arrow_btn.is-disabled {
  cursor: inherit;
  opacity: 0.3;
}
.access-arrow .arrow_btn:before {
  content: "";
  line-height: 0;
  vertical-align: middle;
  display: inline-block;
  width: 22%;
  height: 22%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.access-arrow li.prev .arrow_btn:before { transform: rotate(-45deg); margin-right: -10%; }
.access-arrow li.next .arrow_btn:before { transform: rotate(135deg); margin-left: -10%; }
@media print, screen and (max-width:980px) {
  .access-arrow {
    height: clamp(200px, (560 / 980 * 100vw), 560px);
    padding: 0 var(--side-space);
  }
  .access-arrow li {
    width: auto;
  }
  .access-arrow .arrow_btn {
    width: clamp(32px, (48 / 760 * 100vw), 48px);
    height: clamp(32px, (48 / 760 * 100vw), 48px);
  }
}
@media print, screen and (max-width:640px) {
  .access-arrow {
    height: clamp(200px, (440 / 640 * 100vw), 440px);
  }
}
@media (hover: hover) {
  .access-arrow .arrow_btn:not(.is-disabled):hover {
    background-color: rgba(var(--black-rgba),0.7);
  }
}
