@charset "UTF-8";
/*==========================================
 全デバイス共通［common］
　・ヘッダー
　・フッター
===========================================*/ 
:root {
  --main-color: #AD884F;
  --sub-color: #DBBF23;
  --text-color: #fff;
  --bg-color: #4B4941;
  --line-color: #666;
}
body {
  width: 100%;
  color: var(--text-color);
  font-size: 16px;
  font-family: "Noto Sans JP";
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: .8px;
  background: #111;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a:link {
  color: var(--text-color);
  transition-duration: .3s;
  text-decoration: none;
}
a:hover,a:visited:hover {
  color: var(--sub-color);
}

/*フォント*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/NotoSansJP-Light.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/NotoSansJP-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/NotoSansJP-Bold.woff') format('woff');
}
/*視覚的には非表示にしつつ、スクリーンリーダでは読む*/
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
/*------------
ボタンのスタイル
------------*/
.btm {
  margin: 2em 0;
  width: 220px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.btm a {
  padding: .75em 1em;
  color: #222;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-content: center;
  text-decoration: underline;
  position: relative;
}
.btm a:before, .btm a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}
.btm a:before {
  background: #fff;
  z-index: -1;
}
.btm a:after {
  background-color: var(--sub-color);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
  z-index: -1;
}
.btm a:hover::after {
  width: 100%;
  transform-origin: left;
  transform: scaleX(1);
}
.btm.btm-wh a {
  color: var(--main-color);
  background: #fff;
}
.btm.btm-wh a:hover {
  color: var(--sub-color);
}
.btm.btm-center {
  margin: 2em auto;
}
/*------------
流れるエフェクト
------------*/
.effect-wrap{
	opacity: 0;
}
.flowing-animation {
  overflow: hidden;
  position: relative;
	opacity: 1;
}
.flowing-animation:before {
  animation: flowing-animation 1s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #111;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@keyframes flowing-animation {
  100% {
    transform: translateX(100%);
  }
}
/*==========================================
 PC［1001px~］
===========================================*/
.sp_on, .tb_on {
  display: none;
}
/*------------
	 テキスト関連
------------*/
.text_small {
  font-size: 40%;
}
.text_bold {
  font-weight: bold;
}
.text_wh {
  color: #fff;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*------------
 header
------------*/
.headerWrap {
  margin: 40px auto;
  width: 90%;
  z-index: 9999;
  position: absolute;
  right: 0;
  left: 0;
  transition-duration: .3s;
}
.headerWrap.fixed {
  margin: 0 auto;
  padding: .5em 1em;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
}
.headerInner {
  align-content: center;
  align-items: center;
}
.logoArea a {
  width: 100%;
  height: 100%;
  display: block;
}
.logoArea img {
  width: 80px;
  height: auto;
  pointer-events: auto;
  z-index: 1;
}
/*===global-nav===*/
.global-nav {
  margin-left: auto;
  transition: 1s;
}
.global-nav .nav-list {
  display: flex;
  justify-content: end;
}
.global-nav .nav-list .nav-item a {
  height: 100%;
  display: flex;
  padding: 0 clamp(.5em, 6vw, 1em);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.25;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.global-nav .nav-list .nav-item a::before, .sub-nav-list .nav-item.member a::before {
  content: attr(data-desc);
  font-size: 20px;
  margin-bottom: 2px;
}
/*多階層*/
.global-nav .nav-list .nav-item.parent > a {
  /*pointer-events: none;*/
  padding-right: 30px;
  position: relative;
}
.global-nav .nav-list .nav-item.parent > a::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 3px var(--line-color);
  border-right: solid 3px var(--line-color);
  transform: rotate(135deg);
  position: absolute;
  top: 30%;
  right: 13px;
  transition-duration: .3s;
}
/*WEB入会*/
.sub-nav-list .nav-item a {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sub-nav-list .nav-item.member a {
  margin: 0 0 0 .5em;
  padding: .35em 1.5em;
  color: #fff;
  background: var(--main-color);
  font-size: 16px;
	position: relative;	
}
.sub-nav-list .nav-item.member a::before {
  font-size: 11px;
}
.sub-nav-list .nav-item.member a::after {
	content: '';
	width: 10px;
	height: 10px;
	background: url("images/icon-blank-wh.svg");
	position: absolute;
	right: .5em;
	bottom: .35em;
}

.sub-nav-list .nav-item.member a:hover {
  color: #fff;
  background: var(--sub-color);
}
/*カレント*/
.global-nav .nav-list .nav-item.current_page_parent > a,
.global-nav .nav-list .nav-item.current_page_item > a{
  color: var(--main-color);
} 
/* SP */
#nav-toggle {
  display: none;
}
/* 印刷 */
@media print {
  .nav-item_sub {
    display: none;
  }
}
@media screen and (min-width: 1023px) {
  /*PCに反映するスタイル*/
  .global-nav .nav-list .nav-item.current > a {
    background: var(--sub-color);
  }
  .global-nav .nav-list .nav-item.current.mail:hover > a, .global-nav .nav-list .nav-item:hover > a {
    color: var(--sub-color);
    position: relative;
  }
  /* サブメニュー*/
  .nav-item.parent {
    position: relative;
  }
  .nav-item_sub {
    width: 100%;
    position: absolute;
    top: 35px;
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    transition-duration: .3s;
    transform: scale(0.7);
  }
  .nav-item_sub .inner {
    display: flex;
    margin: 1em auto 0;
    padding: 0 1em;
    width: 100%;
    background: rgba(0, 0, 0, .7);
  }
  .nav-item_sub .inner ul {
    padding: .5em 0;
    width: 100%;
  }
  .global-nav .nav-list .nav-item_sub a {
    padding: .5em .75em;
    position: relative;
    color: #fff;
    font-weight: normal;
    justify-content: center;
  }
  .global-nav .nav-list .nav-item_sub ul li a:hover {
    color: var(--sub-color);
  }
  .nav-item:hover .nav-item_sub {
    /* display: block;*/
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
}
/*------------
 コンテンツ
------------*/
.inner {
  margin: 0 auto;
  width: min(90%, 1000px);
}
main :where(h2, h3, h4, h5, h6) {
  margin: 0 auto 1em;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.25;
  color: #fff;
}
main h3 {
  font-size: clamp(25px, 3vw, 35px);
}
main h4 {
  font-size: clamp(20px, 3vw, 30px);
}
main h5 {
  font-size: clamp(18px, 3vw, 25px);
}
main h6 {
  font-size: clamp(16px, 3vw, 20px);
}
section p {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
}
/*--ボックス--*/
.box {
  padding: 2em;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  background: #fff;
  border-radius: 5px;
}
.col_2 > :is(div, li) {
  margin-bottom: 1em;
  width: 48%;
}
.col_3 > :is(div, li) {
  margin-bottom: 1em;
  width: 32%;
}
/*------------
	footer
------------*/
#footer {
  position: relative;
}
/*accessArea*/
#accessArea .inner {
  padding: 100px 0;
}
.addressArea {
  margin: 0 1em 1em 0;
}
#accessArea h2 {
  margin-bottom: 50px;
}
#accessArea h2 img {
  width: min(100%, 420px);
  height: auto;
}
#accessArea address {
  font-style: normal;
  line-height: 1.5;
}
#accessArea address p {
  margin-bottom: 10px;
}
address .googlemap {
  margin-left: 1em;
  text-decoration: underline;
}
address .googlemap::before {
  content: url("images/icon-pin.svg");
  margin-right: 10px;
}
#accessArea .tel {
  font-size: 35px;
  font-weight: bold;
}
.mapArea {
  width: 300px;
  height: 280px;
  border: solid 1px var(--main-color);
}
.mapArea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*footerNavArea*/
#footerNavArea {
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
}
.footerlogoArea {
  margin: 100px auto;
}
.footerlogoArea img {
  margin: 0 auto 35px;
  width: 220px;
  height: auto;
  display: block;
}
.footerlogoArea p {
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.5;
}
.snsList {
  justify-content: center;
}
.snsList img {
  width: 30px;
  height: 30px;
}
.snsList a {
  display: block;
}
#footerNavArea .inner {
  width: min(90%, 600px);
  padding: 0 0 100px;
}
.footerMenu li {
  margin: 1em 0;
}
.footerMenu a {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--text-color);
  transition-duration: .3s;
}
.footerMenu a:hover {
  opacity: .7;
}
.footerMenu ul {
  margin: 1em 0;
}
.footerMenu ul li {
  margin: 1em;
}
/*copyArea*/
.copyArea {
  padding: 30px 1em;
}
.copyArea small {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.copyArea span {
  font-size: 18px;
}
/*-------
 page top
-------*/
#pagetop {
  width: 50px;
  height: 50px;
  background: var(--main-color);
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 900;
}
#pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  position: relative;
}
#pagetop a:after {
  content: '';
  margin: 0 auto;
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition-duration: .3s;
}
/*==========================================
 tb［769px-1024px以下］
===========================================*/
@media screen and (max-width: 1024px) {
  .tb_on {
    display: block;
  }
  .tb_none {
    display: none;
  }
  /*------------
	 header
	------------*/
	body.open {
	  height: 100%;
	  overflow: hidden;
	}
	.headerWrap {
    margin-top: 1em;
  }
  /* nav-toggle */
  #nav-toggle {
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    width: 90px;
    cursor: pointer;
    display: inline-block;
    z-index: 9999;
    pointer-events: auto;
    border-radius: 0 0 0 10px;
    transition-duration: .3s;
  }
  #nav-toggle:after {
    margin: 0 auto;
    content: 'MENU';
    font-size: 11px;
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 9999;
    font-weight: bold;
    color: #fff;
  }
  .fixed #nav-toggle:after {
    bottom: 30px;
  }
  #nav-toggle span {
    margin: 0 auto;
    width: 50%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    background: #fff;
    transition: .35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 25px;
  }
  #nav-toggle span:nth-child(2) {
    top: 40px;
  }
  .fixed #nav-toggle span:nth-child(1) {
    top: 20px;
  }
  .fixed #nav-toggle span:nth-child(2) {
    top: 30px;
  }
  /* #nav-toggle close */
  .open #nav-toggle span:nth-child(1) {
    top: 30px;
    transform: rotate(25deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 30px;
    transform: rotate(-25deg);
  }
  .open .fixed #nav-toggle span:nth-child(1) {
    transform: rotate(15deg);
  }
  .open .fixed #nav-toggle span:nth-child(2) {
    transform: rotate(-15deg);
  }
  .global-nav {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    background-color: inherit;
  }
  .nav-list {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .global-nav .nav-list {
    width: 100%;
    background: rgba(0, 0, 0, .8);
    display: none;
    right: 0;
    padding: 100px 5% 10px;
    position: absolute;
    pointer-events: auto;
    backdrop-filter: blur(5px);
  }
  /*アニメーション*/
  .open .nav-list .nav-item {
    transform: translateY(0);
    position: relative;
    width: 100%;
  }
  .open .nav-list >.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--line-color);
    /*アニメーションの指定*/
    animation: boredrline 1s ease;
    transform-origin: left top; /*左上基点*/
  }
  @keyframes boredrline {
    0% {
      transform: scale(0, 0); /*X方向0、Y方向1*/
    }
    100% {
      transform: scale(1, 1); /*X方向にスケール拡大*/
    }
  }
  .nav-list .nav-item:nth-child(2) {
    transition-delay: .15s;
  }
  .nav-list .nav-item:nth-child(3) {
    transition-delay: .25s;
  }
  .nav-list .nav-item:nth-child(4) {
    transition-delay: .35s;
  }
  .nav-list .nav-item:nth-child(5) {
    transition-delay: .45s;
  }
  .nav-list .nav-item:nth-child(6) {
    margin-top: 1em;
    transition-delay: .45s;
  }
  /*ENDアニメーション*/
  .global-nav .nav-list .nav-item.parent > a:after {
    top: 40%;
	  right: -20%;
	  pointer-events: none;
  }
	 .global-nav .nav-list .nav-item.parent > a {
   width: 80%;
  }
  .global-nav .nav-list .nav-item a {
    padding: .5em 1em 1.25em!important;
    align-items: flex-start;
    position: relative;
  }
  .global-nav .nav-list .nav-item a::before {
    font-size: clamp(1.563rem, 1.136rem + 2.131vw, 2.5rem);
  }
  /* カレント */
  .global-nav .nav-list .nav-item a.current {
    color: var(--sub-color);
  }
  .global-nav .nav-list .nav-item.parent > a.open:after {
    transform: rotate(-45deg);
  }
  /*item_sub*/
  .nav-item_sub {
    display: none;
  }
  .global-nav .nav-list .nav-item .nav-item_sub ul li a {
    padding: .5em 0;
    font-size: clamp(1rem, 0.886rem + 0.568vw, 1.25rem);
  }
  .global-nav .nav-list .nav-item .nav-item_sub ul li:last-child a {
    padding-bottom: 1em;
  }
  /*WEB入会*/
  .sub-nav-list {
    margin-right: 50px;
  }
  .global-nav .nav-item.member {
    margin: 2em 0 0 0;
    width: 100%;
    display: inline-block;
    background: var(--main-color);
	  position: relative;
  }
	.global-nav .nav-item.member::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url("images/icon-blank-wh.svg");
	position: absolute;
	right: .5em;
	bottom: .35em;
}
  .global-nav .nav-item.member a {
    color: #fff;
  }
  /*------------
		 コンテンツ
	------------*/
  .col_2 > :is(div, li) {
    width: 100%;
  }
  .col_3 > :is(div, li) {
    width: 48%;
  }
  
}
/*==========================================
 sp［540px以下］
===========================================*/
@media screen and (max-width: 540px) {
  .sp_on {
    display: block;
  }
  .pc_on {
    display: none;
  }
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }
  input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]:focus, input[type="button"]:focus {
    outline-offset: -2px;
  }
  /*------------
		 header
	------------*/
	.headerWrap{
		margin: 10px auto;
		position: static;
	}
	#nav-toggle{
		height: 70px;
		width: 80px;
	}
	#nav-toggle span:nth-child(1) {
	  top: 20px;
	}
	#nav-toggle span:nth-child(2) {
	  top: 35px;
	}
	.fixed #nav-toggle::after {
 	 bottom: 20px;
	}
  
  /*------------
		footer
	------------*/
	/*accessArea*/
	#accessArea .inner{
	padding: 70px 0;
	}
	.addressArea{
	margin: 0;
	width: 100%;
	}
	#accessArea h2 img {
	width: 80%;
	}
	#accessArea address p {
	line-height: 1.8;
	}
	address .googlemap{
	margin-left: 0;
	}
	address .googlemap::before {
	position: relative;
	top: 5px;
	}
	#accessArea .tel{
	margin: 0 0 30px;
	display: block;
	}
	.mapArea{
	width: 100%;
	height: 100%;
	}
	.footerlogoArea {
	  margin: 100px auto;
	}
	/*footerNavArea*/
	.footerlogoArea {
	  margin: 70px auto;
	}
	#footerNavArea .inner{
		padding: 0 0 50px;
	}
	#footerNavArea .col_3 > div{
		margin: 0;
	}
	.copyArea {
	  padding: 20px 1em;
	}
}