@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "游明朝", "Yu Mincho", serif;
}

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

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

img {
  pointer-events: none; /* ポインターイベントを無効化（必要に応じて） */
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: clamp(14px, 4vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(16px, 2vw, 20px);
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .25), 0 2px 3px -2px rgba(0, 0, 0, .15);
          box-shadow: 0 2px 3px rgba(0, 0, 0, .25), 0 2px 3px -2px rgba(0, 0, 0, .15);
  background-color: #c3c3c0;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button:hover {
  background-color: #333;
  color: #fff;
}

.footer {
  background: #178697;
}

.footer__inner {
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 38px;
  padding-bottom: 2.375rem;
}

.footer__logo {
  width: 162px;
  width: 10.125rem;
  margin-left: auto;
  margin-right: auto;
}

.footer__info {
  margin-top: 41px;
  margin-top: 2.5625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
}

.footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.footer__tel span {
  margin-right: 10px;
  margin-right: 0.625rem;
}

.footer__tel img {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.footer__nav {
  color: #fff;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__nav-item {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  font-family: "Noto Sans JP", serif;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.footer__nav-item::after {
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 18px;
  height: 1.125rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__nav-item:first-child {
  padding-left: 0px;
  padding-left: 0rem;
}

.footer__nav-item:first-child::after {
  width: 0;
}

.footer__nav-item:last-child {
  border-right: none;
}

.footer__nav-item a {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.00625rem;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.footer__item {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  padding-left: 34px;
  padding-left: 2.125rem;
  padding-right: 34px;
  padding-right: 2.125rem;
  font-family: "Noto Sans JP", serif;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__item {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.footer__item::after {
  content: "";
  width: 1px;
  width: 0.0625rem;
  height: 18px;
  height: 1.125rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__item:first-child {
  padding-left: 0px;
  padding-left: 0rem;
}

.footer__item:first-child::after {
  width: 0;
}

.footer__item:last-child {
  border-right: none;
}

.footer__bottom {
  text-align: center;
}

.footer__copy {
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #57E3F9;
  margin-top: 122px;
  margin-top: 7.625rem;
}

.hamburger {
  display: none;
  position: relative;
  width: 30px;
  width: 1.875rem;
  height: 20px;
  height: 1.25rem;
  z-index: 100;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    margin-top: 0.875rem;
  }
}

.hamburger span {
  position: absolute;
  width: inherit;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0%;
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 100%;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  display: none;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header__top {
  height: 100px;
  height: 6.25rem;
  background: #07071C;
}
@media screen and (max-width: 768px) {
  .header__top {
    height: 5rem;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 17px;
  padding-top: 1.0625rem;
  padding-left: 21.5%;
  padding-right: 21.65%;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.header__logo {
  width: 162px;
  width: 10.125rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 7.5rem;
  }
}
@media screen and (max-width: 600px) {
  .header__logo {
    width: 4.375rem;
  }
}

.header__logo {
  font-size: 24px;
  font-size: 1.5rem;
}

.header__info {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .header__info {
    font-size: 0.875rem;
    letter-spacing: 0.0625rem;
  }
}
@media screen and (max-width: 600px) {
  .header__info {
    font-size: 0.625rem;
    letter-spacing: 0.00625rem;
  }
}

.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 10px;
  margin-top: 0.625rem;
  letter-spacing: 2.5px;
  letter-spacing: 0.15625rem;
}

.header__tel span {
  margin-right: 10px;
  margin-right: 0.625rem;
}

.header__tel img {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}
@media screen and (max-width: 768px) {
  .header__tel img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

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

.header__menu {
  height: 50px;
  height: 3.125rem;
  background: #F3FDFF;
  padding-left: 20.95%;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 1280px) {
  .header__menu {
    padding-left: 6%;
  }
}

@media screen and (max-width: 768px) {
  .header__menu {
    height: 0rem;
    padding-left: 6%;
  }
}

.header__pc-nav {
  display: flex;
}

.sns-icons {
  margin-left: 17.5%;
  margin-top: 2px;
}

@media screen and (max-width: 1280px) {
  .sns-icons {
    margin-left: 4%;
  }
}

.pc-nav__items.sns-icons {
  gap: 10px;
}

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

/* 背景のスクロールを無効化するクラス */
.body-no-scroll {
  overflow: hidden;
}

/* モーダルのスタイル */
.modal {
  display: none; /* 初期状態では表示しない */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .8); /* 背景を暗くする */
  z-index: 1000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向で中央揃え */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向で中央揃え */
}

.modal__content {
  background-color: #fff;
  padding: 42px 39px;
  padding: 2.625rem 2.4375rem;
  max-width: 800px;
  max-width: 50rem;
  width: 80%;
  height: 73%;
  overflow-y: scroll;
  position: relative;
}

.modal__close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal__close:hover,
.modal__close:focus {
  color: #178697;
  text-decoration: none;
  cursor: pointer;
}

.modal__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem; /* 175% */
  padding-top: 70px;
  padding-top: 4.375rem;
}

.mv {
  /* background: url("../images/common/mv.jpg") no-repeat center center; */
  /* background-size: cover; */
  height: 600px;
  height: 37.5rem;
  margin-top: 150px;
  margin-top: 9.375rem;
  background: #0A121E;

  position: relative;
  /* height: 100vh; */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    /* height: 80vh; */
    /* background-position: -1400px center; */
    margin-top: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    /* height: 80vh; */
    /* background-position: -1320px center; */
    margin-top: 5rem;
  }
}

.mv__inner {
  /* padding-top: 320px; */
  /* padding-top: 20rem; */
  /* padding-left: 24px; */
  /* padding-left: 1.5rem; */
  /* padding-right: 20px; */
  /* padding-right: 1.25rem; */
  /* padding-bottom: 20px; */
  /* padding-bottom: 1.25rem; */
  height: inherit;
  /* max-width: 2000px; */
  /* max-width: 125rem; */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    /* padding-top: 13.75rem; */
  }
}

.wrap{
  /* padding: 16px; */
  /* height: 100vh; */
  height: inherit;
  overflow: hidden;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;
}
.slide-img {
  display: block;
  /* aspect-ratio: 2000 / 620; */
  /* aspect-ratio: 1200 / 640; */
  width: 100%;
  height: 600px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .slide-img {
    /* aspect-ratio: 2000 / 620; */
  }
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-fit: contain; */
}

@media (max-width: 768px) {
  .swiper-slide img {
    /* object-position: -1200px center; */
  }
}

.mv__content {
  /* max-width: 500px;
  max-width: 31.25rem;
  margin-left: 21.15%; */

  position: absolute;
  max-width: 460px;
  width: 100%;
  top: 53.5%;
  left: 21.9%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__content {
    /* margin-left: auto; */
    /* margin-right: auto; */
    max-width: 300px;
  top: 30%;
  left: 4%;
  }
}
@media screen and (max-width: 330px) {
  .mv__content {
    /* margin-left: auto; */
    /* margin-right: auto; */
    max-width: 240px;
  top: 30%;
  left: 4%;
  }
}
@media screen and (max-width: 250px) {
  .mv__content {
    /* margin-left: auto; */
    /* margin-right: auto; */
    max-width: 200px;
  top: 20%;
  left: 4%;
  }
}

.mv__title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #FEFEFE;
  letter-spacing: 1.7px;
  letter-spacing: 0.10625rem;
  text-shadow: 4.73px 3.69px 7px rgba(7, 7, 28, .72);
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 1.5rem;
  }
}

.mv__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
  line-height: 1.75;
  text-shadow: 4.73px 3.69px 7px rgba(7, 7, 28, .72);
}
.mv__btn {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.mv__btn__button {
  margin-left: auto;
  margin-right: auto;
}

.pc-nav {
  /* height: 40px; */
  height: 50px;
  height: 3.125rem;
}
@media screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 56px;
  gap: 3.5rem;
}
@media screen and (max-width: 1024px) {
  .pc-nav__items {
    gap: 1.875rem;
  }
}

.pc-nav__item {
  height: inherit;
}

.pc-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #07071C;
  height: inherit;
  position: relative;
  letter-spacing: 1.5px;
  letter-spacing: 0.09375rem;
  line-height: 1.75px;
  line-height: 0.109375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.section-title {
  font-size: 36px;
  font-size: 2.25rem;
  color: #fefefe;
  position: relative;
  text-align: center;
  letter-spacing: 1.05px;
  letter-spacing: 0.065625rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-title::before {
  content: "";
  width: 187px;
  width: 11.6875rem;
  height: 1px;
  height: 0.0625rem;
  background: #fefefe;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-114%, -50%);
          transform: translate(-114%, -50%);
}
@media screen and (max-width: 768px) {
  .section-title::before {
    width: 3.75rem;
  }
}

.section-title::first-letter {
  text-transform: uppercase;
}

.sp-nav {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 10;
  background: #07071c;
  opacity: 0;
}

.sp-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.sp-nav__items {
  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;
  gap: 32px;
  gap: 2rem;
  min-height: 70vh;
  overflow-y: auto;
  width: 100%;
  height: 70%;
  /* padding-top: 208px; */
  padding-top: 100px;
}

.sp-nav__items.sns-icons {
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 30px;
  width: 50%;
  height: 30px;
  min-height: 60px;
  justify-content: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
}

.sp-nav__items a img {
  width: 30px;
}

.sp-nav__item {
  width: 100%;
}
.sp-nav__item.sns-icon {
  width: 30px;
}

.sp-nav__item a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  letter-spacing: 0.3125rem;
}

body.drawer-open {
  overflow: hidden;
  height: 100%;
}

.sp-nav__drawer {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.cast {
  background: #0A121E;
  padding-top: 22px;
  padding-top: 1.375rem;
}

.cast__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px 27px;
  gap: 1.6875rem 1.6875rem;
  max-width: 1118px;
  max-width: 69.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (max-width: 768px) {
  .cast__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .cast__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cast-card__img {
  aspect-ratio: 354/286;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}
@media screen and (max-width: 768px) {
  .cast-card__img {
    border-radius: 0.75rem 0.75rem 0rem 0rem;
  }
}

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

.cast-card__body {
  background: #E1EAF8;
  letter-spacing: 0.1px;
  letter-spacing: 0.00625rem;
  font-family: "Noto Sans JP", serif;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  padding-right: 11px;
  padding-right: 0.6875rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  border-radius: 0rem 0rem 0.5rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .cast-card__body {
    border-radius: 0rem 0rem 0.75rem 0.75rem;
  }
}

.cast-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  border-bottom: 1px solid #60656C;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.cast-card__info {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.cast-card__hobby {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.cast-card__text {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.concept {
  padding-top: 16px;
  padding-top: 1rem;
  background: #10004C;
}

.concept__inner {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  max-width: 2000px;
  max-width: 125rem;
  width: 100%;
}

.concept__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .concept__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125rem;
  }
}

.concept__image {
  aspect-ratio: 478/358;
  overflow: hidden;
}

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

.concept__content {
  margin-top: 56px;
  margin-top: 3.5rem;
  text-align: center;
}

.concept__text {
  font-family: "Noto Sans JP", serif;
  color: #fefefe;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
}

.drinks {
  background: url("../images/common/drinks-bg.jpg") no-repeat center center;
  background-size: cover;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
}

.drinks__inner {
  padding-top: 16px;
  padding-top: 1rem;
}

.drinks__syoutyuu {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.drinks-syoutyuu,
.drinks__other {
  max-width: 979px;
  max-width: 61.1875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .drinks-syoutyuu,
  .drinks__other {
    max-width: 28.75rem;
  }
}

.drinks__head {
  color: #014F4F;
  background: #E1EAF8;
  font-size: 30px;
  font-size: 1.875rem;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  text-align: center;
  letter-spacing: 0.1px;
  letter-spacing: 0.00625rem;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}
@media screen and (max-width: 768px) {
  .drinks__head {
    font-size: 1.5rem;
  }
}

.drinks__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.1px;
  letter-spacing: 0.00625rem;
}
@media screen and (max-width: 768px) {
  .drinks__body {
    -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;
  }
}

.drinks__type {
  border-right: 1px solid #fff;
  max-width: 320px;
  max-width: 20rem;
  width: 100%;
  margin-top: 42px;
  margin-top: 2.625rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .drinks__type {
    width: 100%;
    border-right: none;
    margin-bottom: 0rem;
  }
}

.drinks__type:last-child {
  border: none;
}

.drinks__type-name {
  max-width: 181px;
  max-width: 11.3125rem;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #014F4F;
  background: #E1EAF8;
  text-align: center;
  margin-left: 36px;
  margin-left: 2.25rem;
}
@media screen and (max-width: 768px) {
  .drinks__type-name {
    max-width: 8.75rem;
  }
}

.drinks__items {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
  margin-left: 32px;
  margin-left: 2rem;
  margin-right: 32px;
  margin-right: 2rem;
}

.drinks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (max-width: 600px) {
  .drinks__item {
    font-size: 0.875rem;
  }
}

.drinks__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .drinks__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;
  }
}

.drinks__whisky {
  max-width: 458px;
  max-width: 28.625rem;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}

.drinks__champagne {
  max-width: 458px;
  max-width: 28.625rem;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}

.drinks__items--whisky {
  width: 100%;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  margin-left: 32px;
  margin-left: 2rem;
  margin-right: 32px;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .drinks__items--whisky {
    margin-left: 0rem;
    margin-right: 0rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.drinks__items--champagne {
  width: 100%;
  padding-top: 31.6px;
  padding-top: 1.975rem;
  padding-bottom: 31.6px;
  padding-bottom: 1.975rem;
  margin-left: 32px;
  margin-left: 2rem;
  margin-right: 32px;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .drinks__items--champagne {
    margin-left: 0rem;
    margin-right: 0rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.drinks__other {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.drinks__other .drinks__type {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 768px) {
  .drinks__other .drinks__type {
    margin-bottom: 0rem;
  }
}

.info {
  background: #0A121E;
  padding-top: 52px;
  padding-top: 3.25rem;
  padding-bottom: 104px;
  padding-bottom: 6.5rem;
}

.info__inner {
  max-width: 1140px;
  max-width: 71.25rem;
  width: 100%;
}

.info__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.17%;
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (max-width: 1024px) {
  .info__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .info__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info__content {
  width: 46.88%;
  border: 1px solid #fff;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 36px;
  padding-bottom: 2.25rem;
  padding-left: 112px;
  padding-left: 7rem;
  padding-right: 110px;
  padding-right: 6.875rem;
}
@media screen and (max-width: 1024px) {
  .info__content {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.info__logo {
  max-width: 232px;
  max-width: 14.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.info__logo img {
  width: 100%;
}

.info__items {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-family: "Noto Sans JP", serif;
}

.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .info__item {
    max-width: 21.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.info-item {
  color: #FEFEFE;
}

.info-item + .info-item {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.info-item__title {
  font-size: 14.7px;
  font-size: 0.91875rem;
  letter-spacing: 0.1px;
  letter-spacing: 0.00625rem;
  width: 61px;
  width: 3.8125rem;
}

.info-item__description {
  font-size: 14.7px;
  font-size: 0.91875rem;
  letter-spacing: 0.05px;
  letter-spacing: 0.003125rem;
  margin-left: auto;
  width: 200px;
  width: 12.5rem;
  line-height: 1.7;
}

.info__image {
  width: 46.88%;
  aspect-ratio: 515/367;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .info__image {
    width: 70%;
    margin-top: 1.875rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .info__image {
    width: 100%;
  }
}

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

.info__text {
  max-width: 1094px;
  max-width: 68.375rem;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 1.2px;
  letter-spacing: 0.075rem;
  color: #0A121E;
  background: #fff;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
  margin-top: 34px;
  margin-top: 2.125rem;
  border-radius: 0.5rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.info__map {
  aspect-ratio: 1098.98/366.98;
  overflow: hidden;
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .info__map {
    aspect-ratio: 600/400;
  }
}

.info__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-contact {
  padding-top: 250px;
  padding-top: 15.625rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  background: #0A121E;
}
@media screen and (max-width: 768px) {
  .page-contact {
    padding-top: 11.25rem;
  }
}

.page-contact__inner {
  max-width: 750px;
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__form {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #fff;
}
.contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.wpcf7-spinner {
  visibility: hidden;
  display: none;
}

.contact-form__label {
  font-weight: 600;
  color: #fff;
}

.is-required {
  display: inline-block;
  position: relative;
}

.is-required::after {
  content: "必須";
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.25rem;
  background: #178697;
  width: 36px;
  width: 2.25rem;
  height: 23px;
  height: 1.4375rem;
  padding: 3px 6px;
  padding: 0.1875rem 0.375rem;
}
@media screen and (max-width: 768px) {
  .is-required::after {
    left: calc(100% + 16px);
  }
}

.contact-form__input {
  max-width: 480px;
  max-width: 30rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-form__input {
    margin-top: 0.6875rem;
  }
}

.contact-form__input [type=text],
.contact-form__input [type=email],
.contact-form__input [type=tel] {
  color: #333;
  font-weight: 500;
  padding: 12px 15px;
  padding: 0.75rem 0.9375rem;
  border-radius: 0.25rem;
  background: #f6f6f6;
  margin-top: 11px;
  margin-top: 0.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-form__input [type=text],
  .contact-form__input [type=email],
  .contact-form__input [type=tel] {
    margin-top: 0;
  }
}

.contact-form__input [type=text] {
  width: 100%;
}

.contact-form__input [type=tel] {
  width: 100%;
}

.contact-form__input [type=email] {
  width: 100%;
}

.contact-form__input [type=date] {
  width: 100%;
}

.contact-form__input textarea {
  width: 100%;
}

.contact-form__textarea {
  /* height: 160px; */
  /* height: 10rem; */
  /* height: 100px; */
  /* color: #c2c2c2; */
  /* color: #333; */
  font-size: 16px;
  /* font-weight: 500; */
  padding: 12px 15px;
  /* padding: 0.75rem 0.9375rem; */
  border-radius: 0.25rem;
  background: #f6f6f6;
  margin-top: 11px;
  margin-top: 0.6875rem;
  width: 100%;
  max-width: 480px;
  max-width: 30rem;
}

.contact-form__privacy-notice {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 34px;
  margin-top: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-form__privacy-notice {
    font-size: 1rem;
    line-height: 1.75rem; /* 175% */
    margin-top: 4.75rem;
  }
}

.contact-form__privacy-link {
  position: relative;
  padding-bottom: 1px;
  padding-bottom: 0.0625rem;
}

.contact-form__privacy-link::after {
  content: "";
  width: 90%;
  height: 1px;
  height: 0.0625rem;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-form__check {
  margin-top: 21px;
  margin-top: 1.3125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-form__check {
    margin-top: 2.1875rem;
  }
}

.contact-form__check-text {
  display: inline-block;
  color: #fff;
  padding-left: 26px;
  padding-left: 1.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 17.706px;
  line-height: 1.106625rem; /* 136.2% */
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-form__check-text {
    font-size: 1rem;
    line-height: 1.375rem; /* 137.5% */
    letter-spacing: 0.1rem;
  }
}

.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
input[type="checkbox"] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #fff;
  content: "";
  display: inline-block;
  height: 15px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 15px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  display: inline-block;
  content: "";
  width: 10px;
  height: 15px;
  left: 1%;
  top: -2%;
  position: absolute;
  transform: translateY(-50%);
  border-bottom: 2px solid #178697;
  border-right: 2px solid #178697;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    left: 4%;
  }
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #000;
}

.wpcf7-not-valid-tip {
  color: #fff;
}

.wpcf7-response-output {
  background: #0A121E;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
  background: #0A121E;
  width: 100%;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff;
  background: #0A121E;
  width: 100%;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.contact-form__button {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-form__button {
    margin-top: 3.125rem;
  }
}

.contact-form__button [type=submit] {
  width: 340px;
  width: 21.25rem;
  height: 80px;
  height: 5rem;
  border-radius: 3.125rem;
  border: 1px solid #fff;
  background: #0A121E;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-form__button [type=submit] {
    max-width: 16.25rem;
    width: 100%;
    height: 3.75rem;
    font-size: 1.125rem;
  }
}

.contact-form__button [type=submit]:hover {
  background: #fff;
  color: #0A121E;
}

.price {
  background: #10004C;
}

.price__inner {
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 103px;
  padding-bottom: 6.4375rem;
}

.price__items {
  max-width: 982px;
  max-width: 61.375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 62px;
  margin-top: 3.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 62px;
  gap: 3.875rem;
}
@media screen and (max-width: 768px) {
  .price__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.price__item {
  max-width: 459px;
  max-width: 28.6875rem;
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  letter-spacing: 0.05px;
  letter-spacing: 0.003125rem;
}
@media screen and (max-width: 768px) {
  .price__item {
    margin-left: auto;
    margin-right: auto;
  }
}

.price__head {
  border-bottom: 1px solid #fff;
  font-size: 36px;
  font-size: 2.25rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  text-align: center;
  background: #008AFF;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .price__head {
    font-size: 1.5rem;
  }
}

.price__body {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  text-align: center;
}

.price__body-head {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 600px) {
  .price__body-head {
    font-size: 1rem;
  }
}

.price__body-items {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.price__body-item {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .price__body-item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .price__body-item {
    font-size: 1.125rem;
  }
}

.price__body-item:nth-child(2) {
  letter-spacing: 2.2px;
  letter-spacing: 0.1375rem;
}

.price__body-item + .price__body-item {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.price__body-bottom {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.price__body.price-body--menu {
  padding-top: 12px;
  padding-top: 0.75rem;
}

.price__body-text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .price__body-text {
    font-size: 0.875rem;
  }
}

.price__body-menus {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.price__body-menu {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .price__body-menu {
    font-size: 0.875rem;
  }
}

.price__body-menu + .price__body-menu {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.privacy-policy {
  margin-top: 200px;
  margin-top: 12.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  color:#fff;
}

.privacy-policy__inner {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.sitemap {
  margin-top: 300px;
  margin-top: 18.75rem;
  margin-bottom: 160px;
  margin-bottom: 10rem;
  color:#fff;
}

.sitemap__inner {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", serif;
}

.sitemap__nav {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.sitemap__nav a{ color:#fff; }

.sitemap__item + .sitemap__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
/*# sourceMappingURL=styles.css.map */


@-moz-document url-prefix() {
  section {
    scroll-margin-top: 150px; /* Firefoxの時だけ適用 */
  }
}


  section {
    scroll-margin-top: 150px;
  }


@media screen and (max-width: 768px) {
  section {
    scroll-margin-top: 80px; /* Firefoxでスマホの時だけ適用 */
  }
}

body {
  background: #0A121E;
}

.instagram {
  padding-bottom: 104px;
}

.instagram__inner {
  max-width: 1140px;
  max-width: 71.25rem;
  width: 100%;
}