@charset "UTF-8";

/* ===================================================================
各展覧会ごとのスタイル
=================================================================== */

:root {
  --brown: #c39b69;
  --blue: #00aab4;
  --link: #003cb4;
  --white: #fff;
  --black: #644614;
  --red: #d23232;
}

html,body {
  position: relative;
  font-size: clamp(14px, 2.1vw, 18px);
  color: var(--black);
  width: 100%;
  background: none;
  line-height: 1.8;
  font-family: YakuHanMP, "Kaisei Opti", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: url(../img/bg2.webp)repeat;
  background-size: 400px;
  background-position: center top;
}
body.no-scroll {
  overflow: hidden;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}
p span {
  display: inline-block;
}
span.small {
  font-size: 70%;
}
span.strong {
  font-weight: 700;
  background: linear-gradient(0deg, transparent 8%, #e6c8c8 8%, #e6c8c8 14%, transparent 14%);
  padding: 0 4px;
}

a,
a:visited,
a:active {
  color: var(--link);
  text-decoration: underline;
}
a:hover {
  color: var(--link);;
}
img {
  width: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}


/* menu */
.globalMenu {
  width: 100%;
  margin: 2em 0 4em;
}
.globalMenu ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
  margin: 0 auto;
  padding: 0 1em;
  max-width: 1600px;
}
.globalMenu ul li {
  position: relative;
}
.globalMenu ul li.new::before {
  position: absolute;
  content: 'NEW';
  top: -.6rem;
  right: -.6rem;
  width: 40px;
  height: 40px;
  background: var(--red);
  border: 2px solid var(--brown);
  border-radius: 50%;
  color: var(--white);
  white-space: nowrap;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.globalMenu ul li a {
  display: block;
  text-decoration: none;
  color: var(--white);
  background: var(--brown);
  border: 1px solid #fff;
  box-shadow: 0 0 0 4px var(--brown);
  text-align: center;
  line-height: 1.4;
  padding: 1em 0;
  text-transform: uppercase;
  font-size: min(1.3vw, 1em);
  transition: all .5s;
}
.globalMenu ul li a span{
  display: inline-block;
  font-size: 70%;
}
.globalMenu ul li a:hover {
  background: var(--black);
  box-shadow: 0 0 0 4px var(--black);
}
.sub {
  border: none;
  padding: 0 .5em;
  margin: 0;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
}
.sub::before, .sub::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #fff;
  display: block;
}
.sub::before {
  margin-right: .4em;
}
.sub:after {
  margin-left: .4em;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  #hamburger {
    display: block;
    position: fixed;
    top: .5em;
    right: .5em;
    width: 10vw;
    height: 10vw;
    background: url(../img/menu.png) no-repeat;
    background-size: contain;
    z-index: 2;
  }
  #hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 34%;
    height: 3px;
    background-color: var(--white);
    border-radius: 4px;
  }
  #hamburger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  #hamburger span:nth-of-type(1) {
    top: 36%;
  }
  #hamburger span:nth-of-type(2) {
    top: 48%;
  }
  #hamburger span:nth-of-type(3) {
    top: 60%;
  }

  #hamburger span:nth-of-type(1) {
    animation: btn07-bar01 .75s forwards;
  }
  @keyframes btn07-bar01 {
    0% {
      transform: translateY(1.2vw) rotate(45deg);
    }
    50% {
      transform: translateY(1.2vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #hamburger.active span:nth-of-type(1) {
    animation: active-btn07-bar01 .75s forwards;
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(1.2vw) rotate(0);
    }
    100% {
      transform: translateY(1.2vw) rotate(45deg);
    }
  }

  #hamburger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
  }
  #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger span:nth-of-type(3) {
    animation: btn07-bar03 .75s forwards;
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-1.2vw) rotate(-45deg);
    }
    50% {
      transform: translateY(-1.2vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #hamburger.active span:nth-of-type(3) {
    animation: active-btn07-bar03 .75s forwards;
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-1.2vw) rotate(0);
    }
    100% {
      transform: translateY(-1.2vw) rotate(-45deg);
    }
  }

  .globalMenu {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s;
  }
  .globalMenu ul {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2em;
  }
  .globalMenu ul li a {
    padding: 1em;
    font-size: min(2.5vw, 1.2em);
  }
  .sub {
    padding: 0;
  }
  .globalMenu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 600px) {
  #hamburger {
    width: 16vw;
    height: 16vw;
  }
  #hamburger span {
    height: 2px;
  }
  @keyframes btn07-bar01 {
    0% {
      transform: translateY(1.9vw) rotate(45deg);
    }
    50% {
      transform: translateY(1.9vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(1.9vw) rotate(0);
    }
    100% {
      transform: translateY(1.9vw) rotate(45deg);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-1.9vw) rotate(-45deg);
    }
    50% {
      transform: translateY(-1.9vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-1.9vw) rotate(0);
    }
    100% {
      transform: translateY(-1.9vw) rotate(-45deg);
    }
  }
  .globalMenu ul {
    grid-template-columns: 1fr 1fr;
  }
  .globalMenu ul li a {
    font-size: min(3.6vw, 1.2em);
  }

  .globalMenu ul li.new::before {
    top: -1rem;
    right: -1rem;
    width: 36px;
    height: 36px;
    font-size: 10px;
  }

}

/* main */
main {
  position: relative;
}

#movie-pop {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0, 0, 0, .7);
  display: none;
  cursor: pointer;
}
#movie-pop.show {
  display: block;
}
.movie-pop-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top-wrap {
  position: relative;
  overflow: hidden;
  background: url(../img/pc-top0328.webp) no-repeat;
  background-size: contain;
  background-position: center top;
  padding-bottom: 64%;
}

h1 {
  position: absolute;
  margin: 0;
  top: 5%;
  left: 0;
  right: 0;
  height: 17%;
  display: flex;
  justify-content: center;
  align-items: center;
}
h1>img {
  height: 100%;
  width: auto;
  margin: auto;
}

@media (orientation: portrait) {
  #top-wrap {
    background: url(../img/sp-top0328.webp) no-repeat;
    background-size: contain;
    background-position: center top;
    padding-bottom: 160%;
  }
  h1 {
    top: unset;
    bottom: 4%;
    height: 14%;
  }
}

h2 {
  position: relative;
  color: var(--brown);
  text-align: center;
  border-top: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  max-width: 400px;
  width: 60%;
  margin: 2rem auto;
  font-size: min(6vw,2em);
  font-weight: 700;
  line-height: 1.2;
  padding: .3em 0 .5em;
}
#information h2 {
  width: 78%;
  margin: 3rem auto 3.6rem;
}
h2 span.en{
  text-transform: uppercase;
  display: block;
}
h2 span.ja{
  color: var(--black);
  display: block;
  font-size: 54%;
}
h2::before,h2::after {
  position: absolute;
  content: '';
  background: url(../img/h2.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 100%;
  height: 20px;
  top: -21px;
  right: 0;
  left: 0;
  margin: auto;
}
h2::after {
  top: unset;
  bottom: -21px;
  transform: rotateX(180deg);
}
@media screen and (max-width: 700px) {
  h2::before {
    height: 13px;
    top: -14px;
  }
  h2::after {
    height: 13px;
    bottom: -14px;
  }
}
h3 {
  font-size: .9em;
  font-weight: 700;
  margin: 2rem 0 .3em;
  color: var(--brown);
  border-bottom: 1px solid #e6d7c3;
  border-top: 1px solid #e6d7c3;
  padding: .3em 0;
  background: #fafafa;
  text-align: center;
}
h3 span {
  position: relative;
  padding: 0 1.4rem 2px;
}
h3 span::before,h3 span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: url(../img/h3.webp) no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.1em;
  height: 1em;
  margin: auto;
}
h3 span::after {
  transform: rotate(180deg);
  right: 0;
  left: unset;
}

section {
  margin: 8em 0;
}
.w-bg {
  position: relative;
  background-color: rgba(255, 255, 255, .8);
  padding: 2em 0;
}
.w-bg::before,.w-bg::after,footer::before {
  content: '';
  background: url(../img/lace.webp) repeat-x;
  background-size: 40px;
  background-position: center bottom;
  position: absolute;
  top: -86px;
  left: 0;
  width: 100%;
  height: 86px;
}
.w-bg::after {
  top: unset;
  bottom: -86px;
  transform: rotate(180deg);
}
.max1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 2em;
}

/* info */

.section-wrap {
  position: relative;
  background: var(--white);
  border: 8px solid var(--brown);
  max-width: 900px;
  width: 90%;
  margin: 4em auto;
  padding: 4px;
  text-align: center;
}
.section-inner {
  position: relative;
  border: 1px solid var(--brown);
  padding: 1em 2em 4em;
}
@media screen and (max-width: 768px) {
  .section-inner {
    padding: 1em 1em 3em;
  }
}
.section-wrap::before,.section-wrap::after,.section-inner::before,.section-inner::after {
  content: '';
  position: absolute;
  background: url(../img/kazari2.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 2em;
  height: 100px;
}
.section-wrap::before {
  bottom: 7px;
  left: 7px;
  transform: rotateX(180deg);
}
.section-wrap::after {
  bottom: 7px;
  right: 7px;
  transform: rotateX(180deg) rotateY(180deg);
}
.section-inner::before {
  top: 2px;
  left: 2px;
}
.section-inner::after {
  top: 2px;
  right: 2px;
  transform: rotateY(180deg);
}

p.catch {
  text-align: center;
  font-size: min(6vw, 1.4em);
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, .8), transparent);
  margin: 1rem auto;
  max-width: 800px;
}

p.lead {
  font-size: min(4.3vw, 1.2em);
  font-weight: 700;
  color: var(--black);
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
}
p.lead span {
  display: inline-block;
}

.event-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1em;
  line-height: 1.5;
  margin: 1em auto;
}
.event-box {
  font-size: .9em;
  position: relative;
  padding: 1em 0;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--brown);
  text-align: center;
}
.event-box span {
  font-size: 1.4em;
  font-weight: 700;
}
.event-box.fin::before {
  position: absolute;
  content: '終了';
  top: -.6em;
  right: -.4em;
  background: var(--red);
  color: var(--white);
  padding: 0 1em;
  font-size: 90%;
}
.event-link {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}
.event-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: .5em 0 0;
}
a.info-x svg {
  width: 1.6em;
  margin-right: .5em;
  background: #000;
  color: #fff;
  border-radius: 3px;
  padding: 4px;
}
.event-link a:hover {
  color: var(--blue);
}
a.info-map {
  position: relative;
  padding-left: 1.6em;
  margin-left: 1em;
}
a.info-map::before {
  position: absolute;
  content: '';
  background: url(../img/map.svg) no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.5em;
  height: 2em;
  margin: auto;
}
@media screen and (max-width: 700px) {
  .event-wrap {
    grid-template-columns: 1fr;
  }
}


/* Illustration */
.illust-wrap {
  display: flex;
  max-width: 1400px;
  margin: 3em auto 0;
  padding: 0 1em;
}
.illust-wrap>div{
  cursor: pointer;
  order: 0;
}
@media screen and (max-width: 1024px) {
  .illust-wrap {
    flex-wrap: wrap-reverse;
    justify-content: center;
    max-width: 800px;
  }
  .illust-wrap>div{
    width: 33%;
    margin-bottom: 1em;
  }
  #illust-01 { order: 4; }
  #illust-04 { order: 1; }
  #illust-05 { order: 2; }
  #illust-02 { order: 5; }
  #illust-03 { order: 3; }
}
@media screen and (max-width: 700px) {
  .illust-wrap {
    flex-wrap: wrap;
  }
  .illust-wrap>div{
    width: 48%;
  }
  #illust-01 { order: 1; }
  #illust-04 { order: 4; }
  #illust-05 { order: 3; }
  #illust-02 { order: 2; }
  #illust-03 { order: 5; }
}

.concept-wrap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: all 1s;
  background: rgba(255,255,255,.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept-wrap.open {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  pointer-events: visible;
}
.concept-inner {
  position: relative;
  max-width: 600px;
  width: 90%;
  height: 84vh;
  border: 2px solid var(--brown);
  margin: auto;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept-inner::before,.concept-inner::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 160px;
  height: 50%;
  pointer-events: none;
}
.concept-inner::before {
  bottom: -16px;
  right: -16px;
}
.concept-inner::after {
  top: -16px;
  left: -16px;
  transform: rotateZ(180deg);
}
#concept-01 .concept-inner::before,#concept-01 .concept-inner::after {
  background-image: url(../img/frame-asuna.webp);
}
#concept-02 .concept-inner::before,#concept-02 .concept-inner::after {
  background-image: url(../img/frame-yuuki.webp);
}
#concept-03 .concept-inner::before,#concept-03 .concept-inner::after {
  background-image: url(../img/frame-alice.webp);
}
#concept-04 .concept-inner::before,#concept-04 .concept-inner::after {
  background-image: url(../img/frame-leafa.webp);
}
#concept-05 .concept-inner::before,#concept-05 .concept-inner::after {
  background-image: url(../img/frame-sinon.webp);
}
@media screen and (max-width: 700px) {
  .concept-inner::before,.concept-inner::after {
    width: 100px;
  }
  .concept-inner::before {
    right: -10px;
  }
  .concept-inner::after {
    left: -10px;
  }
}
.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 54px;
  height: 60px;
  background-color: var(--brown);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  border: 1px solid var(--white);
  box-shadow: 0 0 0 2px var(--brown);
  cursor: pointer;
  z-index: 9999;
  padding-top: 3px;
}
.close::before,.close::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--white);
  top: 64%;
  left: 0;
  right: 0;
  margin: auto;
}
.close::before {
  transform: rotate(40deg);
}
.close::after {
  transform: rotate(-40deg);
}
.concept-box {
  margin: 0 4em;
  padding: 1em;
  overflow-y: auto;
  height: 80vh;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept-img {
  position: absolute;
  width: 96%;
  height: 90%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#concept-01 .concept-img {
  background-image: url(../img/concept-asuna.webp);
}
#concept-02 .concept-img {
  background-image: url(../img/concept-yuuki.webp);
}
#concept-03 .concept-img {
  background-image: url(../img/concept-alice.webp);
}
#concept-04 .concept-img {
  background-image: url(../img/concept-leafa.webp);
}
#concept-05 .concept-img {
  background-image: url(../img/concept-sinon.webp);
}

@media (orientation: portrait) {
  .close {
    width: 40px;
    height: 48px;
    font-size: 10px;
  }
}

/* campaign */
.tokuten {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1em;
  margin: 1em 0;
}
.tokuten.coming div{
  border: 1px solid #e6d7c3;
}
@media screen and (max-width: 600px) {
  .tokuten {
    grid-template-columns: 1fr 1fr;
    grid-gap: .5em;
  }
}
ul.attention {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 1rem 0;
  font-size: .9rem;
  text-align: justify;
}
ul.attention li {
  position: relative;
  margin: 0 0 .8rem;
  line-height: 1.5;
  padding-left: 1.1em;
}
ul.attention li::before {
  content: '※';
  position: absolute;
  left: 0;
  margin: auto;
  color: var(--red);
}
ul.attention li:last-child {
  margin: 0;
}

/* goods */

#goods p.catch {
  margin-top: 4rem;
  border-top: 1px solid #e8dac8;
  border-bottom: 1px solid #e8dac8;
  letter-spacing: unset;
}
#goods p.catch span{
  color: var(--red);
}

.goods-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1em;
  margin: 1em auto;
}
.goods-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: .5em;
  padding: 0 0 .6em;
  line-height: 1.2;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e8dac8;
}
.goods-img {
  position: relative;
  padding-bottom: 100%;
  background: #fff;
}
.goods-img img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}
.goods-text {
  font-size: .8em;
  line-height: 1.4;
  padding: 0 .5rem;
  text-align: left;
  letter-spacing: -0.4px;
}
.goods-price {
  position: relative;
  text-align: right;
  margin-top: auto;
  padding: .4rem .5rem 0;
  font-size: 1rem;
  border-top: 1px dashed #e6d7c3;
  font-weight: 500;
}
.senko::before {
  position: absolute;
  content: '先行販売';
  left: .5rem;
  bottom: 0;
  margin: 0 auto;
  font-size: .7em;
  font-weight: 500;
  line-height: 1;
  background: var(--red);
  color: var(--white);
  height: 70%;
  padding: .2em .6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yoyaku::before {
  position: absolute;
  content: '予約受付';
  left: .5rem;
  bottom: 0;
  margin: 0 auto;
  font-size: .7em;
  font-weight: 500;
  line-height: 1;
  background: var(--link);
  color: var(--white);
  height: 70%;
  padding: .2em .6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goods-price span {
  font-size: 70%;
}
a.goods-link {
  font-size: .9em;
  padding: .5rem;
  text-align: center;
  margin: 0 .5rem;
  color: var(--brown);
  border: 1px solid var(--brown);
  text-decoration: none;
  font-weight: 700;
  background: var(--white);
  border-radius: 100px;
  transition: all .5s;
}
a.goods-link:hover {
  background: #f0ebe6;
}
.goods-item.andmore {
  background: none;
  border: none;
  justify-content: end;
  font-weight: 700;
  font-size: 1.2em;
  color: var(--red);
}


.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.dots-box {
  position: absolute;
  top: 0;
  margin-top: 98%;
  width: 100%;
}
.dots-wrap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.dots-wrap li {
  width: 10%;
  height: 5px;
  background: var(--brown);
  margin: 0 1%;
  border-radius: 50px;
  transition: all .5s;
  cursor: pointer;
  opacity: .4;
  transform: scaleX(.9);
}
.dots-wrap li.slick-active {
  opacity: 1;
  transform: scaleX(1) scaleY(1.4);
}
.wedding li:nth-child(2) {
  background: #a53746;
}
.wedding li:nth-child(3) {
  background: #5a965a;
}
.wedding li:nth-child(4) {
  background: #50aaa0;
}
.wedding li:nth-child(5) {
  background: #8c6496;
}
.wedding li:nth-child(6) {
  background: #001e82;
}
@media screen and (max-width: 768px) {
  .goods-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .goods-wrap {
    grid-template-columns: minmax(0, 1fr);
    max-width: 400px;
  }
  .goods-text {
    font-size: .9em;
  }
  .goods-price {
    font-size: 1.2rem;
  }
  .goods-item.andmore {
    align-items: center;
  }
}

.yoyaku-info {
  background: #f7f1e9;
  padding: 1em 1em 1.3em;
}
.yoyaku-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0;
  margin: 1em 0 0;
}
.yoyaku-wrap .yoyaku-table {
  margin: 0;
}
.yoyaku-table {
  border: 1px solid var(--black);
  background: var(--white);
  margin: 1em 0 0;
}
.yoyaku-table tr {
  border-bottom: 1px dashed var(--brown);
}
.yoyaku-table tr:nth-child(1) {
  border-bottom: none;
}
.yoyaku-table tr:nth-child(1) th {
  background-color: var(--black);
  color: var(--white);
  border-bottom: none;
}
.yoyaku-table th {
  padding: .2em 1em;
  white-space: nowrap;
}
.yoyaku-table td {
  padding: .5em 1em .5em 0;
  line-height: 1.2;
}
.yoyaku-table td span{
  color: var(--red);
}
.yoyaku-info ul.attention {
  margin: .5em 0 0;
}
@media screen and (max-width: 1000px) {
  .yoyaku-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .yoyaku-table {
    width: 100%;
  }
  .yoyaku-wrap {
    grid-template-columns: 1fr;
  }
}

/* gallery */
.standy-img {
  position: relative;
  padding: .5em 1em;
  margin: 1em 0;
  background: var(--white);
}
.standy-img.coming {
  padding-bottom: 40vh;
}
.standy-img.coming::before {
  content: '※イメージ準備中';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brown);
  font-size: 1.2em;
}
.standy {
  border: 1px solid var(--brown);
  padding: 1em 1em .5em;
  margin: 2em 0 0;
}
.standy h3 {
  background: var(--brown);
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 1.2em;
  line-height: 1.2;
  padding: 1em 0;
}
.sp-br {
  display: none;
}
@media screen and (max-width: 500px) {
  .sp-br {
    display: block;
  }
}

/* link */
ul.t-list {
  padding: 0;
  list-style: none;
  list-style-position: inside;
  margin: 0 auto;
  max-width: 440px;
}
ul.t-list li {
  position: relative;
  margin: 0 0 .5rem;
  line-height: 1.5;
  padding-left: 1em;
}
ul.t-list li a {
  color: var(--black);
}
ul.t-list li::before {
  content: '';
  position: absolute;
  top: .55rem;
  left: .1rem;
  margin: auto;
  width: .5em;
  height: .5em;
  background: #bea078;
  transform: rotate(45deg);
}
ul.t-list li a:hover {
  color: var(--blue);
}

#xaccount {
  text-align: center;
  margin: 0 auto;
  padding: 1em 0 0;
  max-width: 500px;
}
.follow-icon {
  display: block;
  max-width: 200px;
  width: 50%;
  margin: 0.5em auto 1em;
  border-radius: 20px;
  overflow: hidden;
}
a.follow-button {
  position: relative;
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: 50px;
  background: rgba(255,255,255,.8);
  padding: 0.4em 1em;
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
a.follow-button svg {
  width: 1.2em;
  margin-right: .2em;
}
a.follow-button:hover {
  background-color: var(--white);
}

.y-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 1em;
  max-width: 1000px;
  margin: 4rem auto 0;
}
.y-wrap h3{
  margin: 0 0 .5rem;
  border: 1px solid var(--brown);
}
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 0;
  width: 100%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-pop-inner .youtube::before {
  position: absolute;
  top: -30px;
  right: 0;
  content: '';
  z-index: 99;
  font-size: 1em;
  background: #fff;
  pointer-events: none;
  width: 40px;
  height: 4px;
  transform: rotate(45deg);
}
.movie-pop-inner .youtube::after {
  position: absolute;
  top: -30px;
  right: 0;
  content: '';
  z-index: 99;
  font-size: 1em;
  background: #fff;
  pointer-events: none;
  width: 40px;
  height: 4px;
  transform: rotate(-45deg);
}


/* footer */
footer {
  position: relative;
  width: 100%;
  padding: 2.5em 0 2em;
  font-size: 12px;
  margin: 5em 0 0;
  background-color:rgba(255,255,255,.8);
}
footer>p {
  text-align: center;
  margin: 1em 0 0;
}
footer p.socialshare {
  font-size: 1rem;
  margin: 0;
}
.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 1em;
  font-weight: normal;
  height: 60px;
}
.sns li {
  list-style: none;
  margin: 5px;
  color: var(--white);
}
.sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color:#0866ff;
}
#f-icon a:hover {
  color:#0866ff;
}
#l-icon a{
  color:#00B900;
}
#l-icon a:hover {
  color: #00B900;
}
.cospa_logo {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 160px;
  margin: 0 auto;
}
.cospa_logo a{
  background: var(--white);
  padding: .5em;
  margin: 5px;
  border-radius: 4px;
  width: 100%;
}