@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: #383595;
}
*::selection {
  color: #fff;
  background: #383595;
}

html {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-family: source-han-sans-japanese, sans-serif;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: justify;
}
html body {
  width: 100%;
  background: url(../img/bg.webp);
  background-size: 850px auto;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
html body::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}

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

.small {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #D93935;
}
.small p {
  margin-bottom: 0;
  font-size: 12px;
  color: #D93935;
  position: relative;
}
.small p.small__date {
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 900;
}
.small p:not([class]) {
  padding-left: 14px;
}
.small p:not([class])::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------
見出し
--------------------*/
h2 {
  margin: 0 auto 40px auto;
  padding-bottom: 8px;
  text-align: center;
  line-height: 1;
  position: relative;
}
h2 span {
  margin-right: 30px;
  padding: 4px 36px 12px 36px;
  display: inline-block;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  background: #383595;
  line-height: 1;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  -webkit-box-shadow: 8px 8px 0 #D93935;
          box-shadow: 8px 8px 0 #D93935;
  position: relative;
}
h2 span::first-letter {
  font-size: 48px;
}
h2 span::after {
  content: "";
  width: 20px;
  height: 100%;
  background: #383595;
  -webkit-box-shadow: 8px 8px 0 #D93935;
          box-shadow: 8px 8px 0 #D93935;
  position: absolute;
  top: 0;
  right: -30px;
}

/*--------------------
section,container
--------------------*/
section:not(#first) {
  padding: 40px 20px;
  position: relative;
}
section .container {
  position: relative;
}

/*--------------------
レイアウトの設定
--------------------*/
.wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.wrap__left, .wrap__right {
  display: none;
}
.wrap__center {
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  z-index: 200;
  opacity: 1;
}

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

@keyframes loop-top {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1790px;
  }
}
@-webkit-keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1790px;
  }
}
@keyframes loop-bottom {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1790px;
  }
}
@media screen and (min-width: 600px) {
  .wrap {
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr min(70%, 500px) 1fr;
    position: relative;
  }
  .wrap__center {
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 0px 10px 25px;
            box-shadow: rgba(0, 0, 0, 0.75) 0px 10px 25px;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1025px) {
  .wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding-right: 0;
    display: grid;
    grid-template-columns: 1fr min(37.5%, 500px) 1fr;
    position: relative;
  }
  .wrap__left {
    width: calc((100% - min(37.5%, 500px)) / 2);
    height: 100vh;
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .wrap__left > div {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: center;
    align-self: center;
  }
  .wrap__left--logo {
    width: 75%;
    max-width: 40 0px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .wrap__right {
    width: calc((100% - min(37.5%, 500px)) / 2);
    height: 100vh;
    padding: 46px 0;
    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;
    position: fixed;
    top: 0;
    left: initial;
    right: 0;
    z-index: 10;
  }
  .wrap__right--data {
    width: 70%;
    max-width: 350px;
  }
  .wrap__center {
    grid-column: 2/3;
  }
}
@-webkit-keyframes txt__in {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@keyframes txt__in {
  0% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
}
@-webkit-keyframes txt__out {
  0% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
@keyframes txt__out {
  0% {
    -webkit-transform: translateX(101%);
            transform: translateX(101%);
  }
  30% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  70% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}
/* ios safari */
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .wrap__left--txt div p {
    padding: 12px 4px 10px 22px;
  }
  .wrap__left--txt div p span::before, .wrap__left--txt div p span::after {
    top: 45.5%;
  }
}
/* 古いsafari */
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .wrap__left--txt div p {
      padding: 12px 4px 10px 22px;
    }
    .wrap__left--txt div p span::before, .wrap__left--txt div p span::after {
      top: 45.5%;
    }
  }
}
/*--------------------
メイン部分
--------------------*/
@media screen and (min-width: 600px) {
  main {
    margin-top: 0;
  }
}
/*--------------------
ヘッダー
--------------------*/
header {
  width: 100%;
  height: 60px;
  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 .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: 50px;
  height: 50px;
  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: #383595;
  border: 2px solid #fff;
  border-radius: 4px;
  z-index: 999;
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: fill;
  cursor: pointer;
}
header .header__container--btn .hamburger {
  width: 38px;
  height: 28px;
  position: relative;
}
header .header__container--btn .hamburger.on span:nth-child(1) {
  -webkit-animation: menu-up 0.6s ease;
          animation: menu-up 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__container--btn .hamburger.on span:nth-child(2) {
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
header .header__container--btn .hamburger.on span:nth-child(3) {
  -webkit-animation: menu-down 0.6s ease;
          animation: menu-down 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__container--btn .hamburger.off span:nth-child(1) {
  top: 0;
  -webkit-animation: menu-up-r 0.6s ease;
          animation: menu-up-r 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__container--btn .hamburger.off span:nth-child(2) {
  opacity: 1;
}
header .header__container--btn .hamburger.off span:nth-child(3) {
  top: 26px;
  -webkit-animation: menu-down-r 0.6s ease;
          animation: menu-down-r 0.6s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
header .header__container--btn .hamburger span {
  width: 25px;
  height: 4px;
  border-radius: 1px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header__container--btn .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform: translateX(-65%);
          transform: translateX(-65%);
}
header .header__container--btn .hamburger span:nth-child(2) {
  top: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header__container--btn .hamburger span:nth-child(3) {
  top: 24px;
  -webkit-transform: translateX(-35%);
          transform: translateX(-35%);
}
header .header__container--nav {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  background: linear-gradient(95deg, rgb(195, 195, 195) 0%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 60%, rgb(195, 195, 195) 100%);
  background-size: cover;
  background-position: center;
  border-left: 10px solid #72ADFF;
  border-right: 10px solid #72ADFF;
  -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 10px;
          box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 10px;
  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.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 .h-nav__left,
header .header__container--nav .h-nav__right {
  height: calc(100% - 3px);
  width: 24px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .header__container--nav .h-nav__left::before,
header .header__container--nav .h-nav__right::before {
  content: "";
  height: 100%;
  width: 4px;
  background: #fff;
  position: absolute;
  top: 0;
}
header .header__container--nav .h-nav__left::after,
header .header__container--nav .h-nav__right::after {
  content: "";
  height: 100%;
  width: 14px;
  background: url(../img/nav__side--bg.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: repeat-y;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header__container--nav .h-nav__left {
  left: 10px;
}
header .header__container--nav .h-nav__left::before {
  right: -10px;
}
header .header__container--nav .h-nav__right {
  right: 10px;
}
header .header__container--nav .h-nav__right::before {
  left: -10px;
}
header .header__container--nav > div {
  z-index: 1;
}
header .header__container--nav .h-nav__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}
header .header__container--nav .h-nav__list li a {
  padding: 12px;
  display: block;
  color: #383595;
  font-size: 22px;
  font-style: italic;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  position: relative;
}
header .header__container--nav .h-nav__list li a::first-letter {
  font-size: 34px;
  color: #D93935;
}
header .header__container--nav .h-nav__list li a::before {
  content: "GO!";
  font-size: 14px;
  font-weight: 900;
  color: #D93935;
  line-height: 1;
  position: absolute;
  bottom: 2px;
  left: 70%;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
}
header .header__container--nav .h-nav__list li a::after {
  content: "";
  width: 35%;
  height: 3px;
  background: #D93935;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%) skew(-45deg);
          transform: translateX(-50%) skew(-45deg);
}

@media screen and (min-width: 600px) {
  header {
    width: min(70%, 500px);
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .header__container--nav {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 1025px) {
  header .header__container--nav .h-nav__list li a {
    font-size: 26px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .header__container--nav .h-nav__list li a::first-letter {
    font-size: 40px;
    color: #D93935;
  }
  header .header__container--nav .h-nav__list li a::before {
    font-size: 18px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .header__container--nav .h-nav__list li a::after {
    height: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .header__container--nav .h-nav__list li a:hover {
    color: #D93935 !important;
  }
  header .header__container--nav .h-nav__list li a:hover::before {
    left: 73%;
  }
  header .header__container--nav .h-nav__list li a:hover::after {
    content: "";
    width: 40%;
  }
}
@-webkit-keyframes menu-up {
  0% {
    top: 0;
    -webkit-transform: translateX(-65%) rotate(0);
            transform: translateX(-65%) rotate(0);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}
@keyframes menu-up {
  0% {
    top: 0;
    -webkit-transform: translateX(-65%) rotate(0);
            transform: translateX(-65%) rotate(0);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}
@-webkit-keyframes menu-up-r {
  0% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 0;
    -webkit-transform: translateX(-65%) rotate(0);
            transform: translateX(-65%) rotate(0);
  }
}
@keyframes menu-up-r {
  0% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 0;
    -webkit-transform: translateX(-65%) rotate(0);
            transform: translateX(-65%) rotate(0);
  }
}
@-webkit-keyframes menu-down {
  0% {
    top: 24px;
    -webkit-transform: translateX(-35%) rotate(0);
            transform: translateX(-35%) rotate(0);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}
@keyframes menu-down {
  0% {
    top: 24px;
    -webkit-transform: translateX(-35%) rotate(0);
            transform: translateX(-35%) rotate(0);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}
@-webkit-keyframes menu-down-r {
  0% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 24px;
    -webkit-transform: translateX(-35%) rotate(0);
            transform: translateX(-35%) rotate(0);
  }
}
@keyframes menu-down-r {
  0% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  50% {
    top: 12px;
    -webkit-transform: translateX(-50%) rotate(0);
            transform: translateX(-50%) rotate(0);
  }
  100% {
    top: 24px;
    -webkit-transform: translateX(-35%) rotate(0);
            transform: translateX(-35%) rotate(0);
  }
}
/*--------------------
sns
--------------------*/
#sns {
  padding: 24px 0 40px 0;
  background: #383595;
}
#sns h2 {
  margin-bottom: 24px;
  padding-bottom: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
}
#sns .sns__container--list {
  text-align: center;
}
#sns .sns__container--list > div {
  display: inline-block;
  margin: 10px;
}
#sns .sns__container--list > div a {
  display: block;
  padding: 11px;
  border-radius: 100%;
  border: 2px solid #fff;
}
#sns .sns__container--list > div a svg {
  display: block;
  width: 33px;
  height: 33px;
}
#sns .sns__container--list > div a svg path {
  fill: #fff;
}
#sns .sns__container--list > div.twitter a {
  background: #1DA1F2;
}
#sns .sns__container--list > div.facebook a {
  background: #3B5998;
}
#sns .sns__container--list > div.line a {
  background: #00C300;
}

@media screen and (min-width: 1025px) {
  #sns .sns__container--list > div a svg {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #sns .sns__container--list > div a:hover svg {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*--------------------
intro
--------------------*/
#intro {
  padding: 80px 0;
  background: url(../img/intro__bg.webp);
  background-size: cover;
  background-position: bottom;
}
#intro .intro__container > div {
  text-align: center;
  text-shadow: 1px 0 3px rgba(0, 0, 0, 0.8);
}
#intro .intro__container--catch {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  padding: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
#intro .intro__container--txt {
  font-size: 13px;
  line-height: 2;
  color: #fff;
}
#intro .intro__container--txt > p:not(:last-of-type) {
  margin-bottom: 40px;
}

@media screen and (min-width: 600px) {
  #intro {
    padding: 120px 20px;
  }
  #intro .intro__container > div {
    text-align: center;
    text-shadow: 1px 0 3px rgba(0, 0, 0, 0.8);
  }
  #intro .intro__container--catch {
    font-size: 24px;
  }
  #intro .intro__container--txt {
    font-size: 16px;
  }
}
/*--------------------
about
--------------------*/
#about .about-container h3 {
  padding: 12px 0;
  margin-bottom: 40px;
  background: #fff;
  border: 2px solid #383595;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #383595;
  font-style: italic;
  line-height: 1;
  overflow: hidden;
  position: relative;
}
#about .about-container h3::before, #about .about-container h3::after {
  content: "";
  width: 40px;
  height: 40px;
  background: #D93935;
  border: 2px solid #383595;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#about .about-container h3::before {
  top: -20px;
  left: -20px;
}
#about .about-container h3::after {
  right: -20px;
  bottom: -20px;
}
#about .about-container p {
  text-align: center;
  letter-spacing: 2px;
  line-height: 2;
}
#about .about-container p:not(:last-of-type) {
  margin-bottom: 40px;
}
#about .about-container p a {
  color: #383595;
}
#about .about-container p a:hover {
  text-decoration: underline;
}
#about .about-container table {
  width: 100%;
  margin-bottom: 40px;
}
#about .about-container table tbody tr {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .about-container table tbody tr:not(:last-of-type) {
  margin-bottom: 10px;
}
#about .about-container table tbody tr th, #about .about-container table tbody tr td {
  text-align: center;
}
#about .about-container table tbody tr th {
  font-size: 16px;
  font-weight: 900;
  color: #D93935;
}
#about .about-container table tbody tr td a {
  color: #383595;
}
#about .about-container table tbody tr td a:hover {
  text-decoration: underline;
}

/*--------------------
goods
--------------------*/
.goods__container > p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #D93935;
}
.goods__container--btn {
  margin-bottom: 40px;
}
.goods__container--btn a {
  padding: 20px 0px;
  border: 3px solid #383595;
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: #383595;
  text-align: center;
}
.goods__container--btn a span {
  font-size: 12px;
}
.goods__container--list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 10px;
}
.goods__container--list:not(:last-of-type) {
  margin-bottom: 20px;
}
.goods__container--list .list-item {
  border: 2px solid #383595;
  overflow: hidden;
  position: relative;
}
.goods__container--list .list-item__img {
  margin-bottom: 10px;
  border-bottom: 2px solid #383595;
}
.goods__container--list .list-item__name {
  margin-bottom: 34px;
  padding: 0 6px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5;
}
.goods__container--list .list-item__name a span {
  color: #D93935;
  font-size: 10px;
  font-weight: 900;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.goods__container--list .list-item__price {
  padding: 0 15px;
  letter-spacing: 1px;
  line-height: 1;
  background: #383595;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: -15px;
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
}
.goods__container--list .list-item__price > p {
  line-height: 1.5;
  -webkit-transform: skew(35deg);
          transform: skew(35deg);
}
.goods__container--list .list-item__price > p span {
  font-size: 12px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.goods__container .small p {
  padding-left: 0;
}
.goods__container .small p::before {
  content: "";
}
.goods__container .small p#goods__att--01 {
  padding-left: 28px;
}
.goods__container .small p#goods__att--01::before {
  content: "※1";
}

/*--------------------
tokuten
--------------------*/
.tokuten__container h3 {
  padding: 12px 0;
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  border: 2px solid #383595;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #383595;
  font-style: italic;
  line-height: 1;
  overflow: hidden;
  position: relative;
}
.tokuten__container h3:nth-of-type(2) {
  margin-bottom: 20px;
}
.tokuten__container h3::before, .tokuten__container h3::after {
  content: "";
  width: 40px;
  height: 40px;
  background: #D93935;
  border: 2px solid #383595;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tokuten__container h3::before {
  top: -20px;
  left: -20px;
}
.tokuten__container h3::after {
  right: -20px;
  bottom: -20px;
}
.tokuten__container h4 {
  margin-bottom: 14px;
  font-size: clamp(1rem, 0.4727rem + 1.4085vw, 1.375rem);
  font-weight: 900;
  text-align: center;
  color: #D93935;
}
.tokuten__container--list {
  margin-top: 24px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.tokuten__container--list .list-item {
  border: 2px solid #383595;
  position: relative;
}
.tokuten__container--list .list-item::after {
  content: "";
  width: 34px;
  height: 34px;
  background: url(../img/zoom.webp);
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 4px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.tokuten__container--list .list-item:last-of-type {
  grid-column: 1/3;
}
.tokuten__container #tokuten__venue {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tokuten__container #tokuten__venue > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.tokuten__container #tokuten__venue > div:first-of-type > p {
  background: #383595;
}
.tokuten__container #tokuten__venue > div:nth-of-type(2) > p {
  background: #D93935;
}
.tokuten__container #tokuten__venue > div > p {
  padding: 12px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
}
.tokuten__container #tokuten__venue > div > p span {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.tokuten__container #tokuten__venue > div a {
  padding: 10px;
  border: 2px solid #383595;
  display: block;
  overflow: hidden;
  position: relative;
}
.tokuten__container #tokuten__venue > div a::after {
  content: "";
  width: 34px;
  height: 34px;
  background: url(../img/zoom.webp);
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 4px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

/*--------------------
gallery
--------------------*/
.gallery__container h3 {
  padding: 6px 12px;
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  border: 2px solid #383595;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: center;
  color: #383595;
  font-style: italic;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
}
.gallery__container h3::before, .gallery__container h3::after {
  content: "";
  width: 40px;
  height: 40px;
  background: #D93935;
  border: 2px solid #383595;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gallery__container h3::before {
  top: -20px;
  left: -20px;
}
.gallery__container h3::after {
  right: -20px;
  bottom: -20px;
}
.gallery__container h3 span {
  display: inline-block;
}
.gallery__container #gallery__stundy--01,
.gallery__container #gallery__stundy--02 {
  margin-top: 20px;
}
.gallery__container #gallery__stundy--01 a,
.gallery__container #gallery__stundy--02 a {
  display: block;
  border: 2px solid #383595;
  position: relative;
}
.gallery__container #gallery__stundy--01 a::after,
.gallery__container #gallery__stundy--02 a::after {
  content: "";
  width: 34px;
  height: 34px;
  background: url(../img/zoom.webp);
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 4px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.gallery__container #gallery__stundy--01 > p,
.gallery__container #gallery__stundy--02 > p {
  border-left: 2px solid #383595;
  border-right: 2px solid #383595;
  border-bottom: 2px solid #383595;
  text-align: center;
  color: #383595;
}
.gallery__container--img {
  margin-bottom: 20px;
  border: 2px solid #383595;
}
.gallery__container > p.btn {
  margin-top: 20px;
}
.gallery__container > p.btn a {
  height: 50px;
  padding: 10px 0;
  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: #383595;
  color: #fff;
  text-align: center;
  position: relative;
}
.gallery__container > p.btn a::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.gallery__container--attention {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid #ff0600;
}
.gallery__container--attention > p {
  font-size: 12px;
  color: #ff0600;
}
.gallery__container--attention > p.strong {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
.gallery__container--attention > p:not(:last-of-type) {
  margin-bottom: 6px;
}
.gallery__container--attention > p:not(.strong) {
  padding-left: 12px;
  position: relative;
}
.gallery__container--attention > p:not(.strong)::before {
  content: "※";
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1025px) {
  .gallery__container > p.btn a::before {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .gallery__container > p.btn a:hover::before {
    opacity: 0;
  }
}
/*--------------------
access
--------------------*/
#access {
  padding: 40px 0;
}
#access .access__container {
  display: grid;
  position: relative;
}
#access .access__container--list .list-item:not(:last-of-type) {
  margin-bottom: 40px;
}
#access .access__container--list .list-item h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
#access .access__container--list .list-item h3 span {
  width: 100%;
  padding: 20px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  background: #383595;
}
#access .access__container--list .list-item .list-item__wrap {
  border: 2px solid #383595;
  overflow: hidden;
}
#access .access__container--list .list-item .list-item__wrap--map {
  height: 0;
  overflow: hidden;
  padding-bottom: 62.5%;
  position: relative;
}
#access .access__container--list .list-item .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#access .access__container--list .list-item .list-item__wrap--data {
  padding: 20px;
  background: #fff;
  text-align: center;
}
#access .access__container--list .list-item .list-item__wrap--data dt {
  margin-bottom: 20px;
}
#access .access__container--list .list-item .list-item__wrap--data dt span {
  padding: 0 20px;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #D93935;
  letter-spacing: 6px;
  text-align: center;
  position: relative;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::before, #access .access__container--list .list-item .list-item__wrap--data dt span::after {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::before {
  border-left: solid 3px #D93935;
  border-top: solid 3px #D93935;
  border-bottom: solid 3px #D93935;
  top: 0;
  left: 0;
}
#access .access__container--list .list-item .list-item__wrap--data dt span::after {
  border-right: solid 3px #D93935;
  border-top: solid 3px #D93935;
  border-bottom: solid 3px #D93935;
  top: 0;
  right: 0;
}
#access .access__container--list .list-item .list-item__wrap--data dd span {
  display: inline-block;
}
#access .access__container--list .list-item .list-item__wrap--data dd span:not(:first-of-type) {
  margin-left: 7px;
}
#access .access__container--list .list-item .list-item__wrap--data dd:not(:last-of-type) {
  margin-bottom: 20px;
}
#access .access__container--list .list-item .list-item__wrap--btn {
  line-height: 1;
}
#access .access__container--list .list-item .list-item__wrap--btn a {
  padding: 10px;
  display: block;
  border-top: 2px solid #383595;
  background: #383595;
  text-align: center;
  color: #fff;
  line-height: 1.3;
}
#access .access__container--list .list-item .list-item__wrap--btn a span {
  display: inline-block;
}

@media screen and (min-width: 1025px) {
  #access .access__container--list .list-item .list-item__wrap--btn a {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  #access .access__container--list .list-item .list-item__wrap--btn a:hover {
    background: #fff;
    color: #383595;
  }
}
/*--------------------
Twitter
--------------------*/
#twitter {
  padding: 40px 0;
}
#twitter .twitter__container {
  padding: 0 20px;
  background: transparent;
  text-align: center;
}
#twitter .twitter__container p {
  text-align: center;
  font-size: 16px;
}
#twitter .twitter__container p:not(:last-of-type) {
  margin-bottom: 20px;
}
#twitter .twitter__container--img {
  text-align: center;
}
#twitter .twitter__container--img img {
  max-width: 220px;
  border-radius: 10px;
  overflow: hidden;
}
#twitter .twitter__container--btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 5px;
  background: #D93935;
  border-radius: 40px;
  overflow: hidden;
}
#twitter .twitter__container--btn a {
  padding: 10px;
  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 rgb(255, 255, 255);
  border-radius: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#twitter .twitter__container--btn a svg {
  width: 30px;
  height: 30px;
}
#twitter .twitter__container--btn a svg path {
  fill: #fff;
}
#twitter .twitter__container--btn a span {
  padding-top: 2px;
  font-size: 18px;
  color: #fff;
}
#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);
}

@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);
  }
}
/*--------------------
footer
--------------------*/
footer {
  margin: 0 auto;
  margin-top: 40px;
  padding: 40px 0;
  background: #383595;
  position: relative;
}
footer *::-moz-selection {
  color: #fff;
  background: #D93935 !important;
}
footer *::selection {
  color: #fff;
  background: #D93935 !important;
}
footer p {
  color: #fff;
  text-align: center;
}
footer p:not(:last-of-type) {
  margin-bottom: 20px;
}
footer p small {
  font-size: 12px;
  font-weight: 700;
}