@charset "UTF-8";
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

/* custom */
.video-wrapper {
  aspect-ratio: 16/9;
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-family: "YakuHanJP_Noto", "Kiwi Maru", serif, "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
p {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
.tx-c {
  text-align: center;
}

/* Header fixed at the top */
.header {
  width: 100%;
  padding: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 10, 29, 0.4)), to(rgba(7, 10, 29, 0.4)));
  background-image: linear-gradient(rgba(7, 10, 29, 0.4), rgba(7, 10, 29, 0.4));
  position: fixed;
  top: 0;
  z-index: 10;
  color: #ffffff;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  gap: 5px;
}
.header__inner h1, .header__inner .lang {
  display: block;
}
.header__inner h1 {
  width: 160px;
}
@media (1080px <= width) {
  .header__inner h1 {
    width: 200px;
  }
}
.header__inner .lang {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr); /* スマートフォンでは2列 */
  gap: 10px; /* グリッド間の隙間 */
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-left: auto;
}
.header__inner .lang .active {
  border-bottom: 1px solid #fff;
}
.header__inner .lang a {
  display: inline-block;
}
@media (1080px <= width) {
  .header__inner .lang {
    width: auto;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    margin-left: unset;
  }
  .header__inner .lang a {
    width: auto;
  }
}
@media (1080px <= width) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header__inner nav {
    display: block;
  }
  .header__inner nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .header__inner nav ul li {
    text-align: center;
    font-size: 1.6rem;
    font-weight: normal;
  }
}

/* Navigation menu hidden by default */
#g-nav {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
#g-nav ul {
  list-style-type: none;
  padding: 0;
}
#g-nav ul li {
  text-align: center;
  padding: 10px;
  line-height: 4;
}

#g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 42, 70, 0.78)), to(rgba(9, 42, 70, 0.78))), url("../images/bg_mv.png");
  background-image: linear-gradient(rgba(9, 42, 70, 0.78), rgba(9, 42, 70, 0.78)), url("../images/bg_mv.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  -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;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* Hamburger menu styling */
.btnmenu {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 999;
}
.btnmenu div {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 4px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 80%;
}
.btnmenu div:nth-of-type(1) {
  top: 8px;
}
.btnmenu div:nth-of-type(2) {
  top: 20px;
}
.btnmenu div:nth-of-type(3) {
  top: 32px;
}
.btnmenu.active div:nth-of-type(1) {
  top: 18px;
  left: 4px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 80%;
}
.btnmenu.active div:nth-of-type(2) {
  opacity: 0;
}
.btnmenu.active div:nth-of-type(3) {
  top: 30px;
  left: 4px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 80%;
}

@media screen and (min-width: 1080px) {
  .btnmenu {
    display: none;
  }
  #g-nav {
    width: min(100%, 820px);
    display: block !important;
    position: static;
  }
  #g-nav ul {
    width: min(100%, 800px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #g-nav-list {
    position: relative;
    z-index: 999;
    width: 100%;
    height: auto;
    background: none;
    top: 0;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: auto;
    -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;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* footer */
footer {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 44, 78, 0.62)), to(rgba(6, 44, 78, 0.62))), url("../images/bg_footer.png");
  background-image: linear-gradient(rgba(6, 44, 78, 0.62), rgba(6, 44, 78, 0.62)), url("../images/bg_footer.png");
  background-size: cover;
  height: 100%;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}
footer h3 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  footer h3 {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  footer .address {
    padding-bottom: 20px;
  }
}
footer table {
  padding-top: 50px;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  footer table {
    padding-bottom: 50px;
  }
}
footer table, footer th, footer td {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  footer table th, footer table td, footer th th, footer th td, footer td th, footer td td {
    width: auto;
    display: table-cell;
  }
  footer table th, footer th th, footer td th {
    width: 130px;
  }
  footer table td, footer th td, footer td td {
    padding-bottom: 40px;
  }
}
footer .link a {
  display: inline-block;
  color: #68F0FF;
  text-indent: 1em;
}

.footer__inner {
  width: min(100%, 1620px);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner .footer__info, .footer__inner .footer__map {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.footer__map {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  height: clamp(250px, 250px + 250 * (100vw - 768px) / 1152, 500px);
  color: #010101;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .footer__map {
    width: min(100%, 700px);
    -ms-grid-column-align: end;
        justify-self: end;
  }
}

.footer__info {
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
}

#copy {
  text-align: center;
  font-size: 1.2rem;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  #copy {
    padding-bottom: 3rem;
  }
}

/* MV */
.mv {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 42, 70, 0.4)), to(rgba(9, 42, 70, 0.4))), url("../images/bg_mv.png");
  background-image: linear-gradient(rgba(9, 42, 70, 0.4), rgba(9, 42, 70, 0.4)), url("../images/bg_mv.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  position: relative;
  z-index: 1;
}
.mv h2 {
  position: absolute;
  top: 50%;
  left: 53%;
  -webkit-transform: translate(-47%, -50%);
          transform: translate(-47%, -50%);
  width: clamp(120px, 120px + 380 * (100vw - 768px) / 1152, 336px);
}

/* aside */ /* nav */ /* breadcrumbs */
/*
 * load
 * -------------------------------------------------------------------
 */
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 100vw;
  height: 100vh;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #000;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

/* TOP */
.about {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 42, 70, 0.8)), to(rgba(9, 42, 70, 0.8))), url("../images/bg_about.png");
  background-image: linear-gradient(rgba(9, 42, 70, 0.8), rgba(9, 42, 70, 0.8)), url("../images/bg_about.png");
  background-size: cover;
  height: 100%;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 20px;
  }
}
.about .inner {
  width: min(100%, 1600px);
  margin: 0 auto 25px;
  text-align: justify;
}
@media (min-width: 768px) {
  .about .inner {
    margin: 0 auto 50px;
  }
}
.about picture {
  display: block;
  text-align: center;
  padding: 10px 0 20px 0;
}
@media (min-width: 768px) {
  .about picture {
    padding: 40px 0;
  }
}

.price {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(9, 42, 70, 0.4)), to(rgba(9, 42, 70, 0.4))), url("../images/bg_price.png");
  background-image: linear-gradient(rgba(9, 42, 70, 0.4), rgba(9, 42, 70, 0.4)), url("../images/bg_price.png");
  background-size: cover;
  height: 100%;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}
@media (min-width: 768px) {
  .price {
    padding: 80px 20px;
  }
}
.price .sec-title p {
  width: min(100%, 660px);
  margin: 0 auto;
}
.price .inner {
  width: min(100%, 1600px);
  margin: 0 auto 25px;
  text-align: justify;
}
@media (min-width: 768px) {
  .price .inner {
    margin: 0 auto 50px;
  }
}
.price .attention {
  width: min(100%, 1145px);
  margin: 0 auto;
  text-indent: -1em;
  padding-left: 1em;
}
.price .attention li {
  margin-bottom: 10px;
}

.pricelist {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
  background: rgba(3, 8, 30, 0.7);
  padding-bottom: 20px;
}
.pricelist > div {
  padding: 20px 20px 0px 20px;
}

@media (min-width: 768px) {
  .pricelist {
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    gap: 20px 60px;
  }
}
.price-list-item h3 {
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.7960784314);
  padding-bottom: 5px;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.price-list-item > div {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 5px;
  line-height: 180%;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.item-title {
  font-family: "Arial", sans-serif; /* 任意のフォントに変更してください */
  width: 300px; /* 必要に応じて調整 */
  border-top: 2px dashed #000; /* 破線のボーダー */
  padding-top: 20px;
}

.price-list-title {
  text-align: center;
  margin-bottom: 20px;
}

.price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 名前と価格を両端に配置 */
  margin-bottom: 10px; /* 任意の間隔に調整可能 */
}

.item-name {
  font-weight: bold; /* 名前を太字に */
}

.item-price {
  font-weight: normal;
}

.start {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(70, 112, 156, 0.78)), to(rgba(70, 112, 156, 0.78))), url("../images/bg_start.png");
  background-image: linear-gradient(rgba(70, 112, 156, 0.78), rgba(70, 112, 156, 0.78)), url("../images/bg_start.png");
  background-size: cover;
  height: 100%;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}
@media (min-width: 768px) {
  .start {
    padding: 80px 20px;
  }
}
.start .inner {
  width: min(100%, 1600px);
  margin: 0 auto 25px;
  text-align: justify;
}
@media (min-width: 768px) {
  .start .inner {
    margin: 0 auto 50px;
  }
}

.discovery {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 44, 78, 0.62)), to(rgba(6, 44, 78, 0.62))), url("../images/bg_discovery.png");
  background-image: linear-gradient(rgba(6, 44, 78, 0.62), rgba(6, 44, 78, 0.62)), url("../images/bg_discovery.png");
  background-size: cover;
  height: 100%;
  z-index: -1;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
}
.discovery .sec-title p {
  width: min(100%, 1080px);
  margin: 0 auto;
}
.discovery .inner {
  width: min(100%, 1620px);
  margin: 0 auto 25px;
}
@media (min-width: 768px) {
  .discovery .inner {
    margin: 0 auto 50px;
  }
}
.discovery .movie {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.discovery .movie > div {
  width: 100%;
  color: #010101;
  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;
  text-align: center;
  height: clamp(216px, 216px + 284 * (100vw - 768px) / 1152, 336px);
  background-color: #ffffff;
}
.discovery .attention {
  width: 100%;
  text-indent: -1em;
  padding-left: 1em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .discovery {
    padding: 40px 20px 130px 20px;
  }
  .discovery .movie {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

/* common */
.sec-title {
  width: 100%;
  padding-top: 2.4rem;
  text-align: center;
}
.sec-title h2 {
  font-size: clamp(2rem, 2.5vw, 4rem);
  color: #B9A769;
  padding-bottom: 2.4rem;
}
.sec-title p {
  text-align: justify;
  padding-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .sec-title {
    padding-top: 6rem;
    text-align: center;
  }
  .sec-title h2 {
    font-size: clamp(2rem, 2.5vw, 4rem);
    color: #B9A769;
    padding-bottom: 6rem;
  }
  .sec-title p {
    text-align: justify;
    padding-bottom: 6rem;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
}

.scrolldown span {
  position: absolute;
  top: -30%;
  left: -70%;
  -webkit-transform: translate(-70%, -30%);
          transform: translate(-70%, -30%);
  color: #eee;
  letter-spacing: 0.05em;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 1px;
  height: 30px;
  background: #eee;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}