@charset "UTF-8";
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

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

body {
  font-size: clamp(15px, 1.17vw, 17px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #555555;
  line-height: 1.866;
  font-feature-settings: "palt";
  letter-spacing: 0;
}

.inner {
  max-width: 1260px;
  margin: 0 auto;
  width: 87.5%;
}

.inner--size-s {
  max-width: 900px;
  margin: 0 auto;
  width: 62.5%;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 82.933%;
  }
}
.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

/*========================
ボタン
=========================*/
.button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.button--center {
  margin-left: auto;
  margin-right: auto;
}

.button__link {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 1px solid #555;
  gap: 10px;
	transition: all .5s;
}

.button__link:hover {
  background-color: #FFAD73;
	transition: all .5s;
}
.button__link--orange {
  border: unset;
  background-color: #FFAD73;
  color: #555;
	transition: all .5s;
}
.button__link--orange:hover {
  background-color: #F67C26;
	transition: all .5s;
}


.button__txt {
  display: block;
  font-size: clamp(13px, 1.01vw, 15px);
  line-height: 1;
}

.button__icon {
  display: block;
  width: 10px;
  height: auto;
}

.button__icon-image {
  display: block;
  width: 100%;
  height: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/*============ 見出し ===========*/
.section-ttl__en {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Jost", sans-serif;
}

.section-ttl__ja {
  display: block;
  margin-top: 5px;
  line-height: 1;
}

.section-ttl--center {
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.section-ttl--center .section-ttl__en {
  text-align: center;
}
.section-ttl--center .section-ttl__ja {
  text-align: center;
}

/*===========================
ページ共通
============================*/
/*====== 動き =====*/
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}

.fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s;
}

/* ====== fadeUp + blur ====== */
.fadeBlur {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease-out, filter 1s ease-out;
}

.fadeBlur.is-show {
  opacity: 1;
  filter: blur(0);
}

.bg-orange {
  background-color: rgba(248, 206, 179, 0.1);
}

/*============== 右側ボタン ==============*/
.fixed-right-nav {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 9;
  opacity: 1;
  transition: all 0.5s;
}
.fixed-right-nav.is-disappear {
  opacity: 0;
  transition: all 0.5s;
  pointer-events: non;
}

.fixed-right-nav__item a {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0;
  writing-mode: vertical-lr;
  color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 16px 0 0 16px;
  background-color: #FFAD73;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
.fixed-right-nav__item a:hover {
  background-color: #F67C26;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .fixed-right-nav__item a {
    padding: 24px 12px;
    font-size: 12px;
    border-radius: 12px 0 0 12px;
  }
}

.fixed-right-nav__item a.fixed-right-nav__link--video{
  background-color: #555;
  color: #FFFFFF;
}
.fixed-right-nav__item a.fixed-right-nav__link--video:hover{
  background-color: #555;
  color: #FFFFFF;
}

/*============== 下層ページFV ==============*/
.under-fv {
  margin-top: 80px;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 1/0.3125;
}
@media screen and (max-width: 1024px) {
  .under-fv {
    margin-top: 60px;
    aspect-ratio: 1/0.533;
  }
}

.under-fv__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.under-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 173, 115, 0.5);
}

.under-fv__ttl-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20%;
}

.under-fv__ttl-en {
  font-size: 50px;
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  display: block;
  font-weight: 700;
}

.under-fv__ttl-ja {
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0;
  display: block;
  margin-top: 10px;
}

/*============== パンくず ==============*/
.breadcrumb {
  margin-top: 40px;
}

.breadcrumb--bottom {
  margin-top: 80px;
  padding-bottom: 80px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.breadcrumb__item {
  position: relative;
}
.breadcrumb__item:not(:last-of-type) {
  padding-right: 25px;
  margin-right: 19px;
}
.breadcrumb__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #555;
  border-right: 1px solid #555;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:not(:last-of-type)::after {
    width: 8px;
    height: 8px;
  }
}

.breadcrumb__link {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link {
    font-size: 12px;
  }
}

/*============== 共通エントリー ==============*/
.common-entry {
  background-color: #FFAD73;
}

.common-entry__content {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.recruitment-flow {
  margin-top: 24px;
}

.recruitment-flow__ttl {
  padding: 8px 16px;
  background-color: #FFFFFF;
  font-size: clamp(18px, 1.4vw, 20px);
  color: #FFAD73;
  font-weight: 700;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 4px;
}

.common-entry__side-l {
  width: 50%;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .common-entry__side-l {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 64px;
  }
}

.common-entry .button__link .button__icon{
	position: relative;
	right: 0;
	transition: all .5s;
}
.common-entry .button__link:hover .button__icon{
	right: -5px;
	transition: all .5s;
}

.common-entry .button__link .button__txt{
	position: relative;
	right: 0;
	transition: all .5s;
}


.common-entry .button__link:hover .button__txt{
	right: -5px;
	transition: all .5s;
}

.recruitment-flow__list {
  margin-top: 8px;
}

.recruitment-flow__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
}
.recruitment-flow__item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #FFFFFF;
  left: 0;
  top: 0;
}
.recruitment-flow__item:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .recruitment-flow__item {
    gap: 0;
  }
}

.recruitment-flow__num {
  display: block;
  font-size: clamp(18px, 1.4vw, 20px);
  font-family: "Jost", sans-serif;
  line-height: 1;
  text-align: center;
  width: 32px;
}

.recruitment-flow__txt {
  width: calc(100% - 40px);
  font-size: clamp(12px, 10.94vw, 14px);
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .recruitment-flow__txt {
    width: calc(100% - 32px);
  }
}

.button--common-entry {
  margin-top: 24px;
}
.button--common-entry .button__link {
  background-color: #555555;
  color: #FFFFFF;
  border: unset;
}
@media screen and (max-width: 768px) {
  .button--common-entry {
    width: 100%;
  }
}

.common-entry__side-r {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  width: 50%;
  padding: 0 10px 0 19px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .common-entry__side-r {
    display: none;
  }
}

.common-entry__img-list {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-shrink: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.common-entry__img-item {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

/* 下から上へ流れる */
.common-entry__img-list--up {
  -webkit-animation: scrollUp 90s linear infinite;
          animation: scrollUp 90s linear infinite;
}

/* 上から下へ流れる */
.common-entry__img-list--down {
  -webkit-animation: scrollDown 90s linear infinite;
          animation: scrollDown 90s linear infinite;
}

@-webkit-keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@-webkit-keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/*=============================
ヘッダー
=============================*/
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.25%;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 60px;
    z-index: 9999;
  }
}

.header--side-l {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .header--side-l {
    position: fixed;
    top: 14px;
    left: 8px;
    z-index: 9999;
  }
}

.header__logo {
  width: 186.5px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    margin-top: -4px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
    margin-top: 0;
  }
}

.header__site-genre {
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .header__site-genre {
    font-size: 10px;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-nav__label-en {
  display: block;
  font-size: clamp(15px, 1.17vw, 20px);
  font-weight: 600;
  line-height: 1;
  font-family: "Jost", sans-serif;
}

.header-nav__label-ja {
  display: block;
  font-size: clamp(8px, 0.625vw, 12px);
  line-height: 1;
  font-weight: 300;
  margin-top: 4px;
}

.header-nav__item--entry {
  margin-left: 16px;
}
.header-nav__item--entry .header-nav__link {
  padding: 0 40px;
  background-color: #FFAD73;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s;
}
.header-nav__item--entry .header-nav__link:hover {
  background-color:#F67C26;
}
.header-nav__item--entry .header-nav__link:hover .header-nav__label-en {
  transition: all 0.5s;
}
.header-nav__item--entry .header-nav__link:hover .header-nav__label-ja {
  transition: all 0.5s;
}
.header-nav__item--entry .header-nav__label-en {
  color: #FFFFFF;
  transition: all 0.5s;
}
.header-nav__item--entry .header-nav__label-ja {
  color: #FFFFFF;
  transition: all 0.5s;
}

/*========= ナビゲーションのためのCSS ===============*/
.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(85, 85, 85, 0.9);
  transition: all 0.3s;
  pointer-events: none;
}

.burger-nav__logo {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 192px;
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

.burger-nav.panelactive .burger-nav__list-wrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: calc(100% - 254px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87.2%;
}

.burger-nav .burger-nav__list {
  position: relative;
  z-index: 999;
  width: 100%;
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

.burger-nav .burger-nav__item {
  list-style: none;
}
.burger-nav .burger-nav__item:not(:first-of-type) {
  margin-top: 40px;
}

.burger-nav .burger-nav__item a {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 104px;
  height: 60px;
  background-color: #555;
  z-index: 9999;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 24px;
  transform: translateX(-50%);
}

.openbtn1 span:nth-of-type(1) {
  top: 23px;
}

.openbtn1 span:nth-of-type(2) {
  top: 29px;
}

.openbtn1 span:nth-of-type(3) {
  top: 35px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 24px;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  width: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*===========================
フッター
===========================*/
.footer {
  position: relative;
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    background-color: #555;
  }
}

.footer__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 85, 85, 0.9);
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .footer__bg {
    display: none;
  }
}

.footer__upper {
  width: 93.75%;
  margin: 0 auto;
  border-bottom: 1px solid #FFFFFF;
  padding: 0 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__upper {
    width: 87.2%;
  }
}

.footer__logo {
  width: 16%;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 192px;
  }
}

.footer__page-top {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.footer__page-top-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  position: relative;
}

.footer__page-top-icon {
  width: 12px;
  height: auto;
}

.footer__middle {
  width: 93.75%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 12px;
  color: #FFFFFF;
}

.footer-nav__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__list {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .footer-nav__item {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .footer-nav__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #858585;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-nav__main-link {
    flex: 1;
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
  }
}
.footer-nav__toggle{
	display: none;
}
@media screen and (max-width: 1024px) {
  .footer-nav__toggle {
	display: block;
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
  }
  /* ＞ をCSSで作る */
  .footer-nav__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg); /* 下向き */
    transition: transform 0.3s ease;
  }
  /* 開いたら上向き */
  .footer-nav__item.is-open .footer-nav__toggle::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
}
.footer-nav__label-en {
  display: block;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  line-height: 1;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 1024px) {
  .footer-nav__label-en {
    font-size: 28px;
    font-weight: 500;
  }
}

.footer-nav__label-ja {
  display: block;
  font-size: clamp(8px, 0.625vw, 10px);
}
@media screen and (max-width: 1024px) {
  .footer-nav__label-ja {
    font-size: 10px;
  }
}

.footer-nav__sub-list {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__sub-list {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
}

.footer-nav__sub-item {
  font-size: clamp(8px, 0.625vw, 12px);
  line-height: 1;
  font-weight: 300;
}
.footer-nav__sub-item:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__sub-item:not(:first-of-type) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__sub-item {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-nav__item.is-open .footer-nav__sub-list {
    opacity: 1;
    visibility: visible;
  }
}
.footer__bottom {
  margin-top: 40px;
}

.footer__copyright {
  width: 93.75%;
  margin: 0 auto;
  font-size: clamp(15px, 1.17vw, 20px);
  font-family: "Jost", sans-serif;
  color: #FFFFFF;
  display: block;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}

/*==============================
TOPページ
==============================*/
/*========== FV ==========*/
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .fv {
    height: calc(100vh - 60px);
    margin-top: 60px;
  }
}

.fv__video {
  width: 100%;
  height: 100%;
  position: relative;
}
.fv__video::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.fv__txt-size-l {
  display: block;
  font-size: 80px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .fv__txt-size-l {
    font-size: 50px;
  }
}

.fv__txt-size-s {
  display: block;
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.25;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .fv__txt-size-s {
    font-size: 18px;
  }
}

/*=========== 背景画像 ============*/
.top-bg-wrap {
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .top-bg-wrap {
    padding: 64px 0;
  }
}

.top-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top-bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========== 企業理念 ==========*/
.top-flex-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .top-flex-section {
    flex-direction: column;
  }
}

.top-flex-section__side-l {
  width: 43.625%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-flex-section__side-l {
    width: 100%;
  }
}

.top-sub-ttl {
  font-size: 40px;
  font-weight: 500;
  margin-top: 16px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 1024px) {
  .top-sub-ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-sub-ttl {
    line-height: 1.3;
    font-size: 40px;
    letter-spacing: -0.03em;
  }
}

.top-flex-section__side-r {
  width: calc(56.375% - 40px);
}
@media screen and (max-width: 768px) {
  .top-flex-section__side-r {
    width: 100%;
  }
}

.top-small-heading {
  position: relative;
}

.top-small-heading__size-s {
  display: block;
}

.top-small-heading__size-l {
  display: block;
}

.top-small-heading__emphasis {
  font-size: 24px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .top-small-heading__emphasis {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .button--top-sp {
    margin-top: 40px;
    width: 100%;
  }
}
.normalDocs-wrap {
  margin-top: 24px;
  position: relative;
  padding: 8px 0 8px 24px;
}
@media screen and (max-width: 768px) {
  .normalDocs-wrap {
    margin-top: 16px;
    padding: 4px 0 4px 16px;
  }
}
.normalDocs-wrap::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #555;
}

.normalDocs-paragraph {
  font-size: clamp(13px, 1.01vw, 15px);
}
.normalDocs-paragraph:not(:first-of-type) {
  margin-top: 8px;
}

.top-youtube-video {
  margin-top: 40px;
}
.top-youtube-video .inner {
  position: relative;
}

.top-youtube-video__item {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.top-youtube-video__item img {
  width: 100%;
  height: 100%;
  display: block;
}

.youtube-play-icon {
  width: 40.87%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*========== ビジョン ==========*/
.top-vision {
  margin-top: 40px;
}

/*========== サロンを見る ==========*/
.top-salon {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-salon {
    margin-top: 64px;
  }
}

.top-ttl-btn-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.salon__list {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.salon__item {
  width: calc(33.33% - 10.67px);
}

.salon__img {
  width: 100%;
}
.salon__img img {
  border-radius: 16px;
}

.salon__name {
  margin-top: 16px;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
}

.button--top-size-l {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-salon-slider {
    position: relative;
  }
  .top-salon-swiper {
    overflow: hidden;
    position: relative;
    margin-top: 24px;
    padding-bottom: 70px;
  }
  .top-salon-swiper__arrow-wrap {
    width: 50px;
    height: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .top-salon-swiper .swiper-slide {
    height: auto;
  }
  .top-salon__prev,
.top-salon__next {
    position: absolute;
    top: 0;
    transform: unset;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
  }
  .top-salon__prev:hover,
.top-salon__next:hover {
    opacity: 0.7;
  }
  .top-salon__prev {
    left: 0;
  }
  .top-salon__next {
    right: 0;
  }
  .top-salon__prev::before,
.top-salon__next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
  .top-salon__prev::before {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .top-salon__next::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
/*========== 各種ページリンク ==========*/
.top-link {
  padding: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-link {
    padding: 64px 0;
    margin-top: 64px;
  }
}

.top-link__wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .top-link__wrap {
    flex-direction: column;
    gap: 24px;
  }
}

.top-link__list:first-of-type {
  width: calc(33.33% - 8px);
}
@media screen and (max-width: 1024px) {
  .top-link__list:first-of-type {
    width: 100%;
  }
}
.top-link__list:first-of-type .top-link__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.top-link__list:first-of-type .top-link__img {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .top-link__list:first-of-type .top-link__img {
    width: 100%;
    height: auto;
  }
}
.top-link__list:last-of-type {
  width: calc(66.66% - 8px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .top-link__list:last-of-type {
    width: 100%;
    gap: 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .top-link__list:last-of-type .top-page-name {
    display: block;
  }
}
.top-link__list:last-of-type .top-link__item {
  width: calc(50% - 8px);
}

.top-link__recruit-block {
  width: 100%;
}

.top-page-name {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-top: 8px;
  gap: 8px;
}

.top-page-name__en {
  display: block;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-page-name__en {
    line-height: 1;
  }
}

.top-page-name__ja {
  display: block;
}

.button--top-size-l {
  width: 100%;
}

/*========== 働く人を知る ==========*/
.top-people {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-people {
    margin-top: 64px;
  }
}

.top-people-swiper-wrap {
  position: relative;
}

.top-people-swiper {
  overflow: hidden;
  position: relative;
  margin-top: 24px;
  padding-bottom: 70px;
}

.top-people-swiper__arrow-wrap {
  width: 50px;
  height: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-people-swiper .swiper-slide {
  height: auto;
}

.top-people-swiper__prev,
.top-people-swiper__next {
  position: absolute;
  top: 0;
  transform: unset;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.top-people-swiper__prev:hover,
.top-people-swiper__next:hover {
  opacity: 0.7;
}

.top-people-swiper__prev {
  left: 0;
}

.top-people-swiper__next {
  right: 0;
}

.top-people-swiper__prev::before,
.top-people-swiper__next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.top-people-swiper__prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.top-people-swiper__next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.people__heading {
  font-size: clamp(18px, 1.4vw, 20px);
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #555;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.33;
}

.people__position {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 100px;
  margin-top: 16px;
}

.people__position--noLink {
  padding: 4px 16px;
  background-color: #FFAD73;
  font-size: clamp(12px, 10.94vw, 14px);
  line-height: 1.33;
	color: #ffffff;
}

.people__position a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 4px 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #FFAD73;
  border-radius: 100px;
  font-size: clamp(12px, 10.94vw, 14px);
  line-height: 1.33;
	color: #ffffff;
}
.people__position a.people__ageo {
  color: #FFFFFF;
}

.people__name {
  margin-top: 8px;
}

.people__salon-link {
  width: 12px;
  height: 12px;
  position: relative;
}
.people__salon-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-people__name-ja {
  display: block;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.33;
}

.top-people__name-en {
  display: block;
  font-size: clamp(10px, 0.78vw, 12px);
  font-family: "Jost", sans-serif;
  line-height: 1;
  margin-top: 3px;
}

.button--top-size-l {
  margin-top: 16px;
}
.button--top-size-l .button__link {
  padding: 8px 16px;
  line-height: 1;
}

/*========== よくあるご質問 ==========*/
.top-faq {
  padding: 80px 0;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .top-faq {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .bg-orange--only-pc {
    background-color: unset;
  }
.top-faq__sp-bg {
  padding: 64px 0;
  background-color: rgba(248, 206, 179, 0.1);
}

}
.top-faq-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-faq-wrap {
    display: block;
  }
}

.top-faq__list {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .top-faq__list {
    width: 100%;
    margin-top: 40px;
  }
}

.top-faq__item:not(:first-of-type) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .top-faq__item:not(:first-of-type) {
    margin-top: 40px;
  }
}

.accordion-trigger {
  padding-bottom: 8px;
  position: relative;
}

.top-faq__accorion-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.top-faq__accorion-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translate(-50%, -50%) rotate(45deg); /* 下向き */
  transition: transform 0.3s ease;
}

.accordion-wrap.is-open .top-faq__accorion-toggle::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.top-faq__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #555;
  cursor: pointer;
}

.top-faq__icon {
  font-size: clamp(18px, 1.4vw, 20px);
  font-family: "Jost", sans-serif;
}

.top-faq__question {
  font-weight: 700;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 8px;
}

.top-faq__slider-wrap {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/0.327;
  position: relative;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .top-faq__slider-wrap {
    margin-top: 64px;
    aspect-ratio: 1/0.65;
  }
}

.top-faq__slider {
  width: 100%;
  overflow: hidden;
  height: calc(50% - 8px);
  position: absolute;
  top: 0;
  left: 0;
}

.top-faq__imgs {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  -webkit-animation: slide-left 80s linear infinite;
          animation: slide-left 80s linear infinite;
}
.top-faq__imgs:first-of-type {
  top: 0;
  left: 0;
}
.top-faq__imgs:last-of-type {
  bottom: 0;
  left: 0;
}

.top-faq__img {
  height: 100%;
  width: auto;
}
.top-faq__img img {
  width: auto;
  height: 100%;
}

.top-faq__slider--reverse {
  bottom: 0;
  top: unset;
}
.top-faq__slider--reverse .top-faq__imgs {
  -webkit-animation: slide-right 80s linear infinite;
          animation: slide-right 80s linear infinite;
}

@-webkit-keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 左 → 右 */
@-webkit-keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*========== 最新情報 ==========*/
.top-news {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .top-news {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.inner--top-news {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .inner--top-news {
    display: block;
  }
}

.top-news__side-l {
  width: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  height: auto;
	gap: 10px;
}
@media screen and (max-width: 768px) {
  .top-news__side-l {
    width: 100%;
  }
}

.top-news__side-r {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .top-news__side-r {
    width: 100%;
    margin-top: 40px;
  }
}

/*==============================
COMPANYページ
==============================*/
/*========== トップメッセージ ==========*/
.company-message {
  margin-top: 80px;
}

.company-message__image {
  width: 100%;
  margin-top: 24px;
}

.company-message__txt {
  margin-top: 24px;
}

.company-message__sign {
  text-align: right;
  margin-top: 32px;
}

/*========== 企業理念 ==========*/
.company-philosophy {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .company-philosophy {
    margin-top: 80px;
  }
}

.company-philosophy__image {
  margin-top: 24px;
}

/*========== 運営会社情報 ==========*/
.company-about {
  margin-top: 120px;
  padding-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .company-about {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.company-table {
  width: 100%;
  display: block;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .company-table {
    margin-top: 24px;
  }
}

.company-table__body {
  width: 100%;
  display: block;
}

.company-table__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .company-table__row {
    flex-direction: column;
  }
}
.company-table__row:not(:first-of-type) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .company-table__row:not(:first-of-type) {
    margin-top: 16px;
  }
}

.company-table__heading {
  width: 160px;
  padding: 16px 8px;
  font-weight: 700;
  border-bottom: 1px solid #333;
  color: #333;
}
@media screen and (max-width: 768px) {
  .company-table__heading {
    padding: 8px 4px;
    width: 100%;
  }
}

.company-table__data {
  width: calc(100% - 168px);
  padding: 16px 12px;
  color: #333;
  border-bottom: 1px solid #EAEAEA;
}
@media screen and (max-width: 768px) {
  .company-table__data {
    width: 100%;
    padding: 8px 4px;
  }
}

/*==============================
RECRUITページ
==============================*/
.card {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .card {
    border-radius: 8px;
  }
}

.card--orange {
  background-color: #FFAD73;
}
@media screen and (max-width: 768px) {
  .card--orange {
    border-radius: 0;
  }
}

.card--white {
  background-color: #FFFFFF;
}

.card--pale-orange {
  background-color: rgba(248, 206, 179, 0.1);
}

/*============ 導入部分画像 ===========*/
.recruit-img {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit-img {
    margin-top: 40px;
  }
}

.recruit-img__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .recruit-img__list {
    gap: 8px;
  }
}

.recruit-img__item {
  width: calc(33.33% - 10.666px);
}
@media screen and (max-width: 768px) {
  .recruit-img__item {
    width: calc(33.33% - 5.333px);
  }
}

/*============ NISURUの魅力 ===========*/
.recruit-about {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit-about {
    margin-top: 40px;
  }
}

.card--recruit-about {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .card--recruit-about {
    padding: 16px;
  }
}

.card--recruit-about.card--white {
  margin-top: 16px;
}

.recruit-about__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .recruit-about__list {
    flex-direction: column;
  }
}

.recruit-about__item {
  width: calc(33.33% - 10.666px);
}
@media screen and (max-width: 1024px) {
  .recruit-about__item {
    width: 100%;
    padding: 24px;
    border-radius: 4px;
  }
}

.recruit-about__icon {
  width: 100px;
  height: 100px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}
.recruit-about__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: auto;
}

.recruit-about__list-ttl {
  text-align: center;
  margin-top: 16px;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.33;
}

.recruit-about__list-txt {
  margin-top: 12px;
}

/*============ 求める人物像 ===========*/
.recruit-ideal-profile {
  margin-top: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile {
    margin-bottom: 64px;
  }
}

.recruit-ideal-profile__txt {
  margin-top: 24px;
  text-align: center;
}

.card--recruit-ideal-profile {
  padding: 40px;
  border-radius: 8px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .card--recruit-ideal-profile {
    padding: 16px;
  }
}

.recruit-ideal-profile__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 65.82px;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__list {
    gap: 18.5px;
  }
}

.recruit-ideal-profile__item {
  position: relative;
  width: 172px;
  height: auto;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__item {
    width: 80.5px;
  }
}
.recruit-ideal-profile__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate(100%, -50%);
  width: 17.82px;
  height: 16.99px;
  background-image: url(../../assets/images/recruit/batsu.png);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__item:not(:last-of-type)::after {
    width: 10.4px;
    height: 10px;
    right: -4px;
  }
}

.recruit-ideal-profile__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__icon {
    width: 48px;
    height: 48px;
  }
}

.recruit-ideal-profile__name-en {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-family: "Jost", sans-serif;
  color: #FFAD73;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__name-en {
    font-size: 15px;
  }
}

.recruit-ideal-profile__name-ja {
  display: block;
  font-size: 12px;
  margin-top: 7px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__name-ja {
    font-size: 8px;
  }
}

.recruit-ideal-profile__detail-list {
  margin-top: 40px;
}

.recruit-ideal-profile__detail-item:not(:first-of-type) {
  margin-top: 40px;
}

.recruit-ideal-profile__detail-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__detail-ttl {
    flex-direction: column;
    gap: 0;
  }
}

.recruit-ideal-profile__detail-icon {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__detail-icon {
    width: 40px;
    height: 40px;
  }
}

.recruit-ideal-profile__detail-name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.recruit-ideal-profile__detail-name-en {
  display: block;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: #FFAD73;
  font-family: "Jost", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .recruit-ideal-profile__detail-name-en {
    font-size: 40px;
  }
}

.recruit-ideal-profile__detail-name-ja {
  display: block;
  text-align: center;
  margin-top: 7px;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__detail-name-ja {
    font-size: 12px;
    margin-top: 0;
  }
}

.recruit-ideal-profile__explain-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 16px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .recruit-ideal-profile__explain-list {
    flex-direction: column;
    gap: 16px;
  }
}

.recruit-ideal-profile__explain-item {
  padding: 16px;
  border: 1px solid #555;
  border-radius: 4px;
}
.recruit-ideal-profile__explain-item:nth-of-type(-n+3) {
  width: calc(33.33% - 10.666px);
}
@media screen and (max-width: 1024px) {
  .recruit-ideal-profile__explain-item:nth-of-type(-n+3) {
    width: 100%;
  }
}
.recruit-ideal-profile__explain-item:nth-last-of-type(-n+2) {
  width: calc(50% - 8px);
}
@media screen and (max-width: 1024px) {
  .recruit-ideal-profile__explain-item:nth-last-of-type(-n+2) {
    width: 100%;
  }
}

.recruit-ideal-profile__explain-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  background-color: #555;
  border-radius: 4px;
}

.recruit-ideal-profile__explain-label-icon {
  width: 15px;
  height: 15px;
  position: relative;
}
.recruit-ideal-profile__explain-label-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruit-ideal-profile__explain-label-num {
  font-size: 15px;
  font-family: "Marcellus", serif;
  color: #FFFFFF;
  line-height: 1;
}

.recruit-ideal-profile__explain-ttl {
  margin-top: 12px;
  padding-bottom: 16px;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.33;
  border-bottom: 1px solid #555;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-ideal-profile__explain-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 15px;
  }
}

/*============ 募集要項 ===========*/
.recruit-application {
  margin-top: 120px;
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .recruit-application {
    margin-top: 32px;
    margin-bottom: 80px;
  }
}

.recruitment-table {
  margin-top: 40px;
  display: block;
  width: 100%;
}

.recruitment-table__body {
  display: block;
  width: 100%;
}

.recruitment-table__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #555;
}
.recruitment-table__row:not(:first-of-type) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .recruitment-table__row:not(:first-of-type) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .recruitment-table__row {
    flex-direction: column;
    border-bottom: unset;
  }
}

.recruitment-table__head {
  width: 160px;
  padding: 16px 8px;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.33;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .recruitment-table__head {
    width: 100%;
    padding: 8px;
    border: 1px solid #555;
    text-align: center;
    line-height: 1;
    border-radius: 4px;
  }
}

.recruitment-table__data {
  padding: 16px 12px;
  width: calc(100% - 168px);
}
@media screen and (max-width: 768px) {
  .recruitment-table__data {
    padding: 12px 4px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
}

.recruitment-table__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/*==============================
ENVIRONMENTページ
==============================*/
/*========== 研修の特徴 =========*/
.hr-system {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .hr-system {
    margin-top: 40px;
  }
}

.hr-system__list {
  margin-top: 24px;
}

.hr-system__item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
}
.hr-system__item:not(:first-of-type) {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .hr-system__item:not(:first-of-type) {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .hr-system__item {
    flex-direction: column;
  }
}

.hr-system__heading {
  width: 21.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 0;
  background-color: #FFAD73;
  line-height: 1;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .hr-system__heading {
    width: 100%;
  }
}

.hr-system__explain {
  width: calc(78.5% - 8px);
  padding: 16px 12px;
  border-bottom: 1px solid #555555;
}
@media screen and (max-width: 1024px) {
  .hr-system__explain {
    border-bottom: 1px solid #eee;
    width: 100%;
  }
}

/*========== 福利厚生 =========*/
.benefits {
  margin-top: 80px;
}

.benefits__table {
  margin-top: 24px;
  display: block;
  width: 100%;
}

.benefits__table-body {
  display: block;
  width: 100%;
}

.benefits__table-row {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  gap: 8px;
}
.benefits__table-row:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .benefits__table-row:not(:first-of-type) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .benefits__table-row {
    flex-direction: column;
  }
}

.benefits__table-head {
  width: 14.29%;
  padding: 16px 8px;
  border-bottom: 1px solid #555555;
}
@media screen and (max-width: 768px) {
  .benefits__table-head {
    padding: 8px 4px 4px 4px;
    width: 100%;
  }
}

.benefits__table-data {
  padding: 16px 12px;
  width: calc(85.71% - 8px);
  border-bottom: 1px solid #555555;
}
@media screen and (max-width: 768px) {
  .benefits__table-data {
    width: 100%;
    padding: 4px 4px 8px 4px;
    border-bottom: 1px solid #eee;
  }
}

/*========== 数字で見るNISURU =========*/
.statics {
  margin-top: 80px;
  margin-bottom: 80px;
}

.statics__list {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.statics__item {
  width: calc(25% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 3.57%;
  container-type: inline-size;
  background-color: rgba(248, 206, 179, 0.1);
  border: 2px solid #FFAD73;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .statics__item {
    width: calc(50% - 4px);
    padding: 24px 7.7%;
  }
}

.statics__illust {
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .statics__illust {
    width: 100%;
  }
}

.statics__name {
  margin-top: 24px;
  font-size: 9cqw;
  font-weight: 700;
  text-align: center;
  line-height: 1.33;
}
@media screen and (max-width: 768px) {
  .statics__name {
    font-size: 11.65cqw;
    margin-top: 8px;
  }
}

.statics__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .statics__num {
    margin-top: 0;
  }
}

.statics__num-txt {
  display: block;
  font-size: 38.23cqw;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .statics__num-txt {
    font-size: 38.83cqw;
  }
}

.statics__num-unit {
  display: block;
  font-size: 9cqw;
}
@media screen and (max-width: 768px) {
  .statics__num-unit {
    font-size: 11.65cqw;
  }
}

.statics__annotation {
  margin-top: 16px;
  font-size: 7.73cqw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .statics__annotation {
    font-size: 11.65cqw;
    margin-top: 0;
  }
}

/*==============================
News一覧ページ
==============================*/
.news {
  margin-top: 80px;
  padding-bottom: 120px;
}

.news__item {
  border-bottom: 1px solid #555;
}
.news__item:not(:first-of-type) {
  margin-top: 24px;
}

.news__link {
  display: block;
  padding: 8px 0;
}

.news__data {
  font-size: clamp(11px, 0.86vw, 13px);
  color: #858585;
}

.news__ttl {
  margin-top: 8px;
}

/*==============================
News記事詳細ページ
==============================*/
.news-detail {
  margin-top: 80px;
}

.news-detail__ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.news-detail__txt {
  margin-top: 32px;
}

.news-detail__img {
  width: 100%;
  margin-top: 32px;
}

.button--news-detil {
  margin-top: 56px;
}

/*==============================
ENTRYページ
==============================*/
.entry-form {
  margin-top: 80px;
}

.entry-form__item {
  padding-bottom: 10px;
}
.entry-form__item:not(:first-of-type) {
  margin-top: 56px;
}
.entry-form__item:not(:last-of-type) {
  border-bottom: 1px solid #555;
}

.entry-form__ttl {
  font-size: 40px;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}

.form-dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}



.form-dl--first-label {
  margin-top: 24px;
}

.form-dt {
  width: 228px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 0;
}

.form-ttl {
  font-weight: 700;
}

.form-required {
  font-size: 12px;
  padding: 3px 16px;
  line-height: 1;
  background-color: #FFAD73;
  font-weight: 400;
}

.form-dd {
  width: calc(100% - 228px);
}


@media screen and (max-width: 768px) {
	.form-dl {
		    display: block;
	}
	
	.form-dt{
		width: max-content;
		display: flex;
		align-items: baseline;
		gap: 10px;
	}
	.form-dd{
		width: 100%;
	}
}

input[type=text],
input[type=email],
textarea {
  padding: 16px 32px;
  background-color: #eee;
  width: 100%;
}

.radio-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
  content: "";
}

textarea {
  height: 240px;
}

.form-dl__file {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

input[type=file] {
  margin-top: 16px;
}

.form-ttl--file {
  font-weight: 400;
}

.form-dl__file {
  align-items: flex-start;
  margin-top: 10px;
}

.form-dt__file {
  width: 100%;
  padding: 0;
}

.entry-form__policy-heading {
  margin-top: 10px;
  font-weight: 400;
}

.entry-form__policy-txt {
  margin-top: 16px;
  padding: 16px;
  overflow: scroll;
  aspect-ratio: 1/0.88;
  border: 1px solid #ddd;
}

.privacy-wrap {
  margin-top: 24px;
}

input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #555;
  border-radius: 4px;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: -5px;
  left: 10px;
  transform: rotate(50deg);
  width: 8px;
  height: 22px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  content: "";
}

.privacy-wrap__agree-txt {
  font-size: clamp(15px, 1.17vw, 17px);
  font-weight: 400;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 80px auto 0;
  transition: all 0.5s;
  pointer-events: all;
}

.submit-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 16px 80px;
  font-size: clamp(18px, 1.4vw, 20px);
  color: #555555;
  background-color: #FFAD73;
  line-height: 1;
  transition: all 0.5s;
}
.submit-btn:hover {
  color: #FFFFFF;
  background-color: #555555;
  transition: all 0.5s;
}

/*==============================
PEOPLEページ
==============================*/
.under-people__list {
  margin-top: 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 16px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .under-people__list {
    flex-direction: column;
    margin-top: 40px;
    gap: 32px;
  }
}

.under-people__item {
  width: calc(33% - 10.66px);
}
@media screen and (max-width: 768px) {
  .under-people__item {
    width: 100%;
  }
}

/*0419追記*/
.people__img-wrap {
  position: relative;
  overflow: hidden;
	border-radius: 15px;
}

.people__img--before {
  position: relative;
}

.people__img--after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.people__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}

/* ← class名をHTMLに合わせる */
.line-border,
.line-base,
.line-border-hover,
.line-hover {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 通常状態 */
.line-border {
  stroke: #000;
  stroke-width: 50;
}

.line-base {
  stroke: #fff;
  stroke-width: 35;
}

/* ホバー用 */
.line-border-hover {
  stroke: #FFF271;
  stroke-width: 35;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.5s ease;
}

.line-hover {
  stroke: #FFF271;
  stroke-width: 35;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.5s ease;
}

.people__img-wrap a:hover .line-border-hover,
.people__img-wrap a:hover .line-hover {
  stroke-dashoffset: 0;
}

.under-people__item:nth-of-type(2) {
  /* 通常状態 */
  /* ホバー用 */
}
.under-people__item:nth-of-type(2) .line-border-hover,
.under-people__item:nth-of-type(2) .line-hover {
  stroke: #05B771;
  stroke-width: 50;
}
.under-people__item:nth-of-type(2) .line-border {
  stroke-width: 70;
}
.under-people__item:nth-of-type(2) .line-base {
  stroke-width: 50;
}
.under-people__item:nth-of-type(2) .line-border-hover {
  stroke-width: 50;
}

.under-people__item:nth-of-type(3) .line-border-hover,
.under-people__item:nth-of-type(3) .line-hover {
  stroke: #2061B3;
}

.under-people__item:nth-of-type(4) .line-border-hover,
.under-people__item:nth-of-type(4) .line-hover {
  stroke: #F7AB3B;
}

.under-people__item:nth-of-type(5) {
  /* 通常状態 */
  /* ホバー用 */
}
.under-people__item:nth-of-type(5) .line-border-hover,
.under-people__item:nth-of-type(5) .line-hover {
  stroke: #99714A;
  stroke-width: 50;
}
.under-people__item:nth-of-type(5) .line-border {
  stroke-width: 70;
}
.under-people__item:nth-of-type(5) .line-base {
  stroke-width: 50;
}
.under-people__item:nth-of-type(5) .line-border-hover {
  stroke-width: 50;
}

.under-people__item:last-of-type .line-border-hover,
.under-people__item:last-of-type .line-hover {
  stroke: #E86371;
}

@media screen and (max-width: 1024px) {
  .line-border-hover,
.line-hover {
    stroke-dashoffset: 0;
    transition: none;
  }
}
.swiper-wrapper .swiper-slide.line-green {
  /* 通常状態 */
  /* ホバー用 */
}
.swiper-wrapper .swiper-slide.line-green .line-border-hover,
.swiper-wrapper .swiper-slide.line-green .line-hover {
  stroke: #05B771;
  stroke-width: 50;
}
.swiper-wrapper .swiper-slide.line-green .line-border {
  stroke-width: 70;
}
.swiper-wrapper .swiper-slide.line-green .line-base {
  stroke-width: 50;
}
.swiper-wrapper .swiper-slide.line-green .line-border-hover {
  stroke-width: 50;
}

.swiper-wrapper .swiper-slide.line-blue .line-border-hover,
.swiper-wrapper .swiper-slide.line-blue .line-hover {
  stroke: #2061B3;
}

.swiper-wrapper .swiper-slide.line-orange .line-border-hover,
.swiper-wrapper .swiper-slide.line-orange .line-hover {
  stroke: #F7AB3B;
}

.swiper-wrapper .swiper-slide.line-brown {
  /* 通常状態 */
  /* ホバー用 */
}
.swiper-wrapper .swiper-slide.line-brown .line-border-hover,
.swiper-wrapper .swiper-slide.line-brown .line-hover {
  stroke: #99714A;
  stroke-width: 50;
}
.swiper-wrapper .swiper-slide.line-brown .line-border {
  stroke-width: 70;
}
.swiper-wrapper .swiper-slide.line-brown .line-base {
  stroke-width: 50;
}
.swiper-wrapper .swiper-slide.line-brown .line-border-hover {
  stroke-width: 50;
}

.swiper-wrapper .swiper-slide.line-pink .line-border-hover,
.swiper-wrapper .swiper-slide.line-pink .line-hover {
  stroke: #E86371;
}

/*==============================
INTERVIEWページ
==============================*/
/*============ インタビューページFV ============*/
.interview-fv {
  margin-top: 80px;
  width: 100%;
  padding: 40px 0 40px 6.25%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 39px;
  background-color: #FFAD73;
}
@media screen and (max-width: 1024px) {
  .interview-fv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .interview-fv {
    padding: 24px 0 0 24px;
  }
}

.interview-fv__txt {
  width: 32.3%;
}
@media screen and (max-width: 1024px) {
  .interview-fv__txt {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .interview-fv__txt {
    width: 100%;
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #FFAD73;
  }
}

.interview-fv__ttl {
  font-size: 40px;
  color: #FFFFFF;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .interview-fv__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .interview-fv__ttl {
    width: 87.2%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    color: #555555;
    padding-bottom: 16px;
    border-bottom: 1px solid #555555;
  }
}

.interview-fv__position {
  font-size: clamp(12px, 10.94vw, 14px);
  color: #FFFFFF;
  line-height: 1;
  padding: 4px 16px;
  border: 1px solid #FFFFFF;
  border-radius: 100px;
  margin-top: 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.interview-fv__position a{	
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
	color: #ffffff;
}
.interview-fv__position .people__salon-link{
	
}
@media screen and (max-width: 768px) {
  .interview-fv__position {
    color: #555555;
    background-color: #FFAD73;
    margin-left: 6.4%;
  }
}

.interview-fv__name {
  margin-top: 8px;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .interview-fv__name {
    width: 87.2%;
    margin: 8px auto 0;
    color: #555555;
  }
}

.interview-fv__name-ja {
  display: block;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.33;
}

.interview-fv__name-en {
  display: block;
  font-size: clamp(10px, 0.78vw, 12px);
}

.interview-fv__image {
  width: calc(67.7% - 39px);
	position: relative;
}
@media screen and (max-width: 1024px) {
  .interview-fv__image {
    width: calc(60% - 39px);
  }
}
@media screen and (max-width: 768px) {
  .interview-fv__image {
    width: 100%;
    height: 100%;
  }
  .interview-fv__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.interview-fv__interview-txt-img {
	left: 0;
    bottom: 0;
    width: 85.5%;
    position: absolute;
    transform: translate(-16%, 8%);
}
@media screen and (max-width: 768px) {
  .interview-fv__interview-txt-img {
        right: unset;
        left: 0;
        bottom: 16px;
        width: calc(100% - 70px);
        position: absolute;
        transform: translateX(-3%);
  }
}

/*============ インタビュー内容 ============*/
.interview {
  padding-top: 80px;
  margin-bottom: 290px;
}
@media screen and (max-width: 768px) {
  .interview {
    padding-top: 40px;
    margin-bottom: 80px;
  }
}

.interview__wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.interview__side-l {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  left: 0;
  width: 27.58%;
}

.interview__side-img {
  width: 100%;
}

.interview__side-ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 16px;
  margin-top: 24px;
  border-bottom: 1px solid #555;
}

.interview__side-position {
  font-size: clamp(12px, 10.94vw, 14px);
  line-height: 1;
  padding: 4px 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #FFAD73;
  border-radius: 100px;
	color: #ffffff;
  margin-top: 16px;
}

.interview__side-position a{
	display:flex;
	align-items: center;
	justify-content:center;
	gap: 5px;
}
.interview__side-name {
  margin-top: 8px;
}

.interview__side-name-ja {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 700;
  display: block;
  line-height: 1.33;
}

.interview__side-name-en {
  display: block;
  font-size: clamp(10px, 0.78vw, 12px);
}

.interview__side-r {
  width: calc(72.42% - 80px);
}
@media screen and (max-width: 768px) {
  .interview__side-r {
    width: 100%;
  }
}

.interview__list {
  margin-bottom: 56px;
}

.interview__item {
  margin-top: 32px;
}

.interview__ttl {
  font-size: 24px;
  font-weight: 700;
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.5;
}
.interview__ttl::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #FFAD73;
  top: 0;
  left: 0;
}

.interview__txt {
  padding: 4px 0 4px 16px;
  position: relative;
}
.interview__txt::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #ddd;
  top: 0;
  left: 0;
}

.interview__with-img {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .interview__with-img {
    display: block;
  }
}

.interview__side-img-txt {
  width: calc(50% - 12px);
}
@media screen and (max-width: 1024px) {
  .interview__side-img-txt {
    width: 100%;
  }
}

.interview__side-txt-img {
  width: calc(50% - 12px);
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .interview__side-txt-img {
    width: 100%;
    margin-top: 32px;
  }
}
.interview__side-txt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.interview__under-img {
  margin-top: 32px;
}

.interview__with-img--reverse {
  flex-direction: row-reverse;
}

.interview__img-size-l {
  width: 100%;
  margin-top: 32px;
}

/*==============================
Salonページ
==============================*/
.under-salon {
  margin-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .under-salon__list {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .under-salon__item {
    width: 100%;
  }
}

    top: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}

.life-image__tab {
  padding: 24px 30px 24px 24px;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .life-image__tab {
    width: 50%;
    padding: 16px;
  }
}
.life-image__tab.is-active {
  background-color: #FFAD73;
}
.life-image__tab.is-active .life-image__flow-ttl {
  color: #FFFFFF;
}
.life-image__tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .life-image__tab::after {
    display: none;
  }
}

.life-image__flow-ttl-large {
  font-size: 18px;
}

.life-image__flow-ttl-small {
  font-size: 12px;
  display: block;
}

.life-image__details {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1024px) {
  .life-image__details {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 768px) {
  .life-image__details {
    width: 100%;
  }
}

.life-image__detail {
  padding: 24px;
  background-color: #F8CEB3;
  display: none;
}
.life-image__detail.is-open {
  display: block;
}

.life-image__img {
  margin-bottom: 16px;
  width: 100%;
}

.life-image__name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.33;
}

.life-image__heading {
  font-size: 12px;
  padding-bottom: 16px;
  line-height: 1;
  border-bottom: 1px solid #555555;
}

.life-image__txt-content {
  margin-top: 16px;
}

.life-image__ttl {
  font-size: 18px;
  font-weight: 700;
}

.life-image__txt {
  margin-top: 8px;
}

.life-image__flow__detail {
  margin-top: 32px;
  color: #333;
}

.life-image__flow-detail-ttl {
  font-size: 18px;
  font-weight: 700;
  padding: 8px 16px;
  background-color: #FFFFFF;
  color: #FFAD73;
  border-radius: 4px;
}
.life-image__flow-detail-ttl span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .life-image__flow-detail-ttl span {
    display: block;
  }
}

.life-image__flow-detail-list {
  margin-top: 16px;
}

.life-image__flow-detail-item:not(:first-of-type) {
  margin-top: 16px;
}

.life-image__flow-detail-block-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 8px 4px;
  background-color: rgba(255, 255, 255, 0.3);
}

.life-image__flow-detail-time {
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
.life-image__flow-detail-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #FFAD73;
  border-radius: 50%;
  transform: translateY(-50%);
}

.life-image__flow-detail-action {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .life-image__flow-detail-action {
    padding-left: 36px;
  }
}

.life-image__flow-detail-block-txt {
  padding-left: 36px;
}

.life-image__txt-content--bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #555;
}
/*==============================
Salon詳細ページ
==============================*/
/*=========== 店舗詳細 =========*/
.shop {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .shop {
    margin-top: 40px;
  }
}

.shop__wrap {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .shop__wrap {
    display: block;
  }
}

/*スライダー*/
.shop__slider {
  width: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  .shop__slider {
    width: 100%;
  }
}

.shop__slider-main {
  overflow: hidden;
}

.shop__slider-main .shop__slider-item {
  width: 100%;
}

.shop__slider-main .shop__slider-item img {
  width: 100%;
  height: auto;
  display: block;
}

.shop__slider-thumb {
  margin-top: 8px;
  overflow: hidden;
}

.shop__slider-thumb .swiper-wrapper {
  align-items: stretch;
}

.shop__slider-thumb-item {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.shop__slider-thumb-item img {
  width: 100%;
  height: auto;
  display: block;
}

.shop__slider-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

/*=========== 店舗情報 ==========*/
.shop__info {
  width: calc(50% - 12px);
}
@media screen and (max-width: 768px) {
  .shop__info {
    margin-top: 24px;
    width: 100%;
  }
}

.shop-table {
  display: block;
  width: 100%;
}

.shop-table__body {
  display: block;
  width: 100%;
}

.shop-table__row {
  display: block;
  width: 100%;
}
.shop-table__row:not(:first-of-type) {
  margin-top: 16px;
}

.shop-table__head {
  font-weight: 700;
  padding: 4px;
  border-bottom: 1px solid #333;
  display: block;
  width: 100%;
}

.shop-table__data {
  margin-top: 4px;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  display: block;
}

/*=========== 店舗地図 ==========*/
.shop__map {
  margin-top: 24px;
  width: 100%;
  aspect-ratio: 1/0.563;
  position: relative;
}
.shop__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*=========== 働くママの日常 ==========*/
.life-image {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .life-image {
    margin-top: 40px;
    padding-bottom: 80px;
  }
}

/* .life-image__img {
  margin-top: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .life-image__img {
    aspect-ratio: 1/2.03;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
 */

/* =================== wp用コード ================== */
.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
		position: relative;
		z-index: 3;
		color: #FFAD73;;
	}
	
	.error-page__ttl{
      font-size: 40px;
      font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

  .wpcf7-spinner{
display: none!important;
}

.news-detail__content{
  margin-top: 32px;
}

/* ブロックエディタ側 */
.editor-styles-wrapper {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

/* フロント側 */
.post-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

/* 見出し */
.editor-styles-wrapper h2,
.post-content h2 {
	margin: 2em 0 1em;
	font-size: 28px;
	line-height: 1.4;
}

.editor-styles-wrapper h3,
.post-content h3 {
	margin: 1.8em 0 0.8em;
	font-size: 22px;
	line-height: 1.5;
}

/* 段落 */
.editor-styles-wrapper p,
.post-content p {
	margin: 0 0 1.5em;
}

/* リスト */
.editor-styles-wrapper ul,
.editor-styles-wrapper ol,
.post-content ul,
.post-content ol {
	margin: 0 0 1.5em;
	padding-left: 1.5em;
}

/* 画像 */
.editor-styles-wrapper img,
.post-content img {
	max-width: 100%;
	height: auto;
}

/* リンク */
.editor-styles-wrapper a,
.post-content a {
	text-decoration: underline;
}

/* ブロック共通の下余白 */
.editor-styles-wrapper .wp-block,
.post-content > * {
	margin-bottom: 1.5em;
}

.pageNation{
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-nation__item{
  list-style: none;
  font-size: 20px;
  font-family: "Jost", sans-serif;
}
.page-nation__num--current{
  opacity: 0.5;
}

.entry-form__thanks{
  text-align: center;
  margin-bottom: 50px;
}

/*0419追記*/
.life-image__content {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .life-image__content {
    flex-direction: column;
  }
}

.life-image__tabs {
  width: 300px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .life-image__tabs {
    width: 260px;
  }
}
@media screen and (max-width: 768px) {
  .life-image__tabs {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}

.life-image__tab {
  padding: 24px 30px 24px 24px;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .life-image__tab {
    width: 50%;
    padding: 16px;
  }
}
.life-image__tab.is-active {
  background-color: #FFAD73;
}
.life-image__tab.is-active .life-image__flow-ttl {
  color: #FFFFFF;
}
.life-image__tab::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .life-image__tab::after {
    display: none;
  }
}

.life-image__flow-ttl-large {
  font-size: 18px;
}

.life-image__flow-ttl-small {
  font-size: 12px;
  display: block;
}

.life-image__details {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1024px) {
  .life-image__details {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 768px) {
  .life-image__details {
    width: 100%;
  }
}

.life-image__detail {
  padding: 24px;
  background-color: #F8CEB3;
  display: none;
}
.life-image__detail.is-open {
  display: block;
}

.life-image__img {
  margin-bottom: 16px;
  width: 100%;
}

.life-image__name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.33;
}

.life-image__heading {
  font-size: 12px;
  padding-bottom: 16px;
  line-height: 1;
  border-bottom: 1px solid #555555;
}

.life-image__txt-content {
  margin-top: 16px;
}

.life-image__ttl {
  font-size: 18px;
  font-weight: 700;
}

.life-image__txt {
  margin-top: 8px;
}

.life-image__flow__detail {
  margin-top: 32px;
  color: #333;
}

.life-image__flow-detail-ttl {
  font-size: 18px;
  font-weight: 700;
  padding: 8px 16px;
  background-color: #FFFFFF;
  color: #FFAD73;
  border-radius: 4px;
}
.life-image__flow-detail-ttl span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .life-image__flow-detail-ttl span {
    display: block;
  }
}

.life-image__flow-detail-list {
  margin-top: 16px;
}

.life-image__flow-detail-item:not(:first-of-type) {
  margin-top: 16px;
}

.life-image__flow-detail-block-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 8px 4px;
  background-color: rgba(255, 255, 255, 0.3);
}

.life-image__flow-detail-time {
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
.life-image__flow-detail-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #FFAD73;
  border-radius: 50%;
  transform: translateY(-50%);
}

.life-image__flow-detail-action {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .life-image__flow-detail-action {
    padding-left: 36px;
  }
}

.life-image__flow-detail-block-txt {
  padding-left: 36px;
}

.life-image__txt-content--bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #555;
}