@charset "UTF-8";

/* ------------------------- 共通 -------------------------- */
/* ----------------------- */
/* base
/* ----------------------- */
body {
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #2e2e2e;
  letter-spacing: 0.1em;
}

img,
svg {
  width: 100%;
  vertical-align: bottom;
  pointer-events: none;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  color: inherit;
}

a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

strong {
  font-weight: bold;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

input,
textarea {
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
}

.secWrapper {
  padding: 80px 0 148px;
  min-width: 1100px;
}

.secInner {
  margin: 0 auto;
  max-width: 850px;
}

.bgcTheme {
  background-color: #fdfdfd;
}

.relative {
  position: relative;
}

.sp_br {
  display: none;
}

.spBlock {
  display: none;
}

.mr40 {
  margin-right: 40px;
}

/* ----------------------- */
/* header
/* ----------------------- */

.header {
  width: 100%;
  height: 112px;
  background-color: #f8f8f8;
  min-width: 1100px;
}

.header-inner {
  margin: 0 auto;
  max-width: 1000px;
  line-height: 112px;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item a {
  color: #161616;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.15em;
  font-size: 18px;
  font-weight: bold;
}

.nav-item a:hover {
  color: #b9b9b9;
}

.burger-btn {
  display: none;
}

/* ----------------------- */
/* footer
/* ----------------------- */

/* ----- floating　----- */
.floating {
  position: fixed;
  right: 1.8%;
  /* bottom: 163px; */
  bottom: 9%;
  line-height: 2;
  width: 90px;
  height: 90px;
  z-index: 1;
}

.floating a {
  display: block;
  color: #fff;
  font-size: 15px;
  background: #313131;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  padding-top: 18px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.floating img {
  display: block;
  margin: 0 auto;
  width: 41px;
  height: 22px;
}

/* ----- /.floating　----- */


/*------ photoBtnWrap ------*/
.photoBtnWrap {
  display: flex;
  align-items: center;
  min-width: 1100px;
}

.photoBtn {
  position: relative;
  width: 33.33%;
  height: auto;
}

.photoBtn .txt-en,
.photoBtn .txt-ja {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  width: 100%;
  text-align: center;
}

.photoBtn .txt-en {
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  letter-spacing: 0.15em;
}

.photoBtn .txt-ja {
  transform: translate(-50%, 100%);
  font-size: 14px;
}

/*------ /.photoBtnWrap ------*/


/*------ footerContact ------*/
.footerContact {
  background: url(../img/contact-bg.jpg) no-repeat;
  width: 100%;
  height: 267px;
  background-size: cover;
  background-position: center;
  min-width: 1100px;
}

.footerContactWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 7.33% 0 13.26%;
  height: 100%;
  max-width: 1188px;
}

.footerContactWrap .ttl-en {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.1em;
}

.footerContactWrap .ttl-ja {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.footerContactBtn {
  display: block;
  font-size: 20px;
  color: #fff;
  width: 536px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: 0.2s;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.15em;
}

.footerContactBtn:hover {
  color: #ffe443;
  border: 1px solid #ffe443;
  transition: 0.3s;
}

/*------ /.footerContact ------*/



/*------ footer ------*/
.footer {
  background-color: #fdfdfd;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  /* min-width: 1100px; */
}

.footerInner {
  /* display: flex;
  height: 100%; */
  padding: 10px 19px 0 28px;
}

.copyright {
  font-size: 14px;
  color: #000;
  margin: 10px 20px 0 0;
  line-height: 1.2em;
}

.footerInner small {
  display: inline-block;
  margin-left: 1.5em;
}

.footerInner small::before {
  content: "※";
}

.twitter {
  margin: 10px 0 0 auto;
  width: 126px;
  height: 22px;
}


/*------ /.footer ------*/

/*------ button ------*/
.btn {
  padding: 20px 50px;
  background: #fed900;
  border-radius: 50px;
}

.btn:hover {
  opacity: .6;
}

/* ---------------------- /.共通 -------------------------------- */



/* ---------------------- トップページ ---------------------------- */

/* ----------------------- */
/* mv
/* ----------------------- */

.mv {
  position: relative;
  top: 0;
  width: 100%;
  height: 864px;
  background-color: #f8f8f8;
  min-width: 1100px;
}

.slider li {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 800px;
}

.slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mainTtl {
  position: absolute;
  top: 190px;
  left: 3.2%;
  display: block;
  width: 346px;
  height: 80px;
}

.mv .subTtl {
  display: block;
  position: absolute;
  top: 270px;
  left: 3.2%;
  letter-spacing: 0.42em;
}

.flower1 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 329px;
  height: 94px;
}

.flower2 {
  position: absolute;
  bottom: 33px;
  right: 2%;
  width: 158px;
  height: 143px;
}

.sideBtn {
  position: fixed;
  /* top: 163px; */
  top: 17%;
  right: 2.8%;
  font-size: 20px;
  line-height: 71px;
  height: 373px;
  width: 71px;
  background-color: #fed900;
  border-radius: 35.5px;
  color: #2e2e2e;
  text-align: center;
  writing-mode: vertical-lr;
  z-index: 4;
  cursor: pointer;
}

.scBar {
  position: absolute;
  bottom: 7%;
  left: 3.2%;
  color: #2e2e2e;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  z-index: 2;
  overflow: hidden;
  padding-right: 35px;
  height: 297px;
  text-align: right;
  writing-mode: vertical-lr;
  cursor: pointer;
}

.scBar::before {
  content: '';
  position: absolute;
  bottom: 29%;
  left: 8.8%;
  width: 7px;
  height: 7px;
  background: #fed900;
  border-radius: 50%;
}

.scBar::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 13.2%;
  width: 1px;
  height: 167px;
  background: #161616;
  animation: move 1.7s cubic-bezier(1, 0.2, 0.4, 1) infinite;
}

@keyframes move {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/* ---- 追加 20.10.23 ---- */

.slider li {
  position: inherit;
  top: auto;
  right: auto;
  overflow: hidden;
}

.slider li img {
  float: right;
  width: 90%;
}

.slick-dots {
  bottom: -40px !important;
}

.slick-dots li {
  position: relative;
  margin: 0 6px;
  cursor: pointer;
}

.slick-dots li button:before {
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  border: 1px solid #bababa;
  background: #fff;
  border-radius: 100%;
  content: "" !important;
}

.slick-dots li.slick-active button:before {
  background: #fed900;
}
/* ---- //追加 20.10.23 ---- */

/* ----------------------- */
/* information
/* ----------------------- */

.secTtl-en {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.15em;
  margin-bottom: 17px;
}

.secTtl-ja {
  font-size: 14px;
  text-align: center;

}

.tabs {
  display: flex;
  justify-content: center;
  margin: 67px 0 60px;
}

.tabs_sp {
  display: none;
}

.tabs li:not(:last-child) {
  /* cursor: pointer; */
  margin-right: 15px;
}

.tabs li a {
  color: #2e2e2e;
  font-size: 18px;
  text-align: center;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #2e2e2e;
  border-radius: 25px;
}

.tabs li.active a {
  color: #2e2e2e;
  border-radius: 25px;
  background-color: #ffe443;
  border: 1px solid #ffe443;
}

.tabContent {
  display: none;
}

.tabContent.active {
  display: block;
}

.infoLink {
  margin-bottom: 50px;
  display: flex;
}

.infoLink:last-of-type {
  margin-bottom: 67px;
}

.release {
  font-size: 17px;
  margin-right: 18px;
  margin-top: 7px;
}

.category {
  margin-top: 7px;
  color: #2e2e2e;
  font-size: 14px;
  width: 80px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border: 1px solid #2e2e2e;
  margin-right: 18px;
  box-sizing: border-box;
  text-decoration: none;
}

.infoTtl {
  width: 636px;
  color: #2e2e2e;
  font-size: 17px;
  line-height: 2.1;
  padding-bottom: 5px;
}

.secBtn {
  font-size: 18px;
  color: #2e2e2e;
  width: 440px;
  height: 66px;
  line-height: 66px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #2e2e2e;
  font-family: 'Roboto', sans-serif;
  transition: 0.2s;
  letter-spacing: 0.15em;
}

.secBtn:hover {
  border: 1px solid #ffe443;
  background-color: #ffe443;
  transition: 0.4s;
}

/* ---------------------- /.トップページ--------------------------- */



/* ---------------------- 下層ページ共通 ----------------------------- */

/* ----------------------- */
/* page-mv(下層ページMV)
/* ----------------------- */

.pageMv {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 333px;
  background-color: #f8f8f8;
  min-width: 1100px;
}

.pageMvImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 1350px;
  width: 90%;
  height: 300px;
}

.pageMvImg img {
  height: 100%;
  object-fit: cover;
}

.logo {
  position: absolute;
  top: 34px;
  left: 2.8%;
}

.pageMv .subTtl {
  position: absolute;
  top: 108px;
  left: 2.8%;
  display: block;
  margin-top: 15px;
  color: #2e2e2e;
  line-height: 1.62;
  letter-spacing: 0.42em;
}

.flower3 {
  position: absolute;
  bottom: 23px;
  left: 2.7%;
  width: 126px;
  height: 114px;
}

.pageSideBtn {
  top: 147px;
  right: 2.8%;
}

.pageTtl {
  color: #fff;
  font-size: 48px;
  font-family: 'Roboto', sans-serif;
  position: absolute;
  right: 9.5%;
  bottom: 24.5%;
}

.pageSubTtl {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  right: 9.5%;
  bottom: 16%;
}

/* ---------------------- /.下層ページ共通 --------------------------- */



/* ---------------------- loginページ ----------------------------- */

/* ----------------------- */
/* login
/* ----------------------- */

.loginWrapper {
  width: 100%;
  padding: 120px 0 275px;
  min-width: 1100px;
}

.loginWrapper.bgcTheme {
  width: 100%;
}

.loginForm {
  width: 100%;
  height: 283px;
  padding: 99px 0 118px;
  background-color: #f3f6fd;
  text-align: center;
}

.loginTtl {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 57px;
}

.login-password {
  position: relative;
  width: 432px;
  margin: 0 auto;
}

.login-password label {
  display: block;
}

.login-password input {
  display: block;
  position: relative;
  width: 339px;
  height: 60px;
  line-height: 60px;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  font-size: 15px;
  margin: 27px auto 32px;
  padding-left: 91px;
}

.login-password::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 61px;
  border-radius: 8px 0 0 8px;
  background-color: #2e2e2e;
  background-image: url(../img/pw.png);
  background-repeat: no-repeat;
  background-position: center;
}


.login-submit .button {
  width: 269px;
  height: 66px;
  line-height: 66px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #1a2f55;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.login-submit .button:hover {
  background-color: #7e9acd;
  transition: 0.4s;
}

.login-username {
  display: none;
}

.login-error {
  margin-bottom: 15px;
  color: #d55151;
  font-weight: bold;
}

.logout {
  margin-bottom: 30px;
  text-align: right;
}

.logout a {
  padding: 10px 25px;
  border: 1px solid #2e2e2e;
  border-radius: 50px;
}


/* ---------------------- /.loginページ --------------------------- */



/* ---------------------- コンタクトページ -------------------------- */

/* ----------------------- */
/* contact
/* ----------------------- */

.contactWrapper {
  width: 100%;
  padding: 90px 0 153px;
  min-width: 1100px;
}

.contactInner {
  max-width: 950px;
  padding: 0 28px;
  margin: 0 auto;
}

.letter {
  margin-bottom: 92px;
}

.contactTtl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 47px;
}

.address {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2.1;
  margin-bottom: 38px;
}

.letterAttention {
  font-size: 14px;
  line-height: 2.14;
  padding: 28px 34px;
  background-color: #f9f7e9;
}

.contactTxt {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.contactAttention {
  padding: 32px 54px 32px 34px;
  border: 1px dashed #b2b2b2;
  font-size: 14px;
  line-height: 2.14;
}

.contactAttention dt {
  float: left;
  clear: both;
}

.contactAttention dd {
  margin-left: 15px;
}

.contactAttention a {
  color: #2e2e2e;
  border-bottom: 1px solid #ababab;
  line-height: 1.1;
}

.contactAttention.privacy {
  margin-top: 20px;
}

.contactAttention.privacy dt {
  float: none;
  font-weight: bold;
}

.contactAttention.privacy dd {
  margin-left: 0;
}



.formList {
  margin: 78px 0 56px;
}

.formItem {
  display: flex;
  margin: 38px 0;
}

.formItem label {
  cursor: pointer;
}

.formItemTtl {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 290px;
  padding-top: 20px;
}

.radio {
  margin-top: 24px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #2e2e2e;
  border-radius: 50%;
  cursor: pointer;
  vertical-align: -3px;
  box-shadow: 0 0 0 -2px #fff;
  margin-right: 5px;
}

.radio:checked {
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #2e2e2e;
  background-color: #2e2e2e;
  box-sizing: border-box;
}

.textBox {
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  width: 430px;
  height: 60px;
  box-sizing: border-box;
  padding: 23px 20px;
}

.memberNum {
  width: 198px;
  margin: 0 42px 0 25px;
}

.formItem .small {
  display: block;
  font-size: 14px;
  margin-top: 12px;
}

.postal {
  width: 175px;
  margin-left: 5px;
}

.textBox-lg {
  width: 658px;
}

.birthday {
  width: 216px;
}

.inquiry {
  width: 658px;
  height: 210px;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 23px 20px;
}

.required {
  padding-left: 10px;
  vertical-align: middle;
  font-size: 13px;
  color: #d55151;
}

.termsLink {
  text-align: center;
  margin: 64px 0 59px;
}

.termsLink a {
  color: #2e2e2e;
  border-bottom: 1px solid #ababab;
  line-height: 1.1;
}

.submitBtn {
  font-size: 26px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  color: #2e2e2e;
  background-color: #ffe443;
  width: 568px;
  height: 99px;
  line-height: 99px;
  letter-spacing: 0.1em;
  border-radius: 8px;
  transition: 0.2s;
  cursor: pointer;
}

.submitBtn:hover {
  background-color: #fff5bb;
  transition: 0.4s;
}

.mw_wp_form_confirm .inputOnly {
  display: none;
}

.mw_wp_form_confirm .formItemTtl+* {
  flex: 1;
  margin-top: 20px;
}

.mw_wp_form_confirm .submit {
  display: flex;
  justify-content: center;
}

.mw_wp_form_confirm .submitBackBtn {
  width: 160px;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 8px;
  transition: 0.2s;
  cursor: pointer;
  background-color: #ddd;
}

.mw_wp_form_confirm .submitBackBtn:hover {
  background-color: #eee;
  transition: 0.4s;
}

.mw_wp_form_confirm .submitBtn {
  width: 410px;
  margin: 0 0 0 20px;
}

.disabled {
  border-color: #aaa;
  background: #eee;
}


/* ----------------------- */
/* footerLetter
/* ----------------------- */

.footerLetter {
  width: 100%;
  padding: 60px 0 48px;
  background-color: #2b3946;
  color: #fff;
  min-width: 1100px;
}

.footerLetterTtl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 38px;
}

.letterAttention2 {
  font-size: 14px;
  line-height: 2.14;
  padding: 28px 34px;
  border: 1px dashed #b2b2b2;
}

/* --------------------- /.コンタクトページ ------------------------- */



/* ---------------------- プロフィールページ -------------------------- */

/* ----------------------- */
/* profile
/* ----------------------- */

.profileWrapper {
  width: 100%;
  padding: 123px 0 224px;
  min-width: 1100px;
}

.profile {
  width: 943px;
  height: 996px;
  margin: 0 auto;
  padding: 73px 0 116px 62px;
  box-sizing: border-box;
  background-color: #f9f8eb;
  position: relative;
}

.affiliation {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.affiliation a {
  text-decoration: underline;
}

.affiliation a:hover {
  text-decoration: none;
}

.name-ja {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 33px 0 0px;
}

.name-en {
  color: #aaa54f;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 46px;
}

.profileDetail {
  margin-top: 43px;
  width: 493px;
  line-height: 2.1;
  letter-spacing: 0.063em;
}

.profileDetail dt {
  font-weight: bold;
}

.biography {
  margin-bottom: 39px;
}

.awards {
  margin-top: 39px;
}

.profileImg {
  position: absolute;
  top: 95px;
  right: -103px;
  width: 440px;
  height: 580px;
  z-index: 1;
}

.profileImg img {
  height: 100%;
}

.profileImg:after {
  content: "";
  position: absolute;
  top: 23px;
  left: 26px;
  width: 440px;
  height: 580px;
  border: 1px solid #2e2e2e;
  z-index: -1;
}

.flower4 {
  position: absolute;
  top: -68px;
  right: -67px;
  width: 128px;
  height: 139px;
}

.flower5 {
  position: absolute;
  bottom: -21px;
  left: -93px;
  width: 391px;
  height: 113px;
}


/* ---------------------- /.プロフィールページ -------------------------- */



/* ---------------------- ファンクラブページ -------------------------- */

/* ----------------------- */
/* fanclub
/* ----------------------- */

.fanclubWrapper {
  padding: 89px 0 110px;
  min-width: 1100px;
}

.fanclub {
  margin: 0 auto;
  max-width: 935px;
  padding: 0 4vw;
}

.fanclubTtl {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 38px;
}

.fanclub p {
  line-height: 2.25;
}

.contactLink {
  color: #2e2e2e;
  border-bottom: 1px solid #767676;
  line-height: 1.1;
}

.fanclubDetail {
  margin-top: 68px;
}

.fanclubDetail .ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 18px;
  border-bottom: 1px dashed #cacaca;
}

.benefit {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
}

.benefit li {
  width: 50%;
  line-height: 2.25;
}

.fee {
  margin-top: 28px;
  line-height: 2.25;
}

.fee dt {
  font-weight: bold;
  float: left;
  clear: both;
}

.fee dd {
  margin-left: 158px;
}

.sessionTxt:first-of-type {
  margin-top: 28px;
}

.sessionTxt {
  width: 840px;
}

.sessionTxt:last-of-type {
  position: relative;
  padding-left: 20px;
}

.sessionTxt:last-of-type:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* ----------------------- */
/* join
/* ----------------------- */

.join {
  background-color: #fffcf1;
  text-align: center;
  padding: 76px 0 141px;
  min-width: 1100px;
}

.joinTtl {
  font-size: 30px;
  font-weight: bold;
}

.jointxt {
  line-height: 2.5;
  margin: 38px 0 72px;
}

.joinBtn {
  color: #2e2e2e;
  font-size: 26px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  width: 568px;
  height: 99px;
  line-height: 99px;
  background-color: #ffe443;
  border-radius: 49.4px;
  transition: 0.2s;
}

.joinBtn:hover {
  background-color: #fff5bb;
  transition: 0.4s;
}


/* ---------------------- /.ファンクラブページ -------------------------- */

/* 以下addCSS */

/* ---------------------- 最新情報 -------------------------- */

/* ----------------------- */
/* info list
  /* ----------------------- */

.info-list .tabs {
  margin-top: 0;
  margin-bottom: 50px;
}

.info-list .infoLink {
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
}

/* PAGE NAVI */

.wp-pagenavi {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 60px 0;
  padding: 0 110px;
}

.wp-pagenavi span.pages {
  border: none;
  margin-right: 1em;
}

.wp-pagenavi a.page {
  border-radius: 100%;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page,
.wp-pagenavi a.first,
.wp-pagenavi a.last,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi span.extend {
  display: inline-block;
  margin: 0 4px;
  padding: 5px 13px;
  font-size: 1.1rem;
}

.wp-pagenavi span.extend {
  border: none;
  padding: 0;
}

.wp-pagenavi span.current {
  text-align: center;
  border-radius: 100%;
  background-color: #ffe443;
}

.wp-pagenavi a {
  text-align: center;
  text-decoration: none;

}

.wp-pagenavi a:hover {
  opacity: 0.6;
  text-align: center;
  text-shadow: none;
}

.nextprev {
  margin: 30px 0;
  text-align: center;
}

.nextprev a {
  display: inline-block;
  margin: 0 2px;
  padding: 5px 15px;
  background-color: #fff;
  border: 1px solid #008e73 !important;
  border-radius: 4px;
}

.nextprev a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #008e73;
}

.previouspostslink,
.nextpostslink {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 80px;
  margin: 0;
  text-indent: -1000px;
  color: #2e2e2e;
}

.previouspostslink:hover,
.nextpostslink:hover {
  background: none !important;
}

.previouspostslink:before,
.nextpostslink:before,
.previouspostslink:after,
.nextpostslink:after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 80px;
  text-indent: 0;
  color: #2e2e2e;
}

.previouspostslink:before,
.nextpostslink:before {
  left: -10px;
  width: 20px;
}

.previouspostslink:after,
.nextpostslink:after {
  left: 20px;
  font-weight: bold;
}

.previouspostslink {
  left: 0;
}

.previouspostslink:before {
  content: "〈";
}

.previouspostslink:after {
  content: "PREV";
}

.nextpostslink {
  right: 0;
}

.nextpostslink:before {
  left: auto;
  right: -10px;
  content: "〉";
}

.nextpostslink:after {
  left: auto;
  right: 20px;
  content: "NEXT";
}

img.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright,
div.alignright {
  padding: 0;
  margin: 0 0 3em 4em;
  display: inline;
}

img.alignleft,
div.alignleft {
  padding: 0;
  margin: 0 4em 3em 0;
  display: inline;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

p.wp-caption-text {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5em;
  padding-left: 0 !important;
}

/* ----------------------- */
/* info detail / member detail
/* ----------------------- */

#page-detail {
  padding-top: 60px;
}

.page-detail {
  padding-bottom: 40px;
  border-bottom: 1px solid #cacaca;
  font-size: 0.95em;
}

.page-detail__head {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
}

.page-detail__title {
  margin: 0 0 35px;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.page-detail img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.page-detail p {
  margin-bottom: 3em;
  line-height: 2.2;
  letter-spacing: 0;
}

.page-detail p a {
  color: inherit;
  text-decoration: underline;
}

.page-detail a:hover {
  text-decoration: none;
}

.pagetoplink {
  padding: 4px;
  color: inherit;
}

video,
.wp-video {
  width: 100%;
  max-width: 100%;
  margin: 0 0 3em;
}


/* ---------------------- /.最新情報 -------------------------- */

/* ---------------------- 会員限定コンテンツ -------------------------- */

/* ----------------------- */
/* members list
  /* ----------------------- */
.members-list {
  padding-bottom: 40px;
  border-bottom: 1px solid #cacaca;
}

.members-list__inner {
  overflow: hidden;
  margin-top: -40px;
  margin-left: -40px;
  letter-spacing: -.4em;
}

.members-list *,
.members-list *:before,
.members-list *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.pageLink {
  display: inline-block;
  width: 33.333%;
  padding-top: 40px;
  padding-left: 40px;
  letter-spacing: 0;
  vertical-align: top;
}

.pageLink time,
.pageLink a {
  color: inherit;
}

.pageLink .release {
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 0.92em;
  letter-spacing: 0.08em;
}

.pageLink .pageLinkTtl {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.pageThumb a {
  display: block;
}

.pageThumb img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

/* ---------------------- /.会員限定コンテンツ -------------------------- */
