@charset "UTF-8";
/*--------------------
共通設定
--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 0vw;
  vertical-align: bottom;
}
*::-moz-selection {
  color: #fff;
  background: #1e5a9b;
}
*::selection {
  color: #fff;
  background: #1e5a9b;
}

html {
  font-family: source-han-sans-japanese, sans-serif;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify;
}
html body {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

p:not(:last-of-type) {
  margin-bottom: 1rem;
}
p span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}

@media screen and (min-width: 1025px) {
  html {
    font-size: 16px;
  }
}
/*--------------------
背景
--------------------*/
.background {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.background__base {
  width: 100%;
  height: 100%;
  background: url(../img/background__base.webp);
  background-size: cover;
  background-position: center center;
}
.background__logo {
  width: 90%;
  max-width: 720px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.background__line--top, .background__line--bottom {
  width: 1920px;
  height: 73px;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.5);
          transform: translateX(-50%) scale(0.5);
}
.background__line--top {
  background: url(../img/background__line--top.webp);
  top: -10px;
}
.background__line--bottom {
  background: url(../img/background__line--bottom.webp);
  bottom: -10px;
}
.background__overlay {
  width: 100%;
  height: 100vh;
  position: relative;
}
.background__overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(150, 150, 150, 0.3);
  background-image: radial-gradient(#000 20%, transparent 20%), radial-gradient(#000 20%, transparent 20%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.background__texture {
  width: 100%;
  height: 100%;
  background: url(../img/background__texture.webp);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.background.active .background__line--top {
  opacity: 1;
  top: 0px;
}
.background.active .background__line--bottom {
  opacity: 1;
  bottom: 0px;
}

/*--------------------
header
--------------------*/
header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
header.active .header__container--btn {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(0, 0);
          transform: rotate(45deg) translate(0, 0);
}
header .header__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
header .header__container--btn {
  width: 45px;
  height: 45px;
  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;
  background: #1e5a9b;
  border: 2px solid #fff;
  opacity: 0;
  z-index: 999;
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: fill;
  cursor: pointer;
  -webkit-transform: rotate(45deg) translate(50px, -50px);
          transform: rotate(45deg) translate(50px, -50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header__container--btn .hamburger {
  width: 38px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .header__container--btn .hamburger.on {
  height: 22px;
}
header .header__container--btn .hamburger.on span:nth-child(1) {
  top: 10px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
header .header__container--btn .hamburger.on span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
header .header__container--btn .hamburger.on span:nth-child(3) {
  top: 10px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
header .header__container--btn .hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header__container--btn .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform: translateX(-75%);
          transform: translateX(-75%);
}
header .header__container--btn .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header__container--btn .hamburger span:nth-child(3) {
  top: 16px;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}
header .header__container--nav {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgba(30, 90, 155, 0.8);
  background-size: cover;
  background-position: center;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
header .header__container--nav::before, header .header__container--nav::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
header .header__container--nav.show {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: fill;
}
header .header__container--nav.show .h-nav__container--list li {
  opacity: 1;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(1) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(2) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(3) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(4) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(5) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(6) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
header .header__container--nav.show .h-nav__container--list li:nth-of-type(7) {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
header .header__container--nav > div {
  z-index: 10;
}
header .header__container--nav .h-nav__container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .header__container--nav .h-nav__container--list {
  margin-top: 10px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}
header .header__container--nav .h-nav__container--list li {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
}
header .header__container--nav .h-nav__container--list li:nth-of-type(1) {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(2) {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(3) {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(4) {
  -webkit-transform: translateX(70px);
          transform: translateX(70px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(5) {
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(6) {
  -webkit-transform: translateX(90px);
          transform: translateX(90px);
}
header .header__container--nav .h-nav__container--list li:nth-of-type(7) {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
header .header__container--nav .h-nav__container--list li a {
  padding: 8px 0;
  margin-right: -4px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  color: #1e5a9b;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.6));
  position: relative;
}

@media screen and (min-width: 1025px) {
  header {
    width: 16%;
    max-width: 160px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: initial;
    right: 0;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
    pointer-events: fill;
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header .header__container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  header .header__container--btn {
    display: none;
  }
  header .header__container--nav {
    height: 100%;
    padding: 0;
    display: block;
    background: transparent;
    opacity: 1;
    position: absolute;
    -webkit-user-select: auto;
       -moz-user-select: auto;
        -ms-user-select: auto;
            user-select: auto;
    pointer-events: fill;
    -webkit-transition: none;
    transition: none;
  }
  header .header__container--nav::before, header .header__container--nav::after {
    display: none;
  }
  header .header__container--nav .h-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header__container--nav .h-nav__container h3 {
    display: none;
  }
  header .header__container--nav .h-nav__container--list {
    width: 100%;
    display: grid;
    gap: 14px;
  }
  header .header__container--nav .h-nav__container--list li {
    width: 120px;
    justify-self: end;
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(1) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(2) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(3) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(4) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(5) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(6) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li:nth-of-type(7) {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  header .header__container--nav .h-nav__container--list li.current {
    -webkit-transform: scale(1.35);
            transform: scale(1.35);
  }
  header .header__container--nav .h-nav__container--list li.current a {
    background: rgba(242, 196, 0, 0.8);
  }
  header .header__container--nav .h-nav__container--list li a {
    display: block;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    -webkit-filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.6));
            filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.6));
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
  header .header__container--nav .h-nav__container--list li a:hover {
    background: rgba(242, 196, 0, 0.8);
  }
}
/*--------------------
section
--------------------*/
main {
  padding-top: 100vh;
  padding-top: 100svh;
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}
main section:not(.hero) {
  margin-top: 120px;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}
main section:not(.intro) > .container-top,
main section:not(.intro) > .container-bottom {
  height: 30px;
  background: rgba(30, 90, 155, 0.6);
  border: 2px solid #000;
  position: relative;
  overflow: hidden;
}
main section:not(.intro) > .container-top::before,
main section:not(.intro) > .container-bottom::before {
  content: "";
  width: 100%;
  height: 30px;
  background: url(../img/container__loop.webp);
  background-size: auto 30px;
  opacity: 0.4;
  position: absolute;
  top: -2px;
  left: 0;
}
main section:not(.intro) > .container-top::after,
main section:not(.intro) > .container-bottom::after {
  content: "";
  width: 150px;
  height: 30px;
  background: #1e5a9b;
  position: absolute;
  top: 0;
}
main section:not(.intro) > .container-top::before {
  -webkit-animation: loop-top 20s linear infinite;
          animation: loop-top 20s linear infinite;
}
main section:not(.intro) > .container-top::after {
  border-right: 2px solid #000;
  left: -15px;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
main section:not(.intro) > .container-bottom::before {
  -webkit-animation: loop-bottom 20s linear infinite;
          animation: loop-bottom 20s linear infinite;
}
main section:not(.intro) > .container-bottom::after {
  border-left: 2px solid #000;
  right: -15px;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
main section > h2 {
  max-width: 500px;
  margin-bottom: 20px;
}
main section > .container {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

@-webkit-keyframes loop-top {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 680px;
  }
}

@keyframes loop-top {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 680px;
  }
}
@-webkit-keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -680px;
  }
}
@keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -680px;
  }
}
@media screen and (min-width: 600px) {
  main section:not(.hero) {
    width: calc(100% - 80px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  main section:not(.intro) > .container-top::after,
  main section:not(.intro) > .container-bottom::after {
    content: "";
    width: 250px;
  }
  main section > h2 {
    max-width: 400px;
    margin-bottom: 20px;
  }
  main section > .container {
    padding: 40px;
  }
}
/*--------------------
hero
--------------------*/
.hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero__container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__container--img {
  width: 100%;
  height: 100%;
}
.hero__container--img img {
  -o-object-position: center top;
     object-position: center top;
}
.hero__container--logo {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero.hidden {
  opacity: 0;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  50.1% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
  }
  50.1% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
}
@media screen and (min-width: 600px) {
  .hero__container--logo {
    max-width: 500px;
    position: absolute;
    top: initial;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 1025px) {
  .hero__container--img {
    width: 100%;
    height: 100%;
  }
  .hero__container--img img {
    max-width: 125%;
    position: relative;
    top: 3vh;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*--------------------
intro
--------------------*/
.intro {
  margin-top: 350px !important;
}
.intro .container-top,
.intro .container-bottom {
  width: 75%;
  height: 30px;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
}
.intro .container-top {
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}
.intro .container-bottom {
  margin-left: auto;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.intro__container {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.7);
}
.intro__container p {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
.intro__container p.strong {
  margin: 1.5rem 0;
  font-size: 30px;
}
.intro__container p.strong .ruby {
  position: relative;
}
.intro__container p.strong .ruby::before {
  content: "ワールド・ライディング・デュエル・グランプリ";
  width: 300px;
  font-size: 10px;
  font-weight: 600;
  word-break: keep-all;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0.5);
          transform: translateX(-50%) scale(0.5);
}

@media screen and (min-width: 600px) {
  .intro {
    margin-top: 350px !important;
  }
  .intro .container-top,
  .intro .container-bottom {
    width: 45%;
    height: 40px;
  }
  .intro__container {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
  }
  .intro__container p {
    font-size: 30px;
  }
  .intro__container p:not(:last-of-type) {
    margin-bottom: 36px;
  }
  .intro__container p.strong {
    font-size: 40px;
  }
  .intro__container p.strong .yellow {
    color: #F2C400;
  }
  .intro__container p.strong .ruby {
    position: relative;
  }
  .intro__container p.strong .ruby::before {
    content: "ワールド・ライディング・デュエル・グランプリ";
    width: 300px;
    font-size: 10px;
    font-weight: 600;
    word-break: keep-all;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.7);
            transform: translateX(-50%) scale(0.7);
  }
}
/*--------------------
information
--------------------*/
.information__container h3 {
  padding-bottom: 4px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  color: #1e5a9b;
  position: relative;
  overflow: hidden;
}
.information__container h3::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.information__container h3::after {
  content: "";
  width: 80px;
  height: 12px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  right: -10px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}
.information__container--date {
  margin-bottom: 20px;
  display: grid;
  gap: 10px;
}
.information__container--date .date-item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid black;
  text-align: center;
}
.information__container--date .date-item .item__date {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  letter-spacing: 1px;
}
.information__container--date .date-item a {
  padding: 2px 4px;
  display: inline-block;
  color: #1e5a9b;
  position: relative;
}
.information__container--date .date-item a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.information__container--txt:not(:last-of-type) {
  margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
  .information__container h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .information__container h3::after {
    width: 90px;
    height: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .information__container--date .date-item a::after {
    opacity: 1;
  }
  .information__container--date .date-item a:hover {
    color: #1e5a9b;
  }
  .information__container--date .date-item a:hover::after {
    opacity: 0;
    bottom: 0;
  }
}
/*--------------------
illust
--------------------*/
.illust__container {
  display: grid;
  gap: 10px;
}
.illust__container--img {
  border: 2px solid #1e5a9b;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.illust__container--img .img__wrap {
  grid-row: 1/2;
  grid-column: 1/2;
  opacity: 0;
  height: 470px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.illust__container--img .img__wrap.show {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
  pointer-events: auto;
}
.illust__container--img .img__wrap.show::before, .illust__container--img .img__wrap.show::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.illust__container--img .img__wrap.show::before {
  left: -80px;
  top: -80px;
}
.illust__container--img .img__wrap.show::after {
  right: -80px;
  bottom: -80px;
}
.illust__container--img .img__wrap.show .img__wrap--name {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.illust__container--img .img__wrap.hidden {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.illust__container--img .img__wrap.hidden::before, .illust__container--img .img__wrap.hidden::after {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.illust__container--img .img__wrap.hidden::before {
  left: -160px;
  top: -160px;
}
.illust__container--img .img__wrap.hidden::after {
  right: -160px;
  bottom: -160px;
}
.illust__container--img .img__wrap.hidden .img__wrap--name {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.illust__container--img .img__wrap#yusei .img__wrap--character img, .illust__container--img .img__wrap#crow .img__wrap--character img, .illust__container--img .img__wrap#aki .img__wrap--character img {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.illust__container--img .img__wrap#rua .img__wrap--character img {
  -webkit-transform: translateY(-100px) translateX(-60px);
          transform: translateY(-100px) translateX(-60px);
}
.illust__container--img .img__wrap#ruka .img__wrap--character img {
  -webkit-transform: translateY(-90px);
          transform: translateY(-90px);
}
.illust__container--img .img__wrap#bruno .img__wrap--character img {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.illust__container--img .img__wrap::before, .illust__container--img .img__wrap::after {
  content: "";
  width: 160px;
  height: 160px;
  background: #F2C400;
  border: 2.5px solid #1e5a9b;
  position: absolute;
  z-index: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.illust__container--img .img__wrap::before {
  left: -160px;
  top: -160px;
}
.illust__container--img .img__wrap::after {
  right: -160px;
  bottom: -160px;
}
.illust__container--img .img__wrap--zoom {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #1e5a9b;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.illust__container--img .img__wrap--zoom span {
  padding-left: 20px;
  color: #1e5a9b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.illust__container--img .img__wrap--zoom span::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/illust__zoom.svg);
  background-size: cover;
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.illust__container--img .img__wrap--name {
  position: absolute;
  bottom: 16px;
  left: 10px;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  z-index: 6;
}
.illust__container--img .img__wrap--name > div {
  position: relative;
}
.illust__container--img .img__wrap--name > div .sub {
  padding: 3px 6px;
  display: inline-block;
  background: #fff;
  border: 2px solid #1e5a9b;
  color: #1e5a9b;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: -11px;
  left: 0;
}
.illust__container--img .img__wrap--name > div .main {
  margin-left: 6px;
  padding: 14px 10px 12px 10px;
  display: inline-block;
  background: #1e5a9b;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.illust__container--img .img__wrap--character {
  height: 100%;
  position: relative;
  z-index: 5;
}
.illust__container--img .img__wrap--character a {
  height: 100%;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}
.illust__container--img .img__wrap--character a > div {
  display: block;
  position: relative;
}
.illust__container--img .img__wrap--character a > div::after {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.illust__container--img .img__wrap--character a > div img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.illust__container--thumbnail ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}
.illust__container--thumbnail ul li {
  border: 1px solid #999;
  opacity: 0.5;
}
.illust__container--thumbnail ul li.current {
  border: 1px solid #1e5a9b;
  outline: 1px solid #1e5a9b;
  opacity: 1;
}

@media screen and (min-width: 600px) {
  .illust__container {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
  }
  .illust__container--img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .illust__container--img .img__wrap {
    height: 100%;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
  }
  .illust__container--img .img__wrap--name {
    position: absolute;
    bottom: 16px;
    left: 10px;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    z-index: 6;
  }
  .illust__container--img .img__wrap--name > div .sub {
    font-size: 12px;
  }
  .illust__container--img .img__wrap--name > div .main {
    padding: 18px 14px 16px 14px;
    letter-spacing: 4px;
  }
  .illust__container--thumbnail {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .illust__container--thumbnail ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
  .illust__container--thumbnail ul li {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0.3;
    cursor: pointer;
  }
  .illust__container--thumbnail ul li.current {
    border: 1px solid #1e5a9b;
    outline: 1px solid #1e5a9b;
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .illust__container--thumbnail {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .illust__container--thumbnail ul li:hover {
    border: 1px solid #1e5a9b;
    outline: 1px solid #1e5a9b;
    opacity: 1;
  }
}
/*--------------------
tokuten
--------------------*/
.tokuten__container h3 {
  padding-bottom: 4px;
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  color: #1e5a9b;
  position: relative;
  overflow: hidden;
}
.tokuten__container h3::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tokuten__container h3::after {
  content: "";
  width: 80px;
  height: 12px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  right: -10px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}
.tokuten__container--list {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tokuten__container--list .list-item:last-of-type {
  grid-column: 1/3;
}
.tokuten__container--list .list-item a {
  display: block;
  border: 1px solid #000;
  position: relative;
}
.tokuten__container--list .list-item a::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/zoom.webp);
  background-size: cover;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.tokuten__container .table__head {
  padding: 6px 8px 8px 8px;
  margin-bottom: 10px;
  display: inline-block;
  background: #1e5a9b;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.tokuten__container--example {
  margin-bottom: 20px;
  width: 100%;
  border-collapse: collapse;
}
.tokuten__container--example tbody tr {
  font-size: 11px;
}
.tokuten__container--example tbody tr th, .tokuten__container--example tbody tr td {
  padding: 8px 4px;
  border: solid 1px #1e5a9b;
  text-align: center;
}
.tokuten__container--example tbody tr th {
  background: #1e5a9b;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  color: #fff;
}
.tokuten__container--attention {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.1);
}
.tokuten__container--attention > p {
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
  position: relative;
}
.tokuten__container--attention > p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 600px) {
  .tokuten__container h3 {
    margin-top: 24px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .tokuten__container h3::after {
    width: 90px;
    height: 16px;
  }
  .tokuten__container--list {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .tokuten__container--list .list-item:last-of-type {
    grid-column: 1/3;
  }
  .tokuten__container--list .list-item a {
    display: block;
    border: 1px solid #000;
    position: relative;
  }
  .tokuten__container--list .list-item a::after {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(../img/zoom.webp);
    background-size: cover;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 99;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
  }
}
/*--------------------
goods
--------------------*/
.goods__container--btn {
  margin-bottom: 20px;
  line-height: 1;
}
.goods__container--btn a {
  padding: 14px 7px;
  display: block;
  border: 2px solid #1e5a9b;
  background: #1e5a9b;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.goods__container--btn a span {
  display: inline-block;
}
.goods__container--list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.goods__container--list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid #1e5a9b;
}
.goods__container--list .list-item__img {
  border-bottom: 1px solid #1e5a9b;
}
.goods__container--list .list-item__img a {
  display: block;
}
.goods__container--list .list-item__name {
  padding: 0 4px;
  font-size: 10px;
  text-align: left;
  letter-spacing: 1px;
  color: #1e5a9b;
  line-height: 1.5;
}
.goods__container--list .list-item__name .red {
  display: inline-block;
  color: red;
  font-size: 10px;
}
.goods__container--list .list-item__price {
  margin-top: auto;
  padding: 2px 4px 0 4px;
  background: #1e5a9b;
  text-align: right;
  color: #fff;
}
.goods__container--list .list-item__price span {
  display: inline-block;
  font-size: 10px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.goods__container--attention {
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.1);
}
.goods__container--attention.red {
  border: 1px solid red;
  background: rgba(0, 0, 0, 0.1);
}
.goods__container--attention.red > p {
  margin-bottom: 0;
  padding-left: 26px;
  font-size: 12px;
  color: red;
  text-align: left;
  position: relative;
}
.goods__container--attention.red > p::before {
  content: "※1";
}
.goods__container--attention.red > p a {
  color: #0066c0;
}
.goods__container--attention > p {
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
  text-align: left;
  position: relative;
}
.goods__container--attention > p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.goods__container--attention > p a {
  color: #0066c0;
}

@media screen and (min-width: 600px) {
  .goods__container--btn {
    margin-bottom: 40px;
  }
  .goods__container--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 10px;
  }
  .goods__container--list .list-item {
    gap: 20px;
  }
  .goods__container--list .list-item__name {
    padding: 0 10px;
    font-size: 14px;
  }
  .goods__container--list .list-item__name .red {
    font-size: 14px;
  }
  .goods__container--list .list-item__price {
    padding: 2px 10px 0 10px;
    font-size: 18px;
  }
  .goods__container--list .list-item__price span {
    font-size: 14px;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media screen and (min-width: 1025px) {
  .goods__container--btn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .goods__container--btn a:hover {
    background: #fff;
    color: #1e5a9b;
    font-weight: 800;
  }
  .goods__container--list .list-item__img a {
    overflow: hidden;
  }
  .goods__container--list .list-item__img a img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .goods__container--list .list-item__img a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .goods__container--list .list-item__name a:hover {
    text-decoration: underline;
  }
  .goods__container--list .list-item__price {
    font-size: 18px;
  }
  .goods__container--list .list-item__price span {
    font-size: 14px;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .goods__container--attention p a:hover {
    text-decoration: underline;
  }
}
/*--------------------
gallery
--------------------*/
.gallery__container h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  font-style: italic;
  color: #1e5a9b;
  position: relative;
  overflow: hidden;
}
.gallery__container h3::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.gallery__container h3::after {
  content: "";
  width: 80px;
  height: 12px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  right: -10px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}
.gallery__container h3 span:not([class]) {
  display: inline-block;
}
.gallery__container h3 span.able, .gallery__container h3 span.unable {
  margin-left: 10px;
  padding: 4px 8px;
  background: #1e5a9b;
  font-style: normal;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 41%;
  -webkit-transform: translateY(-50%) skew(-15deg);
          transform: translateY(-50%) skew(-15deg);
}
.gallery__container h3 span.unable {
  background: #ff3000;
}
.gallery__container--section:first-of-type {
  margin-top: 14px;
}
.gallery__container--section:not(:last-of-type) {
  margin-bottom: 20px;
}
.gallery__container--section#tape .gallery__container--img {
  margin-top: 10px;
}
.gallery__container--img {
  border: 1px solid #999;
}
.gallery__container--list {
  margin-top: 20px;
  margin-bottom: 20px;
}
.gallery__container--list .list-head {
  margin-bottom: 10px;
  padding: 6px 8px 8px 8px;
  display: inline-block;
  background: #1e5a9b;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}
.gallery__container--attention {
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.1);
}
.gallery__container--attention > p {
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 12px;
  position: relative;
}
.gallery__container--attention > p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 600px) {
  .gallery__container h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .gallery__container h3::after {
    width: 90px;
    height: 16px;
  }
  .gallery__container--section:first-of-type {
    margin-top: 24px;
  }
  .gallery__container--section:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .gallery__container--section#tape .gallery__container--img {
    margin-top: 20px;
  }
}
/*--------------------
access
--------------------*/
.access__container--list .list-item {
  padding: 10px;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #1e5a9b;
}
.access__container--list .list-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.access__container--list .list-item h3 {
  padding-bottom: 4px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  color: #1e5a9b;
  position: relative;
  overflow: hidden;
}
.access__container--list .list-item h3::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.access__container--list .list-item h3::after {
  content: "";
  width: 80px;
  height: 12px;
  background: #1e5a9b;
  position: absolute;
  bottom: 0;
  right: -10px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}
.access__container--list .list-item .list-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.access__container--list .list-item .list-item__wrap--map {
  height: 0;
  border: 2px solid #1e5a9b;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}
.access__container--list .list-item .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.access__container--list .list-item .list-item__wrap--data {
  margin: 20px 0;
}
.access__container--list .list-item .list-item__wrap--data dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
}
.access__container--list .list-item .list-item__wrap--data dt span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #1e5a9b;
  word-break: keep-all;
}
.access__container--list .list-item .list-item__wrap--data dt::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #1e5a9b;
}
.access__container--list .list-item .list-item__wrap--data dd span {
  display: inline-block;
}
.access__container--list .list-item .list-item__wrap--data dd span:not(:first-of-type) {
  margin-left: 7px;
}
.access__container--list .list-item .list-item__wrap--data dd:not(:last-of-type) {
  margin-bottom: 20px;
}
.access__container--list .list-item .list-item__wrap--btn {
  margin-top: auto;
  line-height: 1;
}
.access__container--list .list-item .list-item__wrap--btn a {
  padding: 14px 7px;
  display: block;
  border: 2px solid #1e5a9b;
  background: #1e5a9b;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.access__container--list .list-item .list-item__wrap--btn a span {
  display: inline-block;
}

@media screen and (min-width: 600px) {
  .access__container--list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .access__container--list .list-item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .access__container--list .list-item .list-item__wrap--map {
    padding-bottom: 62.5%;
  }
}
@media screen and (min-width: 1025px) {
  .access__container--list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .access__container--list .list-item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .access__container--list .list-item .list-item__wrap--btn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .access__container--list .list-item .list-item__wrap--btn a:hover {
    background: #fff;
    color: #1e5a9b;
    font-weight: 800;
  }
}
/*--------------------
twitter
--------------------*/
.twitter .twitter__container {
  padding-bottom: 40px;
}
.twitter .twitter__container p {
  text-align: center;
}
.twitter .twitter__container--img {
  margin-bottom: 20px;
  text-align: center;
}
.twitter .twitter__container--img img {
  max-width: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #fff;
  overflow: hidden;
}
.twitter .twitter__container--btn {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 5px;
  background: #1e5a9b;
  border-radius: 40px;
  overflow: hidden;
}
.twitter .twitter__container--btn a {
  padding: 5px;
  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;
  gap: 10px;
  border: 2px solid #fff;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.twitter .twitter__container--btn a svg {
  width: 18px;
  height: 18px;
}
.twitter .twitter__container--btn a svg path {
  fill: #fff;
}
.twitter .twitter__container--btn a span {
  padding-top: 2px;
  font-size: 16px;
  color: #fff;
}

@media screen and (min-width: 1025px) {
  .twitter .twitter__container--btn a:hover {
    border: 2px solid rgba(255, 255, 255, 0);
    text-decoration: none;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*--------------------
sns
--------------------*/
.sns__container {
  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;
  gap: 10px;
}
.sns__container h3 {
  padding: 4px 20px;
  display: inline-block;
  background: #1e5a9b;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}
.sns__container--list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sns__container--list > div {
  display: inline-block;
}
.sns__container--list > div.twitter a {
  background: #1DA1F2;
}
.sns__container--list > div.facebook a {
  background: #3B5998;
}
.sns__container--list > div.line a {
  background: #00C300;
}
.sns__container--list > div a {
  display: block;
  padding: 8px;
  border: 1px solid #fff;
}
.sns__container--list > div a svg {
  display: block;
  width: 26px;
  height: 26px;
}
.sns__container--list > div a svg path {
  fill: #fff;
}

@media screen and (min-width: 1025px) {
  .sns__container--list > div a svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sns__container--list > div a:hover svg {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/*--------------------
footer
--------------------*/
footer {
  margin-top: 120px;
  padding: 80px 0;
  background: rgba(30, 90, 155, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
footer .footer__container {
  padding: 0 20px;
}
footer .footer__container--logo {
  margin-bottom: 20px;
  text-align: center;
}
footer .footer__container--logo img {
  width: 60%;
  max-width: 300px;
}
footer .footer__container--copy p {
  color: #fff;
}
footer .footer__container--copy p:not(:last-of-type) {
  margin-bottom: 0;
}
footer .footer__container--copy p small {
  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;
  gap: 5px;
  font-size: 12px;
  letter-spacing: 1px;
}
footer .footer__container--copy p small span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer__container--copy p small span img {
  max-height: 10px;
}