.header__pc-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
}
.pc-nav__items {
      display: flex;
      width: 100%;
      justify-content: space-evenly;
      list-style: none;
      padding: 0;
      margin: 0;
    }
.pc-nav__item {
      flex:auto;
      text-align: center;
}
.pc-nav__item a {
      display:flex;
      padding: 2em;
      text-decoration: none;
      color: black;
}
.pc-nav__item img {
      max-height: 50px;
}


body {
  font-family: "Noto Serif JP", serif;
}

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

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

body.hidden {
  overflow: hidden;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.593625498vw;
  }
}
@media (min-width: 890px) {
  html {
    font-size: 16px;
  }
}

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

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

*,
*::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 */
html {
  scroll-behavior: smooth;
}

/* 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;
}

/*---------------------------------- 
animation jQueryと連動
---------------------------------- */
@-webkit-keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes startFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anm {
  opacity: 0;
}
.anm.is-animated {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.anm-up {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.anm-up.is-animated {
  -webkit-animation: fadeInUp 3s forwards;
          animation: fadeInUp 3s forwards;
}

.anm-left {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.anm-left.is-animated {
  -webkit-animation: fadeInLeft 1.5s forwards;
          animation: fadeInLeft 1.5s forwards;
}

.anm-right {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.anm-right.is-animated {
  -webkit-animation: fadeInRight 1.5s forwards;
          animation: fadeInRight 1.5s forwards;
}

.anm-list > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
          animation: fadeInUp 1.5s forwards;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
            transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
html {
  overflow: visible;
}

.header {
  width: 100%;
  height: 7.6875rem;
  padding: 0px 20px;
  padding: 0rem 1.25rem;
  background-image: url(../images/top/header-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: fixed;
  z-index: 9;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0rem 1.25rem 0rem 3.125rem;
    height: 7.875rem;
  }
}

.header__container {
  max-width: 375px;
  max-width: 23.4375rem;
  width: 100%;
  height: inherit;
  position: fixed;
  left: 77%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .header__container {
    max-width: none;
    max-width: initial;
    left: 50%;
  }
}



/*---------------------------------- 
pc-nav
---------------------------------- */
.pc-nav__items {
  padding: 5px 0;
  padding: 0.3125rem 0;
  margin-top: 7px;
  margin-top: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.pc-nav__itemss {
  width: 100px;
  height: 100px;
  margin-right: 150px;
}
@media screen and (min-width: 768px) {
  .pc-nav__items {
    margin-top: 0;
    margin-top: initial;
  }
}

.pc-nav__item {
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 25px);
  font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
  line-height: 1.32;
  letter-spacing: 0;
  cursor: pointer;
}

.pc-nav__item a {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.pc-nav__item--hover a {
  padding: 1.25rem 0;
}

@media screen and (max-width: 768px) {
.pc-nav__item--hover{
  margin-left: 1rem;
}}

.pc-nav__item--hover a::after {
  background-color: #646464;
  bottom: 18px;
  bottom: 1.125rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}

.pc-nav__item--hover a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 0.6;
}

.pc-nav__item:not(:nth-child(3)) {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-nav__item:not(:nth-child(3)) {
    display: block;
  }
}

.pc-nav__item:nth-child(2) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.pc-nav__item:nth-child(3) {
  max-width: 60px;
  max-width: 3.75rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .pc-nav__item:nth-child(3) {
    margin-left: 1.875rem;
    max-width: 9rem;
  }
}

.pc-nav__item:nth-child(4) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.pc-nav__item:nth-child(5) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.pc-nav__item:nth-child(6) {
  margin-left: 30px;
  margin-left: 1.875rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.pc-nav__item-lang {
  display: block;
  padding: 15px 0 5px;
  padding: 0.9375rem 0 0.3125rem;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0;
}

.pc-nav__item .pc-nav__item-twitter {
  margin-top: 5px;
  margin-top: 0.3125rem;
  display: block;
  padding: 8px;
  padding: 0.5rem;
  max-width: 50px;
  max-width: 3.125rem;
  width: 100%;
  margin: auto;
}

/*---------------------------------- 
sp-nav
---------------------------------- */
.sp-nav {
  padding: 3px 20px 20px;
  padding: 0.1875rem 1.25rem 1.25rem;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  background: #DBDBDB;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.js-sp-nav.is-open {
  opacity: 100;
  visibility: visible;
}

.sp-nav__inner {
  width: 100%;
  height: 100%;
}

.sp-nav__container {
  margin: auto;
  max-width: 292px;
  max-width: 18.25rem;
  width: 100%;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch; /* iOS用 */
}

.sp-nav__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.sp-nav__twitter {
  max-width: 35px;
  max-width: 2.1875rem;
  width: 100%;
}

.sp-nav__logo {
  max-width: 60px;
  max-width: 3.75rem;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: -16px;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sp-nav__items {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.sp-nav__item:nth-child(n+2) {
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.sp-nav__languages {
  margin-top: 25px;
  margin-top: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp-nav__language {
  max-width: 90px;
  max-width: 5.625rem;
  width: 100%;
}

.sp-nav__language:nth-child(n+2) {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.sp-nav__copyright {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 300;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
}

/*---------------------------------- 
hamburger
---------------------------------- */
.hamburger {
  display: block;
  position: fixed;
  z-index: 9;
  top: 25px;
  top: 1.5625rem;
  right: 41px;
  right: 2.5625rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
  border: 2px solid #311008;
}
@media screen and (min-width: 375px) {
  .hamburger {
    right: 8.8vw;
  }
}
@media screen and (min-width: 450px) {
  .hamburger {
    right: calc(50% - 147px);
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    max-width: 5.4375rem;
    right: 5.98vw;
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 17px;
  width: 1.0625rem;
  height: 2px;
  left: 5px;
  left: 0.3125rem;
  background: #311008;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 5px;
  top: 0.3125rem;
}

.hamburger span:nth-child(2) {
  top: 12px;
  top: 0.75rem;
}

.hamburger span:nth-child(3) {
  top: 19px;
  top: 1.1875rem;
}

/* ナビ開いてる時のボタン */
.hamburger.is-open span:nth-child(1) {
  top: 12px;
  top: 0.75rem;
  background: #311008;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.is-open span:nth-child(2),
.hamburger.is-open span:nth-child(3) {
  top: 12px;
  top: 0.75rem;
  background: #311008;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.normal-text {
  font-weight: 500;
  font-size: 13.5px;
  font-size: 0.84375rem;
  line-height: 1.6923076923;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .normal-text {
    font-size: max(0.875rem, 13px);
    line-height: 1.7857142857;
  }
}

.obi {
  /* max-width: 47px;
  max-width: 2.9375rem; 
  position: fixed;
  top: 0;
  right: 8vw;
  opacity: 0.7; */
  width: 100%;
}
@media screen and (min-width: 375px) {
  .obi {
    right: 5.5vw;
  }
}
@media screen and (min-width: 450px) {
  .obi {
    right: calc(50% - 156px);
  }
}
@media screen and (min-width: 768px) {
  .obi {
    max-width: 5.4375rem;
    right: 5.98vw;
  }
}
@media screen and (min-width: 1004px) {
  .obi {
    right: calc(50% - 433px);
  }
}

.opening-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: #150201;
  opacity: 0;
}

.opening-box-wrapper {
  position: relative;
  margin: auto;
  max-width: 375px;
  max-width: 23.4375rem;
  width: 100%;
  height: 100%;
  background-color: #150201;
}

/*---------------------------------- 
共通
---------------------------------- */
.box {
  position: absolute;
  width: 100%;
  color: #fff;
  font-weight: 300;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.3em;
}

/*---------------------------------- 
上段 
各要素のサイズとアニメーション終了時の座標
（座標はgsapに直接記述するためコメントアウト）
---------------------------------- */
#box1 {
  max-width: 348px;
  max-width: 21.75rem;
}

#box2 {
  max-width: 28px;
  max-width: 1.75rem;
}

#box3 {
  max-width: 68px;
  max-width: 4.25rem;
}

#box4 {
  max-width: 68px;
  max-width: 4.25rem;
}

#box5 {
  max-width: 18px;
  max-width: 1.125rem;
}

#box6 {
  max-width: 29px;
  max-width: 1.8125rem;
}

#box7 {
  max-width: 16px;
  max-width: 1rem;
}

#box8 {
  max-width: 36px;
  max-width: 2.25rem;
}

#box9 {
  max-width: 108px;
  max-width: 6.75rem;
}

#box10 {
  max-width: 108px;
  max-width: 6.75rem;
}

#box11 {
  max-width: 73px;
  max-width: 4.5625rem;
}

#box12 {
  max-width: 58px;
  max-width: 3.625rem;
}

#box13 {
  max-width: 58px;
  max-width: 3.625rem;
}

#box14 {
  max-width: 110px;
  max-width: 6.875rem;
}

#box15 {
  max-width: 110px;
  max-width: 6.875rem;
}

#box16 {
  max-width: 110px;
  max-width: 6.875rem;
}

#box17 {
  max-width: 27px;
  max-width: 1.6875rem;
}

#box18 {
  max-width: 33px;
  max-width: 2.0625rem;
}

#box19 {
  max-width: 20px;
  max-width: 1.25rem;
}

#box20 {
  max-width: 20px;
  max-width: 1.25rem;
}

#box21 {
  max-width: 28px;
  max-width: 1.75rem;
}

#box22 {
  max-width: 28px;
  max-width: 1.75rem;
}

#box23 {
  max-width: 50px;
  max-width: 3.125rem;
}

/*---------------------------------- 
中段
---------------------------------- */
#box00 {
  max-width: 97px;
  max-width: 6.0625rem;
  top: 300px;
  top: 18.75rem;
  left: 143px;
  left: 8.9375rem;
  opacity: 0;
}

#box31 {
  max-width: 56px;
  max-width: 3.5rem;
}

#box32 {
  max-width: 20px;
  max-width: 1.25rem;
}

#box33 {
  max-width: 35px;
  max-width: 2.1875rem;
}

#box34 {
  max-width: 97px;
  max-width: 6.0625rem;
}

#box35 {
  max-width: 139px;
  max-width: 8.6875rem;
}

#box36 {
  max-width: 139px;
  max-width: 8.6875rem;
}

#box37 {
  max-width: 101px;
  max-width: 6.3125rem;
}

#box38 {
  max-width: 54px;
  max-width: 3.375rem;
}

#box39 {
  max-width: 43px;
  max-width: 2.6875rem;
}

#box40 {
  max-width: 113px;
  max-width: 7.0625rem;
}

#box41 {
  max-width: 113px;
  max-width: 7.0625rem;
}

#box42 {
  max-width: 113px;
  max-width: 7.0625rem;
}

#box43 {
  max-width: 37px;
  max-width: 2.3125rem;
}

#box44 {
  max-width: 37px;
  max-width: 2.3125rem;
}

#box45 {
  max-width: 37px;
  max-width: 2.3125rem;
}

#box46 {
  max-width: 37px;
  max-width: 2.3125rem;
}

#box47 {
  max-width: 29px;
  max-width: 1.8125rem;
}

#box48 {
  max-width: 15px;
  max-width: 0.9375rem;
}

#box49 {
  max-width: 29px;
  max-width: 1.8125rem;
}

#box50 {
  max-width: 79px;
  max-width: 4.9375rem;
}

#box51 {
  max-width: 78px;
  max-width: 4.875rem;
}

#box52 {
  max-width: 78px;
  max-width: 4.875rem;
}

#box53 {
  max-width: 81px;
  max-width: 5.0625rem;
}

/*---------------------------------- 
下段
---------------------------------- */
#box61 {
  max-width: 81px;
  max-width: 5.0625rem;
}

#box62 {
  max-width: 29px;
  max-width: 1.8125rem;
}

#box63 {
  max-width: 24px;
  max-width: 1.5rem;
}

#box64 {
  max-width: 25px;
  max-width: 1.5625rem;
}

#box65 {
  max-width: 136px;
  max-width: 8.5rem;
}

#box66 {
  max-width: 40px;
  max-width: 2.5rem;
}

#box67 {
  max-width: 21px;
  max-width: 1.3125rem;
}

#box68 {
  max-width: 70px;
  max-width: 4.375rem;
}

#box69 {
  max-width: 70px;
  max-width: 4.375rem;
}

#box70 {
  max-width: 70px;
  max-width: 4.375rem;
}

#box71 {
  max-width: 29px;
  max-width: 1.8125rem;
}

#box72 {
  max-width: 44px;
  max-width: 2.75rem;
}

#box73 {
  max-width: 47px;
  max-width: 2.9375rem;
}

#box74 {
  max-width: 47px;
  max-width: 2.9375rem;
}

#box75 {
  max-width: 63px;
  max-width: 3.9375rem;
}

#box100 {
  max-width: 26px;
  max-width: 1.625rem;
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #311008;
  color: #fff;
}

.top-about {
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
  margin: auto;
  padding: 32px 0 60px;
  padding: 2rem 0 3.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about {
    padding: 6rem 0 7.8125rem;
    max-width: 108.75rem;
  }
}

.top-about__deco {
  max-width: 153px;
  max-width: 9.5625rem;
  width: 100%;
  position: absolute;
  top: 53px;
  top: 3.3125rem;
  right: 0px;
  right: 0rem;
}
@media screen and (min-width: 768px) {
  .top-about__deco {
    max-width: 33.6875rem;
    top: 5.625rem;
    right: 0rem;
  }
}

.top-about__title {
  position: relative;
  margin-left: auto;
  margin-right: 3.375rem;
  max-width: 24.125rem;
  width: 100%;
  padding-right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-about__title {
    margin: auto;
    max-width: 47.25rem;
    padding-right: 3.125rem;
  }
}

.top-about__title::after {
  content: "";
  display: inline-block;
  width: 2.625rem;   /* 42px */
  height: 4.3125rem; /* 69px */
  background-image: url(../images/top/about-bird.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -1.75rem;   /* -28px */
  right: -1rem;    /* -16px */
}

@media screen and (min-width: 768px) {
  .top-about__title::after {
    top: 1rem;        /* 16px */
    right: 10rem;     /* 160px */
    width: 7.4375rem;  /* 119px */
    height: 12.0625rem; /* 193px */
  }
}




.top-about__swiper {
  margin: 25px auto 0;
  max-width: 100%
}
@media screen and (min-width: 768px) {
  
}

.top-about .swiper-horizontal > .swiper-pagination-bullets,
.top-about .swiper-pagination-bullets.swiper-pagination-horizontal,
.top-about .swiper-pagination-custom,
.top-about .swiper-pagination-fraction {
  bottom: -15px;
  bottom: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .top-about .swiper-horizontal > .swiper-pagination-bullets,
  .top-about .swiper-pagination-bullets.swiper-pagination-horizontal,
  .top-about .swiper-pagination-custom,
  .top-about .swiper-pagination-fraction {
    bottom: -2.125rem;
  }
}

.top-about .swiper-pagination-bullet {
  width: 4px;
  width: 0.25rem;
  height: 4px;
  height: 0.25rem;
  background-color: #311008;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .top-about .swiper-pagination-bullet {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.top-about .swiper-pagination-bullet-active {
  opacity: 0.4;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
  margin: 0 0.4375rem;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1rem;
  }
}

.top-feat {
  margin: 0px auto 0;
  margin: 0rem auto 0;
  overflow: hidden;
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-feat {
    margin: -1.25rem auto 0;
    max-width: 62.75rem;
  }
}

.top-feat__title {
  margin: auto;
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  max-width: 23.875rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-feat__title {
    max-width: 35.875rem;
    padding-left: 0;
    padding-left: initial;
  }
}

.top-feat__title-bg {
  margin-left: auto;
  margin-right: -20px;
  margin-right: -1.25rem;
  max-width: 266px;
  max-width: 16.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-feat__title-bg {
    max-width: 51rem;
    margin-top: -3.25rem;
    margin-right: -1.4375rem;
  }
}
	
	
@media screen and (max-width: 768px) {
  .gazou1 {
    display: none;
  }
}


/*---------------------------------- 
feat-item
---------------------------------- */
.top-feat__items {
  margin-top: -40px;
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .top-feat__items {
    margin-top: -13.75rem;
  }
}

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

.feat-item__container {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feat-item__container {
    margin-top: 0.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.feat-item__container:nth-child(n+2) {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.feat-item__left {
  position: relative;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .feat-item__left {
    margin-top: 0;
    margin-top: initial;
  }
}

.feat-item__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feat-item__img {
    margin-left: -12.5rem;
    max-width: 32.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .feat-item__img-1 {
    margin-top: 1.875rem;
  }
}

.feat-item__title-1 {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .feat-item__title-1 {
    margin-left: 0.75rem;
    font-size: 1.5625rem;
  }
}

.feat-item__title-2 {
  margin-left: 11px;
  margin-left: 0.6875rem;
  font-weight: 500;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.2040816327;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .feat-item__title-2 {
    margin-left: 1.4375rem;
    font-size: 3.0625rem;
  }
}

.feat-item__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feat-item__text {
    margin-top: 1.625rem;
    margin-left: 2.8125rem;
  }
}

.top-info {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
  padding: 16vw 0 0px;
  padding: 16vw 0 0rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-info {
    margin: 9.375rem auto 0;
    padding: 6rem 0 0rem;
    width: 100%;
  }
}

.top-info__bg {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: -100px;
  top: -6.25rem;
  left: 0px;
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .top-info__bg {
    max-width: 62.75rem;
    top: -17rem;
    left: 0rem;
  }
}

.top-info__btn {
  position: relative;
  margin: auto;
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
}

.top-info__btn img {
  border-radius: 8px; /* 角を丸める */
  display: block;     /* 余計な隙間をなくす */
}


.top-info__title {
  max-width: none;     /* 枠の制限を解除 */
  width: 100%;         
  text-align: center;  
  margin: 4rem auto 2rem;
}

@media screen and (min-width: 768px) {
  .top-info__title {
    margin: 7.1875rem auto 0;
    max-width: none; 
  }
}

.top-info__map {
  margin: 1.625rem auto 0;
  height: 95vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .top-info__map {
    margin: 3.4375rem auto 0;
    width: 100%;
    max-width: 100%;
    height: 27.375rem;
  }
}

.top-info__map iframe {
  width: 100%;
  height: 100%;
}

.top-info__line {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 100%;
  height: 1px;
  background-color: #311008;
}
@media screen and (min-width: 768px) {
  .top-info__line {
    margin-top: 5.3125rem;
  }
}

.top-info__copyright {
  text-align: center;
  margin-top: 32px;
  margin-top: 2rem;
  font-weight: 300;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .top-info__copyright {
    text-align: right;
    margin-top: 4rem;
    font-size: 0.9375rem;
  }
	}
	

.top-info__bg-2 {
  /*-margin-top: -14.9333333333vw;*/
  padding: 5vw 0 2.5rem;
  background-image: url(../images/top/owner-bg-sp.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-info__bg-2 {
    background-image: url(../images/top/owner-bg.jpeg);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/*---------------------------------- 
info-item
---------------------------------- */
.top-info__items {
  margin: auto;
  max-width: 295px;
  max-width: 18.4375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-info__items {
    max-width: 37.8125rem;
  }
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-item:nth-child(n+2) {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.info-term {
  max-width: 75px;
  max-width: 4.6875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .info-term {
    max-width: 6.5625rem;
  }
}

.info-term,
.info-description {
  font-weight: 300;
  font-size: 13.6px;
  font-size: 0.85rem;
  line-height: 1.3076923077;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .info-term,
  .info-description {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.top-mv-space {
  width: 100%;
  height: 6rem;
}

/*
.top-mv {
  margin: -116px auto 0;
  margin: -7.25rem auto 0;
  max-width: 450px;
  max-width: 28.125rem;
  width: 100%;
  overflow-x: clip;
  pointer-events: none;
  position: relative;
  */

@media screen and (min-width: 768px) {
.top-mv {
    margin: -2.5rem auto 0;
  }
}


.top-owner {
  margin-top: 3.5625rem;
  padding: 0.0625rem 0 3.4375rem;
  background-image: url(../images/top/owner-bg-sp.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  overflow-x: clip;
  position: relative;
}
@media screen and (min-width: 768px) {
.top-owner {
    padding-top: 4.125rem;
    margin-top: 8.125rem;
    background-image: url(../images/top/owner-bg.png);
  }
}



.top-owner-menu {
  padding: 0.0625rem 0 8.4375rem;
  background-position: top;
  overflow-x: clip;
  position: relative;
background-repeat: repeat-y;
background-image: url(../images/top/menu_bg.png);
}
@media screen and (min-width: 768px) {
.top-owner-menu {
    padding-top: 7rem;
    margin-top: 3.125rem;
    background-image: url(../images/top/menu_bg.png);
  }
	}
@media screen and (max-width: 768px) {
.top-owner-menu {
    padding-top: 6rem;
  }
}
	


.top-owner__container {
  position: relative;

}
@media screen and (max-width: 768px) {
  .top-owner__container {
padding-top: 57px;
  }
}

.top-owner__container2 {
  position: relative;
  padding-top: 57px;
}
@media screen and (min-width: 768px) {
  .top-owner__container2 {
    max-width: 100%;
  }
}



.top-owner__img {
  position: absolute;
  z-index: 1;
  max-width: 14.625rem;
  width: 100%;
  top: -6.625rem;
  right: -5.375rem;
}
@media screen and (min-width: 768px) {
  .top-owner__img {
    max-width: 31rem;
    top: auto;
    top: initial;
    bottom: 17.625rem;
    right: -0.625rem;
  }
}

.top-owner__gold {
  position: absolute;
  z-index: 2;
  max-width: 255px;
  max-width: 15.9375rem;
  width: 100%;
  top: 324px;
  top: 20.25rem;
  right: -78px;
  right: -4.875rem;
}
@media screen and (min-width: 768px) {
  .top-owner__gold {
    max-width: 31.9375rem;
    top: auto;
    top: initial;
    bottom: -12.5rem;
    right: -16.625rem;
  }
}

.top-owner__gold-2 {
  position: absolute;
  z-index: 1;
  max-width: 240px;
  max-width: 15rem;
  width: 100%;
  top: -163px;
  top: -10.1875rem;
  left: -72px;
  left: -4.5rem;
}
@media screen and (min-width: 768px) {
  .top-owner__gold-2 {
    max-width: 31.3125rem;
    top: -21.5rem;
    left: -10.25rem;
  }
}

.top-owner__title {
  margin-top: 56px;
  margin-top: 3.5rem;
  margin-left: 73px;
  margin-left: 4.5625rem;
  max-width: 244px;
  max-width: 15.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top-owner__title {
    text-align: center;		
    margin:auto;
    max-width: 13.8125rem;
    margin-bottom: 3.75rem;
  }
}

.top-owner__title img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
@media screen and (min-width: 768px) {
  .top-owner__title img {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

@media screen and (min-width: 768px) {
  .top-owner__title {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
.top-info1 {
  margin-top: -1.5rem;
  margin-left: -0.4375rem;
  max-width: 7.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top-info1 {
    margin-top: 0;
    margin-top: initial;
    max-width: 15.8125rem;
    margin-left: 7.25rem;
    margin-bottom: 0.75rem;
  }
}






.top-owner__sentence {
  margin-top: 415px;
  margin-top: 25.9375rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-owner__sentence {
    margin-top: -7.8125rem;
    max-width: 32.8125rem;
  }
}
/*# sourceMappingURL=styles.css.map */


@media screen and (min-width: 768px) {
.image-container {
  display: flex;
  justify-content: space-between;
}

.image-container .image-wrapper {
  width: 30%;
}

.image-container .image-wrapper img {
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.image-container .image-wrapper p {
  text-align: center;
  color: #333;
  font-size: 0.8rem;
  color:#FFFFFF;
}
}
  .image-container .image-wrapper {
    width: 100%; /* 画像を全幅に広げます */
    margin-bottom: 20px; /* 画像の下にスペースを追加します */
    display: flex;
    justify-content: space-between;
	flex-direction: column;
}
  .image-container .image-wrapper p {
    text-align: center;
    color: #333;
    font-size: 0.8rem;
    color:#FFFFFF;
}

.title_sign
{
  max-width: 45%;
  margin: auto;
}
@media screen and (max-width: 768px) {
.title_sign
{
  max-width: 35%;
  margin: auto;
  margin-bottom: 1rem;
	}}
	
	
.swiper2
{
    width: 360px;
    height: auto;
}

@media screen and (min-width: 768px) {
.swiper2
{
    width: 100%;
    height: auto;
}}

/* マガジン用のCSS*/
.magazine{
  max-width: 30%;
  height: auto;
  margin-top: 5px;
  display: block; /* ブロックレベル要素にする */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5%;
}

@media (max-width: 768px) {
  .magazine{
    max-width: 60%;
    margin-bottom: 10%;
  }
}


.blog_container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  margin-top:10%;
}

.blog_foto {
  width: 80%;
  margin: auto;
  overflow: hidden;
}
.blog_foto2 {
  width: 40%;
  margin: auto;
  overflow: hidden;
}


.gallery-container {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  padding: 20px;
  background: #fff;
}
.gallery-item {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-image {
  width: 100%;
  height: auto;
}

.image-container {
  display: flex;
  justify-content: space-around; /* 画像間にスペースを均等に配置 */
}
.image-container img {
  width: 48%; /* 画像の幅をコンテナの約半分に設定 */
  height: auto; /* 画像の高さを自動調整してアスペクト比を維持 */
}

.video_py{
  height: 100%; /* ブラウザのビューポートの高さに合わせる */
  margin: 0;
  padding: 0;
  display: flex; /* Flexbox を使う */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
}
iframe {
  width: 315px;
  height: 560px;
  border: 0;
  /* 追加のスタイルが必要な場合はここに記述 */
}

.navigation {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 3rem;
}

.nav-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #555;
}
	
.menu-item{
  width: 50%;
  margin: auto;
	}
@media screen and (max-width: 768px) {
.menu-item{
  width: 80%;
  margin: auto;
}}


/* 言語選択ポップの基本スタイル */
.language-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000000;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000;
}

/* バナー表示のスタイル（デフォルトは非表示） */
.language-banner {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  width: 150px; /* 幅を指定して整える */
}

/* aタグをボタン風に */
.language-banner a {
  display: block;
  margin: 6px 0;
  padding: 8px;
  background-color: #f1f1f1;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s;
}

.language-banner a:hover {
  background-color: #ddd;
}


.language-banner button:hover {
  background-color: #ddd;
}


/* ================================
   FEATURE SECTION LAYOUT OVERRIDES
   （feat-itemを全セクション統一）
   ここから下を既存CSSの最後に追記
================================= */

/* セクション間の余白を統一 */
.top-feat__items { margin-top: 0 !important; }
.feat-item + .feat-item { 
  margin-top: clamp(24px, 6vw, 80px) !important;
}

.feat-item__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  margin-top: 0 !important;
  position: static !important;
  flex-direction: row; /* 常に 左→右 */
}

.feat-item__left {
  flex: 1 1 50%;
  max-width: 600px;
  padding: 1rem;
}

.feat-item__img {
  flex: 1 1 40%;
  max-width: 500px;
  margin: 0 !important;
  text-align: center;
}

.feat-item__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* タイトル・本文の余白を統一 */
.feat-item__title-1 { 
  margin: 0 0 .5rem 0 !important;
}
.feat-item__text {
  margin: 0 !important;          /* 左マージンを打ち消す */
  font-size: clamp(14px, 1.05rem, 17px);
  line-height: 1.8;
}

/* 偶数番セクションは左右反転（PCのみ） */
@media (min-width: 768px) {
  .feat-item:nth-child(even) .feat-item__container {
    flex-direction: row-reverse;
  }
}

/* スマホ時は縦積み */
@media (max-width: 767.98px) {
  .feat-item__container {
    flex-direction: column;
  }
  .feat-item__left,
  .feat-item__img {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* MV直下と見出しの微調整（任意） */
.top-feat { max-width: 1000px; width: 100%; margin: 0 auto; }
.top-feat__title { padding-left: 0 !important; }

/* 画像のはみ出し防止（保険） */
img { max-width: 100%; height: auto; }


/* ================================
   全タイトル画像を統一（最大900pxまで）
================================= */
/* タイトル親要素の制限を解除 */
.top-about__title,
.top-owner__title,
.top-info__title,
.top-feat__title {
  max-width: none !important;
  width: 100% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* タイトル画像を統一（最大900pxまで） */
.top-feat__title img,
.top-about__title img,
.top-info__title img,
.top-owner__title img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: clamp(300px, 80vw, 900px);
  transform: none !important; /* owner の scale を打ち消す */
}


