@charset "UTF-8";
/* mixin
================================================================== */
.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3-2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-3-2 .col-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .grid-3-2 .col-item:nth-of-type(2) {
    grid-area: 1/3/2/5;
  }
  .grid-3-2 .col-item:nth-of-type(3) {
    grid-area: 2/2/3/4;
  }
}
@media (max-width: 767px) {
  .grid-3-2 {
    display: block;
  }
  .grid-3-2 .col-item:not(:first-of-type) {
    margin-top: 20px;
  }
}

/* base
================================================================== */
:root {
  --black: #3c2a21;
  --white: #fff;
  --main: #dd5353;
  --accent: #fad94f;
  --base: #f0ebde;
  --l-base: #f9f5eb;
  --ll-base: #fffdf7;
  --header-h: 80px;
  --br-l: 100px;
  --br-m: 20px;
  --br-s: 12px;
  --mg-80: 80px;
  --mg-60: 60px;
  --mg-50: 50px;
  --mg-40: 40px;
  --mg-30: 30px;
  --fs-32: 3.2rem;
  --fs-28: 2.8rem;
  --fs-26: 2.6rem;
  --fs-24: 2.4rem;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --b-shadow: 0 3px 6px rgb(0, 0, 0 / 0.1);
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 60px;
    --br-m: 16px;
    --fs-32: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --br-m: 16px;
    --br-s: 8px;
    --mg-80: 60px;
    --mg-60: 50px;
    --mg-50: 40px;
    --mg-40: 30px;
    --mg-30: 20px;
    --fs-32: 2.6rem;
    --fs-28: 2.4rem;
    --fs-26: 2.4rem;
    --fs-24: 2.1rem;
    --fs-22: 1.9rem;
    --fs-20: 1.8rem;
    --fs-18: 1.6rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  color: #3c2a21;
  background-color: #fff;
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

@media only screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

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

.text-right {
  text-align: right;
}

.text-tate {
  writing-mode: vertical-rl;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 768px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-768 {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .d-sp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner, .inner-np, .inner-13, .inner-12, .inner-11 {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1000px + 12%);
  padding: 100px 6%;
  width: 100%;
}
.inner-11 {
  max-width: calc(1100px + 12%);
}
.inner-12 {
  max-width: calc(1200px + 12%);
}
.inner-13 {
  max-width: calc(1300px + 12%);
}
.inner-np {
  padding: 0 6%;
}
@media (max-width: 767px) {
  .inner, .inner-np, .inner-13, .inner-12, .inner-11 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner, .inner-np, .inner-13, .inner-12, .inner-11 {
    padding: 50px 6%;
  }
}

.flex-basic {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-flexend {
  display: flex;
  justify-content: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

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

.flex-h-center {
  display: flex;
  justify-content: center;
}

.flex-v-center {
  display: flex;
  align-items: center;
}

/* animation
--------------------------------------------------------------- */
/* parts
================================================================== */
.sec-ttl {
  position: relative;
  z-index: 0;
  margin-bottom: var(--mg-60);
}
.sec-ttl-en {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  display: block;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--main);
}
@media (max-width: 767px) {
  .sec-ttl-en {
    font-size: 4rem;
  }
}
.sec-ttl-jp {
  position: relative;
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.sec-ttl-01::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -50px;
  width: 120px;
  aspect-ratio: 1;
  background: var(--l-base);
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
@media (max-width: 767px) {
  .sec-ttl-01::before {
    width: 80px;
    top: -20px;
    left: -30px;
  }
}
.sec-ttl-02 {
  padding-bottom: 34px;
}
@media (max-width: 767px) {
  .sec-ttl-02 {
    padding-bottom: 28px;
  }
}
.sec-ttl-02::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  aspect-ratio: 62/12;
  background-image: url(../img/dot.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 767px) {
  .sec-ttl-02::before {
    width: 50px;
  }
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: var(--fs-18);
  line-height: 1.2;
  padding: 1.2em 1em;
  width: 100%;
  border-radius: var(--br-l);
  background-color: #fff;
  border: 2.5px solid #dd5353;
  color: #dd5353;
}
.btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #dd5353;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid #dd5353;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.btn:hover::after {
  right: 1em;
  border-color: #fff;
}
.btn-entry .btn {
  display: flex;
  width: 180px;
  height: 60px;
  color: #fff;
  border: 2px solid #dd5353;
  background-color: #dd5353;
  font-size: 1.6rem;
}
.btn-entry .btn::after {
  display: none;
}
.btn-entry .btn:hover {
  background: #fff;
  color: #dd5353;
}

.bg-dot {
  background-color: var(--base);
  background-image: radial-gradient(circle, #f5f3eb 5px, transparent 5px), radial-gradient(circle, #f5f3eb 5px, transparent 5px);
  background-position: 0 0, 25px 26px;
  background-size: 50px 52px;
}

.slide-pagination-wrapper {
  /* ページネーション、前へ・次へボタンを横並びにする */
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--mg-40);
}

.swiper-pagination {
  /* デフォルトのabsoluteからstaticへ変更 */
  position: static !important;
  /* bulletsの中にあるbulletの位置を縦中央揃え */
  /* pagenation-bulletの数によって、bulletを包むbulletsの幅が伸縮するようにする */
}
.swiper-pagination-bullets {
  display: flex;
  align-items: center;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 5px !important;
  background-color: #fff;
  border: 2px solid #dd5353;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #dd5353;
}
.swiper-pagination.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: auto !important;
}

.swiper-button {
  /* 反転 */
}
.swiper-button-prev, .swiper-button-next {
  /* スライドの前へ・次へボタンの位置をabsoluteからstaticへ変更 */
  position: static !important;
  margin-top: initial !important;
  /* 通常の前へ・次へボタンの画像を非表示に変更 */
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-button-prev .swiper-arrow, .swiper-button-next .swiper-arrow {
  position: relative;
  width: 30px;
  aspect-ratio: 1;
  background-color: #dd5353;
  border: 2px solid #dd5353;
  border-radius: 100px;
  transition: 0.3s ease;
}
.swiper-button-prev .swiper-arrow::before, .swiper-button-next .swiper-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 25%;
  width: 0.5em;
  height: 0.5em;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s ease;
}
.swiper-button-prev .swiper-arrow:hover, .swiper-button-next .swiper-arrow:hover {
  background-color: #fff;
}
.swiper-button-prev .swiper-arrow:hover::before, .swiper-button-next .swiper-arrow:hover::before {
  border-color: #dd5353;
}
.swiper-button-prev .swiper-arrow {
  transform: scale(-1, 1);
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 20px 30px;
}
@media (max-width: 1024px) {
  .header {
    padding: 10px 15px;
  }
}
.header.change-color {
  background-color: var(--ll-base);
  transition: 0.3s ease-in;
}
.header-logo img {
  width: auto;
  height: 60px;
}
@media (max-width: 1024px) {
  .header-logo img {
    height: 40px;
  }
}
.header-menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2em;
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
  }
}
.header-menu-list {
  gap: 0 1.5em;
  font-weight: 600;
}
.header-menu-list a {
  padding: 0.8em 0;
}
.header-menu-list a:hover {
  opacity: 1;
  color: var(--main);
}

.header-menu .header-menu-list a {
  position: relative;
}
.header-menu .header-menu-list a::after {
  /*マークのスタイル*/
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--main);
  border-radius: 50%;
  bottom: -0.3em;
  left: calc(50% - 5px);
  /*不透明度0で非表示*/
  opacity: 0;
  /*下方向へ50%移動*/
  transform: translateY(50%);
  /*アニメーションの速度設定*/
  transition: all 0.3s ease;
}
.header-menu .header-menu-list a:hover::after {
  /*不透明度1で表示*/
  opacity: 1;
  /*0位置に移動*/
  transform: translateY(0);
}

/* burger animation */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 8px;
  right: 15px;
  width: calc(var(--header-h) * 0.7);
  height: calc(var(--header-h) * 0.7);
  cursor: pointer;
  z-index: 9999;
  background-color: #dd5353;
  border-radius: 100px;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s ease;
}
.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  text-align: center;
  background-color: var(--l-base);
  padding: 80px 2em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 599px) {
  .burger-nav {
    width: 80vw;
    right: -100vw;
    padding: 80px 1.5em 0;
  }
}
.burger-nav.js-active {
  right: 0;
}
.burger-nav .btn {
  margin-top: 15px;
  font-size: 1.7rem;
  color: var(--white);
  background: var(--main);
}
@media (max-width: 767px) {
  .burger-nav .btn {
    font-size: 1.6rem;
  }
}
.burger-nav .btn::after {
  border-color: var(--white);
  right: 1.3em;
}
.burger-nav .btn:last-of-type {
  color: var(--black);
  background: var(--accent);
  border: unset;
}
.burger-nav .btn:last-of-type::after {
  border-color: var(--black);
}
.burger-nav .btn:hover::after {
  right: 1em;
}
.burger-nav ul li a {
  display: block;
  padding: 1em;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #bebebe;
}
.burger-nav ul li a span {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  display: block;
  color: #dd5353;
  font-size: 1.4rem;
  padding-bottom: 0.4em;
}
.burger-nav ul li a:hover {
  opacity: 1;
}

.burger-mask {
  z-index: 90;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  padding-top: var(--header-h);
  background: var(--ll-base);
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.mv-inn {
  position: relative;
  z-index: 1;
  width: min(1400px, 94%);
  aspect-ratio: 1400/680;
  margin: 0 3% 40px;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .mv-inn {
    width: 92%;
    aspect-ratio: 708/1070;
    margin: 0 4% 40px;
  }
}
.mv-img {
  content: "";
  display: block;
  position: absolute;
  border-radius: var(--br-m);
  overflow: hidden;
}
.mv-img:nth-of-type(1) {
  bottom: 0;
  right: 0;
  width: 35.7142857143%;
}
@media (max-width: 767px) {
  .mv-img:nth-of-type(1) {
    top: 10px;
    bottom: unset;
    width: 70.6214689266%;
  }
}
.mv-img:nth-of-type(2) {
  top: 0;
  left: 24.2857142857%;
  width: 21.4285714286%;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .mv-img:nth-of-type(2) {
    top: unset;
    bottom: 3.3333333333%;
    left: unset;
    right: 0;
    width: 42.3728813559%;
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
}
.mv-img:nth-of-type(3) {
  top: 32.3529411765%;
  right: 40%;
  width: 21.4285714286%;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media (max-width: 767px) {
  .mv-img:nth-of-type(3) {
    top: unset;
    bottom: 26.6666666667%;
    right: 14.1242937853%;
    width: 32.4858757062%;
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}
.mv-img:nth-of-type(4) {
  bottom: 5.8823529412%;
  left: 0;
  width: 27.1428571429%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@media (max-width: 767px) {
  .mv-img:nth-of-type(4) {
    top: unset;
    bottom: 12.2222222222%;
    width: 48.0225988701%;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
.mv-text {
  content: "";
  display: block;
  position: absolute;
  bottom: 44.1176470588%;
  left: 4.2857142857%;
  width: 36.7142857143%;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@media (max-width: 767px) {
  .mv-text {
    bottom: 42.2222222222%;
    left: 2.8248587571%;
    width: 72.5988700565%;
  }
}
@media (max-width: 599px) {
  .mv-text {
    bottom: 41.1111111111%;
    width: 85%;
  }
}
.mv-text:last-of-type {
  bottom: 16.1764705882%;
  left: unset;
  right: 40%;
  width: 23.8571428571%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@media (max-width: 767px) {
  .mv-text:last-of-type {
    bottom: 0;
    left: 0;
    right: unset;
    width: 48.0225988701%;
  }
}

.mv-bg {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv-bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: calc(50vw + 260px);
  max-width: 75%;
  height: 37.5%;
  background: var(--white);
}
@media (max-width: 767px) {
  .mv-bg::before {
    max-width: unset;
    width: 80%;
    height: 55.5555555556%;
  }
}
.mv-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 37.5%;
  left: -10vw;
  width: calc(60vw + 260px);
  max-width: calc(75% + 10vw);
  height: 37.5%;
  background: var(--white);
  -webkit-clip-path: ellipse(50% 100% at 50% 100%);
          clip-path: ellipse(50% 100% at 50% 100%);
}
@media (max-width: 767px) {
  .mv-bg::after {
    max-width: unset;
    width: calc(80% + 10vw);
    height: 22.2222222222%;
    bottom: 55.5555555556%;
  }
}

/* message
---------------------------------------------------------------- */
#message {
  position: relative;
  z-index: 0;
  width: 100%;
  background: var(--ll-base);
}
#message::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
#message::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc(50vw + 260px);
  max-width: 75%;
  height: 100%;
  background: var(--white);
}
@media (max-width: 767px) {
  #message::after {
    max-width: unset;
    width: 80%;
  }
}

.mes-wrap {
  gap: 30px 40px;
}
@media (max-width: 767px) {
  .mes-wrap {
    flex-direction: column;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 500px;
  }
}
.mes-left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .mes-left {
    width: 100%;
    flex-basis: 50%;
  }
}
.mes-left .sec-ttl {
  margin-bottom: var(--mg-40);
}
.mes-text {
  font-size: var(--fs-18);
}
@media (max-width: 1024px) {
  .mes-text {
    font-size: 1.6rem;
  }
}
.mes-text p + p {
  margin-top: 1em;
}
@media (max-width: 1024px) {
  .mes-text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .mes-text br {
    display: block;
  }
}
@media (max-width: 599px) {
  .mes-text br {
    display: none;
  }
}
.mes-img {
  flex-basis: 50%;
  margin-top: 10px;
}
.mes-img img {
  border-radius: var(--br-m);
}
@media (max-width: 767px) {
  .mes-img img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* about us
---------------------------------------------------------------- */
.about-sec-ttl {
  position: relative;
}
.about-sec-ttl .about-deco {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  right: 20px;
  width: min(220px, 20vw);
  aspect-ratio: 220/120;
}
@media (max-width: 767px) {
  .about-sec-ttl .about-deco {
    bottom: -80px;
    right: -3%;
    width: max(25vw, 140px);
  }
}
@media (max-width: 767px) {
  .about-sec-ttl .sec-ttl {
    margin-bottom: 100px;
  }
}

.swiper-about-wrap {
  position: relative;
}
.swiper-about-wrap .swiper {
  overflow: unset;
}

.about-item {
  position: relative;
  background: var(--white);
  border-radius: var(--br-m);
  text-align: center;
  padding: 30px;
}
@media (max-width: 1024px) {
  .about-item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .about-item {
    padding: 1.5em;
  }
}
.about-num {
  content: "";
  display: block;
  position: absolute;
  top: -0.4em;
  left: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main);
}
@media (max-width: 767px) {
  .about-num {
    font-size: 6rem;
    left: 20px;
  }
}
.about-img img {
  width: 250px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .about-img img {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .about-img img {
    width: 150px;
    margin-top: 0;
  }
}
.about-ttl {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .about-ttl {
    margin: 15px 0;
  }
}
.about-text {
  text-align: justify;
}
.about-btn {
  line-height: 1.5;
  padding: 0.6em 1em;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .about-btn {
    font-size: 1.6rem;
    padding-right: 1.8em;
  }
}
@media (max-width: 767px) {
  .about-btn {
    font-size: 1.4rem;
    margin-top: 18px;
  }
}
.about-btn::after {
  transform: rotate(135deg);
  right: 1.3em;
}
.about-btn:hover::after {
  right: 1.3em;
  top: 10px;
}

.swiper-about.-non-slider .swiper-wrapper {
  transform: inherit !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.swiper-about.-non-slider .swiper-slide {
  width: inherit !important;
}
.swiper-about.-non-slider .swiper-slide-duplicate {
  display: none;
}

.swiper-about-wrap .slide-pagination-wrapper {
  display: none;
}
@media (max-width: 1024px) {
  .swiper-about-wrap .slide-pagination-wrapper {
    display: flex;
  }
}

/* about job
---------------------------------------------------------------- */
#job {
  background: var(--ll-base);
}
#job .sec-ttl {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  #job .sec-ttl {
    margin-bottom: 70px;
  }
}

.job-wrap {
  position: relative;
  background: var(--l-base);
  border-radius: var(--br-m);
  padding: 50px;
  padding-top: 100px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .job-wrap {
    padding: 100px 30px 30px;
  }
}
@media (max-width: 767px) {
  .job-wrap {
    padding: 4.5em 1.5em 2em;
  }
}
.job-ttl-01 {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1;
  width: 380px;
  max-width: 90%;
  color: #fff;
  background: #dd5353;
  border-radius: var(--br-l);
  padding: 0.8em 1.5em 0.9em;
}
@media (max-width: 767px) {
  .job-ttl-01 {
    font-size: 2.2rem;
    padding: 0.7em 0.5em 0.8em;
    width: 260px;
  }
}
.job-ttl-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  aspect-ratio: 36/20;
  background: #dd5353;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .job-ttl-01::after {
    width: 26px;
    bottom: -14px;
  }
}
.job-content {
  gap: 40px;
}
@media (max-width: 1024px) {
  .job-content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .job-content {
    flex-direction: column;
  }
}
.job-img {
  flex-basis: 50%;
}
.job-img img {
  border-radius: var(--br-s);
}
.job-right {
  flex-basis: 50%;
}
.job-ttl-02 {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1;
  padding: 0.1em 0 0.25em 0.8em;
  margin-bottom: 20px;
  border-left: 6px solid var(--main);
}
.job-text p {
  text-align: justify;
}
.job-text p + p {
  margin-top: 0.8em;
}
.job-text span {
  color: var(--main);
}
.job-point {
  position: relative;
  margin-top: var(--mg-50);
  background: var(--white);
  border-radius: var(--br-s);
  padding: 50px 40px;
  margin-bottom: var(--mg-40);
}
@media (max-width: 1024px) {
  .job-point {
    padding: 50px 30px 30px;
  }
}
@media (max-width: 767px) {
  .job-point {
    padding: 2.8em 1.2em 1.5em;
  }
}
.job-point-ttl {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  width: 250px;
}
@media (max-width: 767px) {
  .job-point-ttl {
    width: 200px;
    top: -15px;
    left: 1.2em;
  }
}
.job-point ul li {
  position: relative;
  padding-left: 2em;
  font-size: var(--fs-18);
}
@media (max-width: 599px) {
  .job-point ul li {
    font-size: 1.5rem;
  }
}
.job-point ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.4em;
  aspect-ratio: 1;
  background: url("../img/job/icon_01.svg") center no-repeat;
  background-size: 100%;
}
@media (max-width: 767px) {
  .job-point ul li::before {
    top: 0.4em;
    width: 1.2em;
  }
}
.job-point ul li + li {
  margin-top: 0.8em;
}
.job-btn {
  width: min(360px, 100%);
}
@media (max-width: 599px) {
  .job-btn {
    font-size: 1.5rem;
  }
}

.job-wrap:nth-of-type(2) .job-ttl-01,
.job-wrap:nth-of-type(2) .job-ttl-01::after {
  background: var(--accent);
  color: var(--black);
}
.job-wrap:nth-of-type(2) .job-ttl-02 {
  border-color: var(--accent);
}
.job-wrap:nth-of-type(2) .job-point ul li::before {
  background: url("../img/job/icon_02.svg") center no-repeat;
  background-size: 100%;
}

.job-bnr {
  display: block;
  position: relative;
  z-index: 1;
}
.job-bnr .job-ttl-01,
.job-bnr .job-ttl-01::after {
  z-index: 1;
  background: #533a2e;
}
.job-bnr-img {
  transition: 0.3s ease;
  width: 100%;
  border-radius: var(--br-m);
  overflow: hidden;
}
.job-bnr-img:last-of-type {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.job-bnr:hover {
  opacity: 1;
}
.job-bnr:hover .job-bnr-img:first-of-type {
  opacity: 0;
}
.job-bnr:hover .job-bnr-img:last-of-type {
  opacity: 1;
}
@media (max-width: 599px) {
  .job-bnr .job-ttl-01 {
    top: -36px;
  }
}

/* staff voice
---------------------------------------------------------------- */
#voice .sec-ttl-01 {
  margin-left: 50px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  #voice .sec-ttl-01 {
    margin: 0;
  }
}
#voice .sec-ttl-01::before {
  background: var(--white);
}

.voice-top {
  gap: 20px 60px;
  align-items: flex-end;
  margin-bottom: var(--mg-60);
}
@media (max-width: 1024px) {
  .voice-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.voice-top .sec-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.voice-top-text {
  flex: 1;
  font-size: var(--fs-18);
  font-weight: 600;
}

.voice-item {
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: 40px;
  padding: 30px;
  margin-bottom: 30px;
  height: auto;
}
@media (max-width: 767px) {
  .voice-item {
    padding: 1.5em;
  }
}
.voice-item::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  aspect-ratio: 5/3;
  background: #fff;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.voice-item-icon img {
  width: 120px;
}
@media (max-width: 767px) {
  .voice-item-icon img {
    width: 100px;
  }
}
.voice-item-text {
  text-align: justify;
  margin-top: 1em;
}

/* area search
---------------------------------------------------------------- */
#search .sec-ttl-02::before {
  left: 0;
  transform: unset;
}
@media (max-width: 767px) {
  #search .sec-ttl-02 {
    text-align: center;
  }
  #search .sec-ttl-02::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.search-wrap {
  gap: 60px;
}
@media (max-width: 767px) {
  .search-wrap {
    display: block;
  }
}
.search-left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .search-left {
    width: 100%;
  }
}
.search-img {
  background: var(--l-base);
  padding: 30px;
  border-radius: var(--br-m);
  flex-basis: min(500px, 50%);
}
@media (max-width: 1024px) {
  .search-img {
    flex: 1;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .search-img {
    margin-bottom: 30px;
  }
  .search-img img {
    aspect-ratio: 3/2;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) and (max-width: 599px) {
  .search-img img {
    aspect-ratio: 1;
  }
}

/* btn */
.s-area-btn {
  display: block;
  position: relative;
  width: min(360px, 100%);
  /* hover */
}
@media (max-width: 767px) {
  .s-area-btn {
    margin: 0 auto;
  }
}
.s-area-btn select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: var(--fs-18);
  line-height: 1.2;
  text-align: left;
  color: var(--main);
  border: 2.5px solid var(--main);
  border-radius: var(--br-l);
  padding: 1.2em 2em;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}
@media (max-width: 767px) {
  .s-area-btn select {
    text-align: center;
  }
}
.s-area-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 40%;
  right: 1.78em;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid var(--main);
  border-right: 2.5px solid var(--main);
  transform: translate(-50%) rotate(135deg);
  transition: 0.3s ease;
}
.s-area-btn + .s-area-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .s-area-btn + .s-area-btn {
    margin-top: 20px;
  }
}
.s-area-btn:hover select {
  background-color: var(--main);
  color: var(--white);
}
.s-area-btn:hover::before {
  top: 45%;
  border-color: var(--white);
}

/* photo slider
---------------------------------------------------------------- */
.photo-slide {
  position: relative;
  z-index: 1;
}
.photo-slide::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--main);
}
.photo-slide-wrap {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}
.photo-slide-item img {
  border-radius: var(--br-s);
}

/* entry
---------------------------------------------------------------- */
.entry {
  background: var(--main);
  text-align: center;
}
.entry-ttl {
  position: relative;
  padding: 0.2em 1.6em 0;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .entry-ttl {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .entry-ttl {
    font-size: 2.6rem;
    padding: 0.2em 1em 0;
  }
}
.entry-ttl::before, .entry-ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  aspect-ratio: 4/5;
  background: url("../img/ttl.svg") center no-repeat;
  background-size: 100%;
  top: 60%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .entry-ttl::before, .entry-ttl::after {
    width: 30px;
  }
}
.entry-ttl::before {
  left: 0;
}
@media (max-width: 599px) {
  .entry-ttl::before {
    left: -0.5em;
  }
}
.entry-ttl::after {
  right: 0.2em;
  transform: translateY(-50%) scale(-1, 1);
}
@media (max-width: 599px) {
  .entry-ttl::after {
    right: -0.3em;
  }
}
.entry .btn {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.06em;
  padding: 0.5em 0;
  width: 470px;
  border: 3px solid var(--white);
}
@media (max-width: 767px) {
  .entry .btn {
    font-size: 3.2rem;
  }
}
.entry .btn::after {
  width: 0.4em;
  height: 0.4em;
  border-width: 4px;
  right: 1.2em;
}
.entry .btn:hover::after {
  right: 1em;
}

/* slide btn
---------------------------------------------------------------- */
.slidebtn-wrap {
  position: fixed;
  padding-right: 20px;
  bottom: 20%;
  right: 0;
  z-index: 50;
  transition: 0.4s ease;
}
@media (max-width: 767px) {
  .slidebtn-wrap {
    right: 0;
    bottom: 0;
    transform: translate(0%, 120%);
    display: flex;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .slidebtn-wrap.is-show {
    transform: translate(0%, 0%);
  }
}

.slide-btn {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 500px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 15px;
}
.slide-btn:hover {
  opacity: 1;
}
.slide-btn:first-of-type {
  background: var(--main);
  border: 2px solid var(--main);
  color: var(--white);
  font-size: 2.2rem;
}
.slide-btn:first-of-type span {
  color: var(--base);
}
.slide-btn:first-of-type:hover {
  background: var(--white);
  color: var(--main);
}
.slide-btn:first-of-type:hover span {
  transition: 0.3s ease;
  color: var(--main);
}
.slide-btn:last-of-type {
  border: 2px solid var(--accent);
  background: var(--accent);
  padding-top: 0.4em;
}
.slide-btn:last-of-type:hover {
  background: var(--white);
}
@media (max-width: 767px) {
  .slide-btn {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    padding: 0.5em;
    margin: 0;
    flex: 1;
    border: none;
    border-radius: 0;
    font-size: 1.5rem !important;
  }
}

/* footer
---------------------------------------------------------------- */
/* page top */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #fad94f;
  border-radius: 100%;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .page-top {
    bottom: 10%;
  }
}
.page-top::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 54%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid #3c2a21;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(50%, -50%) rotate(-45deg);
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}
.page-top:hover {
  background-color: #3c2a21;
}
.page-top:hover::before {
  border-color: #fad94f;
}
@media (max-width: 767px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
}

/* footer */
.footer {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: #3c2a21;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
}
@media (max-width: 599px) {
  .footer {
    font-size: 14px;
  }
}
.footer .inner {
  padding: 30px 3%;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
}
.footer-nav a {
  padding: 0.5em 1em;
}
@media (max-width: 767px) {
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
}
.footer-nav span {
  background-color: #fff;
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
.copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.copyright span {
  display: inline-block;
}
/*# sourceMappingURL=style.css.map */