@charset "utf-8";

/*----------------------------------------
	font
----------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 400;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
}
img {
  height: auto;
}
.en {
  font-family: "Cinzel", serif;
  font-weight: 400;
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/*----------------------------------------
	改行
----------------------------------------*/
.sp_on {
  display: block;
}

.tab_on {
  display: none;
}

.pc_on {
  display: none;
}

/*----------------------------------------
	リンク範囲を広げる
----------------------------------------*/
a {
  display: block;
}

/*----------------------------------------
	imgWrap（マウスオーバーで画像を拡大）
----------------------------------------*/
.imgWrap {
  overflow: hidden;
  /*拡大時にはみ出た部分を隠す*/
}

.imgWrap img {
  display: block;
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}

.imgWrap img:hover {
  transform: scale(1.1);
  /*画像の拡大率*/
  transition-duration: 0.5s;
  /*変化に掛かる時間*/
}

/*----------------------------------------
	ローディングアニメーション
----------------------------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
}

#splash_logo {
  animation: blinking 0.8s ease-in-out infinite alternate;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes blinking {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#splash_logo img {
  width: 260px;
}

.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);
  }
}

/*----------------------------------------
	h1,h2
----------------------------------------*/
h1 {
  padding: 90px 0 70px;
  font-size: 3rem;
  background-color: #787258;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}

h1 span {
  font-size: 1.4rem;
}

h2 {
  padding: 50px 0;
  font-size: 3rem;
  background-color: #787258;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}

h2 span {
  font-size: 1.4rem;
}

.search-widget-wrapper-872d0c {
  display: none;
}

/*----------------------------------------
	header
----------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  height: 67px;
  box-shadow: rgb(149 157 165 / 10%) 0px 3px 9px;
}

.logo {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 120px;
  z-index: 10;
}

.logo .wh {
  display: none;
}

/*.lang 言語切替導線*/
.lang_header {
  position: absolute;
  right: 104px;
  cursor: pointer;
  top: 23px;
}

.lang_header .lang_list {
  text-align: center;
  padding: 0;
  display: block;
}

.lang_header span.lang_now {
  letter-spacing: 2px;
  padding: 0 0 5px 8px;
  color: #000;
  display: block;
}

.lang_header span.lang_now::after {
  content: "";
  display: inline-block;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  width: 7px;
  height: 7px;
  transform: translate(10px, -50%) rotate(135deg);
}

.lang_header .lang_accordion_content {
  display: flex;
  flex-direction: column;
}

.lang_header .lang_accordion_content a {
  color: #000;
  border-bottom: #00000080 solid 1px;
  border-top: #00000080 solid 1px;
  padding: 3px 0;
  background-color: #fffa;
}

.members_page .lang_header .lang_accordion_content a {
  color: #000;
}

nav ul.lang_sp_hbm {
  display: flex;
  justify-content: center;
  margin: 60px auto;
}

nav ul.lang_sp_hbm li {
  width: 25%;
}

#header nav ul.lang_sp_hbm li.selected a {
  color: #787258;
}

nav ul.lang_sp_hbm li:not(:first-child) {
  border-left: 1px solid #666;
}

#header nav ul.lang_sp_hbm li a {
  font-size: 1.8rem;
  line-height: 1em;
  padding: 0;
  border-bottom: none;
  display: block;
  color: #999;
  text-align: center;
}

.lang_header:has(+ .openbtn.active) {
  display: none;
}

.openbtn {
  position: absolute;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  right: 15px;
  top: 10px;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  right: 0;
  height: 1px;
  border-radius: 2px;
  background: #333;
  width: 100%;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
}

.openbtn span:nth-of-type(2) {
  top: 22px;
}

.openbtn span:nth-of-type(3) {
  top: 34px;
}

/*activeクラス付与*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  right: 0;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
  background: #333;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  right: 0;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
  background: #333;
}

#header nav {
  opacity: 0;
  visibility: hidden;
  top: 67px;
  position: absolute;
  width: 100%;
  padding-top: 100px;
  height: 100vh;
  margin-top: -67px;
  z-index: -1;
}

#header nav ul {
  padding: 0 35px;
}

#header nav ul li a {
  font-size: 1.8rem;
  line-height: 30px;
  padding: 14px 0 14px 1.3em;
  border-bottom: #ccc solid 1px;
  display: block;
}

#header nav ul li.members a {
  border-bottom: none;
  padding: 5px 1.5em;
  margin: 20px 0 0;
  background-color: #787258;
  color: #ffffff;
  display: inline-block;
  font-size: 1.7rem;
}
#header nav ul li.members a:hover {
  background-color: #86826d;
}

#header nav ul li.members:first-child a {
  margin: 30px 0 0;
}

#header .openbtn.active + nav {
  background: #fff;
  opacity: 1;
  visibility: visible;
}

#header .openbtn.active + nav ul {
  transform: translateY(0);
}

#wrap {
  padding-top: 67px;
}

/*----------------------------------------
	footer
----------------------------------------*/
footer {
  padding: 40px 0 0;
  border-top: #ccc solid 1px;
  margin-bottom: 52px;
}

footer .logo {
  padding: 0 0 30px 0;
  position: static;
  width: 100%;
  text-align: center;
}

footer .logo img {
  width: 170px;
}

footer small {
  font-size: 13px;
  text-align: center;
  padding: 0 0 15px;
  display: block;
  letter-spacing: 0px;
}

@media screen and (min-width: 768px) {
  /*----------------------------------------
	改行
----------------------------------------*/
  .sp_on {
    display: none;
  }
  .tab_on {
    display: block;
  }
  .pc_on {
    display: block;
  }

  /*----------------------------------------
	header
----------------------------------------*/

  #header .openbtn {
    display: none;
  }
  .logo {
    left: 40px;
  }
  #header nav {
    opacity: 1;
    visibility: visible;
    top: 67px;
    padding-top: 0;
    position: absolute;
    width: 100%;
    color: #333;
    height: auto;
  }

  #header nav ul {
    display: flex;
    justify-content: flex-end;
    padding: 0px 30px;
    margin: 20px 0;
  }

  #header nav ul li a {
    border-bottom: none;
    font-size: 1.2rem;
    padding: 0px 10px;
  }

  #header nav ul li.members a {
    padding: 0px 12px;
    margin: 0;
    font-size: 1.1rem;
  }

  nav ul li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
  }

  nav ul li a::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -6px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #787258;
    /*アニメーションの指定*/
    transition: all 0.3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
  }

  /*現在地の形状の設定*/
  nav ul li.current a::after {
    transform: scale(0.2, 1);
    /*X方向に0.2スケール拡大*/
  }

  /*現在地を含むhoverの設定*/
  nav ul li.current a:hover::after,
  nav ul li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
  }

  nav ul li.members a::after {
    width: 0;
  }

  /*.lang 言語切替導線*/
  #header nav ul.lang_sp_hbm {
    display: none;
  }

  #header nav ul li.members.signup {
    margin: 0 1em 0 4.5em;
  }

  .lang_header {
    right: 205px;
    top: 23px;
  }
}

@media screen and (min-width: 1280px) {
  /*----------------------------------------
	改行
----------------------------------------*/
  .tab_on {
    display: none;
  }

  /*----------------------------------------
	h1,h2
----------------------------------------*/
  h1 {
    padding: 100px 0 80px;
    font-size: 3.5rem;
    line-height: 1.1;
  }

  h1 span {
    font-size: 1.7rem;
  }

  h2 {
    padding: 100px 0 75px;
    font-size: 3.5rem;
    line-height: 1.1;
  }

  h2 span {
    font-size: 1.7rem;
  }

  /*----------------------------------------
	font
----------------------------------------*/
  body {
    font-size: 1.5rem;
  }

  /*----------------------------------------
	header
----------------------------------------*/
  .logo {
    left: 70px;
  }
  #header nav ul {
    padding: 0px 50px;
  }

  #header nav ul li a {
    padding: 0 24px;
    font-size: 1.6rem;
  }

  #header nav ul li.members a {
    font-size: 1.5rem;
    padding: 0 2em;
    margin: 0 1em 0 0;
  }
  #header nav ul li.members.signup {
    margin: 0 0 0 5em;
  }
  /*.lang 言語切替導線*/
  .lang_header {
    right: 360px;
    top: 23px;
  }
}

/* =================================
        .style-wrapper-99c7fa 
===================================== */
#tripla-cookie-consent .style-wrapper-99c7fa {
  text-align: center;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #3b3b3b;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: normal;
  min-width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 13px 15px;
}

#tripla-cookie-consent .style-wrapper-99c7fa a {
  color: #3b3b3b;
  text-decoration: underline;
  display: inline;
}

#tripla-cookie-consent .style-wrapper-99c7fa a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #3b3b3b;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: normal;
}

#tripla-cookie-consent .style-wrapper-99c7fa {
  text-align: left;
}

#tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  #tripla-cookie-consent .style-wrapper-99c7fa {
    display: grid;
    grid-template-columns: auto 0 141px;
    align-items: center;
    column-gap: 13px;
    justify-content: center;
    padding: 13px 35px 13px;
    font-size: 13px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1.3;
    font-size: 14px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .button-btn-f51c1a {
    width: 141px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  #tripla-cookie-consent .style-wrapper-99c7fa {
    font-size: 14px;
    padding: 10px 55px;
  }

  #tripla-cookie-consent .style-wrapper-99c7fa .style-button-799e8e {
    line-height: 1;
  }
}

/*----------------------------------------
	following_btn
----------------------------------------*/
#following_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgb(149 157 165 / 20%) 0px -5px 9px;
}

#following_btn ul {
  display: flex;
  justify-content: space-between;
}

#following_btn ul li {
  flex-basis: 50%;
}

#following_btn ul li.members.search a {
  background: rgb(120 114 88 / 90%) url("../img/common/img_Link.svg") no-repeat right 4vw center;
  background-size: 1.2em;
}

#following_btn ul li.members a {
  padding: 12px 1.5em;
  color: #ffffff;
  display: block;
  font-size: 1.7rem;
  text-align: center;
  background: rgb(0 0 0 / 80%) url("../img/common/img_Link.svg") no-repeat right 4vw center;
  background-size: 1.2em;
}

@media only screen and (min-width: 768px) {
  #following_btn {
    position: fixed;
    right: -7px;
    width: 3.5em;
    top: 70vh;
    margin-top: -8em;
    height: 17em;
  }

  #following_btn ul {
    display: block;
  }

  #following_btn ul li.members a {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 1em 0 3em;
    letter-spacing: 1.5px;
    background: rgb(0 0 0) url(../img/common/img_Link.svg) no-repeat right 0.9em bottom 1em;
    background-size: 1.2em;
    font-size: 1.4rem;
    line-height: 3;
  }

  #following_btn ul li.members.search a {
    background: rgb(120 114 88) url("../img/common/img_Link.svg") no-repeat right 0.9em bottom 1em;
    background-size: 1.2em;
  }

  #following_btn ul li.members a:hover {
    background-color: rgb(0 0 0 / 80%);
  }

  #following_btn ul li.members.search a:hover {
    background-color: rgb(120 114 88 / 80%);
  }
}

@media screen and (min-width: 1280px) {
  #following_btn {
    position: fixed;
    right: 10px;
    width: 3.5em;
  }

  #following_btn ul li.members a {
    background: rgb(0 0 0) url(../img/common/img_Link.svg) no-repeat right 1.1em bottom 1em;
    background-size: 1.2em;
    line-height: 3.5;
    font-size: 1.8rem;
    padding: 1em 0 3em;
  }

  #following_btn ul li.members.search a {
    background: rgb(120 114 88) url(../img/common/img_Link.svg) no-repeat right 1.1em bottom 1em;
    background-size: 1.2em;
  }
}
