@charset "UTF-8";
/*--------------------
汎用設定
--------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  color: #e1ff65;
  background-color: #CCC4FF;
}

*::selection {
  color: #e1ff65;
  background-color: #CCC4FF;
}

html {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  color: #2b2b2b;
  line-height: 1.7;
}

body {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow-x: hidden;
  background: #ffe009;
  background: linear-gradient(45deg, #ffe009 0%, #ffe009 33%, #e84443 33%, #e84443 67%, #4795d3 67%, #4795d3 100%);
  position: relative;
}

body::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/bg.png");
  -webkit-animation: move-stripe2 4s infinite linear;
          animation: move-stripe2 4s infinite linear;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: -1;
}

@media screen and (min-width: 1024px) {
  body {
    min-height: 800px;
  }
}

a {
  color: #0066c0;
}

a:hover {
  text-decoration: underline;
}

p {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 600;
}

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

p span {
  display: inline-block;
}

p strong {
  font-size: 1.3rem;
  font-family: wanpaku-ruika, sans-serif;
  font-weight: normal;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  p:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
  p strong {
    font-size: 1.185rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.red {
  color: red;
}

.strong {
  font-size: 1.2rem;
  font-weight: bold;
}

img {
  max-width: 100%;
}

.btn a {
  padding: 0.5rem;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 18px;
    line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  .btn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn a:hover {
    background: #37a4dd;
  }
}

/*--------------------
見出し設定
--------------------*/
h2 {
  height: 120px;
  z-index: 10;
  position: relative;
}

h2 img {
  width: auto;
  height: 100%;
}

h2.txt {
  height: initial;
  margin-bottom: 1rem;
  padding-bottom: 10px;
  font-size: 2rem;
  font-family: wanpaku-ruika, sans-serif;
  text-align: center;
  color: #fff;
  position: relative;
}

h2.txt::after {
  content: "";
  width: 20vw;
  height: 6px;
  background: #fff;
  border-radius: 6px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

h3 {
  font-family: wanpaku-ruika, sans-serif;
  font-size: 1.2rem;
}

/*--------------------
画面枠などの設定
--------------------*/
.frame {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 999;
}

.frame::before, .frame::after {
  content: "";
  position: absolute;
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.frame::before {
  width: 15px;
  height: 100%;
  top: 0;
  left: 0;
}

.frame::after {
  width: 100%;
  height: 15px;
  top: 0;
  left: 0;
}

.frame > .frame_bottom {
  width: 100%;
  height: 100%;
  position: relative;
}

.frame > .frame_bottom::before, .frame > .frame_bottom::after {
  content: "";
  position: absolute;
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.frame > .frame_bottom::before {
  width: 15px;
  height: 100%;
  bottom: 0;
  right: 0;
}

.frame > .frame_bottom::after {
  width: 100%;
  height: 15px;
  bottom: 0;
  right: 0;
}

.frame.frame1::before, .frame.frame1::after {
  background: #ff757b;
}

.frame.frame1 > .frame_bottom::before, .frame.frame1 > .frame_bottom::after {
  background: #ff757b;
}

.frame.frame2::before, .frame.frame2::after {
  background: #CCC4FF;
}

.frame.frame2 > .frame_bottom::before, .frame.frame2 > .frame_bottom::after {
  background: #CCC4FF;
}

.frame.frame3::before, .frame.frame3::after {
  background: #7398ff;
}

.frame.frame3 > .frame_bottom::before, .frame.frame3 > .frame_bottom::after {
  background: #7398ff;
}

.frame.frame4::before, .frame.frame4::after {
  background: #56d656;
}

.frame.frame4 > .frame_bottom::before, .frame.frame4 > .frame_bottom::after {
  background: #56d656;
}

.frame.frame5::before, .frame.frame5::after {
  background: #77c0ff;
}

.frame.frame5 > .frame_bottom::before, .frame.frame5 > .frame_bottom::after {
  background: #77c0ff;
}

.frame.frame6::before, .frame.frame6::after {
  background: #ff8f2a;
}

.frame.frame6 > .frame_bottom::before, .frame.frame6 > .frame_bottom::after {
  background: #ff8f2a;
}

.frame.frame7::before, .frame.frame7::after {
  background: #3db8ae;
}

.frame.frame7 > .frame_bottom::before, .frame.frame7 > .frame_bottom::after {
  background: #3db8ae;
}

#front {
  width: 120px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

#front ul {
  position: absolute;
  bottom: 10px;
  left: 69%;
  display: -ms-grid;
  display: grid;
}

#front ul li {
  width: 150px;
  border: 1px solid #2b2b2b;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50px) rotate(-100deg);
          transform: translateY(-50px) rotate(-100deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

#front ul li.current {
  opacity: 1;
  -webkit-transform: translateY(-10px) rotate(-10deg);
          transform: translateY(-10px) rotate(-10deg);
}

#front .front__chara {
  -webkit-transform: translate(-20%, 20%);
          transform: translate(-20%, 20%);
}

@media screen and (min-width: 768px) {
  .frame::before {
    width: 30px;
  }
  .frame::after {
    height: 30px;
  }
  .frame > .frame_bottom::before {
    width: 30px;
  }
  .frame > .frame_bottom::after {
    height: 30px;
  }
  #front {
    width: 200px;
  }
  #front ul {
    bottom: 18px;
    left: 70%;
  }
  #front ul li {
    width: 231px;
    border: 1px solid #2b2b2b;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50px) rotate(-100deg);
            transform: translateY(-50px) rotate(-100deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  #front ul li.current {
    opacity: 1;
    -webkit-transform: translateY(-10px) rotate(-10deg);
            transform: translateY(-10px) rotate(-10deg);
  }
  #front .front__chara {
    -webkit-transform: translate(-20%, 20%);
            transform: translate(-20%, 20%);
  }
}

/*--------------------
header
--------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

header .header__wrap {
  padding: 10px 20px;
  margin: 0 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
      grid-template-columns: 40% 1fr;
}

header .header__wrap .header__wrap--logo,
header .header__wrap .header__wrap--list {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

header .header__wrap .header__wrap--logo {
  padding: 0 2px;
}

header .header__wrap .header__wrap--logo img {
  max-width: 200px;
  width: 100%;
}

header .header__wrap .header__wrap--list {
  justify-self: flex-end;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
}

header .header__wrap .header__wrap--list li a {
  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;
}

header .header__wrap .header__wrap--list li a img {
  max-width: 80%;
}

header .header__wrap .header__wrap--list li a span {
  height: 11px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  -webkit-transform: scale(0.8) translateY(-2px);
          transform: scale(0.8) translateY(-2px);
}

header .header__wrap .header__wrap--list li a:hover {
  text-decoration: none;
}

header .header__wrap .header__wrap--list li.pc {
  display: none;
}

header .header__menu {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 80px 0;
  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;
  background: rgba(55, 55, 55, 0.7);
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 10px, transparent 0, transparent 20px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
}

header .header__menu.show {
  visibility: visible;
  opacity: 1;
}

header .header__menu .header__menu--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[1];
      grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

header .header__menu .header__menu--list li {
  text-align: center;
}

header .header__menu .header__menu--list li a span {
  display: inline-block;
  font-size: 1.5rem;
  font-family: wanpaku-ruika, sans-serif;
  font-weight: 100;
  color: #fff;
  text-shadow: 2px  2px 1px #2b2b2b, -2px  2px 1px #2b2b2b, 2px -2px 1px #2b2b2b, -2px -2px 1px #2b2b2b, 2px  0px 1px #2b2b2b, 0px  2px 1px #2b2b2b, -2px  0px 1px #2b2b2b, 0px -2px 1px #2b2b2b;
}

header .header__menu .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 20px;
}

header .header__menu .close a {
  display: block;
}

header.header1 {
  background: #ff757b;
}

header.header2 {
  background: #CCC4FF;
}

header.header3 {
  background: #7398ff;
}

header.header4 {
  background: #56d656;
}

header.header5 {
  background: #77c0ff;
}

header.header6 {
  background: #ff8f2a;
}

header.header7 {
  background: #3db8ae;
}

@media screen and (min-width: 768px) {
  header {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header .header__wrap {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    -ms-grid-columns: 200px 1fr;
        grid-template-columns: 200px 1fr;
    gap: 40px;
  }
  header .header__wrap .header__wrap--logo {
    padding: 0;
  }
  header .header__wrap .header__wrap--logo p a {
    padding: 10px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
  header .header__wrap .header__wrap--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  header .header__wrap .header__wrap--list li {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
  }
  header .header__wrap .header__wrap--list li:nth-of-type(-n+4)::after {
    content: "";
    width: 2px;
    height: 40%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -9px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header .header__wrap .header__wrap--list li a {
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-family: wanpaku-ruika, sans-serif;
    font-weight: 100;
    letter-spacing: 0.01rem;
  }
  header .header__wrap .header__wrap--list li.pc {
    display: inline-block;
  }
  header .header__wrap .header__wrap--list li.sp {
    display: none;
  }
  header .header__menu {
    visibility: hidden;
  }
}

@media screen and (min-width: 1024px) {
  header .header__wrap .header__wrap--list li a {
    font-size: 1rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  header .header__wrap .header__wrap--list li a:hover {
    text-shadow: 2px  2px 0px #2b2b2b, -2px  2px 0px #2b2b2b, 2px -2px 0px #2b2b2b, -2px -2px 0px #2b2b2b, 2px  0px 0px #2b2b2b, 0px  2px 0px #2b2b2b, -2px  0px 0px #2b2b2b, 0px -2px 0px #2b2b2b;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

/*--------------------
main,section共通
--------------------*/
section {
  padding: 30px;
  position: relative;
}

section > div {
  padding: 10px 0 48px 0;
  z-index: 1;
}

section > div.right h2 {
  -webkit-transform: translateY(6px) rotate(-5deg);
          transform: translateY(6px) rotate(-5deg);
}

section > div.right .txt__wrap {
  -webkit-box-shadow: 10px 10px 0 0 #9e9e9e;
          box-shadow: 10px 10px 0 0 #9e9e9e;
}

section > div.left h2 {
  -webkit-transform: translateY(6px) rotate(5deg);
          transform: translateY(6px) rotate(5deg);
  text-align: right;
}

section > div.left .txt__wrap {
  -webkit-box-shadow: -10px 10px 0 0 #7e7e7e;
          box-shadow: -10px 10px 0 0 #7e7e7e;
}

section > div .txt__wrap {
  padding: 1rem;
  background: #fff;
  border: 4px solid #2b2b2b;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  section {
    padding: 40px 0;
    position: relative;
  }
  section > div {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
  }
  section > div:not(:last-of-type) {
    margin-bottom: 80px;
  }
  section > div.right h2 {
    -webkit-transform: translateY(0) rotate(-3deg);
            transform: translateY(0) rotate(-3deg);
  }
  section > div.right .txt__wrap {
    -webkit-box-shadow: 10px 10px 0 0 #9e9e9e;
            box-shadow: 10px 10px 0 0 #9e9e9e;
  }
  section > div.left h2 {
    -webkit-transform: translateY(2px) rotate(3deg);
            transform: translateY(2px) rotate(3deg);
    text-align: right;
  }
  section > div.left .txt__wrap {
    -webkit-box-shadow: -10px 10px 0 0 #7e7e7e;
            box-shadow: -10px 10px 0 0 #7e7e7e;
  }
  section > div .txt__wrap {
    padding: 3rem;
    background: #fff;
    border: 4px solid #2b2b2b;
    border-radius: 8px;
    position: relative;
    z-index: 1;
  }
}

/*--------------------
top
--------------------*/
#top {
  padding: 0;
  position: relative;
}

#top .top__wrap {
  height: 100vh;
  height: calc(var(--vh_top, 1vh) * 100);
  margin: 0 auto;
  padding: 0 !important;
  padding-bottom: 30px;
  display: -ms-grid;
  display: grid;
  overflow: visible;
  position: relative;
  z-index: 2;
}

#top .top__wrap.single {
  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;
}

#top .top__wrap > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 /2;
}

#top .top__wrap .top__wrap--left {
  position: relative;
  z-index: 99;
}

#top .top__wrap .top__wrap--left .top__left--hukidashi {
  width: 60vw;
  max-width: 650px;
  position: absolute;
  right: 70%;
  top: 75px;
  -webkit-transform: translateX(50%) rotate(-7deg);
          transform: translateX(50%) rotate(-7deg);
}

#top .top__wrap .top__wrap--left .top__left--date {
  width: 60vw;
  max-width: 100%;
  position: absolute;
  bottom: 7%;
  left: 62%;
  -webkit-transform: translateX(-50%) rotate(-8deg);
          transform: translateX(-50%) rotate(-8deg);
}

#top .top__wrap .top__wrap--right {
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: -2;
}

#top .top__wrap .top__wrap--right .top__right--chara {
  height: 100%;
  position: relative;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: rotateY(270deg);
          transform: rotateY(270deg);
  opacity: 1;
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate img:first-of-type {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate img:nth-of-type(2) {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate.view {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate.hidden {
  -webkit-animation: rotate_hidden 1s linear;
          animation: rotate_hidden 1s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#top .top__wrap .top__wrap--right .top__right--chara > .rotate.visible {
  -webkit-animation: rotate_visible 0.334s linear;
          animation: rotate_visible 0.334s linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#top .top__banner {
  display: none;
}

@media screen and (min-width: 768px) {
  #top .top__wrap {
    width: 100%;
    max-height: 800px;
    margin: 0 auto;
    -ms-grid-columns: 30% 1fr;
        grid-template-columns: 30% 1fr;
  }
  #top .top__wrap > div {
    grid-column: auto;
    grid-row: auto;
  }
  #top .top__wrap .top__wrap--left {
    position: relative;
  }
  #top .top__wrap .top__wrap--left .top__left--hukidashi {
    width: 50vw;
    max-width: 450px;
    right: 10%;
    top: 120px;
    -webkit-transform: translateX(50%) rotate(-7deg);
            transform: translateX(50%) rotate(-7deg);
    z-index: -1;
  }
  #top .top__wrap .top__wrap--left .top__left--date {
    width: 60vw;
    max-width: 380px;
    position: absolute;
    bottom: 35%;
    left: 100%;
    -webkit-transform: translateX(-50%) rotate(-15deg);
            transform: translateX(-50%) rotate(-15deg);
  }
  #top .top__wrap .top__wrap--right .top__right--chara {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  #top .top__banner {
    width: 15vw;
    max-width: 250px;
    height: 15vw;
    max-width: 250px;
    display: block;
    position: absolute;
    bottom: 40px;
    right: 40px;
    -webkit-animation-name: dokidoki;
            animation-name: dokidoki;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    z-index: 99;
  }
}

@media screen and (min-width: 1024px) {
  #top .top__wrap {
    max-width: 1200px;
    max-height: 100vh;
    min-height: 800px;
    -ms-grid-columns: 50% 1fr;
        grid-template-columns: 50% 1fr;
  }
  #top .top__wrap > div {
    grid-column: auto;
    grid-row: auto;
  }
  #top .top__wrap .top__wrap--left {
    position: relative;
  }
  #top .top__wrap .top__wrap--left .top__left--hukidashi {
    width: 50vw;
    max-width: 600px;
    right: 35%;
    top: 120px;
    -webkit-transform: translateX(50%) rotate(-7deg);
            transform: translateX(50%) rotate(-7deg);
    z-index: -1;
  }
  #top .top__wrap .top__wrap--left .top__left--date {
    width: 60vw;
    max-width: 550px;
    position: absolute;
    bottom: 15%;
    left: 75%;
    -webkit-transform: translateX(-50%) rotate(-15deg);
            transform: translateX(-50%) rotate(-15deg);
  }
  #top .top__wrap .top__wrap--right .top__right--chara {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

/*--------------------
about
--------------------*/
#about::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main01_bg.jpg);
  background-size: auto auto;
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*--------------------
作品紹介
--------------------*/
#intro::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main02_bg.jpg);
  background-size: 400px 400px;
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#intro h2::after {
  -webkit-box-shadow: 2px  2px 1px #2b2b2b, -2px  2px 1px #2b2b2b, 2px -2px 1px #2b2b2b, -2px -2px 1px #2b2b2b, 2px  0px 1px #2b2b2b, 0px  2px 1px #2b2b2b, -2px  0px 1px #2b2b2b, 0px -2px 1px #2b2b2b;
          box-shadow: 2px  2px 1px #2b2b2b, -2px  2px 1px #2b2b2b, 2px -2px 1px #2b2b2b, -2px -2px 1px #2b2b2b, 2px  0px 1px #2b2b2b, 0px  2px 1px #2b2b2b, -2px  0px 1px #2b2b2b, 0px -2px 1px #2b2b2b;
}

#intro > * {
  text-shadow: 2px  2px 1px #2b2b2b, -2px  2px 1px #2b2b2b, 2px -2px 1px #2b2b2b, -2px -2px 1px #2b2b2b, 2px  0px 1px #2b2b2b, 0px  2px 1px #2b2b2b, -2px  0px 1px #2b2b2b, 0px -2px 1px #2b2b2b;
}

#intro .intro__wrap {
  z-index: 11;
}

#intro .intro__wrap p {
  font-size: 1.2rem;
  font-weight: 100;
  text-align: center;
  color: #fff;
  font-family: wanpaku-ruika, sans-serif;
}

#intro .intro__wrap p.intro__btn {
  text-align: center;
}

#intro .intro__wrap p.intro__btn a {
  padding: 0 1rem;
  display: inline-block;
  background: #fff;
  border: 3px solid #2b2b2b;
  border-radius: 4rem;
  color: #2b2b2b;
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  #intro {
    padding: 80px 0;
  }
  #intro h2, #intro p {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  #intro .intro__wrap p.intro__btn a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #intro .intro__wrap p.intro__btn a:hover {
    background: #37a4dd;
    color: #fff;
  }
}

/*--------------------
goods
--------------------*/
#goods::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main03_bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#goods #tokuten .txt__wrap .img__wrap {
  margin-bottom: 1.5rem;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
}

#goods #tokuten .txt__wrap .img__wrap div {
  border: 2px solid #2b2b2b;
  position: relative;
  overflow: hidden;
}

#goods #tokuten .txt__wrap .img__wrap div::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/zoom.png);
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

#goods #tokuten .txt__wrap .img__wrap div:first-of-type {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/ 2;
}

#goods #tokuten .txt__wrap .img__wrap div:nth-of-type(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

#goods #tokuten .txt__wrap .img__wrap div:nth-of-type(3) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

#goods #tokuten .txt__wrap .img__wrap div:nth-of-type(4) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
}

#goods #tokuten .txt__wrap .img__wrap div a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#goods #tokuten .txt__wrap .img__wrap div:hover a img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#goods .goods__wrap .goods__wrap--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

#goods .goods__wrap .goods__wrap--list .list-item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 3px solid #2b2b2b;
  border-bottom: 8px solid #2b2b2b;
  border-radius: 1rem;
  overflow: hidden;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__img {
  margin-bottom: 0;
  border-bottom: 2px dotted #2b2b2b;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__img img {
  border: none;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: -ms-grid;
  display: grid;
  padding: 5px;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data p:not(:last-of-type) {
  margin-bottom: 5px;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price {
  margin-top: auto;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: right;
}

#goods .goods__wrap .goods__wrap--list .list-item .list-item__data .price span {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  #goods .goods__wrap .goods__wrap--list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img {
    overflow: hidden;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  #goods .goods__wrap .goods__wrap--list .list-item .list-item__img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

/*--------------------
access
--------------------*/
#access::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main04_bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#access .access__wrap .access__wrap--list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data {
  margin-bottom: 1rem;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dt {
  font-size: 1.2rem;
  font-family: wanpaku-ruika, sans-serif;
  font-weight: 100;
  padding-left: 1.2rem;
  position: relative;
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dt::before {
  content: "■";
  font-size: 1.2rem;
  position: absolute;
  top: 49%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#access .access__wrap .access__wrap--list .list-item .list-item__wrap .list-item__wrap--data dd:not(:last-of-type) {
  margin-bottom: 1rem;
}

/*--------------------
link
--------------------*/
#link::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main05_bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*--------------------
Twitter
--------------------*/
#twitter::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/main06_bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#twitter .twitter__wrap {
  text-align: center;
}

#twitter .twitter__wrap .twitter__wrap--btn {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 4px;
  background: #37a4dd;
  border-radius: 40px;
  overflow: hidden;
}

#twitter .twitter__wrap .twitter__wrap--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: 1px solid #fff;
  border-radius: 40px;
}

#twitter .twitter__wrap .twitter__wrap--btn a svg {
  width: 30px;
  height: 30px;
}

#twitter .twitter__wrap .twitter__wrap--btn a svg path {
  fill: #fff;
}

#twitter .twitter__wrap .twitter__wrap--btn a span {
  padding-top: 2px;
  font-size: 1.2rem;
  color: #fff;
}

#twitter .twitter__wrap .twitter__wrap--btn a:hover {
  text-decoration: none;
}

/*--------------------
footer
--------------------*/
footer {
  padding: 80px 0;
  background: #2b2b2b;
}

footer .footer__share {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

footer .footer__share .footer__share--title {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer__share .footer__share--title span {
  margin: 0 0.5rem;
  color: #fff;
}

footer .footer__share .footer__share--title::before, footer .footer__share .footer__share--title::after {
  content: "";
  height: 2px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

footer .footer__share .footer__share--list {
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  border-bottom: 2px solid #fff;
}

footer .footer__share .footer__share--list li {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
}

footer .footer__share .footer__share--list li a {
  width: 100%;
  height: 100%;
  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;
}

footer .footer__share .footer__share--list li a svg {
  height: 55%;
  width: 55%;
  margin: 0;
  padding: 0;
}

footer .footer__share .footer__share--list li a svg path {
  fill: #2b2b2b;
}

footer small p {
  font-size: 11px;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  footer .footer__share .footer__share--list li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__share .footer__share--list li a svg path {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  footer .footer__share .footer__share--list li:hover {
    background: #ff757b;
  }
  footer small p {
    margin-bottom: 0.5rem !important;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
    font-size: 8px;
    text-align: center;
  }
  footer small p:first-of-type {
    margin-bottom: 1rem !important;
  }
  footer small p:first-of-type img {
    width: 50%;
    max-width: 250px;
  }
  footer small p:last-of-type img {
    height: 12px;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}
