@charset "UTF-8";
/* --------------------------------------------------------
import
-------------------------------------------------------- */
@import url("reset.css");
@import url("form.css");
/* --------------------------------------------------------
変数
-------------------------------------------------------- */
:root {
  /* font-size */
  --fz-title: calc(24 / 16 * 1rem);
  --fz-sub: calc(20 / 16 * 1rem);
  --fz-main: calc(16 / 16 * 1rem);
  --fz-s: calc(12 / 16 * 1rem);
  --fz-ss: calc(10 / 16 * 1rem);
  /* margin,padding */
  --gap-lll: calc(120 / 16 * 1rem);
  --gap-ll: calc(80 / 16 * 1rem);
  --gap-l: calc(50 / 16 * 1rem);
  --gap-m: calc(30 / 16 * 1rem);
  --gap-s: calc(15 / 16 * 1rem);
  --gap-ss: calc(10 / 16 * 1rem);
  /*color */
  --color-main: #666666;
  --color-sub: #e8002f;
  --color-text: #666666;
  --color-link: #666666;
  --color-bg02: #ffffff;
  --color-line: #e5e5e5;
}
/* 指定方法例 font-size: var(--fz-title); */
/* --------------------------------------------------------
font
------------------------------------------------------- */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;600;700;800&display=swap);

body {
  /* notosansjp */
  /*
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
　*/
  /* M PLUS 1p */
  font-family: "M PLUS 1p", "ヒラギノ角ゴシック", "Hiragino Sans",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: var(--color-text);
}
h1 {
  color: var(--color-main);
  font-size: var(--fz-title);
  font-weight: bold;
}
h2 {
  font-weight: bold;
}
a {
  color: var(--color-link);
}
:is(a:hover, li a:hover, li.stay a) {
  text-decoration: underline;
}
b {
  font-weight: bold;
}
/* font */
.fz-title {
  font-size: var(--fz-title);
}
.fz-sub {
  font-size: var(--fz-sub);
}
.fz-main {
  font-size: var(--fz-main);
}
.fz-s {
  font-size: var(--fz-s);
}
.fz-ss: {
  font-size: var(--fz-ss);
}
/* --------------------------------------------------------
header
-------------------------------------------------------- */
header {
  background-color: #fff;
  h1 {
    text-align: center;
    width: 11rem;
    padding: 1.25rem 0;
    margin: 0 auto;
    img {
      vertical-align: middle;
    }
  }
}
/* nav-drawer */
#nav-content {
  background: #fff;
  ul.social_nav {
    background: #fff;
  }
  li {
    background: #fff;
  }
}
/* nav-global */
#nav-global {
  ul {
    /* sp非表示 */
    display: none;
    justify-content: center;
    padding: var(--gap-m) 0;
    li:not(:last-child) {
      padding-right: var(--gap-m);
      border-right: 1px solid var(--color-main);
      margin-right: var(--gap-m);
    }
    a {
      font-weight: bold;
    }
  }
}
/* nav-lang */
#nav-lang {
  display: block;
  text-align: center;
  margin-top: var(--gap-s);
  margin-bottom: var(--gap-m);
  span {
    font-size: var(--fz-s);
    color: var(--color-main);
    margin: 0 var(--gap-ss);
    padding: var(--gap-ss) var(--gap-ss);
    &:hover,
    &.stay {
      border-bottom: 2px solid var(--color-main);
    }
  }
}
/* SNSs */
ul.social_nav {
  span,
  i {
    vertical-align: middle;
  }
  span {
    font-weight: bold;
  }
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
/* --------------------------------------------------------
footer
-------------------------------------------------------- */
footer {
  text-align: center;
  background: #fff;
  padding: var(--gap-l) 0 var(--gap-s);
  p.copyright {
    font-size: var(--fz-s);
    margin-top: var(--gap-l);
  }
}
/* nav-footer */
#nav-footer {
  ul:not(.social_nav) {
    /* sp非表示 */
    display: none;
    justify-content: center;
    margin-top: var(--gap-l);
    li:not(:last-child) {
      padding-right: var(--gap-m);
      margin-right: var(--gap-m);
    }
  }
  ul.social_nav {
    margin-top: var(--gap-l);
  }
}
/* pagetop */
#pagetop {
  background-color: var(--color-main);
}
/* --------------------------------------------------------
section
-------------------------------------------------------- */
section {
  padding: var(--gap-l) var(--gap-m);
  &:nth-child(even) {
    background-color: var(--color-bg02);
  }
  :is(h1 + p, h2 + p, h3 + p, p + figure, * + div, div + *) {
    margin-top: var(--gap-m);
  }
  & > h1 {
    text-align: center;
    margin-bottom: var(--gap-l);
  }
  p + p {
    margin-top: var(--gap-s);
  }
}
section#mv {
  background-image: url(../images/mv_pc.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 15rem;
  display: flex;
  align-items: center;
  * {
    width: 100%;
    text-align: center;
    color: #fff;
  }
  h1 {
    width: 85%;
    margin: 1rem auto 0;
  }
}
section#mv + div {
  ul.social_nav {
    margin-top: var(--gap-l);
  }
}

section#profile {
  h2 {
    margin-top: var(--gap-m);
  }
  h3 {
    font-size: var(--fz-sub);
    margin-top: var(--gap-m);
    font-weight: bold;
  }
  h4 {
    margin-bottom: var(--gap-m);
  }

  b {
    display: block;
    margin-bottom: var(--gap-ss);
  }
  p + p {
    margin-top: var(--gap-m);
  }
  p:last-child {
    margin-top: var(--gap-ll);
  }
}
section#exhibition {
  .grid-box_column {
    margin-bottom: var(--gap-l);
  }
  figure + figure {
    margin-top: var(--gap-s);
  }
  img {
    border: 1px solid var(--color-line);
    box-shadow: 0 2rem 2rem -2rem hsl(200 50% 50% / 40%);
  }
}
section#news {
  span.day {
    display: block;
  }
}
section#thanks {
  text-align: center;
}
section#reviews {
  .review-box {
    margin-top: var(--gap-ll);
    margin-bottom: var(--gap-ll);
    p + p {
      margin-top: var(--gap-m);
    }
    h2 span {
      vertical-align: middle;
    }
  }
  .review-box + .review-box {
    margin-top: var(--gap-lll);
  }
}
/* --------------------------------------------------------
gallery
-------------------------------------------------------- */
section.gallery {
  .thumbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--gap-m);
    row-gap: var(--gap-m);
    width: 100%;
    margin: var(--gap-m) auto;
    a img {
      object-fit: cover; /* 縦横比の違う画像をトリミング */
      width: 100%; /* 横幅の指定 */
      aspect-ratio: 1 / 1; /* ここにアスペクト比を入れる */
    }
    a figure {
      display: none;
    }
    & + p {
      text-align: right;
      a {
        padding: var(--gap-ss) var(--gap-ss) var(--gap-ss) var(--gap-s);
        &:hover {
          text-decoration: none;
          color: #fff;
          background-color: var(--color-main);
        }
      }
      span {
        margin-left: var(--gap-ss);
      }
    }
  }
  /* for 縦 ipad&tablet */
  @media screen and (max-width: 991px) and (min-width: 768px) {
    .thumbox {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  /* for PC */
  @media only screen and (min-width: 992px) {
    .thumbox {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}
/* -------------
  photoswipe popup
  ------------- */
/* 背景カラー */
.pswp__bg {
  background: #000 !important;
  opacity: 0.95 !important;
}
/* キャプション */
.pswp__custom-caption {
  padding: var(--gap-m) var(--gap-s) !important;
  text-align: center !important;
  h2 {
    color: #fff !important;
    font-weight: inherit;
    position: fixed;
    margin: auto;
    bottom: var(--gap-s);
    right: 0;
    left: 0;
    width: calc(100% - var(--gap-s) * 2);
  }
}
/* 画像配置_キャプション位置調整 */
.pswp img {
  object-fit: contain !important;
  padding: 0 2rem !important;
}
@media only screen and (min-width: 768px) {
  .pswp img {
    object-fit: contain !important;
    padding: 2rem 2rem 6rem !important;
  }
}
/* ブロック毎色分け削除 */
.pswp__top-bar,
.pswp__caption,
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background: none !important;
}
/* サムネイル拡大表示を非表示 */
.pswp__zoom-wrap img.pswp__img--placeholder {
  display: none !important;
}
/* ------------------------------------------------------------------------
@media START
------------------------------------------------------------------------ */
/* for iPad&Tablet 以上 */
@media only screen and (min-width: 768px) {
  /* 左右寄せ */
  .grid-box_column {
    display: grid;
    grid-auto-flow: column;
    /*高さを中央で揃える場合↓
    place-content: center;
    place-items: center;
    */
    & > div,
    figure {
      margin-top: 0;
    }
    &.r5050 {
      grid-template-columns: calc(50% - var(--gap-l) / 2) calc(
          50% - var(--gap-l) / 2
        );
      column-gap: var(--gap-l);
    }
    &.r6040 {
      grid-template-columns: calc(60% - var(--gap-l) / 2) calc(
          40% - var(--gap-l) / 2
        );
      column-gap: var(--gap-l);
    }
    &.r7030 {
      grid-template-columns: calc(70% - var(--gap-l) / 2) calc(
          30% - var(--gap-l) / 2
        );
      column-gap: var(--gap-l);
    }
  }
  section {
    &#exhibition {
      .grid-box_column {
        margin-bottom: var(--gap-ll);
      }
    }
  }
}
/* for PC 以上*/
@media only screen and (min-width: 992px) {
  header {
    width: 940px;
    margin-inline: auto;
    padding: var(--gap-ss) 0;
    h1 {
      margin: 0;
    }
    #nav-global {
      ul {
        /* PC表示 */
        display: flex;
      }
    }
    #nav-lang {
      position: absolute;
      top: 1rem;
      right: 5.5rem;
    }
    #nav-drawer {
      top: 2rem;
      right: 2rem;
      #nav-close {
        top: 2rem;
        right: 2rem;
      }
    }
  }
  main {
    width: 940px;
    margin-inline: auto;
    section {
      position: relative;
      inset-inline: 50%;
      width: 100vw;
      margin-inline: -50vw;
      padding-inline: calc((100vw - 100%) / 2);
      &#mv {
        background-image: url(../images/mv_pc.png);
        min-height: 35rem;
        h1 {
          width: 50%;
        }
      }
      &#news {
        p {
          margin-top: var(--gap-ss);
          span.day {
            display: inline;
            padding-right: var(--gap-s);
          }
        }
      }
      &#profile {
        h2 {
          margin-top: var(--gap-l);
        }
        figure {
          margin-top: var(--gap-l);
        }
      }
    }
  }
  footer {
    width: 940px;
    margin-inline: auto;
    #nav-footer {
      ul:not(.social_nav) {
        display: flex;
      }
    }
  }
}

/* for  desktop PC */
@media screen and (max-width: 1980px) and (min-width: 1481px) {
}
/* for  note PC */
@media screen and (max-width: 1480px) and (min-width: 1200px) {
}
/* for small note PC */
@media screen and (max-width: 1199px) and (min-width: 992px) {
}
/* for 縦 iPad&Tablet */
@media screen and (max-width: 991px) and (min-width: 768px) {
}
