@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

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

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

textarea {
  resize: none;
}

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #443232;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  width: 100%;
  height: 4.6875rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 10.5rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .header::after {
    content: "";
    display: inline-block;
    background-image: url(../../img/common/bgc-green.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 55.875rem;
    height: 100%;
    z-index: -1;
  }
}

.header__inner {
  padding: 0 1.5625rem;
  width: 100%;
  display: flex;
  height: inherit;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.5rem;
    justify-content: space-between;
  }
}

.header__logo {
  font-family: "Noto Serif JP", serif;
  width: 15.75rem;
  font-size: 2.25rem;
  position: absolute;
  z-index: 999;
  color: #1D3E21;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .header__logo {
    position: initial;
    width: 32rem;
    font-size: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .space {
    display: inline-block;
    margin-left: 3.75rem;
  }
}

.sp__nav-items {
  margin-top: 8.125rem;
}

.sp__nav-item {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-size: 2.5rem;
  font-weight: 700;
}

.sp__nav-item:nth-child(n+2) {
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .pc__nav-items {
    display: flex !important;
    height: inherit;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2.5rem;
  }
}

.pc__nav-item:nth-child(n+2) {
  margin-left: 2.8125rem;
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

#g-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  #g-nav {
    display: block;
  }
}

#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  display: block;
  position: fixed;
  padding: 0 0.9375rem;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 4;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #E3F4F3;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -3.125rem;
  top: -3.125rem;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(100); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  #g-nav-list {
    display: block;
    position: static;
  }
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  #g-nav ul {
    opacity: initial;
    visibility: visible;
  }
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
  visibility: visible;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.1s; /*0.1 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 4.6875rem;
  height: 4.6875rem;
  background-color: #E3F4F3;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .openbtn1 {
    display: none;
  }
}

.hamburger__btn {
  width: 2.1875rem;
  height: 1.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hamburger__btn {
    display: none;
  }
}

/*ーに変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 0.125rem;
  width: 2.1875rem;
  background-color: #4C7485;
}
@media screen and (min-width: 768px) {
  .openbtn1 span {
    display: none;
  }
}

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

.openbtn1 span:nth-of-type(2) {
  top: 0.8125rem;
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active {
  background-color: #4C7485;
}

.openbtn1.active span:nth-of-type(1) {
  top: 0.8125rem;
  width: 2.1875rem;
  background-color: #fff;
}

.openbtn1.active span:nth-of-type(3) {
  top: 0.8125rem;
  width: 2.1875rem;
  background-color: #fff;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fv {
  margin-top: 4.6875rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 0;
  }
}

.fv-inner {
  padding: 1.875rem 1.5625rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .fv-inner {
    padding: 0 1.5625rem;
  }
}

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

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

.about {
  background-color: #E3F4F3;
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 5rem 0;
  }
}

.about-inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-inner {
    padding: 0 4.25rem;
  }
}

.about-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #1D3E21;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-title {
    font-size: 4rem;
    font-weight: 700;
  }
}

.about__list {
  margin-top: 3.125rem;
}

.list-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list-item {
    display: flex;
    gap: 0.625rem;
    height: 39.375rem;
    justify-content: space-between;
  }
}

.item-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .item-img {
    width: 37.5rem;
  }
}

.item-text {
  width: 22.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2.1875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .item-text {
    width: 46.875rem;
    font-size: 2.375rem;
    line-height: 3.5625rem;
    margin-top: initial;
  }
}

.list-item:nth-child(n+2) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .list-item:nth-child(n+2) {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .list-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

.shop {
  background: 100%/cover no-repeat url(../../img/common/bg.png);
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .shop {
    padding: 4.375rem 0;
  }
}

.shop__inner {
  padding: 0 1.875rem;
}

.shop-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .shop-title {
    font-size: 4rem;
  }
}

.shop__info {
  margin-top: 3.125rem;
  border: 1px solid #443232;
  border-radius: 1.875rem;
  background-color: #fff;
  padding: 1.5625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .shop__info {
    width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3.75rem 6.25rem;
  }
}

.shop-list {
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .shop-list {
    font-weight: 400;
    font-size: 3rem;
    gap: 6.25rem;
  }
}

.shop-list dt {
  text-wrap: nowrap;
}

.shop-list span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .shop-list span {
    font-size: 2rem;
  }
}

.shop-list:nth-child(n+2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .shop-list:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.shop-text {
  color: #A81414;
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop-text {
    font-size: 4rem;
    width: 55.9375rem;
    margin-left: -1.875rem;
  }
}

.cast-fv-img {
  width: 100%;
}

.cast-fv__text-body {
  margin-top: 3.125rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cast-fv__text-body {
    font-size: 4rem;
    margin-top: 1.875rem;
  }
}

.cast-fv-text2 {
  margin-top: 3.125rem;
}

.cast-tel {
  margin-top: 0.625rem;
  text-align: right;
}

.cast {
  padding: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .cast {
    padding-bottom: 6.25rem;
  }
}

.cast-inner {
  padding: 0 1.46875rem;
}

.cast__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cast__lists {
    gap: 4.375rem;
  }
}

.cast-list {
  width: 43%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cast-list {
    width: 29%;
  }
}

.cast-list:nth-child(n+3) {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .cast-list:nth-child(n+3) {
    margin-top: 0rem;
  }
}

@media screen and (min-width: 768px) {
  .cast-list:nth-child(n+4) {
    margin-top: 12.5rem;
  }
}

.cast-img {
  height: 16.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cast-img {
    height: 26.25rem;
  }
}

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

.cast-name {
  margin-top: 1.25rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cast-name {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .recruit-fv {
    padding-bottom: 3.125rem;
  }
}

.recruit-about {
  background: 100%/cover no-repeat url(../../img/common/bg.png);
  padding: 1.875rem 0;
}

.recruit-about__inner {
  padding: 0 1.5625rem;
}
@media screen and (min-width: 768px) {
  .recruit-about__inner {
    padding: 0 1.875rem;
  }
}

.site-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #1D3E21;
}
@media screen and (min-width: 768px) {
  .site-title {
    font-size: 4rem;
    padding: 2.5rem 0;
  }
}

.recruit__wrapper {
  margin-top: 0.9375rem;
  border: 1px solid #443232;
  border-radius: 1.875rem;
  background-color: #E3F4F3;
  padding: 2.1875rem 1.09375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .recruit__wrapper {
    padding: 3.125rem 1.875rem 2.5rem;
  }
}

.recruit-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-title {
    font-size: 4rem;
  }
}

.recruit__info {
  margin-top: 0.625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recruit__info {
    margin-top: 3.125rem;
    font-size: 2.5rem;
  }
}

.recruit-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.recruit-list:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .recruit-list:nth-child(n+2) {
    margin-top: 2.8125rem;
  }
}

.recruit-list dt {
  width: 21%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-list dt {
    text-align: right;
    width: 20%;
  }
}

.recruit-list dd {
  width: 68%;
}
@media screen and (min-width: 768px) {
  .recruit-list dd {
    width: 71%;
    text-align: left;
  }
}

.big {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .big {
    font-size: 4rem;
  }
}

.recruit-text {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-text {
    margin-top: 2.8125rem;
    width: 71%;
    text-align: left;
    margin-left: auto;
  }
}

.recruit-text3 {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-text3 {
    margin-top: 2.8125rem;
    font-size: 3rem;
  }
}

.info__wrapper {
  margin: 1.25rem auto 0;
  font-size: 1.25rem;
  font-weight: 700;
  width: 16.5625rem;
}
@media screen and (min-width: 768px) {
  .info__wrapper {
    font-size: 3rem;
    width: 55%;
    text-align: center;
    margin-top: 3.125rem;
  }
}

.owner {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .owner {
    margin-top: 3.125rem;
    font-size: 4rem;
    text-align: center;
  }
}

.recruit-img__wrapper {
  margin-top: 3.125rem;
  display: flex;
  gap: 3%;
}

.recruit-img {
  width: 33%;
}

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

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

/*# sourceMappingURL=style.css.map */
