@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}
body.scroll_rock {
  overflow: hidden;
}

/**  common  **/
.device-pc {
  display: none;
}
@media (min-width: 768px) {
  .device-pc {
    display: block;
  }
}

ol, ul {
  list-style: none;
}

.pcOnly {
  display: none !important;
}
@media (min-width: 768px) {
  .pcOnly {
    display: block !important;
  }
}

.spOnly {
  display: block;
}
@media (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

.sp-br {
  display: block !important;
}

.center {
  text-align: center;
}
.center P {
  display: inline-block;
}

.none {
  display: none;
}

.hidden {
  visibility: hidden;
}

.f-bold {
  font-family: "UD Shin Maru Go Bold", sans-serif !important;
}

@-webkit-keyframes dance {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes dance {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@media (hover: hover) {
  .off a:hover {
    opacity: 1;
  }
}
.off a {
  pointer-events: none;
}

body {
  font-family: "UD Shin Maru Go Bold", sans-serif;
  color: #333;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
  }
}

body.fadein {
  opacity: 1;
}

#page {
  overflow-x: hidden;
}

header {
  border-bottom: 2px solid #333;
  background: #FDE8E3;
  padding: 8px;
}
header .inner {
  max-width: 944px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .lang ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  border-radius: 4px;
  border: 2px solid #333;
  z-index: 2;
}
header .lang li {
  width: 56px;
  border-radius: 0 0 4px 0;
}
header .lang li:first-of-type {
  border-radius: 2px 0 0 4px;
}
header .lang li.ja {
  letter-spacing: 0.75px;
}
header .lang li a {
  background: #FFF;
  display: block;
  -webkit-box-shadow: -2px -2px 0 rgb(51, 51, 51) inset;
          box-shadow: -2px -2px 0 rgb(51, 51, 51) inset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .lang li a:hover {
  -webkit-transform: translate3d(0, 1px, 0);
          transform: translate3d(0, 1px, 0);
  -webkit-box-shadow: 1px 1px 0 rgb(51, 51, 51) inset;
          box-shadow: 1px 1px 0 rgb(51, 51, 51) inset;
  opacity: 1;
}
header .lang li:not(a) {
  background: #F8F186;
  -webkit-box-shadow: 1px 1px 0 rgb(51, 51, 51) inset;
          box-shadow: 1px 1px 0 rgb(51, 51, 51) inset;
}
@media (min-width: 768px) {
  header .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
header .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
header .sns p {
  text-align: center;
  font-family: "UD Shin Go Conde70 M", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.825px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  header .sns p {
    padding-bottom: 0;
  }
}

#top {
  width: 100%;
  padding-top: 200%;
  background: url(../img/bg_mainimg-600.webp) no-repeat;
  background-size: contain !important;
  position: relative;
}
#top .news {
  position: absolute;
  top: 69.333vw;
  left: 7.833vw;
  width: 84.333vw;
  height: 61.333vw;
  background: rgb(255, 255, 255);
  z-index: 0;
}
@media (min-width: 768px) {
  #top .news {
    top: 29.687vw;
    left: 25.39vw;
    width: 49.218vw;
    height: 24.218vw;
  }
}
@media (min-width: 992px) {
  #top .news {
    top: 22.983vw;
    left: 30.846vw;
    width: 38.104vw;
    height: 18.85vw;
  }
}
@media (min-width: 1440px) {
  #top .news {
    top: 23.152vw;
    left: 30.833vw;
    width: 38.333vw;
    height: 17.777vw;
  }
}
#top .news .inner {
  text-align: center;
  position: relative;
}
#top .news .inner .info {
  position: absolute;
  top: 0;
  right: 0px;
  background-color: #F8F186;
  border-radius: 0px 0px 0px 8px;
  border: 1.5px solid #333;
  -webkit-box-shadow: 1px 1px 0px 0px #333;
          box-shadow: 1px 1px 0px 0px #333;
}
@media (min-width: 768px) {
  #top .news .inner .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
#top .news .inner .info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.92vw;
}
@media (min-width: 768px) {
  #top .news .inner .info p {
    padding: 2px 1.04vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .info p {
    padding: 2px 0.8vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .info p {
    padding: 0.33vw 0.55vw;
  }
}
@media (min-width: 768px) {
  #top .news .inner .info p:nth-of-type(1) {
    border-right: 2px solid;
  }
}
#top .news .inner .info p:nth-of-type(1) img {
  height: 4.7vw;
}
@media (min-width: 768px) {
  #top .news .inner .info p:nth-of-type(1) img {
    height: 2.343vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .info p:nth-of-type(1) img {
    height: 1.814vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .info p:nth-of-type(1) img {
    height: 1.666vw;
  }
}
#top .news .inner .info p:nth-of-type(2) {
  border-top: 2px solid;
}
@media (min-width: 768px) {
  #top .news .inner .info p:nth-of-type(2) {
    border-top: none;
  }
}
#top .news .inner .info p:nth-of-type(2) img {
  height: 5.408vw;
}
@media (min-width: 768px) {
  #top .news .inner .info p:nth-of-type(2) img {
    height: 2.929vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .info p:nth-of-type(2) img {
    height: 2.26vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .info p:nth-of-type(2) img {
    height: 1.875vw;
  }
}
#top .news .inner .title-main {
  padding-top: 6.083vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 4.166vw;
    gap: 2.083vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main {
    padding-top: 3.225vw;
    gap: 1.612vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .title-main {
    padding: 2.22vw 1.111vw 0;
    gap: 1.111vw;
  }
}
#top .news .inner .title-main .title {
  line-height: 150%;
  padding-top: 2.666vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main .title {
    padding-top: 0;
    font-size: 1.6vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main .title {
    font-size: 1.35vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .title-main .title {
    font-size: 1.25vw;
    letter-spacing: 1.35px;
  }
}
#top .news .inner .title-main .title.mini {
  font-family: "UD Shin Maru Go Bold JIS2004", sans-serif;
  text-align: left;
  max-width: 90%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 4.807vw;
  padding-top: 1.444vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main .title.mini {
    width: auto;
    margin: 0;
    padding-top: 0;
    font-size: 2.083vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main .title.mini {
    font-size: 1.444vw;
  }
}
#top .news .inner .title-main .title.mini span {
  font-size: 80%;
  color: initial;
  text-shadow: none !important;
  -webkit-text-stroke-width: 0 !important;
  display: inline;
}
#top .news .inner .title-main .title.mini span::before {
  display: none;
}
#top .news .inner .title-main .title span.small {
  font-size: 5.1vw;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  #top .news .inner .title-main .title span.small {
    font-size: 2vw;
    -webkit-text-stroke-width: 0.6px;
  }
}
#top .news .inner .title-main .img img {
  width: 38.461vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #top .news .inner .title-main .img img {
    width: 18.098vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main .img img {
    width: 14.012vw;
  }
}
@media (min-width: 1440px) {
  #top .news .inner .title-main .img img {
    width: 14.444vw;
  }
}
#top .news .inner .title-main.special .title span {
  text-shadow: 0.2vw 0.2vw 0px #333;
  -webkit-text-stroke-width: 0.1vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main.special .title span {
    text-shadow: 0.2vw 0.2vw 0px #333;
    -webkit-text-stroke-width: 0.15vw;
    padding-bottom: 1.5vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main.special .title span {
    text-shadow: 1.25px 1.25px 0px #333;
    -webkit-text-stroke-width: 0.8px;
    padding-bottom: 8px;
  }
}
#top .news .inner .title-main.special .start {
  padding-top: 3.2vw;
  padding-bottom: 2vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main.special .start {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.8vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main.special .start {
    font-size: 1.2vw;
  }
}
#top .news .inner .title-main.special .start span {
  font-size: 5.2vw;
}
@media (min-width: 768px) {
  #top .news .inner .title-main.special .start span {
    font-size: 3.3vw;
    padding-bottom: 1vw;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main.special .start span {
    font-size: 2.5vw;
  }
}
@media (min-width: 768px) {
  #top .news .inner .title-main.special .start span.small {
    font-size: 2.5vw;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  #top .news .inner .title-main.special .start span.small {
    font-size: 1.9vw;
  }
}
@media (max-width: 375px) {
  #top {
    background: url(../img/bg_mainimg-375.webp) no-repeat;
  }
}
@media (min-width: 768px) {
  #top {
    padding-top: 72.656%;
    background: url(../img/bg_mainimg-768.webp) no-repeat;
  }
}
@media (min-width: 992px) {
  #top {
    padding-top: 56.25%;
    background: url(../img/bg_mainimg-992.webp) no-repeat;
  }
}
@media (min-width: 1440px) {
  #top {
    background: url(../img/bg_mainimg-1440.webp) no-repeat;
  }
}
#top .credit {
  font-size: 1.4rem;
  letter-spacing: 1.05px;
  line-height: 1;
  padding: 4px;
  display: inline-block;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.title-main .img img {
  width: 100%;
  border: 2px solid;
  -webkit-box-shadow: 1px 1px 0px 1px #333;
          box-shadow: 1px 1px 0px 1px #333;
}
.title-main .title {
  font-size: min(1.6rem, 3.8vw);
  padding-top: 8px;
  line-height: 175%;
  text-align: left;
  white-space: normal;
  text-wrap: initial;
}
.title-main .title span {
  font-size: 1.4rem;
}
.title-main .title.small {
  font-size: 7.692vw;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .title-main .title.small {
    font-size: 3.2rem;
    -webkit-text-stroke-width: 0.6px;
  }
}
@media (min-width: 768px) {
  .title-main.special {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
.title-main.special .title {
  font-size: 3vw;
  text-align: center;
  padding-top: 16px;
  font-family: "UD Shin Maru Go Medium JIS2004", sans-serif;
}
@media (min-width: 768px) {
  .title-main.special .title {
    text-align: left;
    font-size: 1.5625vw;
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .title-main.special .title {
    font-size: 1.2vw;
  }
}
@media (min-width: 1440px) {
  .title-main.special .title {
    font-size: 1.25vw;
  }
}
.title-main.special .title span {
  font-family: "UD Shin Maru Go H JIS2004 AP", sans-serif;
  color: #F8F186;
  /* Drop Shadow 1 */
  text-shadow: 0.3vw 0.3vw 0px #333;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333;
  font-size: 6.666vw;
  font-style: normal;
  line-height: 100%; /* 40px */
  letter-spacing: 0.5vw;
  display: block;
  padding-bottom: 1.66vw;
  position: relative;
}
.title-main.special .title span::before {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  white-space: nowrap;
  color: #333;
  -webkit-text-stroke-width: 2.5px;
}
@media (min-width: 768px) {
  .title-main.special .title span::before {
    white-space: pre;
  }
}
@media (min-width: 768px) {
  .title-main.special .title span {
    font-size: 3.47vw;
    -webkit-text-stroke-width: 0.05vw;
    line-height: 150%; /* 39.996px */
    letter-spacing: 2px;
    padding-bottom: 2.083vw;
  }
}
@media (min-width: 992px) {
  .title-main.special .title span {
    font-size: 2.687vw;
    -webkit-text-stroke-width: 0.04vw;
    padding-bottom: 1vw;
  }
}
@media (min-width: 1440px) {
  .title-main.special .title span {
    font-size: 2.777vw;
    -webkit-text-stroke-width: 0.06vw;
    padding-bottom: 1.111vw;
  }
}

.release {
  background-color: #F8F186;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
.release img {
  max-width: 490px;
  width: 85.576vw;
}

@media (min-width: 768px) {
  .btn-link {
    max-width: 680px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
.btn-link div {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .btn-link div {
    padding-top: 40px;
  }
}
.btn-link img {
  max-width: 330px;
  width: 79.326vw;
  margin: 0 auto;
}

main {
  background-color: #fff;
  max-width: 960px;
  width: 92.3vw;
  margin: 0 auto;
}
main section {
  position: relative;
}
main p {
  width: 148px;
}
main p.is-animated {
  -webkit-animation: dance 1s steps(1) infinite;
          animation: dance 1s steps(1) infinite;
}
@media (min-width: 768px) {
  main p.illust01 {
    margin-bottom: -124px;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  main p.illust01 {
    margin-left: 80px;
  }
}
main p.illust02 {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 768px) {
  main p.illust02 {
    margin: -100px 0 100px auto;
  }
}
@media (min-width: 992px) {
  main p.illust02 {
    margin: -100px 90px 100px auto;
  }
}
main p.illust03 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust03 {
    margin: -10px 10px 0 -10px !important;
  }
}
main p.illust04 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust04 {
    margin: -10px -10px 0 10px !important;
  }
}
@media (min-width: 768px) {
  main p.illust05 {
    width: 208px;
  }
}
main p.illust06 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust06 {
    margin: -10px 10px 0 -10px !important;
  }
}
main p.illust07 {
  width: 111px;
}
@media (min-width: 768px) {
  main p.illust07 {
    margin: -10px -20px 0 20px !important;
  }
}
main p.illust08, main p.illust09 {
  max-width: 184px;
  width: 100%;
}
@media (min-width: 992px) {
  main p.illust08, main p.illust09 {
    max-width: initial;
    width: 208px;
  }
}
main p.illust10 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust10 {
    margin: 30px 16px 0 -16px;
  }
}
@media (min-width: 768px) {
  main p.illust10 img {
    max-width: 120px;
  }
}
main p.illust11 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust11 {
    margin: 20px -16px 0 16px !important;
  }
}
@media (min-width: 768px) {
  main p.illust11 img {
    max-width: 120px;
  }
}
main p.illust12 {
  width: 134px;
}
@media (min-width: 768px) {
  main p.illust12 {
    margin: 0 16px 0 -16px !important;
  }
}
main p.illust13 {
  width: 120px;
}
@media (min-width: 768px) {
  main p.illust13 {
    margin: 0 -16px 0 16px !important;
  }
}
main #yodogawa {
  font-size: 1.8rem;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  line-height: 175%; /* 31.5px */
  text-align: justify;
  padding: 56px 0;
}
@media (min-width: 768px) {
  main #yodogawa {
    padding: 80px 0;
  }
}
main #yodogawa .inner > div {
  padding: 16px;
}
@media (min-width: 600px) {
  main #yodogawa .inner > div {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  main #yodogawa .inner .text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 16px;
  }
}
main #yodogawa .inner .cal {
  margin-top: 56px;
}
main .cal {
  position: relative;
  z-index: 0;
}
main .cal.special {
  background-color: #FDE8E3;
  border: 2px solid #333;
  padding: 9.615vw !important;
  margin: 56px auto 0;
}
@media (min-width: 768px) {
  main .cal.special {
    max-width: 600px;
    margin: 80px auto 0;
    padding: 40px !important;
  }
}
main .cal.special .info {
  position: absolute;
  top: -2px;
  left: -2px;
  border-radius: 0px 0px 8px 0px;
  border: 2px solid #333;
}
main .cal .info {
  background-color: #F8F186;
  padding: 4px 8px;
  border: 2px solid #333;
  display: table;
  margin-bottom: -2px;
}
main .cal .info p {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
main .cal .info p img {
  height: 10.096vw;
}
@media (min-width: 768px) {
  main .cal .info p img {
    max-height: 28px;
  }
}
@media (min-width: 992px) {
  main .cal .info p img {
    max-height: 42px;
  }
}
main .cal .title-main.special .title {
  text-align: left;
  line-height: 175%; /* 31.5px */
  letter-spacing: 1.35px;
  font-size: 4.326vw;
  white-space: normal;
}
@media (min-width: 768px) {
  main .cal .title-main.special .title {
    font-size: 1.8rem;
  }
}
main .cal .title-main.special .title.f-bold {
  line-height: 150%;
}
main .cal .title-main.special .title.f-bold span {
  margin-top: 8px;
}
main .cal .title-main.special .title span {
  font-size: 10.09vw;
  line-height: 150%;
}
@media (min-width: 768px) {
  main .cal .title-main.special .title span {
    font-size: 4rem;
    text-shadow: 2px 2px 0px #333;
    -webkit-text-stroke-width: 1px;
    padding-bottom: 8px;
  }
}
main .cal .title-main.special .title span::before {
  white-space: pre;
}
main .cal .title-main.special .title span.small {
  font-size: 7.692vw;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  main .cal .title-main.special .title span.small {
    font-size: 3.2rem;
    -webkit-text-stroke-width: 0.6px;
  }
}
@media (min-width: 768px) {
  main .cal .title-main.special .img img {
    width: 208px;
  }
}
@media (min-width: 768px) {
  main .list {
    padding: 0 40px;
  }
}
main .list .inner {
  border-top: 2px solid #333;
  padding: 56px 0;
}
@media (min-width: 768px) {
  main .list .inner {
    padding: 80px 0;
  }
}
main .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 3.846vw;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  main .list ul {
    gap: 40px 16px;
  }
}
main .list ul li {
  width: calc((100% - 3.846vw) / 2);
}
@media (min-width: 768px) {
  main .list ul li {
    width: calc((100% - 48px) / 4);
  }
}
main .list ul li br {
  display: none;
}
@media (min-width: 992px) {
  main .list ul li br {
    display: block;
  }
}
@media (min-width: 768px) {
  main .list ul.column3 {
    max-width: 656px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  main .list ul.column3 li {
    width: calc((100% - 32px) / 3);
  }
}
@media (min-width: 768px) {
  main .title-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) {
  main .title-section > div {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 768px) {
  main .title-section p:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
main .title-section p:nth-of-type(2) {
  margin: -120px 0 0 auto;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@media (min-width: 768px) {
  main .title-section p:nth-of-type(2) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
main .title-section .title {
  text-align: center;
}
main .title-section .title span {
  font-family: "UD Shin Maru Go H JIS2004 AP", sans-serif;
  color: #fff;
  text-shadow: 1.5px 1.5px 0px #333;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333;
  font-size: 3.2rem;
  font-style: normal;
  line-height: 150%;
  display: inline-block;
  position: relative;
  z-index: 0;
  text-align: center;
}
@media (min-width: 768px) {
  main .title-section .title span {
    font-size: 3.2rem;
    text-shadow: 1.8px 1.8px 0px #333;
    -webkit-text-stroke-width: 1px;
    white-space: nowrap;
  }
}
main .title-section .title span::before {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: #333;
  -webkit-text-stroke-width: 2.5px;
}
main .title-section .text {
  font-family: "UD Shin Maru Go Medium", sans-serif;
  letter-spacing: 1.2px;
  padding: 8px 16px 16px 16px;
}
@media (min-width: 768px) {
  main .title-section .text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding-top: 0;
  }
}
@media (min-width: 600px) {
  main .title-section .text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}

.tolink {
  position: fixed;
  bottom: -200px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  background-color: #F8F186;
  max-width: 400px;
  width: 96.153vw;
  border-radius: 25px;
  border: 1px solid #333;
  -webkit-box-shadow: 1px 1px 0px 1px #333;
          box-shadow: 1px 1px 0px 1px #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tolink {
    max-width: auto;
    width: 189px;
    right: 16px;
    border-radius: 16px;
    display: block;
    left: auto;
  }
}
.tolink.active {
  bottom: 4px;
}
@media (min-width: 768px) {
  .tolink.active {
    bottom: 16px;
  }
}
.tolink.pre {
  background-color: initial;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tolink a {
  display: block;
}
.tolink a:nth-of-type(n + 2) {
  border-left: 1px solid #333;
}
@media (min-width: 768px) {
  .tolink a:nth-of-type(n + 2) {
    border-top: 1px solid #333;
    border-left: none;
  }
}

/* ===============================================================================
Footer
=============================================================================== */
.illust14 {
  width: 60px;
  position: absolute;
  top: -60px;
}
@media (min-width: 600px) {
  .illust14 {
    width: 120px;
    top: -120px;
  }
}

a[target=_blank].open-in-new::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: 90%;
  position: relative;
  top: -0.2em;
  text-decoration: none;
  display: inline-block;
}

#link_footer {
  background-color: #fff;
  border-top: 2px solid;
  position: relative;
}
#link_footer .inner {
  padding: 32px 0;
  text-align: center;
}
@media (min-width: 768px) {
  #link_footer .inner {
    padding: 80px 0;
  }
}
#link_footer .inner > div {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 92.3vw;
  margin: 0 auto;
}
#link_footer .guide {
  font-family: "UD Shin Maru Go Medium JIS2004", sans-serif;
  padding: 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-align: left;
  line-height: 150%;
  font-size: 1.4rem;
  letter-spacing: 1.05px;
}
@media (min-width: 768px) {
  #link_footer .guide {
    font-size: 1.6rem;
    letter-spacing: 1.2px;
    gap: 16px;
    padding: 0 0 80px;
  }
}
#link_footer .guide a {
  text-decoration: underline;
}
#link_footer .guide img {
  width: 48px;
}
@media (min-width: 768px) {
  #link_footer .guide img {
    width: 76px;
  }
}
#link_footer .guide > div:last-of-type {
  width: 71.394vw;
}
@media (min-width: 600px) {
  #link_footer .guide > div:last-of-type {
    width: auto;
  }
}
@media (min-width: 768px) {
  #link_footer .btn-note ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
#link_footer .btn-note ul li {
  max-width: 400px;
  width: 92.3vw;
  margin: 0 auto;
}
#link_footer .btn-note ul li + li {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #link_footer .btn-note ul li + li {
    margin-top: 0;
  }
}
#link_footer .btn-note ul li img {
  -webkit-box-shadow: 1.5px 1px 0px 1px #333;
          box-shadow: 1.5px 1px 0px 1px #333;
  border-radius: 4px;
  background-color: #333;
}
#link_footer .lineup {
  margin-top: 32px;
}
@media (min-width: 768px) {
  #link_footer .lineup {
    margin-top: 80px;
  }
}
#link_footer .lineup a {
  display: inline-block;
}
#link_footer .lineup a img {
  max-width: 532px;
  width: 100%;
  margin: 0 auto;
}
#link_footer .index {
  margin: 50px auto;
}
@media (min-width: 768px) {
  #link_footer .index {
    margin: 100px auto;
  }
}
#link_footer .index.pre {
  margin-top: 0;
}
#link_footer .share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
#link_footer .share ul:before {
  content: "シェアする";
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1.05px;
}
#link_footer .credit {
  font-size: 1.4rem;
  padding-top: 32px;
  line-height: 1;
  letter-spacing: 1.05px;
}
@media (min-width: 768px) {
  #link_footer .credit {
    padding-top: 80px;
  }
}

[class*=mdi-]:before {
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Material Design Icons";
}

footer {
  letter-spacing: 0;
  padding: 0 16px 64px;
  background-color: #FDE8E3;
  font-family: "Hiragino Kaku Gothic W6 JIS2004", sans-serif;
}
@media (min-width: 768px) {
  footer {
    padding-bottom: 16px;
  }
}

section[role=social] > div {
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 32px;
  position: relative;
}
section[role=social] > div > ul:first-of-type {
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section[role=social] > div > ul:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section[role=social] > div > ul:first-of-type li + li {
  margin-left: 36px;
}
section[role=social] > div > ul:nth-of-type(2):before {
  content: attr(data-title) "";
  display: block;
  font-size: 12px;
  line-height: 1.5;
  width: 100%;
  margin: 0 0 8px 0;
  text-align: center;
}
@media (min-width: 768px) {
  section[role=social] > div > ul:nth-of-type(2):before {
    width: auto;
    margin: 0 8px 0 0;
    text-align: center;
  }
}
section[role=social] > div > ul:nth-of-type(2) li {
  margin-left: 8px;
}
section[role=social] > div > ul:first-of-type li a {
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section[role=social] > div > ul:first-of-type li a:before {
  font-size: 18px;
  margin-right: 4px;
  display: block;
}
section[role=social] > div > ul:first-of-type li a span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.mdi-youtube-play:before {
  content: "\f5c3";
}

.mdi-email-outline:before {
  content: "\f1f0";
  content: "\f1f0";
}

section[role=social] > div > ul:nth-of-type(2) li a {
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  position: relative;
}
section[role=social] > div > ul:nth-of-type(2) li a:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  font-size: 24px;
}

.mdi-facebook-box:before {
  display: none;
}

section[role=social] > div > ul:nth-of-type(2) li a > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.01;
  -webkit-transform: scale(1, 1.6);
          transform: scale(1, 1.6);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
section[role=bottom] > div {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 40px;
  display: box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1.5;
}
section[role=bottom] > div:last-of-type {
  padding-top: 46px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section[role=bottom] > div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  section[role=bottom] > div ul:last-of-type {
    margin-left: 40px;
  }
}

ul[role=translate] li a.btn-translate, ul[role=translate] li span.btn-translate {
  cursor: pointer;
}
ul[role=translate] li + li {
  margin-left: 12px !important;
  padding-left: 12px;
  border-left: 1px #333 solid;
}
ul[role=translate] li a, ul[role=translate] li span {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin: -10px 0;
  padding: 10px 0;
}
ul[role=translate] li a:not(.btn-translate), ul[role=translate] li span:not(.btn-translate) {
  opacity: 0.4;
}

@media (min-width: 769px) {
  section[role=social] > div > ul:nth-of-type(2) {
    margin-left: 80px;
  }
  section[role=bottom] > div ul li + li {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  section[role=social] > div {
    display: block;
    padding-top: 30px;
  }
  section[role=social] > div > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section[role=social] > div > ul:first-of-type {
    padding-bottom: 27px;
  }
  section[role=bottom] > div {
    display: block;
    padding-top: 50px;
  }
  section[role=bottom] > div ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 10vw;
  }
  section[role=bottom] > div ul:nth-of-type(2) {
    display: block;
    padding-top: 30px;
  }
  section[role=bottom] > div ul:nth-of-type(2) li + li {
    padding-top: 1.3em;
  }
  section[role=bottom] > div:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 92.3vw;
    padding-top: 30px;
  }
  section[role=bottom] > div ul[role=translate] {
    gap: 0;
  }
}
/* ===============================================================================
To lineup
=============================================================================== */
.tolineup {
  position: fixed;
  /* right: calc(50% - 1000px / 2 + 10px); */
  right: 50px;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .tolineup {
    right: 0;
    bottom: -10px;
  }
}

.tolineup.active {
  bottom: 50px;
  opacity: 1;
  z-index: 10;
}
@media (min-width: 768px) {
  .tolineup.active {
    bottom: 0;
    opacity: 1;
  }
}

.tolineup a img {
  width: 189px;
}
@media (min-width: 768px) {
  .tolineup a img {
    width: 125px;
  }
}/*# sourceMappingURL=index.css.map */