@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/*------------------------------
all
------------------------------*/
body {
  color: #fff;
  font-family: sans-serif;
  background: url(../images/e_back.png) repeat center center/auto;
  overflow-y: scroll;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.inner {
  width: 1032px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

#modal-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  z-index: 10;
  display: none;
}

/*------------------------------
font
------------------------------*/
/*------------------------------
common
------------------------------*/
/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
.text-ctr {
  text-align: center;
}

/*------------------------------
reset
------------------------------*/
/*------------------------------
base
------------------------------*/
/*------------------------------
header
------------------------------*/
.drawer-icon {
  position: fixed;
  top: 30px;
  right: 0;
  transform: translateY(-50%);
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: translateX(-50%) rotate(-45deg);
  top: 45px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: translateX(-50%) rotate(45deg);
  top: 45px;
}

.drawer-icon__bars {
  width: 84px;
  aspect-ratio: 1/1;
  display: block;
  background: #443027;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 40px;
  height: 5px;
  background: rgb(179, 165, 130);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.drawer-icon__bar1 {
  top: 30px;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 45px;
}

.drawer-icon__bar3 {
  top: 60px;
  transition: transform 0.3s;
}

.drawer-content {
  width: 260px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(118, 35, 18, 0.9);
  padding: 90px 20px;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.initial {
  transition: unset;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu li {
  text-align: center;
}
.drawer-menu li:nth-child(n+2) {
  margin-top: 60px;
}
.drawer-menu li img {
  width: 80%;
}

.drawer-sub-menu {
  margin-top: 40px;
}
.drawer-sub-menu li {
  text-align: center;
  color: rgb(231, 229, 187);
  font-size: 1.4rem;
  cursor: pointer;
}
.drawer-sub-menu li:nth-child(n+2) {
  margin-top: 20px;
}
.drawer-sub-menu li a {
  display: block;
  color: rgb(231, 229, 187);
  text-align: center;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: url(../images/e_back.png) repeat center center/auto;
}
@media (max-width: 767px) {
  footer {
    padding-bottom: 30px;
  }
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 30px;
}
.footer-menu li {
  width: 33.3%;
  padding: 0 5%;
  text-align: center;
}
.footer-menu li:nth-child(2) {
  border-right: 3px solid #47331b;
  border-left: 3px solid #47331b;
}
.footer-menu li:nth-child(2) img {
  width: 63%;
}
.footer-menu li:nth-child(3) img {
  width: 75%;
}
@media (max-width: 767px) {
  .footer-menu li:nth-child(n) img {
    width: 90%;
  }
  .footer-menu li:nth-child(2) img {
    width: 80%;
  }
}

.footer-sns {
  width: 100px;
  margin: 0 auto;
}
.footer-sns a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .footer-sns {
    width: 40px;
  }
}

.copyright {
  font-size: 1.2rem;
  color: #453116;
  text-align: center;
  font-weight: 700;
  padding-top: 30px;
}

/*------------------------------
fv
------------------------------*/
.fv nav {
  position: relative;
  z-index: 3;
}

.fv-content {
  background: url(../images/a_back1.jpg) no-repeat center center/cover;
}

.fv-inner {
  width: 1200px;
}

.fv-image {
  position: relative;
  text-align: center;
}
.fv-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/a_left.png) no-repeat center center/contain;
  width: 35vw;
  max-width: 426px;
  aspect-ratio: 246/140;
}
.fv-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/a_right.png) no-repeat center center/contain;
  width: 35vw;
  max-width: 426px;
  aspect-ratio: 246/140;
}
.fv-image img {
  width: 58vw;
  max-width: 696px;
  position: relative;
  z-index: 2;
  margin: 3% 0;
}
@media (max-width: 767px) {
  .fv-image::after, .fv-image::before {
    display: none;
  }
  .fv-image img {
    width: 90vw;
    max-width: 696px;
    margin: 10% 0 -10%;
  }
}

.nav-menu {
  background: #a41b08;
  padding: 15px 0;
}
.nav-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-menu ul li {
  width: 33.3%;
  padding: 0 2.5%;
  text-align: center;
}
.nav-menu ul li:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.nav-menu ul li:nth-child(2) img {
  width: 63%;
}
.nav-menu ul li:nth-child(3) img {
  width: 75%;
}
@media (max-width: 767px) {
  .nav-menu ul li {
    padding: 0 1%;
  }
  .nav-menu ul li:nth-child(n) img {
    width: 90%;
  }
  .nav-menu ul li:nth-child(2) img {
    width: 80%;
  }
}

.nav-sub-menu {
  background: #4a2916;
  padding: 15px 0;
}
.nav-sub-menu ul {
  display: flex;
  justify-content: center;
}
.nav-sub-menu ul li {
  font-size: 20px;
  padding: 0 6%;
  cursor: pointer;
  color: #f8d4b0;
}
.nav-sub-menu ul li:hover {
  opacity: 0.7;
}
.nav-sub-menu ul li:first-child {
  border-right: 1px solid #f8d4b0;
}
.nav-sub-menu ul li a {
  color: #f8d4b0;
}
@media (max-width: 767px) {
  .nav-sub-menu {
    padding: 5px 0;
  }
  .nav-sub-menu ul {
    align-items: center;
  }
  .nav-sub-menu ul li {
    font-size: 13px;
    line-height: 1.5;
  }
  .nav-sub-menu ul li a {
    display: block;
  }
}

/*------------------------------
about
------------------------------*/
.about {
  background: url(../images/b_back.png) repeat center center/auto;
  padding: min(13%, 170px) 0;
}
@media (max-width: 767px) {
  .about {
    padding: 15% 0 10%;
  }
}

.about__inner {
  width: 990px;
  padding: 0 34px;
}
@media (max-width: 767px) {
  .about__inner {
    padding: 0;
  }
}

.about-container h2 {
  background: url(../images/b_susuki.png) no-repeat center center/cover;
  text-align: center;
}
.about-container h2 img {
  width: 620px;
}
@media (max-width: 767px) {
  .about-container h2 img {
    width: 70%;
    max-width: 350px;
  }
}

.about-slider-wrap {
  background-color: #f1e9da;
  border-radius: 30px;
  border: solid 3px #303030;
  margin-top: min(6%, 55px);
}
.about-slider-wrap .slick-arrow {
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 1;
}
.about-slider-wrap .slick-prev {
  left: 0;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.about-slider-wrap .slick-next {
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 767px) {
  .about-slider-wrap {
    margin: 5% auto 0;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .about-slider-wrap .slick-arrow {
    width: 30px;
  }
  .about-slider-wrap .slick-prev {
    transform: translate(0, -50%) scale(-1, 1);
  }
  .about-slider-wrap .slick-next {
    transform: translate(0, -50%);
  }
}

.about-item {
  padding: 40px 57px;
  color: #303030;
}
@media (max-width: 767px) {
  .about-item {
    padding: 20px 2.5em;
  }
}

.about-item-top {
  border-bottom: 4px #303030 solid;
  position: relative;
}
.about-item-top span {
  display: block;
  margin: 0 auto;
}
.about-item-top span img {
  height: 98px;
  width: auto;
  margin: 0 auto;
}
.about-item-top h3 {
  font-size: min(5.078125vw, 4.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-top: 35px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-item-top span img {
    height: 40px;
  }
  .about-item-top h3 {
    font-size: min(4.5714285714vw, 18px);
    margin-top: 0.5em;
    height: 50px;
  }
}

.about-item-content ul {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.about-item-content ul li {
  width: calc(33.3% - 20px);
  color: #fffff8;
  background: #9e9a92;
  padding: 10px 20px;
  border-radius: 15px;
  cursor: pointer;
}
.about-item-content ul li:not(:nth-child(3n)) {
  margin-right: 30px;
  position: relative;
}
.about-item-content ul li:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #9e9a92;
}
.about-item-content ul li:nth-child(n+4) {
  margin-top: 20px;
}
.about-item-content ul li p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-item-content ul {
    justify-content: space-between;
    padding-top: 15px;
  }
  .about-item-content ul li {
    width: 49%;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-item-content ul li::after {
    display: none;
  }
  .about-item-content ul li:nth-child(n) {
    margin: 0;
  }
  .about-item-content ul li:nth-child(n+3) {
    margin-top: 15px;
  }
}


.about-item-text1{
  padding: 100px 50px;
}

.about-item-text {
  border-bottom: 4px #303030 solid;
  height: 600px;
  position: relative;
}
.about-item-text p {
  font-size: clamp(18px, 2.1176470588vw, 2rem);
  font-weight: 600;
  padding-top: 1em;
  line-height: 1.6;
}
.about-item-text .about-pageNum {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}
.about-item-text .about-movieLink {
  color: #f1e9da;
  background-color: #303030;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  aspect-ratio: 346/80;
  width: 346px;
  max-width: 100%;
  margin: 0 auto;
}
.about-item-text .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3em;
}
.about-item-text .flex a {
  color: #f1e9da;
  background-color: #303030;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  aspect-ratio: 346/110;
  width: 346px;
}
.about-item-text .flex a:nth-child(2) {
  margin-top: 1.5em;
}
.about-item-text .flex img {
  display: block;
  width: 270px;
  aspect-ratio: 462/509;
  margin-left: 2em;
}
@media (max-width: 767px) {



  .about-item-text {
    height: 530px;
    padding: 0 1em;
  }

  .about-item-text1{
    padding: 100px 10px;
  }
  
  .about-item-text p {
    font-size: min(3.8888888889vw, 16px);
    padding-top: 0.6em;
    line-height: 1.4;
  }
  .about-item-text .flex {
    margin-top: 3em;
  }
  .about-item-text .flex a {
    font-size: 13px;
    width: 53vw;
    max-width: 265px;
  }
  .about-item-text .flex a:nth-child(2) {
    margin-top: 1em;
  }
  .about-item-text .flex img {
    max-width: 144px;
    width: 28.9vw;
    margin-left: 0.5em;
  }
}

.about-movie {
  text-align: center;
  width: 85%;
  margin: 15px auto;
  aspect-ratio: 686/386;
}
.about-movie video {
  width: 100%;
}
@media (max-width: 767px) {
  .about-movie {
    width: 95%;
    max-width: 500px;
  }
}

.about-items-slider .slick-slide {
  max-width: 922px;
  width: calc(100vw - 68px);
  height: 1150px;
}
@media (max-width: 767px) {
  .about-items-slider .slick-slide {
    width: 100vw;
    height: 960px;
  }
}

#about-01 h3 {
  position: relative;
}

#about-02 h3 {
  position: relative;
}
#about-02 h3::before {
  content: "";
  position: absolute;
  background: url(../images/b_cnt02_pic2.png) no-repeat center center/100%;
  width: 118px;
  aspect-ratio: 200/272;
  left: 10%;
  top: 0;
  transform: translate(-15%, -100%);
}
@media (max-width: 767px) {
  #about-02 h3::before {
    width: 15%;
    left: calc(50% - min(46%, 200px));
    bottom: 0;
    transform: translate(-50%, 0);
    top: unset;
    max-width: 85px;
  }
}

#about-05 h3 {
  position: relative;
}
#about-05 h3::after {
  content: "";
  position: absolute;
  background: url(../images/b_cnt05_pic1.png) no-repeat center center/100%;
  width: 23%;
  aspect-ratio: 462/509;
  right: calc(50% - 330px);
  bottom: 0;
  transform: translate(50%, 0);
}
@media screen and (max-width: 900px) {
  #about-05 h3::after {
    right: calc(50% - min(40%, 160px));
    max-width: 92px;
  }
}

/*------------------------------
test
------------------------------*/
.test {
  padding: min(10%, 140px) 0;
  position: relative;
}
.test::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -63%);
  background: url(../images/c_cloud_top.png) no-repeat center center/contain;
  width: 85%;
  max-width: 1190px;
  aspect-ratio: 600/105;
}
.test h2 {
  width: 57%;
  max-width: 800px;
  margin: 0 auto min(5%, 70px);
  position: relative;
}
.test h2::before, .test h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: -52%;
  transform: translateX(-51%);
  background: url(../images/c_cloud_left.png) no-repeat center center/contain;
  width: 66%;
  aspect-ratio: 375/100;
  z-index: -1;
}
.test h2::after {
  left: unset;
  right: 0;
  transform: translateX(51%);
  background: url(../images/c_cloud_right.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .test h2 {
    width: 77%;
  }
  .test h2::before {
    top: 50%;
    transform: translate(-20%, -50%);
  }
  .test h2::after {
    top: 50%;
    transform: translate(20%, -50%);
  }
}

.test-slider {
  margin-top: 80px;
}

.test-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b96e1e;
  width: 450px;
  max-width: 90%;
  aspect-ratio: 450/78;
  border-radius: 50px;
  margin: 40px auto 0;
  cursor: pointer;
}
.test-btn img {
  width: 89%;
}
@media (max-width: 767px) {
  .test-btn {
    width: 280px;
  }
}

.slider_test .slick-slide {
  width: 360px;
  margin: 0 40px;
  opacity: 0.2;
  transition: all ease-in-out 0.6s;
  cursor: pointer;
}
.slider_test .slick-slide.slick-current {
  opacity: 1;
}
.slider_test .slick-arrow {
  aspect-ratio: 45/53;
  width: 60px;
  height: auto;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.slider_test .slick-prev {
  left: calc(50% - 225px);
  transform: translate(-50%, -50%) scale(-1, 1);
}
.slider_test .slick-next {
  left: calc(50% + 225px);
}
@media (max-width: 767px) {
  .slider_test .slick-slide {
    width: 180px;
    margin: 0 10px;
  }
  .slider_test .slick-arrow {
    width: 20px;
  }
  .slider_test .slick-prev {
    left: calc(50% - 103px);
  }
  .slider_test .slick-next {
    left: calc(50% + 103px);
  }
}

#slider-popup-wrap {
  display: none;
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100vh;
}
#slider-popup-wrap .slick-slide {
  width: 100vw;
  margin-top: 50vh;
  transform: translateY(-50%);
}
#slider-popup-wrap .prev-arrow, #slider-popup-wrap .next-arrow {
  content: "";
  position: absolute;
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  top: 50%;
  left: 4%;
  border-top: 4px solid hsla(0deg, 0%, 100%, 0.8);
  border-right: 4px solid hsla(0deg, 0%, 100%, 0.8);
  border-radius: 0 3px 0 0;
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) rotate(-135deg);
  z-index: 13;
  cursor: pointer;
}
#slider-popup-wrap .next-arrow {
  left: unset;
  right: 4%;
  transform: translateY(-50%) rotate(45deg);
}
#slider-popup-wrap .slick-slider {
  margin-bottom: 0;
  height: 100vh;
}
@media screen and (min-width: 1400px) {
  #slider-popup-wrap .prev-arrow {
    left: calc(50% - 630px);
  }
  #slider-popup-wrap .next-arrow {
    right: calc(50% - 630px);
  }
}
@media (max-width: 767px) {
  #slider-popup-wrap .prev-arrow, #slider-popup-wrap .next-arrow {
    width: 25px;
  }
  #slider-popup-wrap .prev-arrow {
    left: 2%;
  }
  #slider-popup-wrap .next-arrow {
    right: 2%;
  }
}

#slider-popup-wrap.active .s-body-p {
  width: 80% !important;
  max-width: 1120px;
  display: block !important;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation: showUp 0.2s ease-out forwards;
          animation: showUp 0.2s ease-out forwards;
}
@media (max-width: 767px) {
  #slider-popup-wrap.active .s-body-p {
    width: 85% !important;
  }
}

#slider-popup-wrap.deactive .s-body-p {
  -webkit-animation: showUp_r 0.2s ease-out forwards;
          animation: showUp_r 0.2s ease-out forwards;
}

@-webkit-keyframes showUp {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes showUp {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes showUp_r {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    transform: scale(0.6);
    opacity: 0;
  }
}
@keyframes showUp_r {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    transform: scale(0.6);
    opacity: 0;
  }
}
#slider-popup-close {
  width: 33px;
  aspect-ratio: 1/1;
  display: none;
  position: fixed;
  top: calc(50% - 25vw);
  left: 90%;
  transform: translate(-50%, -50%);
  z-index: 12;
  cursor: pointer;
}
#slider-popup-close::after, #slider-popup-close::before {
  background-color: #fff;
  content: " ";
  height: 33px;
  left: 15px;
  position: absolute;
  width: 2px;
  transform: rotate(45deg);
}
#slider-popup-close::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1400px) {
  #slider-popup-close {
    top: calc(50% - 360px);
    left: calc(50% + 560px);
  }
}
@media (max-width: 767px) {
  #slider-popup-close {
    top: calc(50% - 26.7vw);
    left: 92%;
    transform: translate(-50%, -100%);
  }
}

/*------------------------------
championship
------------------------------*/
.championship {
  background: url(../images/d_back2.png) repeat center center/150px;
  background: url(../images/d_back2.png) repeat center center/auto;
  margin-top: min(19%, 266px);
  position: relative;
}
.championship h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -99%);
  background: url(../images/d_back1.png) no-repeat center bottom/100%;
  width: 100%;
  aspect-ratio: 1200/230;
  display: flex;
  flex-direction: column;
  justify-content: end;
  max-width: 1200px;
}
.championship h2 > div {
  position: relative;
  width: 60%;
  max-width: 840px;
  margin: 0 auto;
}
.championship h2 > div::before, .championship h2 > div::after {
  content: "";
  position: absolute;
  left: 3%;
  top: -21%;
  transform: translateX(-51%);
  background: url(../images/c_cloud_left.png) no-repeat center center/contain;
  width: 66%;
  aspect-ratio: 375/100;
  z-index: -1;
}
.championship h2 > div::after {
  left: unset;
  right: 4%;
  top: 4%;
  transform: translateX(51%);
  background: url(../images/c_cloud_right.png) no-repeat center center/contain;
}
.championship h2 img {
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
.championship h2 img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-80%);
  background: url(../images/c_cloud_left.png) no-repeat center center/contain;
  width: 375px;
  aspect-ratio: 375/100;
  z-index: -1;
}
.championship h2 img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(80%);
  background: url(../images/c_cloud_right.png) no-repeat center center/contain;
  width: 375px;
  aspect-ratio: 375/100;
  z-index: -1;
}
@media (max-width: 767px) {
  .championship {
    margin-top: 22%;
    padding-bottom: 8%;
  }
  .championship h2 > div {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
  }
  .championship h2 > div::before {
    top: -113%;
  }
  .championship h2 > div::after {
    top: -83%;
  }
}

.championship__inner {
  width: 870px;
}
@media (max-width: 767px) {
  .championship__inner {
    width: 500px;
  }
}

.championship-container {
  overflow: hidden;
}
.championship-container li {
  display: flex;
  align-items: center;
  padding-top: 7%;
}
.championship-container li:nth-child(2) {
  flex-direction: row-reverse;
  padding-right: 12%;
  padding-top: 6%;
}
.championship-container li:nth-child(2) img {
  width: 17%;
  margin-left: 8%;
}
.championship-container li img {
  width: 26%;
}
.championship-container li p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  line-height: 1.6;
  color: #eee8da;
  margin-left: auto;
}
.championship-container li span {
  font-weight: 700;
}
@media (max-width: 767px) {
  .championship-container {
    padding-top: 27%;
  }
  .championship-container li {
    position: relative;
  }
  .championship-container li:nth-child(n) {
    flex-direction: column;
    padding: 0;
  }
  .championship-container li:nth-child(n) img {
    width: 46%;
  }
  .championship-container li:nth-child(2) {
    margin-top: 18%;
  }
  .championship-container li:nth-child(2) img {
    width: 35%;
    margin-left: 0;
  }
  .championship-container li p {
    font-size: 13px;
    margin: 1em auto 0;
    text-align: center;
    line-height: 1.8;
  }
}

.championship-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  aspect-ratio: 923/948;
  width: 120%;
  margin-left: -10%;
  margin-top: 4%;
}
.championship-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  background: url(../images/d_back3.png) no-repeat center center/cover;
  aspect-ratio: 923/948;
  filter: blur(3px);
}
.championship-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 57%);
  width: 37%;
  background: url(../images/championship_3.png) no-repeat center center/100%;
  aspect-ratio: 360/241;
}
.championship-bottom h3 {
  width: 67%;
  margin: 4% auto 2%;
}
.championship-bottom p {
  font-size: 3.6rem;
  line-height: 1.6;
}
.championship-bottom p span {
  font-weight: 700;
}
.championship-bottom p:nth-of-type(2) {
  font-size: 45px;
}
@media screen and (max-width: 1020px) {
  .championship-bottom {
    width: 100%;
    margin-left: 0;
  }
  .championship-bottom p {
    font-size: 2.7rem;
  }
  .championship-bottom p:nth-of-type(2) {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .championship-bottom::after {
    transform: translate(-71%, 77%);
    width: 47%;
  }
  .championship-bottom h3 {
    width: 93%;
    margin: 4% auto 8%;
  }
  .championship-bottom p {
    font-size: 13px;
  }
  .championship-bottom p:first-child {
    margin-top: 3%;
    margin-bottom: 8%;
  }
  .championship-bottom p:nth-of-type(2) {
    font-size: 15px;
  }
}

/*------------------------------
entry
------------------------------*/
.entry {
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #47331b;
}

.entry__inner {
  width: 840px;
}
@media (max-width: 767px) {
  .entry__inner {
    width: 500px;
  }
}

.entry-container {
  border-top: solid 5px #ad9a4d;
  border-bottom: solid 5px #ad9a4d;
  padding-bottom: 90px;
  overflow: hidden;
}

.entry-items {
  margin-top: 120px;
}
.entry-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry-items li:nth-child(n+2) {
  margin-top: 110px;
}
@media (max-width: 767px) {
  .entry-items {
    margin-top: 12%;
  }
  .entry-items li {
    flex-direction: column-reverse;
  }
  .entry-items li:nth-child(n+2) {
    margin-top: 50px;
  }
}

.entry-content {
  width: 55%;
}
.entry-content .entry-title-wrap {
  border-bottom: 2px solid #fff;
  padding-bottom: 2.6em;
  position: relative;
}
.entry-content .entry-title-wrap::before {
  content: "";
  position: absolute;
  background: url(../images/d_crown.png) no-repeat center center/contain;
  aspect-ratio: 1/1;
  top: calc(50% - 1.3em);
  left: -2%;
  width: 28%;
  transform: translate(0, -50%);
}
.entry-content h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4rem;
  font-size: min(4.6875vw, 4rem);
  margin-left: auto;
  text-align: center;
  font-weight: bold;
}
.entry-content .fancy-button, .entry-content a {
  display: inline-block;
  width: 100%;
  aspect-ratio: 600/114;
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #c1aa5e;
  padding: 0.5em 1em;
  border-radius: 15px;
  position: relative;
}
@media (max-width: 767px) {
  .entry-content {
    width: 100%;
  }
  .entry-content .entry-title-wrap {
    width: 78%;
    margin: 50px auto 0;
    border: none;
  }
  .entry-content h3 {
    font-size: min(6vw, 30px);
  }
  .entry-content .fancy-button {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}

.entry-title {
  margin-top: 0.5em;
}

.entry-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 1.8em;
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .entry-text {
    font-size: min(4.5714285714vw, 22.8571428571px);
    margin-top: 0;
  }
}

.entry-image {
  width: 37%;
}
.entry-image img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .entry-image {
    width: 85%;
  }
}

/*------------------------------
グッズ診断
------------------------------*/
#goodsDia-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(158, 112, 112, 0.9);
  width: 100%;
  height: 100vh;
  z-index: -10;
  opacity: 0;
  transition: opacity 0.7s linear, z-index 0.0001s linear 1s;
}
#goodsDia-wrap.active {
  opacity: 1;
  z-index: 10;
  transition: opacity 0.7s linear;
}
#goodsDia-wrap.active .question-content {
  opacity: 1;
}

.question-button-wrap {
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.question-button-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  padding: 36px 0;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .question-button-wrap {
    height: 300px;
  }
}

.question-head-wrap {
  height: 200px;
  border-bottom: 5px solid black;
  display: flex;
  justify-content: end;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 767px) {
  .question-head-wrap {
    height: 100px;
  }
}

.question-head {
  width: 45%;
  width: 540px;
  aspect-ratio: 564/61;
  margin: 0 auto 0;
  position: relative;
}
.question-head::before, .question-head::after {
  content: "";
  position: absolute;
  background: url(../images/c_popup_left.png) no-repeat center center/100%;
  width: 77%;
  aspect-ratio: 461/116;
  left: -54%;
  top: 50%;
  transform: translate(0, -50%);
}
.question-head::after {
  left: unset;
  right: -54%;
  transform: translate(0, -50%) scale(-1, 1);
}
.question-head img {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .question-head {
    width: 75%;
    max-width: 375px;
  }
}

.question-text {
  margin-top: 4.1%;
  margin-top: 50px;
  text-align: center;
  color: black;
  font-weight: 400;
  padding-bottom: 0.4em;
}
@media (max-width: 767px) {
  .question-text {
    margin-top: 15px;
    font-size: 15px;
  }
}

.question-content {
  margin: 50vh auto 0;
  width: 100%;
  max-width: 1200px;
  height: 750px;
  background-color: #f1e9da;
  transform: translateY(-50%);
  font-size: 30px;
  position: relative;
  opacity: 0;
  transition: opacity 1s linear;
}
.question-content.active {
  background-image: url(../images/c_popup_back.png);
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  .question-content {
    height: 400px;
  }
}

#but1, #but2 {
  width: 810px;
  max-width: 85%;
  aspect-ratio: 800/180;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #9e7070;
  outline: 3px solid #fff;
  outline-offset: -7px;
  border-radius: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  #but1, #but2 {
    height: 100px;
    width: 425px;
    max-width: 90%;
    font-size: 20px;
  }
}

#but2 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  #but2 {
    margin-top: 30px;
  }
}

.result-img-wrap {
  width: auto;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .result-img-wrap {
    height: 240px;
  }
}

#result-img {
  width: auto;
  max-height: 450px;
}
@media (max-width: 767px) {
  #result-img {
    max-height: 240px;
  }
}

#result-text {
  text-align: center;
  color: black;
  font-size: 23px;
  font-weight: 700;
}
@media (max-width: 767px) {
  #result-text {
    font-size: 16px;
  }
}

#result {
  display: none;
}
#result .question-head {
  aspect-ratio: 360/120;
  width: 450px;
}
#result .question-head-wrap {
  border: none;
  margin-bottom: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  #result .question-head {
    width: 170px;
  }
  #result .question-head-wrap {
    margin-bottom: 10px;
  }
}

.result-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .result-btn-wrap {
    margin-top: 10px;
    font-size: 16px;
  }
}

#result-again, #question-close2 {
  text-align: center;
  padding: 8px 10px;
  border-radius: 15px;
  background-color: #b83932;
  width: 120px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #result-again, #question-close2 {
    width: 90px;
  }
}

#question-close2 {
  margin-left: 0.5em;
  background-color: #5c8b3b;
}

#question-close {
  position: absolute;
  width: min(12.8571428571vw, 60px);
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
}

/*------------------------------
このサイトについて
------------------------------*/
#aboutSite-wrap {
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.7s linear, z-index 0.1s linear 1s;
}
#aboutSite-wrap.active {
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s linear;
}
#aboutSite-wrap.active #aboutSite {
  opacity: 1;
}

#aboutSite {
  background-color: #eee8da;
  border-radius: 15px;
  position: relative;
  width: 800px;
  max-width: 90%;
  height: 560px;
  margin: 50vh auto 0;
  transform: translateY(-50%);
  padding: 84px 15px 0;
  font-size: 20px;
  color: #000;
  line-height: 1.45;
  text-align: center;
  transition: all 1s linear;
  opacity: 0;
}
#aboutSite h2 {
  position: relative;
  font-size: 30px;
  padding-bottom: 10px;
  color: #7c3206;
  border-bottom: solid 3px #7c3206;
}
#aboutSite h2::after {
  content: "";
  position: absolute;
  background: url(../images/silhouette.png) no-repeat center center/100%;
  width: 13%;
  width: 100px;
  aspect-ratio: 2613/2792;
  left: calc(50% - 220px);
  bottom: 0;
  transform: translate(-50%, 0);
}
#aboutSite > p {
  margin-top: 0.5em;
}
#aboutSite .aboutSite_body {
  margin-top: 0.5em;
}
#aboutSite .aboutSite_body p {
  border-bottom: dotted 3px #303030;
  line-height: 2.25;
}
@media (max-width: 767px) {
  #aboutSite {
    width: 500px;
    height: 430px;
    padding: 30px 20px 0;
    font-size: min(3.7333333333vw, 16px);
  }
  #aboutSite h2 {
    font-size: 20px;
    padding-bottom: 0;
  }
  #aboutSite h2::after {
    width: 53px;
    left: calc(50% - 140px);
  }
  #aboutSite > p {
    margin-top: 1.5em;
  }
}

#aboutSiteClose {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #aboutSiteClose {
    width: 30px;
  }
}

.button {
  cursor: pointer;
  font-size: 40px;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .button {
    font-size: min(6.8571428571vw, 29px);
  }
}

.frills, .frills:after, .frills:before {
  position: absolute;
  background: #eb1f48;
  border-radius: 4px;
  height: 8px;
}

.frills:after, .frills:before {
  content: "";
  display: block;
}

.frills:before {
  bottom: 45px;
}

.frills:after {
  top: 45px;
}

.left-frills {
  right: calc(100% + 14px);
  top: calc(50% - 4px);
}
.active .left-frills {
  -webkit-animation: move-left 0.38s ease-out, width-to-zero 0.38s ease-out;
          animation: move-left 0.38s ease-out, width-to-zero 0.38s ease-out;
}
.left-frills:before, .left-frills:after {
  left: 15px;
}
.active .left-frills:before {
  -webkit-animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
          animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
}
.active .left-frills:after {
  -webkit-animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
          animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
}

.right-frills {
  left: calc(100% + 14px);
  top: calc(50% - 4px);
}
.active .right-frills {
  -webkit-animation: move-right 0.38s ease-out, width-to-zero 0.38s ease-out;
          animation: move-right 0.38s ease-out, width-to-zero 0.38s ease-out;
}
.right-frills:before, .right-frills:after {
  right: 15px;
}
.active .right-frills:before {
  -webkit-animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
          animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
}
.active .right-frills:after {
  -webkit-animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
          animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
}

.left-frills:before, .right-frills:after {
  transform: rotate(34deg);
}

.left-frills:after, .right-frills:before {
  transform: rotate(-34deg);
}

@-webkit-keyframes move-left {
  0% {
    transform: none;
  }
  65% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateX(-80px);
  }
}

@keyframes move-left {
  0% {
    transform: none;
  }
  65% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateX(-80px);
  }
}
@-webkit-keyframes move-right {
  0% {
    transform: none;
  }
  65% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(80px);
  }
}
@keyframes move-right {
  0% {
    transform: none;
  }
  65% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(80px);
  }
}
@-webkit-keyframes width-to-zero {
  0% {
    width: 38px;
  }
  100% {
    width: 8px;
  }
}
@keyframes width-to-zero {
  0% {
    width: 38px;
  }
  100% {
    width: 8px;
  }
}
@-webkit-keyframes move-up {
  100% {
    bottom: 69.75px;
  }
}
@keyframes move-up {
  100% {
    bottom: 69.75px;
  }
}
@-webkit-keyframes move-down {
  100% {
    top: 69.75px;
  }
}
@keyframes move-down {
  100% {
    top: 69.75px;
  }
}
/*------------------------------
page-top
------------------------------*/
#page-top {
  position: fixed;
  bottom: 2%;
  right: 5%;
  width: clamp(40px, 7.16vw, 86px);
  aspect-ratio: 86/96;
  opacity: 0;
  transition: all 0.4s;
  z-index: 10;
}
#page-top.active {
  opacity: 1;
}
#page-top.modal {
  opacity: 0;
}
@media screen and (min-width: 1201px) {
  #page-top {
    right: calc(50% - 500px);
  }
}


/*------------------------------
冬至イベント用
------------------------------*/
.touji {
    cursor: url(../images/touji.cur),auto;
}

.touji {
    cursor: url(https://www.jjynomino.com/images/touji.cur),auto;
}

/*------------------------------
冬至イベント用 ここまで
------------------------------*/
