@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
}

ol,
ul {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

article > * + * {
  margin-top: 1rem;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* フォント変数
-------------------------------------------*/
/* base
-------------------------------------------*/
html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho Pro", serif;
  font-weight: 300;
  color: #595757;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* header
-------------------------------------------*/
.header {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  width: 100%;
  height: inherit;
}

.header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 110px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .header__head {
    height: 72px;
  }
}

.header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 100%;
}

.header__sns a:last-child {
  margin-left: 10px;
}

.header__twitter, .header__instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #595757;
}
.header__twitter:hover, .header__instagram:hover {
  color: #e3cfb6;
}

.hover-color {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #595757;
}
.hover-color:hover {
  color: #E3CFB6;
}

.header__logo {
  width: 128px;
  height: 128px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    z-index: 9999;
    width: 62px;
    height: 62px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}

.header__reservation {
  width: 250px;
}

.header-reservation__title {
  color: #595757;
  font-size: 20px;
  text-align: center;
}

.header-reservation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-reservation__link + .header-reservation__link {
  margin-left: 8px;
}

.header__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 110px);
}
.header__nav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  opacity: 0.5;
  background-color: #dac580;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__item {
  display: inline-block;
  height: 100%;
  text-align: center;
}

.header__item + .header__item {
  margin-left: 50px;
}

.header__link {
  position: relative;
  display: inline-block;
  height: 100%;
  padding-top: 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #595757;
  font-size: 16px;
  line-height: 1.5;
}
.header__link::after {
  position: absolute;
  bottom: 25px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #E3CFB6;
}
.header__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__link:hover {
  color: #E3CFB6;
}

.header__link span {
  display: block;
  font-size: 10px;
}

/* ハンバーガーメニュー
-------------------------------------------*/
.hamburger {
  position: fixed;
  z-index: 9999;
  top: 25px;
  left: 18px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-open {
  top: 16px;
  left: 20px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50px;
  background-color: #595757;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-open span:first-child {
  top: 15px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0;
  background-color: #ffffff;
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 15px;
  height: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0;
  background-color: #ffffff;
}

/* ドロワー
-------------------------------------------*/
.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding-top: 90px;
  padding-bottom: 35px;
  background-color: #E3CFB6;
}

.drawer-menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 30px;
}

.drawer-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.drawer-menu__link span {
  color: #ffffff;
  font-size: 10px;
}

.drawer-menu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 86px;
}

.drawer-menu__sns a:last-child {
  margin-left: 10px;
}

.drawer-menu__twitter, .drawer-menu__instagram {
  color: #ffffff;
}

/* footer
-------------------------------------------*/
.footer {
  background-color: #e3cfb6;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 75px;
  }
}

.footer__copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-top: 18px;
    padding-bottom: 18px;
    color: #fff;
    font-size: 14px;
  }
}

.footer .footer__cancellation-policy {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .footer__cancellation-policy {
    color: #fff;
    font-size: 12px;
  }
}

/* 共通パーツ
-------------------------------------------*/
.body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #efefef;
}

main {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 70px;
  }
}

.inner {
  width: 100%;
  max-width: 1165px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 背景
-------------------------------------------*/
.bg-gray {
  position: relative;
  background-color: #efefef;
}
.bg-gray::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #ffffff;
  -webkit-clip-path: polygon(122% 0, 0 17%, 0 0);
          clip-path: polygon(122% 0, 0 17%, 0 0);
}

/* タイトル
-------------------------------------------*/
.top-title {
  text-align: center;
  color: #595757;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top-title {
    font-size: 16px;
  }
}

.title {
  position: relative;
  padding-bottom: 35px;
  text-align: center;
  color: #595757;
  font-size: 30px;
  font-weight: 600;
}
.title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "応募情報";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #595757;
  font-size: 20px;
}

.subTitle {
  font-size: 20px;
  font-weight: 600;
  color: #595757;
}

/* ボタン
-------------------------------------------*/
.button-more {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 80px 8px 30px;
  border: 3px solid #595757;
}
@media screen and (max-width: 768px) {
  .button-more {
    padding: 3px 40px 3px 12px;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 11px;
  }
}
.button-more::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  content: "";
  -webkit-transition: border-color 0.5s;
  transition: border-color 0.5s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-width: 12px 0 12px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #595757;
}
@media screen and (max-width: 768px) {
  .button-more::after {
    right: 7px;
    width: 0;
    height: 0;
    border-width: 7px 0 7px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
  }
}
.button-more::before {
  position: absolute;
  right: 46px;
  width: 3px;
  height: 46px;
  content: "";
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background-color: #595757;
}
@media screen and (max-width: 768px) {
  .button-more::before {
    right: 24px;
    height: 26px;
    background-color: #ffffff;
  }
}

.btn-link {
  display: inline-block;
  padding: 8px 40px;
  background-color: #E3CFB6;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .btn-link {
    font-size: 12px;
  }
}

/* 求人・予約ボタン
-------------------------------------------*/
.link-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .link-button {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
}

.link-button__item {
  width: 100%;
  text-align: center;
  border-top: 1px solid #ffffff;
}

.link-button__link {
  display: block;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
}

.link-button__link--recruit {
  color: #ffffff;
  background-color: #e3cfb6;
}

.link-button__link--reservation {
  color: #595757;
  background-color: #efefef;
}

.link-button__link span {
  display: block;
  font-size: 13px;
}

/*===========================================================
# TOPページ
===========================================================*/
/* loading
-------------------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
          animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 2s 0.5s forwards;
          animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@-webkit-keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/* ファーストビュー
-------------------------------------------*/
.fv__inner {
  width: 100%;
  text-align: center;
  margin: auto;
  background-color: #FBD840;
}

.fv__video {
  width: 100%;
  display: block;
}

.fv__wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

#btn-sound {
  position: absolute;
  bottom: 3%;
  right: 3%;
  cursor: pointer;
}

#btn-sound__off,
#btn-sound__on {
  background: #fff;
  border-radius: 30px;
  padding: 6px;
  width: 30px;
  height: 30px;
}

/* gallery
-------------------------------------------*/
.gallery {
  padding-top: 42px;
}
@media screen and (max-width: 768px) {
  .gallery {
    padding-top: 16px;
  }
}

.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .gallery__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.gallery__head {
  width: 100%;
  margin-right: 22px;
  text-align: center;
  border: 4px solid #e3cfb6;
}
@media screen and (max-width: 768px) {
  .gallery__head {
    margin-right: 0;
    text-align: center;
    border: none;
  }
  .gallery__head img {
    display: none;
  }
}
.gallery__head img {
  width: 79%;
  margin: 0 auto;
}

.gallery__title {
  padding-top: 10px;
  padding-bottom: 11px;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .gallery__title {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
  }
}

.gallery__body {
  width: 75%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .gallery__body {
    width: 100%;
    margin: 0 auto;
    padding-top: 24px;
  }
}
@media screen and (max-width: 375px) {
  .gallery__body {
    width: 100%;
    margin: 0 auto;
    padding-top: 16px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev, .swiper-button-next {
  width: 25px;
  height: 25px;
  padding-left: 8px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  background-color: #dac580;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after, .swiper-button-next::after {
  width: 22px;
  height: 22px;
  margin: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(/assets/img/arrow-left-white.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(/assets/img/arrow-right-white.svg);
}

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

/* wrapper-box
-------------------------------------------*/
.wrapper-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .wrapper-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
    padding-bottom: 16px;
  }
}

.wrapper-box__head {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  width: 100%;
}
.wrapper-box__head:hover {
  cursor: pointer;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  content: "";
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 1;
  background-color: rgba(201, 188, 156, 0.55);
}

.bg-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  content: "";
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: none;
  background-color: transparent;
}

#ytplay {
  width: 100%;
  height: 100%;
}

#ytpause {
  width: 100%;
  height: 100%;
}

.is-hidden {
  display: none;
}

.is-active {
  display: block;
}

.iframe {
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.wrapper-box__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 405px;
          flex: 0 0 405px;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .wrapper-box__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .wrapper-box__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}

.wrapper-box__item + .wrapper-box__item {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .wrapper-box__item + .wrapper-box__item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-box__item + .wrapper-box__item {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper-box__item {
    margin-top: 10px;
  }
}

.wrapper-box__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 59px 68px;
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .wrapper-box__link {
    padding: 38px 68px;
  }
}
@media screen and (max-width: 375px) {
  .wrapper-box__link {
    font-size: 16px;
  }
}

.wrapper-box__link--contacts {
  background-image: url(/assets/img/contacts-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrapper-box__link--recruit {
  background-image: url(/assets/img/recruit-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wrapper-box__title {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 375px) {
  .wrapper-box__title {
    padding-left: 30px;
  }
}
.wrapper-box__title::before {
  position: absolute;
  top: 50%;
  left: -30%;
  width: 25px;
  height: 25px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/assets/img/contacts-icon.svg);
}
@media screen and (max-width: 768px) {
  .wrapper-box__title::before {
    width: 25px;
    height: 25px;
  }
}

.wrapper-box__title--contacts {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wrapper-box__title--contacts::before {
  background-image: url(/assets/img/contacts-icon.svg);
}

.wrapper-box__title--recruit::before {
  background-image: url(/assets/img/recruit-icon.svg);
  left: -48%;
}

/* top-information
-------------------------------------------*/
.top-information {
  background-color: #e3cfb6;
}

.top-information__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 25px 84px 25px;
}
@media screen and (max-width: 768px) {
  .top-information__inner {
    padding: 15px 15px 15px 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-information__title {
    color: #ffffff;
    font-size: 16px;
  }
}

.top-information__wrapper {
  margin-top: 30px;
  padding: 20px 60px 20px 35px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .top-information__wrapper {
    margin-top: 14px;
    padding: 10px;
  }
}

.top-information__items {
  padding: 20px 0;
}

.topInformation-item__link:hover .information-item__title {
  color: #E3CFB6;
}
.topInformation-item__link:hover .topInformation-item__date {
  color: #E3CFB6;
}

.top-information__item {
  border-bottom: dotted 4px;
}
@media screen and (max-width: 768px) {
  .top-information__item {
    border-bottom: dotted 2px;
  }
}

.top-information__item + .top-information__item {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .top-information__item + .top-information__item {
    margin-top: 0;
  }
}

.topInformation-item__date {
  display: inline-block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .topInformation-item__date {
    font-size: 10px;
  }
}

.topInformation-item__title {
  padding-top: 5px;
  padding-bottom: 12px;
  padding-left: 12px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .topInformation-item__title {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 4px;
    font-size: 10px;
  }
}

.top-information__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-information__button {
    margin-top: 15px;
  }
}

.button-more--information {
  margin-right: 15px;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .button-more--information {
    margin-right: 0;
  }
}
.button-more--information:hover {
  color: #E3CFB6;
  background-color: #595757;
}
.button-more--information:hover::before {
  background-color: #E3CFB6;
}
.button-more--information:hover::after {
  border-color: transparent transparent transparent #E3CFB6;
}

.top-information__btn {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-information__btn {
    text-align: center;
  }
}

/* shop
-------------------------------------------*/
.shop {
  background-color: #efefef;
}

.shop__inner.inner {
  padding-top: 45px;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .shop__inner.inner {
    padding-top: 42px;
    padding-right: 32px;
    padding-bottom: 26px;
    padding-left: 32px;
  }
}

.cards,
.shop__cards {
  display: grid;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 38px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px 25px;
}
@media screen and (max-width: 768px) {
  .cards,
  .shop__cards {
    padding-top: 14px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px 16px;
  }
}

.shop__card {
  display: inline-block;
  position: relative;
}
.shop__card:hover {
  opacity: 1;
  cursor: pointer;
}
.shop__card::after {
  position: absolute;
  bottom: -14%;
  left: 50%;
  width: 100%;
  content: "Raviy 渋谷本店";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #3e3a39;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .shop__card::after {
    font-size: 10px;
  }
}

.shop__card--02::after {
  content: "Raviy 新宿店";
}

.shop__card--03::after {
  content: "Raviy 新宿2号店";
}

.shop__card--04::after {
  content: "Raviy 大阪店";
}

.shop__card--05::after {
  content: "Raviy イオンモール成田店";
}

.shop__card--06::after {
  content: "Raviy 名古屋店";
}

.shop__card--07::after {
  content: "Raviy Eyelash 名古屋店";
}

.shop__card--08::after {
  content: "Raviy Eyelash 渋谷店";
}

.shop__card--09::after {
  content: "Raviy 福岡店";
}

.shop__card--10::after {
  content: "Raviy Eyelash 福岡店";
}

.card__img {
  width: 100%;
  height: 100%;
}

.card__img img {
  width: 100%;
  height: 100%;
}

.shop__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(201, 188, 156, 0.7);
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
}
.shop__link:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .shop__link {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.shop-access__text {
  color: #595757;
  font-size: 11.5px;
}
@media screen and (max-width: 768px) {
  .shop-access__text {
    font-size: 10px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.button-more.shop-access__button {
  margin-top: 16px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .button-more.shop-access__button {
    margin-top: 10px;
    font-size: 10px;
    color: #595757;
  }
  .button-more.shop-access__button::before {
    background-color: #595757;
    height: 27px;
  }
  .button-more.shop-access__button::after {
    border-color: transparent transparent transparent #595757;
  }
}

.button-more--shop {
  padding: 4px 44px 4px 8px;
  border: 2px solid #595757;
}
.button-more--shop::after {
  right: 10px;
  width: 0;
  height: 0;
  border-width: 8px 0 8px 8px;
}
.button-more--shop::before {
  right: 30px;
  width: 2px;
  height: 29px;
}

/* produce
-------------------------------------------*/
.produce {
  background-color: #efefef;
}

.produce__inner {
  padding-top: 45px;
  padding-bottom: 130px;
}

.produce__card {
  max-width: 205px;
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .produce__card {
    max-width: 165px;
  }
}
@media screen and (max-width: 375px) {
  .produce__card {
    max-width: 147px;
  }
}
.produce__card p {
  text-align: center;
}

.produce__card img {
  -o-object-fit: cover;
     object-fit: cover;
}

/*===========================================================
# recruit-entry
===========================================================*/
.recruit-entry__inner {
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 75px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .recruit-entry__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.recruit-entry__title {
  position: relative;
  padding-bottom: 35px;
  text-align: center;
  color: #595757;
  font-size: 30px;
  font-weight: 600;
}
.recruit-entry__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "応募情報";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #595757;
  font-size: 20px;
}

.recruit-entry__form {
  position: relative;
  padding-top: 64px;
}

.recruit-entry__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px 14px 35px;
  background-image: linear-gradient(to right, #595757, #595757 2px, transparent 2px, transparent 8px);
  /* 幅2の線を作る */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-size: 10px 2px;
  /* グラデーションの幅・高さを指定 */
}
@media screen and (max-width: 768px) {
  .recruit-entry__item {
    display: block;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.recruit-entry__item:last-child {
  background-image: none;
}

.recruit-entry__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #595757;
  font-size: 16px;
  line-height: 1.3;
}

.recruit-entry__label--require {
  color: #f12731;
  font-size: 14px;
}

.recruit-entry__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .recruit-entry__input {
    margin-top: 5px;
    margin-left: 0;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=email] {
  width: 100%;
  padding: 2px 10px;
  border: 2px solid #c8c8c8;
  background-color: #ffffff;
  font-size: 16px;
}

textarea {
  width: 100%;
  min-height: 362px;
  padding: 2px 10px;
  resize: none;
  border: 2px solid #c8c8c8;
  background-color: #ffffff;
  font-size: 16px;
}

.recruit-entry__select--birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

select {
  width: 100%;
  height: 32px;
  padding-left: 10px;
  color: #595757;
  border: 2px solid #c8c8c8;
  background-color: #ffffff;
  font-size: 16px;
}

.select__item {
  position: relative;
  display: inline-block;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .select__item {
    width: 40%;
  }
}
.select__item::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 0;
  height: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  border-width: 13px 8px 0 8px;
  border-style: solid;
  border-color: #e3cfbf transparent transparent transparent;
}

.select__item + .select__item {
  width: 17%;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .select__item + .select__item {
    width: 25%;
  }
}

.recruit-entry__input--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 2.5;
}

.recruit-entry__radio + .recruit-entry__radio {
  margin-left: 56px;
}

.recruit-entry__radioLabel {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
.recruit-entry__radioLabel::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #727171;
}
.recruit-entry__radioLabel::after {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 12px;
  height: 12px;
  content: "";
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #dac580;
}

.recruit-entry__input--radio .recruit-entry__radio input:checked + .recruit-entry__radioLabel::after {
  opacity: 1;
}

.select__item--middle {
  width: 45%;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .select__item--middle {
    width: 70%;
    margin-top: 5px;
    margin-left: 0;
  }
}

.recruit-entry__input--checkbox {
  line-height: 2.5;
}

.recruit-entry__checkboxLabel {
  position: relative;
  display: inline-block;
  padding-left: 40px;
}
.recruit-entry__checkboxLabel::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #727171;
}
.recruit-entry__checkboxLabel::after {
  position: absolute;
  top: 10px;
  left: 11px;
  width: 9px;
  height: 18px;
  content: "";
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
  opacity: 0;
  border-right: 3px solid #dac580;
  border-bottom: 3px solid #dac580;
}

.recruit-entry__input--checkbox input:checked + .recruit-entry__checkboxLabel::after {
  opacity: 1;
}

.recruit-entry__item--textarea {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  padding-top: 24px;
}

.form-button--recruit {
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

.form-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 308px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10px;
  background-color: #E3CFB6;
}
.form-button:hover {
  background-color: #727171;
  cursor: pointer;
}
.form-button:hover .form-button__submit {
  color: #E3CFB6;
}

.form-button__submit {
  display: inline-block;
  width: 100%;
  padding: 10px;
  color: #595757;
}

/* 住所入力欄
-------------------------------------------*/
.address__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px 14px 35px;
}
@media screen and (max-width: 768px) {
  .address__item {
    display: block;
    padding-right: 15px;
    padding-left: 15px;
  }
  .address__item:not(:first-child) {
    padding-top: 0;
  }
}

.address__item:nth-child(n+3) {
  background-image: linear-gradient(to right, #595757, #595757 2px, transparent 2px, transparent 8px);
  /* 幅2の線を作る */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-size: 10px 2px;
  /* グラデーションの幅・高さを指定 */
}

.address__input--post {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100px;
          flex: 0 1 100px;
}
@media screen and (max-width: 768px) {
  .address__input--post {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .address__input--region,
  .recruit-entry__input--locality {
    width: 100%;
  }
}

/* 確認画面
-------------------------------------------*/
#formWrap h3 {
  text-align: center;
  font-size: 30px;
}

#formWrap p {
  margin-top: 1rem;
}

#formWrap form {
  margin-top: 1rem;
}

table.formTable td, table.formTable th {
  border: none;
}

.formTable tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#formWrap table.formTable td, #formWrap table.formTable th {
  width: 100%;
  border: none;
}

#formWrap table.formTable td {
  background-color: #ffffff;
}

/*===========================================================
# about
===========================================================*/
.about::before {
  -webkit-clip-path: polygon(112% 0, 0 14%, 0 0);
          clip-path: polygon(112% 0, 0 14%, 0 0);
}

.about__inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
  text-align: center;
}

.about__title {
  padding-bottom: 75px;
}
.about__title::after {
  content: "メッセージ";
}

.about__wrapper {
  padding-top: 195px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
}

.about__head {
  max-width: 715px;
  width: 100%;
  margin: 0 auto;
}

.about__subTitle {
  font-size: 20px;
  font-weight: 600;
  color: #595757;
}

.about__items {
  margin-top: 18px;
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .about__item {
    display: block;
  }
}

.about__item:not(:last-child) {
  background-image: linear-gradient(to right, #595757, #595757 2px, transparent 2px, transparent 8px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 10px 2px;
}

.about-item__head {
  padding-left: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  font-size: 17px;
  color: #595757;
}
@media screen and (max-width: 768px) {
  .about-item__head {
    padding-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
}

.about-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  padding-left: 50px;
  font-size: 17px;
  color: #595757;
}
@media screen and (max-width: 768px) {
  .about-item__body {
    padding-left: 0;
    text-align: left;
  }
}

.about__body {
  max-width: 880px;
  margin-top: 72px;
  width: 100%;
}

.about__lists {
  padding-top: 15px;
  margin-left: 162px;
}
@media screen and (max-width: 768px) {
  .about__lists {
    margin-left: auto;
  }
}

.about__list {
  text-align: left;
}

.about-list__date {
  font-size: 20px;
  color: #e3cfb6;
}

.about-list__text {
  margin-left: 40px;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-left: 42px;
  font-size: 17px;
  color: #595757;
  position: relative;
}
.about-list__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #e3cfb6, #e3cfb6 2px, transparent 2px, transparent 8px);
  background-repeat: repeat-y;
  background-position: left top;
  background-size: 2px 10px;
}

.linear-gradient-none::before {
  background-image: none;
}

/*===========================================================
# reservation
===========================================================*/
.reservation::before {
  -webkit-clip-path: polygon(123% 0, 0 26%, 0 0);
          clip-path: polygon(123% 0, 0 26%, 0 0);
}

.reservation__inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}

.reservation__title::after {
  white-space: pre;
  content: "予　約";
}

.reservation__wrapper {
  position: relative;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .reservation__wrapper {
    padding-bottom: 25px;
  }
}

.application__title {
  font-size: 16px;
  color: #595757;
}

.application__lists {
  margin-top: 35px;
}

.application__descroption {
  font-size: 16px;
  color: #595757;
}

.application__list + .application__list {
  margin-top: 15px;
}

.application__head {
  font-size: 16px;
  color: #595757;
}

.application__body {
  font-size: 16px;
  color: #595757;
}

.reservation__button {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .reservation__button {
    margin-top: 50px;
  }
}

.reservation__link {
  width: 225px;
  height: 70px;
}

.reservation__link + .reservation__link {
  margin-left: 82px;
}
@media screen and (max-width: 768px) {
  .reservation__link + .reservation__link {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .paddingLeft {
    display: block;
    padding-left: 20%;
  }
}

/* サンクスページ
-------------------------------------------*/
.thanks {
  width: 100%;
  padding-bottom: 20px;
}
.thanks::before {
  -webkit-clip-path: polygon(122% 0, 0 53%, 0 0);
          clip-path: polygon(122% 0, 0 53%, 0 0);
}

.thanks .thanks__inner {
  padding-top: 0;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .thanks .thanks__inner {
    padding-top: 60px;
  }
}

.thanks__title {
  position: relative;
  font-family: "Dancing Script", cursive;
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
.thanks__title::after {
  content: "";
}

.thanks-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 60px 0;
  border-radius: 4px;
  background-color: #ffffff;
  -webkit-box-shadow: -5px -5px 10px 0 rgba(255, 255, 255, 0.5), 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: -5px -5px 10px 0 rgba(255, 255, 255, 0.5), 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .thanks-wrapper {
    padding: 60px 30px;
  }
}

.thanks-wrapper__text {
  margin-top: 10px;
}

.form-button a {
  width: 100%;
}

/*===========================================================
# recruit
===========================================================*/
.recruit::before {
  -webkit-clip-path: polygon(108% 0, 0 15%, 0 0);
          clip-path: polygon(108% 0, 0 15%, 0 0);
}

.recruit__inner {
  padding-top: 60px;
  max-width: 1115px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .recruit__inner {
    line-height: 1.5;
  }
}

.recruit__title::after {
  content: "";
}

.recruit__wrapper {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
}

.recruit__head {
  margin-top: 35px;
}

.recruit-wrapper__title {
  padding-bottom: 5px;
  border-bottom: 2px solid #333;
}

.recruit-wrapper__message {
  padding-top: 15px;
  font-size: 18px;
}

.recruit__body {
  margin-top: 50px;
}

.recruit-subTitle {
  padding-bottom: 5px;
}

.recruit-subTitle:not(:first-child) {
  padding-top: 20px;
}

.recruit-body__wrapper:nth-of-type(2) {
  margin-top: 25px;
}

.recruit-body__wrapper:nth-of-type(3),
.recruit-body__wrapper:nth-of-type(4) {
  margin-top: 55px;
}

.recruit-body__wrapper:nth-of-type(5) {
  margin-top: 40px;
}

.recruit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: linear-gradient(to right, #595757, #595757 2px, transparent 2px, transparent 8px);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 10px 2px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .recruit__item {
    display: block;
  }
}

.recruit-item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 175px;
          flex: 0 0 175px;
  position: relative;
}

.recruit-item dt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .recruit-item dt {
    font-size: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 768px) {
  .recruit-item dt::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 12px;
    height: 12px;
    background-color: #e3cfb6;
  }
}

.recruit-item__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 768px) {
  .recruit-item__body {
    margin-top: 10px;
  }
}

.recruit-item dd {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .recruit-item dd {
    font-size: 16px;
  }
}

.recruit-item--salary .recruit-item__body dd:first-child {
  margin-bottom: 35px;
}

.recruit-item__body a {
  color: #e3cfb6;
  text-decoration: underline;
}

.recruit-item--test .recruit-item__body dd:first-child {
  margin-bottom: 35px;
}

.entry-fixed {
  display: inline-block;
  text-align: center;
  position: fixed;
  top: 230px;
  right: 0;
  z-index: 9997;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(/assets/img/recruit-bg.jpg);
}
@media screen and (max-width: 768px) {
  .entry-fixed {
    top: 70px;
  }
}

.entry-fixed span {
  font-size: 10px;
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
}

.entry-fixed__btn {
  padding: 10px 45px 5px;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .entry-fixed__btn {
    padding: 6px 20px 2px;
    font-size: 16px;
  }
}

/*===========================================================
# information
===========================================================*/
.information {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .information {
    margin-top: 60px;
  }
}

.information.bg-gray::before {
  -webkit-clip-path: polygon(115% 0, 0 40%, 0 0);
          clip-path: polygon(115% 0, 0 40%, 0 0);
}

.information__title::after {
  content: "";
}

.information-wrapper {
  position: relative;
}

.pagination-container .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.first,
.last {
  display: none;
}

.pagination li a {
  font-size: clamp(10px, 2.6vw, 16px);
  font-weight: 600;
  padding: 0.7em 1em;
  display: block;
  background-color: #fff;
  border: 1px solid #e3cfb6;
}

.pagination-container .navi-active a {
  background-color: #e3cfb6;
  color: #fff;
}

.pagination a:hover {
  background-color: #e3cfb6;
  opacity: 1;
}

.pagination .navi-active a:hover {
  cursor: default;
  opacity: 1;
}

.hidden {
  display: none;
}

/* キャンセルポリシー
-------------------------------------------*/
/*===========================================================
# キャンセルポリシー
===========================================================*/
.information__inner {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .information__inner {
    padding-bottom: 50px;
  }
}

.information-wrapper {
  padding-top: 60px;
}

.information-items {
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .information-items {
    padding-left: 0;
    padding-right: 0;
  }
}

.information-item:not(:first-child) {
  margin-top: 30px;
}

.information-item h4,
.information-item p {
  line-height: 1.8;
}

.information-btn {
  text-align: center;
}

.information-btn__link {
  padding-top: 12px;
  padding-bottom: 12px;
}
