@charset "UTF-8";
/*Import-------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #1D1D1B;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #1D1D1B;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*breakpointes-------------------*/
/*-------------------------------*/
/*variable---------------------------*/
/*-------------------------------*/
/*mixin--------------------------*/
/*-------------------------------*/
/*general------------------------*/
body {
  font-family: "M PLUS 2", san-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

body.modal-open {
  overflow: hidden;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

main {
  width: 100%;
  overflow: hidden;
}

/* Webkit系（Chrome, Edge, Safari） */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #E7DECF;
}

::-webkit-scrollbar-thumb {
  background: #e2e2e2;
}

/* Firefox対応 */
html {
  scrollbar-width: thin; /* 細めのスクロールバー */
  scrollbar-color: #e4e4e4 transparent; /* 色 */
}

/*-------------------------------*/
/*animation----------------------*/
.fuwa {
  animation: fuwa 10s infinite;
}

.fuwa2 {
  animation: fuwa2 5s infinite;
}

@keyframes fuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes fuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.d1 {
  transition-delay: 0.1s;
}
.fadeInUp.d2 {
  transition-delay: 0.2s;
}
.fadeInUp.d3 {
  transition-delay: 0.3s;
}
.fadeInUp.d4 {
  transition-delay: 0.4s;
}
.fadeInUp.d5 {
  transition-delay: 0.5s;
}
.fadeInUp.d6 {
  transition-delay: 0.6s;
}
.fadeInUp.d7 {
  transition-delay: 0.7s;
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.itemUp {
  transition: 0.3s;
  transform: rotate(5deg);
}
.itemUp.is-inview {
  transform: translateY(0);
}
.itemUp:nth-of-type(2n) {
  transition: 0.5s;
  transform: rotate(-5deg);
}
.itemUp:nth-of-type(2n).is-inview {
  transform: translateY(0);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); /* 小さくして透明に */
  }
  50% {
    opacity: 1;
    transform: scale(1.05); /* 少し大きくして現れる */
  }
  70% {
    transform: scale(0.9); /* 一瞬縮む */
  }
  100% {
    transform: scale(1); /* 元のサイズに戻る */
    opacity: 1;
  }
}
.bounceIn {
  opacity: 0;
}
.bounceIn.is-inview {
  animation: bounceIn 0.6s ease-out forwards;
}

@keyframes tada {
  0% {
    transform: scale(1) rotate(0deg); /* 元の状態 */
  }
  10%, 20% {
    transform: scale(0.95) rotate(-3deg); /* 縮小して傾く */
  }
  30%, 50%, 70% {
    transform: scale(1.1) rotate(3deg); /* 拡大して逆方向に傾く */
  }
  40%, 60% {
    transform: scale(1.1) rotate(-3deg); /* 拡大して傾く */
  }
  80% {
    transform: scale(1.1) rotate(1deg); /* 少し小さめの傾き */
  }
  100% {
    transform: scale(1) rotate(0deg); /* 元に戻る */
  }
}
.tada {
  animation: tada 1s ease-in-out; /* 1秒でTadaアニメーションを実行 */
}

.tada2.is-inview {
  animation: tada 1s ease-in-out; /* 1秒でTadaアニメーションを実行 */
}

.nobi {
  transition: 12s;
  transition-timing-function: linear;
  height: 0%;
}
.nobi.is-inview {
  height: 100%;
}

.yarnFadeIn .yarn_base01 {
  opacity: 0;
  transition: 1s;
  transition-delay: 1s;
}
.yarnFadeIn .yarn_over img {
  opacity: 0;
  transition: 0.3s;
  transform: translateY(-10px);
}
.yarnFadeIn .yarn01 img {
  transition-delay: 0.8s;
}
.yarnFadeIn .yarn02 img {
  transition-delay: 0.7s;
}
.yarnFadeIn .yarn03 img {
  transition-delay: 0.6s;
}
.yarnFadeIn .yarn04 img {
  transition-delay: 0.5s;
}
.yarnFadeIn .yarn05 img {
  transition-delay: 0.6s;
}
.yarnFadeIn .yarn06 img {
  transition-delay: 0.4s;
}
.yarnFadeIn .yarn07 img {
  transition-delay: 0.2s;
}
.yarnFadeIn .yarn08 img {
  transition-delay: 0.3s;
}
.yarnFadeIn .yarn09 img {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(-10px);
  transition-delay: 1s;
}
.yarnFadeIn .yarnb01 img {
  transition-delay: 0.7s;
}
.yarnFadeIn .yarnb02 img {
  transition-delay: 0.6s;
}
.yarnFadeIn .yarnb03 img {
  transition-delay: 0.3s;
}
.yarnFadeIn .yarnb04 img {
  transition-delay: 0.3s;
}
.yarnFadeIn .yarnb05 img {
  transition-delay: 0.1s;
}
.yarnFadeIn.is-inview .yarn_base01 {
  opacity: 1;
}
.yarnFadeIn.is-inview .yarn01 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn02 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn03 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn04 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn05 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn06 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn07 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn08 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarn09 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb01 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb02 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb03 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb04 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb05 img {
  opacity: 1;
  transform: translateY(0px);
}
.yarnFadeIn.is-inview .yarnb06 img {
  opacity: 1;
  transform: translateY(0px);
}

.poyonIn {
  opacity: 0;
  transform: scale(0.7);
  transition: none;
}

.poyonIn.is-inview {
  animation: poyoyon 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes poyoyon {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*-------------------------------*/
/*general------------------------*/
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
}

/*-------------------------------*/
.smaller {
  font-size: 0.8em;
}

.bigger {
  font-size: 1.2em;
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: unset;
  }
}

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

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

/*
横幅での表示変更-----------------------
*/
/*
横幅での改行部分変更-----------------------
*/
/*
シェアボタン設定-----------------------
*/
.youtube_outer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .youtube_outer {
    width: 100%;
    margin-bottom: 0px;
  }
}
.youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .youtube_outer .youtube_embed {
    border-radius: 10px;
  }
}
.youtube_outer .youtube_embed iframe {
  border: solid 1px #1D1D1B;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tab {
  color: #FFF;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: 100%;
  margin: 0;
  width: calc(50% - 2px);
  font-size: 0.9em;
}
.trailer_tab li:first-of-type {
  width: 100%;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .trailer_tab li {
    width: 100%;
  }
}
.trailer_tab li a {
  border-radius: 5px;
  height: 3.5em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-top: 5px;
  background-color: #B3B3C9;
  color: #FFF;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
    margin-top: 5px;
  }
}
.trailer_tab li a:hover {
  background-color: #759FC7;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a:hover {
    background-color: #B3B3C9;
  }
}
.trailer_tab .tab.active a {
  background-color: #759FC7;
  color: #FFF;
}
.trailer_tab .tab.active a::before {
  content: "●　";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 102;
  position: fixed;
  top: 0px;
  right: 0px;
  background-image: url(img/nav_icon.svg);
  background-size: 60px 50px;
  background-repeat: no-repeat;
  background-position: right 5px top 5px;
  width: 100%;
  height: 60px;
  transition: 0.5s;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  opacity: 0;
}
.nav_btn.show {
  opacity: 1;
  background-image: url(img/nav_icon-close.svg);
  background-size: 60px 50px;
  background-repeat: no-repeat;
  background-position: right 5px top 5px;
  top: 0px;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
  }
  .nav_btn.active {
    opacity: 1;
    top: 0px;
  }
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  right: 0;
  height: 60px;
  transition: 0.5s;
  top: -60px;
}
@media screen and (max-width: 768px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(241, 241, 241, 0.9);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: auto;
    background-image: url(img/bg_cl.jpg);
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  top: 0px;
}
.gnav .gnav_list {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  height: 50px;
  align-items: center;
  position: relative;
  background-image: url(img/bg_cl.jpg);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    margin-bottom: 20px;
    max-height: 100%;
    display: block;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 100%;
    background-image: none;
    height: auto;
  }
}
.gnav .gnav_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 0 0.5em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    height: 50px;
    margin: 25px 0;
  }
}
.gnav .gnav_list li a img {
  height: 51px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a img {
    height: 50px;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.gnav .gnav_list li a.construction {
  opacity: 0.2;
  pointer-events: none;
  filter: grayscale(100%);
}

.gnav_title {
  z-index: 106;
  width: 100px;
  position: fixed;
  top: -50px;
  left: 20px;
  transition: 0.8s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .gnav_title {
    left: 7px;
    top: 7px;
    width: 70px;
  }
}
.gnav_title.active {
  top: 7px;
  transition-delay: 0.1s;
  opacity: 1;
}

.nav_top {
  z-index: 99;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 10px;
  right: -50px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .nav_top {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: -50px;
  }
}
.nav_top span {
  font-size: 12px;
  transform: scale(1, 0.6);
}
.nav_top:hover span {
  transform: scale(1, 0.6) translateY(2px);
}
.nav_top.active {
  right: 10px;
}
@media screen and (max-width: 768px) {
  .nav_top.active {
    bottom: 10px;
    opacity: 1;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

/*-------------------------------*/
.nav_kv {
  background-color: #fff;
  position: relative;
  padding: 30px 50px 10px;
}
@media screen and (max-width: 768px) {
  .nav_kv {
    height: auto;
    padding: 10px 20px 0;
  }
}
.nav_kv .nav_kv-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.5s;
}
.nav_kv .nav_kv-list .nav_kv-item a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .nav_kv .nav_kv-list .nav_kv-item a {
    height: auto;
    padding: 5px 0.5em;
  }
}
.nav_kv .nav_kv-list .nav_kv-item a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.nav_kv .nav_kv-list .nav_kv-item a img {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .nav_kv .nav_kv-list .nav_kv-item a img {
    height: 42px;
  }
}
.nav_kv .nav_kv-list .nav_kv-item a.construction {
  pointer-events: none;
  opacity: 0.5;
}

/*header-------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E7DECF;
}
.loading .loading_inner {
  width: 100%;
  height: 100%;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.loading .loader {
  max-width: 200px;
  width: 50%;
  animation: flicker 2s infinite;
}

.fixed_bg {
  z-index: -1;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100lvh;
  width: 100%;
  background-image: url(img/bg_red.jpg);
  position: fixed;
}

.fixed_bg2 {
  z-index: -9;
  opacity: 0.1;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #3bade3, #9844b7, #44ea76); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
}

/*-------------------------------*/
.footer {
  position: relative;
  padding: 100px 30px 80px;
  background-image: url(img/bg_wt.jpg);
  background-size: 518px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 100px 30px 30px;
    background-size: 409px;
  }
}
.footer .line {
  width: 100%;
  height: 50px;
  background-image: url(img/nitted.svg);
  position: absolute;
  top: -30px;
  left: 0;
}
.footer .logo_footer {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 10px;
}
.footer .copys {
  font-family: "Helvetica", "Arial", "M PLUS 2", san-serif;
}
.footer .copys .copyright {
  font-size: 12px;
  line-height: 2;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 1em;
}
.footer .copys .copyright:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer .copys .copyright {
    font-size: 10px;
  }
}
.footer a {
  display: block;
  width: 50px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .footer a {
    margin: 30px auto 0;
    width: 40px;
  }
}
.footer a:hover {
  transition: 0.3s;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .footer a:hover {
    transform: translateY(0);
  }
}

#top {
  margin-top: -1px;
  background-color: #E7DECF;
  position: relative;
  overflow: hidden;
}
#top .top_box {
  position: relative;
  width: 100%;
  height: 50vw;
}
@media screen and (max-width: 768px) {
  #top .top_box {
    height: 172vw;
  }
}
#top .film-top, #top .film-bottom {
  position: absolute;
  top: 0;
  left: 0;
  height: 3vw;
}
@media screen and (max-width: 768px) {
  #top .film-top, #top .film-bottom {
    height: 15vw;
  }
}
#top .film-bottom {
  top: unset;
  bottom: 0;
}
#top .film_wrap {
  display: flex;
  overflow: hidden;
}
#top .film_list {
  display: flex;
}
#top .film_item {
  width: 100vw;
  height: 3.1vw;
  background-image: url(img/film.svg);
  background-repeat: repeat-x;
  background-size: auto 3.1vw;
  background-position: top left;
}
@media screen and (max-width: 768px) {
  #top .film_item {
    height: 15vw;
    background-position: top left;
    background-size: auto 15vw;
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0%);
  }
}
#top .scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  #top .scroll-infinity__list--right {
    animation: infinity-scroll-right 40s infinite linear 0.5s both;
  }
}
#top .logo {
  position: absolute;
  width: 16%;
  left: 7%;
  top: 11%;
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .logo {
    width: 42%;
    left: 29%;
    top: 13%;
  }
}
#top .logo.active {
  opacity: 1;
}
#top .nitt {
  position: absolute;
  top: 46%;
  left: 0;
  width: 100%;
  height: 12vw;
  background-image: url(img/nitted.svg);
  background-repeat: repeat-x;
  background-size: auto 12vw;
  transition: 2s;
  filter: blur(0);
  margin: 0;
  padding: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .nitt {
    transition: 1s;
    height: 30vw;
    background-size: auto 30vw;
    top: 40.5%;
  }
}
#top .nitt.active {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#top .main {
  position: absolute;
  width: 54%;
  bottom: calc(3vw - 2px);
  right: 13%;
  opacity: 0;
  transform: translateY(40px) scale(1);
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    right: 0;
    bottom: calc(15vw - 2px);
  }
}
#top .main.active {
  transform: translateX(0px) scale(1);
  opacity: 1;
}

#info {
  background-color: #fff;
  padding: 20px 50px 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 25px 30px;
  }
}
#info .bnrs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#info .bnrs li {
  width: calc(50% - 20px);
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  #info .bnrs li {
    width: calc(50% - 10px);
  }
}
#info .bnrs li a {
  margin: 0 10px 20px;
  border-radius: 10px;
  background-image: url(img/bg_cl.jpg);
  display: block;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  #info .bnrs li a {
    margin: 0 5px 10px;
  }
}
#info .bnrs li a:hover {
  transition: 0.3s;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  #info .bnrs li a:hover {
    transform: translateY(0);
  }
}
#info .bnrs li:nth-of-type(2n) a {
  background-position: center center;
}
#info .bnrs li:nth-of-type(3n) a {
  background-position: right center;
}

#news .section_inner {
  background-color: #FFF8ED;
  padding: 0px 50px 0;
}
@media screen and (max-width: 768px) {
  #news .section_inner {
    padding: 0px 30px 60px;
  }
}
#news .section_inner .section_main {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main {
    max-width: 500px;
  }
}
#news .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 10px;
  transform: translateY(-30px);
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main h2 {
    transform: translateY(-20px);
    margin-bottom: 10px;
  }
}
#news .section_inner .section_main h2 img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main h2 img {
    height: 36px;
  }
}
#news .section_inner .section_main h2 span {
  color: #C37465;
  display: block;
  font-weight: 700;
  margin-top: 0.5em;
}
#news .section_inner .section_main ul.newscards {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
#news .section_inner .section_main ul.newscards li {
  width: 31%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main ul.newscards li {
    width: 100%;
    margin-bottom: 30px;
  }
  #news .section_inner .section_main ul.newscards li:last-of-type {
    margin-bottom: 0;
  }
}
#news .section_inner .section_main ul.newscards li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: #1D1D1B;
}
#news .section_inner .section_main ul.newscards li .news_img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  height: 0;
  padding-top: 65%;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main ul.newscards li .news_img {
    margin-bottom: 10px;
    border-radius: 10px;
  }
}
#news .section_inner .section_main ul.newscards li .news_img img {
  transition: 0.4s;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#news .section_inner .section_main ul.newscards li .news_cat {
  width: 6em;
  margin-bottom: 10px;
}
#news .section_inner .section_main ul.newscards li .news_cat span {
  font-size: 0.8em;
  color: #FFF;
  padding: 0.5em 0em;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main ul.newscards li .news_cat span {
    border-radius: 5px;
  }
}
#news .section_inner .section_main ul.newscards li .news_cat span.cat-goods {
  background-color: #3FBA86;
  letter-spacing: 0.2em;
  text-indent: -0.2em;
}
#news .section_inner .section_main ul.newscards li .news_cat span.cat-event {
  background-color: #E0554C;
  letter-spacing: 0.1em;
  text-indent: -0.1em;
}
#news .section_inner .section_main ul.newscards li .news_cat span.cat-camp {
  background-color: #4C68E0;
}
#news .section_inner .section_main ul.newscards li .news_date {
  margin-bottom: 10px;
  font-weight: 500;
  color: #C37465;
  letter-spacing: 0.05em;
  min-width: calc(100% - 6em);
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main ul.newscards li .news_date {
    padding-left: 1em;
  }
}
#news .section_inner .section_main ul.newscards li .news_title {
  line-height: 1.4;
  font-weight: 500;
}
#news .section_inner .section_main ul.newscards li:hover .news_img img {
  transform: scale(1.1);
}
#news .section_inner .section_main .link_news {
  display: block;
  background-color: #E1BC9E;
  color: #1D1D1B;
  font-weight: 700;
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: -20px 0 0 auto;
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main .link_news {
    width: 200px;
    height: 50px;
    border-radius: 10px;
    margin: 40px auto 0;
  }
}
#news .section_inner .section_main .link_news:hover {
  transition: 0.3s;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  #news .section_inner .section_main .link_news:hover {
    transform: translateY(0);
  }
}

.body_news {
  background-color: #FFF8ED;
}
.body_news #news .section_inner {
  padding: 120px 0 120px;
}
.body_news #news .section_inner .section_main {
  padding: 0px 50px 0;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main {
    padding: 0px 30px 0px;
  }
}
.body_news #news .section_inner .section_main h2 {
  transform: translateY(0);
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main h2 {
    margin-bottom: 60px;
  }
}
.body_news #news .section_inner .section_main .news_single {
  border-bottom: solid 2px #000;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main .news_single {
    padding-bottom: 20px;
  }
}
.body_news #news .section_inner .section_main .news_single .catndate {
  display: flex;
  align-items: center;
}
.body_news #news .section_inner .section_main .news_single .catndate .news_cat {
  width: 6em;
  margin-bottom: 10px;
}
.body_news #news .section_inner .section_main .news_single .catndate .news_cat span {
  font-size: 0.8em;
  color: #FFF;
  padding: 0.5em 0em;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main .news_single .catndate .news_cat span {
    border-radius: 5px;
  }
}
.body_news #news .section_inner .section_main .news_single .catndate .news_cat span.cat-goods {
  background-color: #3FBA86;
  letter-spacing: 0.2em;
}
.body_news #news .section_inner .section_main .news_single .catndate .news_cat span.cat-event {
  background-color: #E0554C;
  letter-spacing: 0.1em;
}
.body_news #news .section_inner .section_main .news_single .catndate .news_cat span.cat-camp {
  background-color: #4C68E0;
}
.body_news #news .section_inner .section_main .news_single .catndate .news_date {
  margin-bottom: 10px;
  font-weight: 500;
  color: #C37465;
  letter-spacing: 0.05em;
  min-width: calc(100% - 6em);
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main .news_single .catndate .news_date {
    padding-left: 1em;
  }
}
.body_news #news .section_inner .section_main .news_single .news_title {
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.5em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .section_main .news_single .news_title {
    margin-bottom: 20px;
  }
}
.body_news #news .section_inner .section_main .news_single .news_content {
  all: unset; /* すべてのプロパティをリセット */
  all: initial; /* 初期値に戻す */
  all: revert; /* ブラウザのデフォルトに戻す */
}
.body_news #news .section_inner .section_main .news_single .news_content p, .body_news #news .section_inner .section_main .news_single .news_content h1, .body_news #news .section_inner .section_main .news_single .news_content h2, .body_news #news .section_inner .section_main .news_single .news_content h3, .body_news #news .section_inner .section_main .news_single .news_content h4, .body_news #news .section_inner .section_main .news_single .news_content h5, .body_news #news .section_inner .section_main .news_single .news_content h6, .body_news #news .section_inner .section_main .news_single .news_content a, .body_news #news .section_inner .section_main .news_single .news_content img, .body_news #news .section_inner .section_main .news_single .news_content ul, .body_news #news .section_inner .section_main .news_single .news_content ol, .body_news #news .section_inner .section_main .news_single .news_content li {
  all: revert; /* 必要な要素だけを戻す */
}
.body_news #news .section_inner .section_main .news_single .news_content span {
  color: inherit;
  display: initial;
  font-weight: inherit;
  margin-top: inherit;
}
.body_news #news .section_inner .section_main .news_single .news_content img {
  max-width: 100%;
  width: auto;
  width: unset;
  width: revert-layer;
}
.body_news #news .section_inner .section_main .news_single .news_content p {
  line-height: 1.8;
  margin: 0.5em 0;
  font-weight: inherit;
}
.body_news #news .section_inner .section_main .news_single .news_content h1 span {
  font-weight: inherit;
}
.body_news #news .section_inner .section_main .news_single .news_content h2 {
  font-size: 1.2em;
}
.body_news #news .section_inner .section_main .news_single .news_content h2 span {
  font-weight: inherit;
}
.body_news #news .section_inner .section_main .news_single .news_content .ql-align-center {
  text-align: center;
}
.body_news #news .section_inner .section_main .news_single .news_content .ql-align-right {
  text-align: right;
}
.body_news #news .section_inner .section_main .news_single .news_content .ql-align-justify {
  text-align: justify;
}
.body_news #news .section_inner .news_share {
  margin-top: 40px;
}
.body_news #news .section_inner .news_share p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8em;
  margin-bottom: 10px;
}
.body_news #news .section_inner .news_share ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.body_news #news .section_inner .news_share ul li {
  width: 50px;
  transition: 0.3s;
}
.body_news #news .section_inner .news_share ul li:hover {
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .news_share ul li:hover {
    transform: translateY(0);
  }
}
.body_news #news .section_inner .pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation {
    margin: 40px auto 0;
  }
}
.body_news #news .section_inner .pagenation li a {
  border-radius: 20px;
  background-color: #E1BC9E;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #1D1D1B;
  font-weight: 700;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation li a {
    height: 50px;
    border-radius: 10px;
  }
}
.body_news #news .section_inner .pagenation li a:hover {
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation li a:hover {
    transform: translateY(0);
  }
}
.body_news #news .section_inner .pagenation li a.current {
  background-color: #fff;
}
.body_news #news .section_inner .pagenation.numbers li {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation.numbers li {
    width: 50px;
  }
}
.body_news #news .section_inner .pagenation.backforward {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation.backforward {
    margin-bottom: 20px;
  }
}
.body_news #news .section_inner .pagenation.backforward li {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .body_news #news .section_inner .pagenation.backforward li {
    width: 140px;
  }
}
.body_news #news .section_inner .pagenation.backforward li.page-back {
  margin: 0 auto 0 0;
}
.body_news #news .section_inner .pagenation.backforward li.page-forward {
  margin: 0 0 0 auto;
}
.body_news #news .section_inner .link_news {
  margin: 0 auto;
}

#about .section_inner {
  background-image: url(img/bg_wt.jpg);
  background-size: 518px;
  background-color: #FFF8ED;
}
@media screen and (max-width: 768px) {
  #about .section_inner {
    background-size: 259px;
  }
}
#about .section_inner .section_header {
  background-image: linear-gradient(to bottom, #FFF8ED 0px, #FFF8ED 100px, transparent 100px), url(img/moko_end.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, 0px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100%, 100%;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_header {
    background-size: 100%, 920px auto;
  }
}
#about .section_inner .section_header .catch_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  max-width: 850px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_header .catch_box {
    width: 50%;
    padding: 0 20px;
  }
}
#about .section_inner .section_header .catch_box .cut1 {
  width: 25%;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_header .catch_box .cut1 {
    width: 100%;
  }
}
#about .section_inner .section_header .catch_box .catch {
  width: 75%;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_header .catch_box .catch {
    display: none;
  }
}
#about .section_inner .catch-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #about .section_inner .catch-sp {
    display: block;
    padding: 20px 20px 0;
    width: 90%;
    margin: 0 auto;
  }
}
#about .section_inner .section_main {
  padding: 40px 0 120px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main {
    padding: 30px 0 80px;
  }
}
#about .section_inner .section_main .block {
  max-width: 1000px;
  margin: 0 auto 200px;
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .block {
    max-width: 500px;
    padding: 0 30px;
    margin: 0 auto 130px;
  }
}
#about .section_inner .section_main .block.wg {
  background-color: rgba(248, 217, 217, 0.295);
  padding: 0px 20px 80px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .block.wg {
    width: calc(100% - 40px);
    padding: 0 20px 40px;
  }
}
#about .section_inner .section_main .block:last-of-type {
  margin-bottom: 0;
}
#about .section_inner .section_main .about_copy1 {
  position: relative;
  margin: 0 auto 60px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  max-width: 750px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .about_copy1 {
    width: calc(100% + 50px);
    margin-left: -25px;
    margin-bottom: 30px;
  }
}
#about .section_inner .section_main .about_copy1 .moku {
  position: relative;
  opacity: 0.7;
}
#about .section_inner .section_main .about_copy1 .thirty {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .about_copy1 .thirty {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
#about .section_inner .section_main .kikan {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .kikan {
    margin-bottom: 20px;
    font-size: 1.4em;
  }
}
#about .section_inner .section_main .kikan p {
  text-align: center;
  margin-bottom: 1em;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .kikan p {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .kikan p {
    margin-bottom: 0em;
  }
}
#about .section_inner .section_main .kikan p span {
  color: #3E0800;
  font-weight: 900;
}
#about .section_inner .section_main .kikan p span.span_p {
  background: linear-gradient(to bottom, transparent 40%, rgba(255, 188, 111, 0.2) 40%, rgba(255, 188, 111, 0.2) 90%, transparent 90%);
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .kikan p span.span_p {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .kikan p span.span_block {
    background: linear-gradient(to bottom, transparent 40%, rgba(255, 188, 111, 0.2) 40%, rgba(255, 188, 111, 0.2) 100%, transparent 100%);
    display: inline-block;
    margin-bottom: 0.9em;
    letter-spacing: 0.05em;
  }
}
#about .section_inner .section_main .kikan p:last-of-type {
  margin-bottom: 0;
}
#about .section_inner .section_main .about_body {
  margin-bottom: 20px;
}
#about .section_inner .section_main .about_body p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 1em;
  font-weight: 700;
}
#about .section_inner .section_main .about_body p:last-of-type {
  margin-bottom: 0;
}
#about .section_inner .section_main .about_body p span {
  color: #C11920;
  font-weight: 900;
}
#about .section_inner .section_main .about_copy2 {
  width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .about_copy2 {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .about_copy2 {
    width: calc(100% + 10px);
    margin-left: -5px;
  }
}
#about .section_inner .section_main .cut2 {
  width: 450px;
  height: 237px;
  transform: translateY(-170px);
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .cut2 {
    transform: translateY(-100px);
    width: 262px;
    height: 138px;
  }
}
#about .section_inner .section_main h4 {
  font-size: 1.2em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  margin-top: -170px;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main h4 {
    margin-bottom: 20px;
    margin-top: -100px;
  }
}
#about .section_inner .section_main h4 span {
  color: #C11920;
  font-weight: 900;
}
#about .section_inner .section_main .wg_body {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .wg_body {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}
#about .section_inner .section_main .wg_body p {
  line-height: 2;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #about .section_inner .section_main .wg_body p {
    text-align: justify;
  }
}
#about .section_inner .section_main .wg_body p:last-of-type {
  margin-bottom: 0;
}
#about .section_inner .section_main .wg_body p .bold {
  font-weight: 900;
}
#about .section_inner .section_main .wg_body p .bigger {
  font-size: 1.2em;
}

#history .section_inner .section_header {
  position: relative;
}
#history .section_inner .section_header .masked-div {
  width: 100%;
  height: 100%;
  background-image: url(img/masked-moko.png);
  background-size: 1920px auto;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_header .masked-div {
    background-size: 920px auto;
    background-position: center top;
  }
}
#history .section_inner .section_header .cut3 {
  position: relative;
  width: 20%;
  margin: 0 auto 50px;
  max-width: 276px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_header .cut3 {
    width: 40%;
    margin: 0 auto 10px;
    max-width: 220px;
  }
}
#history .section_inner .section_main {
  padding: 0 50px 240px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main {
    padding: 0 20px 40px;
  }
}
#history .section_inner .section_main h2 {
  max-width: 600px;
  margin: 0 auto 60px;
  width: 100%;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main h2 {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main h2 {
    margin: 0 auto 20px;
    width: 80%;
  }
}
#history .section_inner .section_main .h_items {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items {
    max-width: 500px;
  }
}
#history .section_inner .section_main .h_items .h_reg {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_reg {
    padding-top: 80px;
  }
}
#history .section_inner .section_main .h_items .film_arrows {
  position: absolute;
  height: 100%;
  width: 40px;
  top: 0;
  left: calc(50% - 20px);
  pointer-events: none;
  height: calc(100% - 28px);
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .film_arrows {
    left: calc(50% - 15px);
    width: 30px;
    height: calc(100% - 23px);
  }
}
#history .section_inner .section_main .h_items .film_arrows .film_arrow {
  position: relative;
  width: 30px;
  background-size: 30px auto;
  background-position: center top;
  background-image: url(img/film-vert.svg);
  margin: 0 auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#history .section_inner .section_main .h_items .film_arrows .tri {
  width: 60px;
  position: absolute;
  bottom: -28px;
  left: -14px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .film_arrows .tri {
    width: 50px;
    left: -10px;
    bottom: -20px;
  }
}
#history .section_inner .section_main .h_items .film_arrows .cir {
  width: 40px;
  position: absolute;
  top: -20px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .film_arrows .cir {
    left: -5px;
    top: -20px;
    width: 40px;
  }
}
#history .section_inner .section_main .h_items .h_item {
  margin-bottom: 120px;
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}
#history .section_inner .section_main .h_items .h_item .h_texts {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
  position: relative;
  width: 50%;
  margin-right: -1%;
  transform: rotate(-1deg);
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_texts {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_texts {
    width: 100%;
  }
}
#history .section_inner .section_main .h_items .h_item .h_texts .h_year {
  background-size: 200px;
  background-image: url(img/bg_cl.jpg);
  background-position: top center;
  -webkit-clip-path: ellipse(32% 121% at 50% 140%);
          clip-path: ellipse(32% 121% at 50% 140%);
  width: 100%;
  padding: 1% 9% 0%;
  margin: 0 auto -1px;
}
#history .section_inner .section_main .h_items .h_item .h_texts .h_titles {
  background-image: url(img/bg_cl.jpg);
  background-size: 200px;
  border-radius: 20px;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_texts .h_titles {
    border-radius: 10px;
  }
}
#history .section_inner .section_main .h_items .h_item .h_texts .h_pin {
  width: 30px;
  position: absolute;
  top: 5%;
  left: calc(50% - 15px);
  display: none;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_texts .h_pin {
    width: 18px;
    left: calc(50% - 9px);
  }
}
#history .section_inner .section_main .h_items .h_item .h_imgs {
  z-index: 2;
  width: 50%;
  display: flex;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_imgs {
    width: 100%;
  }
}
#history .section_inner .section_main .h_items .h_item .h_imgs .h_img, #history .section_inner .section_main .h_items .h_item .h_imgs .h_img-s {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_imgs .h_img, #history .section_inner .section_main .h_items .h_item .h_imgs .h_img-s {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
#history .section_inner .section_main .h_items .h_item .h_imgs .h_img img, #history .section_inner .section_main .h_items .h_item .h_imgs .h_img-s img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item .h_imgs .h_img img, #history .section_inner .section_main .h_items .h_item .h_imgs .h_img-s img {
    border-radius: 10px;
  }
}
#history .section_inner .section_main .h_items .h_item#h_1995 {
  align-items: flex-start;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs {
  display: flex;
  align-items: flex-start;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs .h_img:first-of-type {
  width: 65%;
  transform: rotate(2deg);
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs .h_imgs_inner {
  display: flex;
  flex-direction: column;
  width: 36%;
  margin-top: 10%;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs .h_imgs_inner .h_img-s {
  margin-left: -0.5%;
  width: 100%;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs .h_imgs_inner .h_img-s:first-of-type {
  margin-bottom: 10%;
  transform: rotate(-2deg);
}
#history .section_inner .section_main .h_items .h_item#h_1995 .h_imgs .h_imgs_inner .h_img-s:nth-of-type(2) {
  margin-left: -10%;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .video {
  margin-top: -2%;
}
#history .section_inner .section_main .h_items .h_item#h_1995 .video .debut {
  width: 35%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_1995 .video .debut {
    width: 40%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_1995 .video video {
  width: 100%;
}
#history .section_inner .section_main .h_items .h_item#h_2002 .h_texts, #history .section_inner .section_main .h_items .h_item#h_2015 .h_texts, #history .section_inner .section_main .h_items .h_item#h_2019 .h_texts {
  order: 2;
  transform: rotate(1deg);
  margin-left: -1%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2002 .h_texts, #history .section_inner .section_main .h_items .h_item#h_2015 .h_texts, #history .section_inner .section_main .h_items .h_item#h_2019 .h_texts {
    order: 1;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2002 .h_imgs, #history .section_inner .section_main .h_items .h_item#h_2015 .h_imgs, #history .section_inner .section_main .h_items .h_item#h_2019 .h_imgs {
  order: 1;
  width: 35%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2002 .h_imgs, #history .section_inner .section_main .h_items .h_item#h_2015 .h_imgs, #history .section_inner .section_main .h_items .h_item#h_2019 .h_imgs {
    order: 2;
    width: 80%;
    margin: 0 auto;
    margin-top: -2%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2002 .h_imgs .h_img, #history .section_inner .section_main .h_items .h_item#h_2015 .h_imgs .h_img, #history .section_inner .section_main .h_items .h_item#h_2019 .h_imgs .h_img {
  transform: rotate(-2deg);
  margin: 0 0 0 auto;
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs {
    align-items: flex-start;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_img {
  transform: rotate(2deg);
  width: 70%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_img {
    width: 65%;
    margin-top: 4%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner {
    width: 35%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner .h_img-s {
  width: 100%;
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner .h_img-s:first-of-type {
  transform: rotate(-2deg);
  margin-bottom: 10%;
  margin-left: 2%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner .h_img-s:first-of-type {
    width: 80%;
    margin-top: -15%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner .h_img-s:nth-of-type(2) {
  margin-left: -10%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2007 .h_imgs .h_imgs_inner .h_img-s:nth-of-type(2) {
    margin-left: -23%;
    margin-top: -24%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2016 {
  justify-content: flex-end;
}
#history .section_inner .section_main .h_items .h_item#h_2016 .h_texts {
  transform: rotate(-1deg);
  margin-right: -1%;
}
#history .section_inner .section_main .h_items .h_item#h_2016 .h_imgs {
  width: 35%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2016 .h_imgs {
    width: 80%;
    margin: 0 auto;
    margin-top: -2%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2016 .h_imgs .h_img {
  transform: rotate(2deg);
  margin: 0 0 0 auto;
}
#history .section_inner .section_main .h_items .h_item#h_2022 {
  justify-content: flex-end;
}
#history .section_inner .section_main .h_items .h_item#h_2022 .h_texts {
  margin-right: -1%;
}
#history .section_inner .section_main .h_items .h_item#h_2022 .h_imgs {
  width: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2022 .h_imgs {
    width: 90%;
    margin-top: -2%;
    align-items: center;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2022 .h_imgs .h_img {
  transform: rotate(2deg);
  width: 55%;
  z-index: 2;
}
#history .section_inner .section_main .h_items .h_item#h_2022 .h_imgs .h_img:last-of-type {
  z-index: 1;
  margin-left: -2%;
  width: 45%;
  transform: rotate(-2deg);
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2022 .h_imgs .h_img:last-of-type {
    margin-left: 0%;
    margin-top: -15%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2023 {
  justify-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2023 {
    padding-bottom: 120px;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2023 .h_texts {
  margin-left: -1%;
  order: 2;
  transform: rotate(1deg);
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2023 .h_texts {
    order: 1;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2023 .h_imgs {
  order: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 40%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2023 .h_imgs {
    width: 50%;
    order: 2;
    margin: 0 auto;
    margin-top: -4%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2023 .h_imgs .h_img {
  transform: rotate(-2deg);
  width: 55%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2023 .h_imgs .h_img {
    width: 100%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2025 {
  width: 95%;
  margin: 0 0 0 5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2025 {
    margin: 0 auto;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2025 .h_texts {
  position: relative;
  width: 90%;
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2025 .h_texts {
    width: 100%;
  }
}
#history .section_inner .section_main .h_items .h_item#h_2025 .h_texts .h_pin {
  left: 2.5%;
}
#history .section_inner .section_main .h_items .h_item#h_2025 .h_texts .h_pin:last-of-type {
  left: unset;
  right: 2.5%;
}
#history .section_inner .section_main .h_items .h_item#h_2025 .h_imgs {
  position: absolute;
  width: 25%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2025 .h_imgs {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
  }
}
@media screen and (max-width: 768px) {
  #history .section_inner .section_main .h_items .h_item#h_2025 .h_imgs {
    position: relative;
    transform: translateY(-20px);
    right: unset;
    top: unset;
    margin: 0 auto;
    width: 50%;
  }
}

@keyframes spin360 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
#countdown {
  margin-bottom: -100px;
}
@media screen and (max-width: 768px) {
  #countdown {
    margin-bottom: 0;
  }
}
#countdown .section_inner {
  background-color: #fff;
}
#countdown .section_inner .section_header {
  height: 51px;
  width: 100%;
  background-image: url(img/flags.png);
  background-size: 606px;
  background-repeat: repeat-x;
  background-position: center center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_header {
    margin-bottom: 20px;
  }
}
#countdown .section_inner .section_main {
  padding: 40px 50px 80px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_main {
    padding: 40px 5px 60px;
  }
}
#countdown .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 10px;
  transform: translateY(-30px);
  position: relative;
  z-index: 3;
  filter: drop-shadow(2px 2px 0px #FFF);
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_main h2 {
    filter: drop-shadow(1px 1px 0px #FFF);
    transform: translateY(-20px);
    margin-bottom: 10px;
  }
}
#countdown .section_inner .section_main h2 img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_main h2 img {
    height: 36px;
  }
}
#countdown .section_inner .section_main h2 span {
  color: #C37465;
  display: block;
  font-weight: 700;
  margin-top: 0.5em;
}
#countdown .section_inner .section_main .wall {
  position: absolute;
  bottom: 220px;
  left: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 260px);
  background-image: url(img/wall.jpg);
  background-size: 300px;
  opacity: 0.7;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_main .wall {
    border-radius: 10px;
    width: calc(100% - 40px);
    height: calc(100% - 120px);
    bottom: 80px;
    left: 20px;
    background-size: 220px;
  }
}
#countdown .section_inner .section_main .yarns01 {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
#countdown .section_inner .section_main .yarns01 .yarn_base01 {
  position: relative;
  z-index: 0;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div, #countdown .section_inner .section_main .yarns01 .yarn_over a {
  display: block;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div img, #countdown .section_inner .section_main .yarns01 .yarn_over a img {
  width: 100%;
  display: block;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div .flip-inner, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-inner {
  transform-style: preserve-3d;
  transition: transform 0.6s;
  position: relative;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div .flip-inner.spin, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-inner.spin {
  animation: spin360 0.6s ease forwards;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div .flip-inner:hover, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-inner:hover {
  transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
  #countdown .section_inner .section_main .yarns01 .yarn_over div .flip-inner:hover, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-inner:hover {
    transform: none;
  }
}
#countdown .section_inner .section_main .yarns01 .yarn_over div .flip-front, #countdown .section_inner .section_main .yarns01 .yarn_over div .flip-back, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-front, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-back {
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over div .flip-back, #countdown .section_inner .section_main .yarns01 .yarn_over a .flip-back {
  transform: rotateY(180deg);
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn01 {
  z-index: 13;
  position: absolute;
  width: 33.33%;
  top: -0.1%;
  left: 34.74%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn02 {
  z-index: 11;
  position: absolute;
  width: 31.28%;
  top: 18.55%;
  left: 22.18%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn03 {
  z-index: 12;
  position: absolute;
  width: 33.97%;
  top: 19.54%;
  left: 49.36%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn04 {
  z-index: 9;
  position: absolute;
  width: 33.59%;
  top: 39.19%;
  left: 6.03%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn05 {
  z-index: 10;
  position: absolute;
  width: 30.9%;
  top: 39.19%;
  left: 33.72%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn06 {
  z-index: 6;
  position: absolute;
  width: 31.15%;
  top: 38.79%;
  left: 60.64%;
  pointer-events: none;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn07 {
  z-index: 7;
  position: absolute;
  width: 31.79%;
  top: 59.03%;
  left: 15.77%;
  pointer-events: none;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn08 {
  z-index: 5;
  position: absolute;
  width: 32.95%;
  top: 59.23%;
  left: 42.95%;
  pointer-events: none;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarn09 {
  z-index: 14;
  position: absolute;
  width: 34.87%;
  top: 74.31%;
  left: 63.21%;
  display: none;
  pointer-events: none;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb01 {
  z-index: 6;
  position: absolute;
  width: 33.59%;
  top: 20.24%;
  left: 32.82%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb02 {
  z-index: 5;
  position: absolute;
  width: 34.87%;
  top: 37.5%;
  left: 18.72%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb03 {
  z-index: 4;
  position: absolute;
  width: 33.03%;
  top: 36.24%;
  left: 52.18%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb04 {
  z-index: 3;
  position: absolute;
  width: 33.46%;
  top: 57.74%;
  left: 0.51%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb05 {
  z-index: 2;
  position: absolute;
  width: 30.9%;
  top: 54.76%;
  left: 25.9%;
}
#countdown .section_inner .section_main .yarns01 .yarn_over .yarnb06 {
  z-index: 1;
  position: absolute;
  width: 34.87%;
  top: 56.75%;
  left: 64.69%;
}

#ambassador {
  background-color: #fff;
  overflow: hidden;
}
#ambassador .section_inner .section_main {
  padding: 40px 50px 160px;
  margin: 0 auto;
  position: relative;
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main {
    padding: 40px 0px 120px;
  }
}
#ambassador .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 0px #FFF);
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main h2 {
    filter: drop-shadow(1px 1px 0px #FFF);
  }
}
#ambassador .section_inner .section_main h2 img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main h2 img {
    height: 36px;
  }
}
#ambassador .section_inner .section_main h2 span {
  color: #C37465;
  display: block;
  font-weight: 700;
  margin-top: 0.5em;
}
#ambassador .section_inner .section_main h3 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 40px;
  filter: drop-shadow(0px 1.7px 3.5px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main h3 {
    max-width: 290px;
    margin: 0 auto 20px;
  }
}
#ambassador .section_inner .section_main .kv_amba_outer {
  position: relative;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main .kv_amba_outer {
    padding: 0 10px;
    max-width: 500px;
    margin: 0 auto;
  }
}
#ambassador .section_inner .section_main .text-movies {
  width: 32%;
  max-width: 160px;
  margin: 0 auto;
}
#ambassador .section_inner .section_main .kv_amba {
  margin: 0 auto 40px;
  max-width: 1200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main .kv_amba {
    margin-bottom: 20px;
  }
}
#ambassador .section_inner .section_main .kv_amba .yarnb {
  position: absolute;
  width: 14%;
  top: 1%;
  left: 5%;
  z-index: 1;
}
#ambassador .section_inner .section_main .kv_amba .yarnb img {
  animation-delay: 0.3s;
}
#ambassador .section_inner .section_main .kv_amba .yarnr {
  position: absolute;
  width: 14%;
  top: 25%;
  left: -2%;
  z-index: 2;
  animation-delay: 0.4s;
}
#ambassador .section_inner .section_main .kv_amba .yarnr img {
  animation-delay: 1s;
}
#ambassador .section_inner .section_main .kv_amba .yarnw {
  position: absolute;
  width: 14%;
  top: 60%;
  right: 4%;
  transform: rotate(80deg);
  animation-delay: 0.1s;
  z-index: 3;
}
#ambassador .section_inner .section_main .kv_amba .yarnw img {
  animation-delay: 2s;
}
#ambassador .section_inner .section_main .kv_amba .kv_base {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  z-index: 4;
}
#ambassador .section_inner .section_main .kv_amba .yarng {
  position: absolute;
  width: 14%;
  top: 40%;
  right: 0%;
  transform: rotate(40deg);
  z-index: 5;
  animation-delay: 0.3s;
}
#ambassador .section_inner .section_main .kv_amba .yarng img {
  animation-delay: 3.3s;
}
#ambassador .section_inner .section_main .kv_amba .shaun_ten {
  position: absolute;
  width: 26%;
  bottom: -3%;
  left: -5%;
  z-index: 6;
  animation-delay: 0.2s;
}
#ambassador .section_inner .section_main .kv_amba .shaun_ten img {
  animation-delay: 4.4s;
}
#ambassador .section_inner .section_main .kv_amba .shaun_30 {
  position: absolute;
  width: 28%;
  top: -3%;
  right: -6%;
  z-index: 7;
}
#ambassador .section_inner .section_main .amba_p {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main .amba_p {
    padding: 0 20px 20px;
  }
}
#ambassador .section_inner .section_main .amba_p p {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  line-height: 2;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #ambassador .section_inner .section_main .amba_p p {
    text-align: justify;
  }
}
#ambassador .section_inner .section_main .swiper_outer {
  position: relative;
}

.swiper {
  background-color: #CDE3B9;
  border-radius: 20px;
  padding: 40px 0px 40px 40px;
}
@media (max-width: 1440px) {
  .swiper {
    padding: 20px 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .swiper {
    border-radius: 0;
    padding: 20px 40px 20px 40px;
  }
}
.swiper .swiper-wrapper {
  height: auto !important;
}
.swiper .swiper-wrapper .swiper-slide {
  padding-right: 40px;
}
@media (max-width: 1440px) {
  .swiper .swiper-wrapper .swiper-slide {
    padding-right: 20px;
  }
}
.swiper .swiper-wrapper .swiper-slide .slide-inner {
  overflow: hidden;
}
.swiper .swiper-wrapper .swiper-slide img {
  transition: 0.2s;
}
.swiper .swiper-wrapper .swiper-slide.swiper-valid {
  cursor: pointer;
}
.swiper .swiper-wrapper .swiper-slide.swiper-valid:hover .slide-inner img {
  transform: scale(1.1);
}

/* ドット調整（中央寄せなど） */
.swiper-pagination {
  text-align: center;
  position: relative;
  margin-top: 20px;
  bottom: unset !important;
  top: unset !important;
}

.swiper-pagination-bullet {
  transition: 0.2s;
  margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
  background: #008000;
  width: 16px;
  border-radius: 4px;
}

/* 矢印カスタム（必要であれば） */
.swiper-button-prev,
.swiper-button-next {
  color: #000; /* 色変更 */
  top: 50%;
  transform: translateY(-30px);
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
@media (max-width: 1440px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 60px;
    height: 60px;
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    transform: translateY(-10px);
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 32px !important;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 16px !important;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-30px) scale(0.9);
}
@media (max-width: 1440px) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transform: translateY(-20px) scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transform: translateY(-10px) scale(0.9);
  }
}

.swiper-button-prev {
  left: -40px !important;
  right: unset !important;
}
@media (max-width: 1440px) {
  .swiper-button-prev {
    left: -30px !important;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: 10px !important;
  }
}

.swiper-button-next {
  left: unset !important;
  right: -40px !important;
}
@media (max-width: 1440px) {
  .swiper-button-next {
    right: -30px !important;
  }
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 10px !important;
  }
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 0;
  box-sizing: border-box;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .video-modal {
    padding: 0;
  }
}

.video-wrap {
  position: relative;
  width: 100vw;
  max-width: 177.7777777778vh; /* ←ここがポイント！ */
  aspect-ratio: 16/9;
  border-radius: 20px;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .video-wrap {
    border-radius: 10px;
  }
}

@supports not (aspect-ratio: 1/1) {
  .video-wrap {
    aspect-ratio: auto;
    height: 0;
    padding-top: 56.25%; /* 旧ブラウザ用 fallback */
  }
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}
@media screen and (max-width: 768px) {
  .video-wrap iframe {
    border-radius: 10px;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
  transition: 0.2s;
  border: solid 2px #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 1;
  padding-bottom: 8px;
}

.modal-close:hover {
  color: #C37465;
  border: solid 2px #C37465;
}

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