@charset "UTF-8";
html {
  overflow: auto;
}

body {
  color: #191919;
  overflow: hidden;
}

@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
.mask_wrap {
  display: inline-block;
}
.mask_wrap .mask_inner {
  position: relative;
  visibility: hidden;
}
.mask_wrap .mask_inner::after {
  content: "";
  background: #191919;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s ease 0s;
  visibility: visible;
}
.mask_wrap .mask_inner.start {
  animation-name: animate-content;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mask_wrap .mask_inner.start::after {
  animation-name: animate-panel;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #191919;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}
#splash #splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-family: linotype-didot, serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #191919;
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 998;
}
header .header_inner {
  position: relative;
  width: 92%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
header .header_inner .midnight {
  right: 4% !important;
  top: 45px !important;
}
header .header_inner .midnight ul {
  overflow: hidden;
  width: 40%;
  height: 100%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_inner .midnight ul li a {
  text-decoration: none;
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  font-size: 16px;
}
header .hbg_menu {
  display: none;
}
header .hbg_menu .hbg_btn {
  position: absolute;
  top: 0px;
  right: 0;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  z-index: 999999;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: #1a1a1a;
}
header .hbg_menu .bar {
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}
header .hbg_menu .hbg_line1,
header .hbg_menu .hbg_line2 {
  margin-bottom: 10px;
}
header .hbg_menu .hbg_cont {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0px;
  left: 0;
  transition: 0.5s;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
header .hbg_menu .hbg_cont .back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 95;
  width: 100%;
  height: 100vh;
  background-color: #333;
  opacity: 0.38;
}
header .hbg_menu .hbg_cont .hbg_cont_in {
  position: absolute;
  z-index: 99;
  width: 100%;
  background-color: #1a1a1a;
  height: 100%;
  top: 0;
  right: 0;
}
header .hbg_menu .hbg_cont .hbg_cont_in .sp_menu {
  width: 92%;
  margin: 0 auto;
  padding-top: 19.06%;
}
header .hbg_menu .hbg_cont .hbg_cont_in .sp_menu li {
  border-bottom: 1px solid #fff;
  padding-bottom: 11px;
  margin-bottom: 32px;
}
header .hbg_menu .hbg_cont .hbg_cont_in .sp_menu li:last-of-type {
  margin-bottom: 0;
}
header .hbg_menu .hbg_cont .hbg_cont_in .sp_menu li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: linotype-didot, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-left: 16px;
}
header .hbg_menu .hbg_cont .hbg_cont_in .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45.44%;
  margin-left: 7.64%;
  height: 46.87px;
  background-color: #fb0050;
  border: #fb7d46 solid 2.3px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: 0.5s;
}
header .hbg_menu .hbg_cont .hbg_cont_in .btn:hover {
  background-color: #fff;
  color: #d84b50;
  transition: 0.5s;
}
header .hbg_menu .hbg_cont.open {
  display: flex;
}
header .hbg_menu .hbg_cont.open .hbg_cont_in.open {
  transform: translateX(0);
}

.hbg_line1.active {
  transform: translateY(10px) rotate(225deg);
  transition: 1s;
  position: absolute !important;
  top: 22px;
  margin-bottom: 0 !important;
}

.hbg_line2.active {
  opacity: 0;
  transition: 0.5s;
}

.hbg_line3.active {
  transform: translateY(-10px) rotate(-225deg);
  transition: 1s;
  position: absolute;
  margin-bottom: 0;
  bottom: 8px;
}

#fv {
  position: relative;
  width: 100%;
  height: 450px;
}
#fv h1 {
  position: absolute;
  bottom: 0;
  left: 5.55%;
  font-size: 88px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  z-index: 2;
}
#fv .fv_photo {
  width: 65%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer {
  width: 100%;
}
footer .footer_cta {
  width: 100%;
  display: flex;
  height: 400px;
  justify-content: space-between;
  align-items: center;
}
footer .footer_cta .ctabtn {
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: flex;
  width: 50%;
  height: 100%;
  border: 1px solid #191919;
  /* ボーダーの色と太さ */
  justify-content: center;
  align-items: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}
footer .footer_cta .ctabtn::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
footer .footer_cta .ctabtn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
footer .footer_cta .ctabtn span h2 {
  font-size: 48px;
  font-family: linotype-didot, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
footer .footer_cta .ctabtn span p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.5em;
  font-family: "Noto Serif JP", serif;
}
footer .footer_cta .bgleft1 {
  color: #191919;
}
footer .footer_cta .bgleft1::before {
  background: #191919;
  /*背景色*/
}
footer .footer_cta .bgleft1:hover {
  color: #fff;
}
footer .footer_cta .bgleft1:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
footer .footer_cta .bgleft2 {
  color: #fff;
  background-color: #191919;
  border-left: none;
}
footer .footer_cta .bgleft2::before {
  background: #fff;
  /*背景色*/
}
footer .footer_cta .bgleft2:hover {
  color: #191919;
}
footer .footer_cta .bgleft2:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
footer .footer_bottom {
  width: 100%;
  background-color: #191919;
}
footer .footer_bottom .footer_bottom_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
}
footer .footer_bottom .footer_bottom_inner .footer_logo {
  display: block;
  width: 15%;
  margin: 0 auto;
  margin-bottom: 28px;
}
footer .footer_bottom .footer_bottom_inner .footer_logo img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
footer .footer_bottom .footer_bottom_inner .footer_navi {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
footer .footer_bottom .footer_bottom_inner .footer_navi li a {
  text-decoration: none;
  color: #fff;
  font-family: linotype-didot, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
}
footer .footer_bottom .footer_bottom_inner .bottom_menu {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .footer_bottom .footer_bottom_inner .bottom_menu li {
  margin-right: 24px;
}
footer .footer_bottom .footer_bottom_inner .bottom_menu li:last-of-type {
  margin-right: 0;
}
footer .footer_bottom .footer_bottom_inner .bottom_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}
footer .footer_bottom small {
  display: block;
  width: 100%;
  padding: 24px 0;
  font-size: 12px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.midnightHeader.default ul li a {
  color: #fff;
}

.midnightHeader.black ul li a {
  color: #191919;
}

#mask {
  width: 100%;
}

#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 90;
  /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

.btnarrow {
  position: relative;
  display: inline-block;
  padding: 0 50px 0 0px;
  color: #191919;
  text-decoration: none;
  outline: none;
  font-size: 24px;
  font-weight: 700;
  font-family: linotype-didot, serif;
  letter-spacing: -0.02em;
  transition: 0.3s;
}
.btnarrow::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -7%;
  width: 107%;
  height: 1px;
  background: #191919;
  transition: all 0.3s;
}
.btnarrow::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #191919;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.btnarrow:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.btnarrow:hover::before {
  left: 5%;
  width: 100%;
}
.btnarrow:hover::after {
  right: -5%;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background-color: #1a1a1a;
  padding-bottom: 13px;
  opacity: 0;
  transition: 0.3s;
}
.js-bar a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-size: 16px;
  background-color: #1a1a1a;
  color: #fff;
}

.js-bar.open {
  opacity: 1;
  transition: 0.3s;
}

.show640 {
  display: none;
}

.wpcf7-not-valid-tip {
  text-align: left;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

#top_page {
  width: 100%;
  position: relative;
}
#top_page #mv {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #191919;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
#top_page #mv .mv_photo {
  position: relative;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_page #mv .mv_photo::before {
  position: absolute;
  z-index: 3;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #191919;
  opacity: 0.35;
  top: 0;
  left: 0;
}
#top_page #mv .mv_photo .mv_photo_01 {
  width: 100%;
  height: 100%;
  background: url(../image/top/mv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#top_page #mv h1 {
  position: absolute;
  bottom: 5%;
  left: 5.56%;
  font-size: 150px;
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.2;
  z-index: 1;
}
#top_page #mv .main_name {
  position: absolute;
  z-index: 3;
  bottom: 3%;
  right: 5.56%;
  transform: rotate(5deg);
  width: 51.875%;
}
#top_page #banner {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 160px;
}
#top_page #banner .banner_slick {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_page #banner .banner_slick li {
  height: 100%;
  box-shadow: 3px 3px 16px 0px rgba(0, 0, 0, 0.6);
}
#top_page #banner .banner_slick li a {
  display: block;
  height: 100%;
}
#top_page #banner .banner_slick li a img {
  height: 100%;
  object-fit: cover;
  width: auto;
}
#top_page #banner .banner_slick_sp {
  display: none;
  height: 120px;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}
#top_page #banner .banner_slick_sp .slick-list {
  height: 100%;
}
#top_page #banner .banner_slick_sp .slick-list .slick-track {
  height: 100%;
  box-shadow: 3px 3px 16px 0px rgba(0, 0, 0, 0.6);
}
#top_page #banner .banner_slick_sp .slick-list .slick-track .slick-slide {
  height: 100%;
  margin: 0px 50px;
}
#top_page #banner .banner_slick_sp .slick-list .slick-track .slick-slide div {
  height: 100%;
}
#top_page #banner .banner_slick_sp .slick-list .slick-track .slick-slide div li {
  height: 100%;
}
#top_page #banner .banner_slick_sp .slick-list .slick-track .slick-slide div li a {
  display: block;
  height: 100%;
  width: auto;
}
#top_page #banner .banner_slick_sp .slick-list .slick-track .slick-slide div li a img {
  height: 100%;
  object-fit: cover;
  width: auto;
}
#top_page #news {
  width: 100%;
  padding-bottom: 160px;
}
#top_page #news .news_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: right;
}
#top_page #news .news_inner h2 {
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: left;
}
#top_page #news .news_inner ul {
  width: 100%;
  margin-bottom: 80px;
}
#top_page #news .news_inner ul li {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: #191919 1px solid;
  margin-bottom: 24px;
}
#top_page #news .news_inner ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #191919;
  transition: 0.3s;
}
#top_page #news .news_inner ul li a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
#top_page #news .news_inner ul li a .date {
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-right: 40px;
  font-family: "Noto Serif JP", serif;
}
#top_page #news .news_inner ul li a .category {
  font-family: "Noto Serif JP", serif;
  width: 120px;
  height: 30px;
  background-color: #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-right: 40px;
}
#top_page #news .news_inner ul li a h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}
#top_page #news .news_inner ul li:last-of-type {
  margin-bottom: 0;
}
#top_page #biography {
  width: 100%;
  padding-bottom: 160px;
}
#top_page #biography .biography_inner h2 {
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  margin-left: 5.55%;
}
#top_page #biography .biography_inner .biography_flex {
  width: 94.45%;
  margin-right: 5.55%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_page #biography .biography_inner .biography_flex .wrap1 {
  width: 40.4%;
}
#top_page #biography .biography_inner .biography_flex .wrap1 .biography_photo {
  width: 100%;
}
#top_page #biography .biography_inner .biography_flex .wrap1 .biography_photo img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
#top_page #biography .biography_inner .biography_flex .biography_text {
  width: 47.5%;
}
#top_page #biography .biography_inner .biography_flex .biography_text h3 {
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-size: 80px;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
#top_page #biography .biography_inner .biography_flex .biography_text h3 span {
  display: block;
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#top_page #biography .biography_inner .biography_flex .biography_text p {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  line-height: 2em;
  margin-bottom: 80px;
}
#top_page #instagram {
  width: 100%;
  padding-bottom: 160px;
}
#top_page #instagram .instagram_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: right;
}
#top_page #instagram .instagram_inner h2 {
  text-align: left;
  font-family: linotype-didot, serif;
  font-weight: 700;
  font-size: 120px;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
#top_page #instagram .instagram_inner .insta_wrapper {
  position: relative;
  z-index: 0;
  margin-bottom: 80px;
}
#top_page #instagram .instagram_inner .insta_wrapper .insta_cont {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 10;
  height: 100%;
}
#top_page #instagram .instagram_inner .insta_wrapper.sp {
  display: none;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 56px;
  height: 100%;
}
#top_page #instagram .instagram_inner .insta_wrapper.sp .insta_cont {
  position: absolute;
  z-index: 10;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
}
#top_page #instagram .instagram_inner .insta_wrapper.sp iframe {
  width: 100%;
  aspect-ratio: 1/1;
}

#contact-thanks .contact-thanks_fv .fv_photo {
  background: url(../image/contact/contact_fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#contact-thanks .fanclub-thanks_fv .fv_photo {
  background: url(../image/fanclub/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#contact-thanks #thanks-body {
  width: 100%;
  padding: 160px 0;
}
#contact-thanks #thanks-body .thanks-body_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
#contact-thanks #thanks-body .thanks-body_inner h2 {
  font-size: 88px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  margin-bottom: 120px;
  text-align: center;
}
#contact-thanks #thanks-body .thanks-body_inner p {
  font-size: 16px;
  line-height: 3em;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 80px;
}
#contact-thanks #thanks-body .thanks-body_inner .thanks_btn {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 80px;
  background-color: #191919;
  border: 1px solid #191919;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  transition: ease 0.2s;
}
#contact-thanks #thanks-body .thanks-body_inner .thanks_btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}
#contact-thanks #thanks-body .thanks-body_inner .thanks_btn::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
#contact-thanks #thanks-body .thanks-body_inner .thanks_btn:hover span {
  color: #191919;
}
#contact-thanks #thanks-body .thanks-body_inner .thanks_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#membership .fanclub_fv .fv_photo {
  background: url(../image/fanclub/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#membership #membership-body {
  width: 100%;
  padding: 160px 0;
}
#membership #membership-body .membership-body_inner {
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
}
#membership #membership-body .membership-body_inner .title_h2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  margin-bottom: 80px;
}
#membership #membership-body .membership-body_inner .title_h2 h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  font-size: 100px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  opacity: 0.15;
}
#membership #membership-body .membership-body_inner .title_h2 .sub {
  bottom: 3px;
  left: 0;
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 56px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  opacity: 1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
#membership #membership-body .membership-body_inner h3 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 32px;
}
#membership #membership-body .membership-body_inner p {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 2;
  margin-bottom: 80px;
}

#privacy .privacy_fv h1 {
  font-size: 64px;
}
#privacy .privacy_fv .fv_photo {
  background: url(../image/privacy/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#privacy #privacy-body {
  width: 100%;
  padding: 160px 0;
}
#privacy #privacy-body .privacy-body_inner {
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
}
#privacy #privacy-body .privacy-body_inner p {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 2;
  margin-bottom: 64px;
}
#privacy #privacy-body .privacy-body_inner h3 {
  font-size-adjust: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 2;
  font-weight: 700;
  margin-bottom: 24px;
}
#privacy #privacy-body .privacy-body_inner ul {
  margin-bottom: 64px;
}
#privacy #privacy-body .privacy-body_inner ul li {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  line-height: 2;
}

#archive-news .news_fv .fv_photo {
  background: url(../image/news/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#archive-news #archive-news-body {
  padding: 160px 0;
}
#archive-news #archive-news-body .archive-news-body_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
#archive-news #archive-news-body .archive-news-body_inner ul {
  width: 100%;
  margin-bottom: 80px;
}
#archive-news #archive-news-body .archive-news-body_inner ul li {
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 24px 0;
}
#archive-news #archive-news-body .archive-news-body_inner ul li:nth-of-type(1) {
  border-top: none;
}
#archive-news #archive-news-body .archive-news-body_inner ul li a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#archive-news #archive-news-body .archive-news-body_inner ul li a .date {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  margin-right: 40px;
}
#archive-news #archive-news-body .archive-news-body_inner ul li a .category {
  min-width: 150.16px;
  height: 30px;
  padding: 0 30px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ccc;
  margin-right: 40px;
}
#archive-news #archive-news-body .archive-news-body_inner ul li a h2 {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers {
  font-family: linotype-didot, serif;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.5px solid #ccc;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers .right,
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers .left {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../image/media/media_pnavi_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers .left {
  top: auto;
  right: auto;
  bottom: -1px;
  left: -1px;
  background: url(../image/media/media_pnavi_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers::before, #archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease 0.3s;
  display: block;
  box-sizing: border-box;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers::before {
  right: 0px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #1a1a1a;
  transform: translateX(-100%);
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers::after {
  left: 0px;
  border-left: 50px solid transparent;
  border-top: 50px solid #1a1a1a;
  transform: translateX(100%);
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers:hover {
  color: #fff;
  border: none;
  transition: 0.3s;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers:hover::before {
  right: -25px;
  transform: translateX(-49%);
  transition: 0.3s;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers:hover::after {
  left: -25px;
  transform: translateX(50%);
  transition: 0.3s;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers.current {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .prev {
  display: none;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .next {
  display: none;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers.dots {
  border: none;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers.dots:hover {
  border: none;
  color: #1a1a1a;
}
#archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers.dots:hover::before, #archive-news #archive-news-body .archive-news-body_inner .pnavi .page-numbers.dots:hover::after {
  display: none;
}

#biography-page .biography_fv .fv_photo {
  background: url(../image/biography/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#biography-page #biography-body {
  width: 100%;
  padding: 160px 0;
}
#biography-page #biography-body .biography-body_inner {
  width: 92%;
  max-width: 1920px;
  margin: 0 auto;
}
#biography-page #biography-body .biography-body_inner .tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin-bottom: 80px;
}
#biography-page #biography-body .biography-body_inner .tab .btn {
  width: 18.75%;
  height: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
#biography-page #biography-body .biography-body_inner .tab .btn:hover {
  box-shadow: none;
}
#biography-page #biography-body .biography-body_inner .tab .btn:hover a {
  background-color: #1a1a1a;
  color: #fff;
  transition: 0.3s;
}
#biography-page #biography-body .biography-body_inner .tab .btn.choice {
  box-shadow: none;
}
#biography-page #biography-body .biography-body_inner .tab .btn.choice a {
  background-color: #1a1a1a;
  color: #fff;
}
#biography-page #biography-body .biography-body_inner .tab .btn a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: linotype-didot, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: 0.3s;
}
#biography-page #biography-body .biography-body_inner .tab_body {
  margin-bottom: 80px;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list {
  padding: 24px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list.concert .info {
  margin-bottom: 0;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list h2 {
  font-size: 24px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list .info .date {
  font-size: 16px;
  font-family: linotype-didot, serif;
  letter-spacing: -0.02em;
  margin-right: 40px;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list .info .place {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#biography-page #biography-body .biography-body_inner .tab_body .tab_body_list .name {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
#biography-page #biography-body .biography-body_inner .pnavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers {
  font-family: linotype-didot, serif;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.5px solid #ccc;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers .right,
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers .left {
  position: absolute;
  z-index: 2;
  top: -1px;
  right: -1px;
  display: block;
  width: 4px;
  height: 4px;
  background: url(../image/media/media_pnavi_img01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers .left {
  top: auto;
  right: auto;
  bottom: -1px;
  left: -1px;
  background: url(../image/media/media_pnavi_img02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers::before, #biography-page #biography-body .biography-body_inner .pnavi .page-numbers::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transition: transform ease 0.3s;
  display: block;
  box-sizing: border-box;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers::before {
  right: 0px;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #1a1a1a;
  transform: translateX(-100%);
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers::after {
  left: 0px;
  border-left: 50px solid transparent;
  border-top: 50px solid #1a1a1a;
  transform: translateX(100%);
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers:hover {
  color: #fff;
  border: none;
  transition: 0.3s;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers:hover::before {
  right: -25px;
  transform: translateX(-49%);
  transition: 0.3s;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers:hover::after {
  left: -25px;
  transform: translateX(50%);
  transition: 0.3s;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers.current {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
}
#biography-page #biography-body .biography-body_inner .pnavi .prev {
  display: none;
}
#biography-page #biography-body .biography-body_inner .pnavi .next {
  display: none;
}
#biography-page #biography-body .biography-body_inner .pnavi .page-numbers.dots {
  border: none;
}

#contact-page .contact-thanks_fv .fv_photo {
  background: url(../image/contact/contact_fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#contact-page #contact-body {
  width: 100%;
  padding: 160px 0;
}
#contact-page #contact-body .contact-body_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
#contact-page #contact-body .contact-body_inner p {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  margin-bottom: 80px;
}
#contact-page #contact-body .contact-body_inner p a {
  text-decoration: underline;
}
#contact-page #contact-body .contact-body_inner #mail_form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#contact-page #contact-body .contact-body_inner #mail_form .company,
#contact-page #contact-body .contact-body_inner #mail_form .position,
#contact-page #contact-body .contact-body_inner #mail_form .name,
#contact-page #contact-body .contact-body_inner #mail_form .mail,
#contact-page #contact-body .contact-body_inner #mail_form .tel,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku {
  width: 100%;
  margin-bottom: 56px;
}
#contact-page #contact-body .contact-body_inner #mail_form .company h3,
#contact-page #contact-body .contact-body_inner #mail_form .position h3,
#contact-page #contact-body .contact-body_inner #mail_form .name h3,
#contact-page #contact-body .contact-body_inner #mail_form .mail h3,
#contact-page #contact-body .contact-body_inner #mail_form .tel h3,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
}
#contact-page #contact-body .contact-body_inner #mail_form .company h3 span,
#contact-page #contact-body .contact-body_inner #mail_form .position h3 span,
#contact-page #contact-body .contact-body_inner #mail_form .name h3 span,
#contact-page #contact-body .contact-body_inner #mail_form .mail h3 span,
#contact-page #contact-body .contact-body_inner #mail_form .tel h3 span,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku h3 span {
  color: red;
}
#contact-page #contact-body .contact-body_inner #mail_form .company p .wpcf7-form-control-wrap,
#contact-page #contact-body .contact-body_inner #mail_form .position p .wpcf7-form-control-wrap,
#contact-page #contact-body .contact-body_inner #mail_form .name p .wpcf7-form-control-wrap,
#contact-page #contact-body .contact-body_inner #mail_form .mail p .wpcf7-form-control-wrap,
#contact-page #contact-body .contact-body_inner #mail_form .tel p .wpcf7-form-control-wrap,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku p .wpcf7-form-control-wrap {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#contact-page #contact-body .contact-body_inner #mail_form .company p span input,
#contact-page #contact-body .contact-body_inner #mail_form .position p span input,
#contact-page #contact-body .contact-body_inner #mail_form .name p span input,
#contact-page #contact-body .contact-body_inner #mail_form .mail p span input,
#contact-page #contact-body .contact-body_inner #mail_form .tel p span input,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku p span input {
  width: 100%;
  height: 80px;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#contact-page #contact-body .contact-body_inner #mail_form .company p span input::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .position p span input::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .name p span input::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .mail p span input::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .tel p span input::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku p span input::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#contact-page #contact-body .contact-body_inner #mail_form .company p span textarea,
#contact-page #contact-body .contact-body_inner #mail_form .position p span textarea,
#contact-page #contact-body .contact-body_inner #mail_form .name p span textarea,
#contact-page #contact-body .contact-body_inner #mail_form .mail p span textarea,
#contact-page #contact-body .contact-body_inner #mail_form .tel p span textarea,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku p span textarea {
  width: 100%;
  height: 240px;
  resize: vertical;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#contact-page #contact-body .contact-body_inner #mail_form .company p span textarea::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .position p span textarea::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .name p span textarea::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .mail p span textarea::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .tel p span textarea::placeholder,
#contact-page #contact-body .contact-body_inner #mail_form .message_waku p span textarea::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px auto;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check input[type=checkbox] {
  appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 28px;
  height: 28px;
  margin-right: 24px;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #eee;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check input[type=checkbox]:checked::before {
  background-color: #191919;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check input[type=checkbox]:checked::after {
  opacity: 1;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check .wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#contact-page #contact-body .contact-body_inner #mail_form .privacy_check .wpcf7-list-item-label a {
  text-decoration: underline;
}
#contact-page #contact-body .contact-body_inner #mail_form .submit {
  max-width: 320px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
}
#contact-page #contact-body .contact-body_inner #mail_form .submit input {
  width: 100%;
  height: 100%;
  background-color: #191919;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}

#fc_contact .fanclub-thanks_fv .fv_photo {
  background: url(../image/fanclub/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#fc_contact #fc_contact_body .fc_contact_body_inner {
  width: 92%;
  max-width: 1280px;
  padding: 160px 0;
  margin: 0 auto;
}
#fc_contact #fc_contact_body .fc_contact_body_inner .title_h2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  margin-bottom: 80px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner .title_h2 h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  font-size: 100px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  opacity: 0.15;
}
#fc_contact #fc_contact_body .fc_contact_body_inner .title_h2 .sub {
  bottom: 3px;
  left: 0;
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 56px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  opacity: 1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
#fc_contact #fc_contact_body .fc_contact_body_inner .fc_contact_text {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  margin-bottom: 80px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul {
  width: 43.75%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0 auto 80px auto;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li {
  width: 42.85%;
  height: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li:hover {
  box-shadow: none;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li:hover a {
  background-color: #1a1a1a;
  color: #fff;
  transition: 0.3s;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li.choice {
  box-shadow: none;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li.choice a {
  background-color: #1a1a1a;
  color: #fff;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
#fc_contact #fc_contact_body .fc_contact_body_inner ul .choice {
  width: 42.85%;
  height: 100%;
  box-shadow: none;
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku {
  width: 100%;
  margin-bottom: 56px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose h3,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number h3,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name h3,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail h3,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel h3,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose h3 span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number h3 span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name h3 span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail h3 span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel h3 span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku h3 span {
  color: red;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p .wpcf7-list-item,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p .wpcf7-list-item,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p .wpcf7-list-item,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p .wpcf7-list-item,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p .wpcf7-list-item,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p .wpcf7-list-item {
  padding-bottom: 8px;
  margin: 0 0 0 2em;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p .wpcf7-list-item label span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p .wpcf7-list-item label span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p .wpcf7-list-item label span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p .wpcf7-list-item label span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p .wpcf7-list-item label span,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p .wpcf7-list-item label span {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input {
  width: 100%;
  height: 80px;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input[type=checkbox],
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input[type=checkbox],
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input[type=checkbox],
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input[type=checkbox],
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input[type=checkbox],
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input[type=checkbox] {
  appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input[type=checkbox]::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input[type=checkbox]::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input[type=checkbox]::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input[type=checkbox]::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input[type=checkbox]::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #eee;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input[type=checkbox]:checked::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input[type=checkbox]:checked::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input[type=checkbox]:checked::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input[type=checkbox]:checked::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input[type=checkbox]:checked::before,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input[type=checkbox]:checked::before {
  background-color: #191919;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input[type=checkbox]::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input[type=checkbox]::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input[type=checkbox]::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input[type=checkbox]::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input[type=checkbox]::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span input[type=checkbox]:checked::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span input[type=checkbox]:checked::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span input[type=checkbox]:checked::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span input[type=checkbox]:checked::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span input[type=checkbox]:checked::after,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span input[type=checkbox]:checked::after {
  opacity: 1;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span textarea,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span textarea,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span textarea,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span textarea,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span textarea,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span textarea {
  width: 100%;
  height: 240px;
  resize: vertical;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .purpose p span textarea::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .fc_number p span textarea::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .name p span textarea::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .mail p span textarea::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .tel p span textarea::placeholder,
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .message_waku p span textarea::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px auto;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check input[type=checkbox] {
  appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 28px;
  height: 28px;
  margin-right: 24px;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #eee;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check input[type=checkbox]:checked::before {
  background-color: #191919;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check input[type=checkbox]:checked::after {
  opacity: 1;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check .wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .privacy_check .wpcf7-list-item-label a {
  text-decoration: underline;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .submit {
  max-width: 320px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .submit p{
	width:100%;
	height:100%;
}
#fc_contact #fc_contact_body .fc_contact_body_inner #mail_form .submit input {
  width: 100%;
  height: 100%;
  background-color: #191919;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
	text-align:center;
}

#fc .fanclub-thanks_fv .fv_photo {
  background: url(../image/fanclub/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#fc #fc_guide {
  width: 100%;
  position: relative;
}
#fc #fc_guide::before {
  position: absolute;
  top: 130px;
  right: -100px;
  opacity: 0.3;
  z-index: -1;
  content: "";
  display: block;
  width: 50%;
  aspect-ratio: 1/1.075;
  background: url(../image/fanclub/fc_img02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#fc #fc_guide .fc_guide_inner {
  padding: 160px 0;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#fc #fc_guide .fc_guide_inner .wrap1 {
  width: 46%;
}
#fc #fc_guide .fc_guide_inner .wrap1 .fc_guide_photo {
  width: 100%;
}
#fc #fc_guide .fc_guide_inner .wrap1 .fc_guide_photo img {
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
#fc #fc_guide .fc_guide_inner .fc_guide_text {
  width: 45.46%;
}
#fc #fc_guide .fc_guide_inner .fc_guide_text h2 {
  font-size: 32px;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 80px;
}
#fc #fc_guide .fc_guide_inner .fc_guide_text p {
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-bottom: 50px;
}
#fc #fc_guide .fc_guide_inner .fc_guide_text .btnarrow.fc_guide {
  display: block;
  width: 180px;
  margin-left: auto;
  margin-bottom: 32px;
  font-size: 16px;
}
#fc #fc_benefits {
  width: 100%;
}
#fc #fc_benefits .fc_benefits_inner {
  padding-bottom: 160px;
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
#fc #fc_benefits .fc_benefits_inner .title_h2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  margin-bottom: 80px;
}
#fc #fc_benefits .fc_benefits_inner .title_h2 h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  font-size: 100px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  opacity: 0.15;
}
#fc #fc_benefits .fc_benefits_inner .title_h2 .sub {
  bottom: 3px;
  left: 0;
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 56px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  opacity: 1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_text {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-bottom: 80px;
}
#fc #fc_benefits .fc_benefits_inner ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#fc #fc_benefits .fc_benefits_inner ul li {
  width: 29.68%;
  margin-bottom: 60px;
}
#fc #fc_benefits .fc_benefits_inner ul li img {
  width: 100%;
  object-fit: cover;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list {
  width: 28.125%;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table {
  width: 100%;
  border: 1px solid #1a1a1a;
  border-collapse: collapse;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table:nth-of-type(1) {
  margin-bottom: 24px;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table thead {
  height: 45px;
  width: 100%;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table thead tr {
  width: 100%;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table thead tr th {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table tbody {
  width: 100%;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table tbody tr {
  width: 100%;
  height: 45px;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .price_list table tbody tr td {
  height: 100%;
  width: 50%;
  border: 1px solid #1a1a1a;
  border-collapse: collapse;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-size: 16px;
  text-align: center;
  line-height: 45px;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .text_box {
  width: 65.625%;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .text_box p {
  width: 100%;
  box-sizing: border-box;
  padding: 34px;
  border: 1px dashed #1a1a1a;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 56px;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .text_box p a {
  text-decoration: underline;
}
#fc #fc_benefits .fc_benefits_inner .fc_benefits_inner_flex .text_box .btnarrow.fc_guide {
  display: block;
  width: 180px;
  margin-left: auto;
  font-size: 16px;
}
#fc #entry .entry_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 160px;
}
#fc #entry .entry_inner .title_h2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 150px;
  margin-bottom: 80px;
}
#fc #entry .entry_inner .title_h2 h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  font-size: 100px;
  letter-spacing: -0.02em;
  font-family: linotype-didot, serif;
  font-weight: 700;
  opacity: 0.15;
}
#fc #entry .entry_inner .title_h2 .sub {
  bottom: 3px;
  left: 0;
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 56px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  opacity: 1;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
#fc #entry .entry_inner .entry_text {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  margin-bottom: 80px;
}
#fc #entry .entry_inner .entry_text a {
  text-decoration: underline;
}
#fc #entry .entry_inner #mail_form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#fc #entry .entry_inner #mail_form .postnum,
#fc #entry .entry_inner #mail_form .adress,
#fc #entry .entry_inner #mail_form .b-day,
#fc #entry .entry_inner #mail_form .name,
#fc #entry .entry_inner #mail_form .mail,
#fc #entry .entry_inner #mail_form .tel,
#fc #entry .entry_inner #mail_form .message_waku {
  width: 100%;
  margin-bottom: 56px;
}
#fc #entry .entry_inner #mail_form .postnum h3,
#fc #entry .entry_inner #mail_form .adress h3,
#fc #entry .entry_inner #mail_form .b-day h3,
#fc #entry .entry_inner #mail_form .name h3,
#fc #entry .entry_inner #mail_form .mail h3,
#fc #entry .entry_inner #mail_form .tel h3,
#fc #entry .entry_inner #mail_form .message_waku h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
}
#fc #entry .entry_inner #mail_form .postnum h3 span,
#fc #entry .entry_inner #mail_form .adress h3 span,
#fc #entry .entry_inner #mail_form .b-day h3 span,
#fc #entry .entry_inner #mail_form .name h3 span,
#fc #entry .entry_inner #mail_form .mail h3 span,
#fc #entry .entry_inner #mail_form .tel h3 span,
#fc #entry .entry_inner #mail_form .message_waku h3 span {
  color: red;
}
#fc #entry .entry_inner #mail_form .postnum p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .adress p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .b-day p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .name p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .mail p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .tel p .wpcf7-form-control-wrap,
#fc #entry .entry_inner #mail_form .message_waku p .wpcf7-form-control-wrap {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc #entry .entry_inner #mail_form .postnum p span input,
#fc #entry .entry_inner #mail_form .adress p span input,
#fc #entry .entry_inner #mail_form .b-day p span input,
#fc #entry .entry_inner #mail_form .name p span input,
#fc #entry .entry_inner #mail_form .mail p span input,
#fc #entry .entry_inner #mail_form .tel p span input,
#fc #entry .entry_inner #mail_form .message_waku p span input {
  width: 100%;
  height: 80px;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#fc #entry .entry_inner #mail_form .postnum p span input::placeholder,
#fc #entry .entry_inner #mail_form .adress p span input::placeholder,
#fc #entry .entry_inner #mail_form .b-day p span input::placeholder,
#fc #entry .entry_inner #mail_form .name p span input::placeholder,
#fc #entry .entry_inner #mail_form .mail p span input::placeholder,
#fc #entry .entry_inner #mail_form .tel p span input::placeholder,
#fc #entry .entry_inner #mail_form .message_waku p span input::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc #entry .entry_inner #mail_form .postnum p span textarea,
#fc #entry .entry_inner #mail_form .adress p span textarea,
#fc #entry .entry_inner #mail_form .b-day p span textarea,
#fc #entry .entry_inner #mail_form .name p span textarea,
#fc #entry .entry_inner #mail_form .mail p span textarea,
#fc #entry .entry_inner #mail_form .tel p span textarea,
#fc #entry .entry_inner #mail_form .message_waku p span textarea {
  width: 100%;
  height: 240px;
  resize: vertical;
  background-color: #eee;
  text-align: left;
  box-sizing: border-box;
  padding: 1em;
}
#fc #entry .entry_inner #mail_form .postnum p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .adress p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .b-day p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .name p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .mail p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .tel p span textarea::placeholder,
#fc #entry .entry_inner #mail_form .message_waku p span textarea::placeholder {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc #entry .entry_inner #mail_form .privacy_check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 80px auto;
}
#fc #entry .entry_inner #mail_form .privacy_check input[type=checkbox] {
  appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 28px;
  height: 28px;
  margin-right: 24px;
}
#fc #entry .entry_inner #mail_form .privacy_check input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #eee;
}
#fc #entry .entry_inner #mail_form .privacy_check input[type=checkbox]:checked::before {
  background-color: #191919;
}
#fc #entry .entry_inner #mail_form .privacy_check input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 8px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
#fc #entry .entry_inner #mail_form .privacy_check input[type=checkbox]:checked::after {
  opacity: 1;
}
#fc #entry .entry_inner #mail_form .privacy_check .wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
}
#fc #entry .entry_inner #mail_form .privacy_check .wpcf7-list-item-label a {
  text-decoration: underline;
}
#fc #entry .entry_inner #mail_form .submit {
  max-width: 320px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
}
#fc #entry .entry_inner #mail_form .submit input {
	text-align:center;
  width: 100%;
  height: 100%;
  background-color: #191919;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
}

#single-news .news_fv .fv_photo {
  background: url(../image/news/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#single-news #single-news-content {
  width: 100%;
}
#single-news #single-news-content .single-news-content_inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 0;
}
#single-news #single-news-content .single-news-content_inner .date {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 56px;
}
#single-news #single-news-content .single-news-content_inner h1 {
  font-size: 36px;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 56px;
}
#single-news #single-news-content .single-news-content_inner p {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  margin-bottom: 56px;
}
#single-news #single-news-content .single-news-content_inner strong {
  font-weight: 700;
}
#single-news #single-news-content .single-news-content_inner a {
  text-decoration: underline;
}
#single-news #single-news-content .single-news-content_inner h2 {
  font-size: 32px;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: double #1a1a1a 6px;
  margin-bottom: 48px;
}
#single-news #single-news-content .single-news-content_inner img {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 48px;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation {
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 160px;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul li {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul li a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul .prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul .prev a {
  position: relative;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul .next {
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  margin-top: -2px;
}
#single-news #single-news-content .single-news-content_inner .single_pagenation ul .next a {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
}

#contact-page #contact-body .contact-body_inner #mail_form .submit p{
height:100%;
}

#fc #entry .entry_inner #mail_form .submit p{
height:100%;
}