@charset "UTF-8";

/* # =================================================================
   # フォント設定
   # ================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');



/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
  min-width: 320px
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}



/* # =================================================================
   # 共通カラー / font-size
   # ================================================================= */

:root {
	--color-bk: #000000;
    --color-white: #ffffff;
    --color-gray1: #333333;
    --color-gray2: #666666;
	--color-gray3: #D9D9D9;
	--color-gray4: #E6E6E6;
	--color-gray5: #f7f7f7;
	--color-gray6: #FBFBFB;
	--color-gold: #deb25a;
	--color-blue: #3271ae;
	--color-green: #4a8537;
	--color-red: #c92a22;
	--cta-easing: cubic-bezier(.2, 1, .2, 1);
	--cta-transition: .8s var(--cta-easing);
	scroll-behavior: smooth;
}

@media screen and (max-width:768px){
:root {scroll-behavior: auto;}
}



/* # =================================================================
   # 共通設定
   # ================================================================= */
body {
	font-family: 'Barlow', 'Noto Sans JP' ,sans-serif;
	font-display: swap;
	font-size: 16px;
	word-break: break-all;
	letter-spacing: 1px;
	-webkit-font-feature-settings: "palt" 1;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
	-webkit-overflow-scrolling: touch;
	color:var(--color-gray1);
	background-color:var(--color-white);
}

img, svg {
  vertical-align: middle
}

ol, ul {
  list-style: none
}

body>img {
  display: block;
  height: 0!important;
  font-size: 0
}


main {
	text-align:center;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}


/*-----セクション幅----*/
.sec-content{width:100%;margin-left:auto;margin-right:auto;vertical-align: middle;}
.sec-content1{width:85%;margin-left:auto;margin-right:auto;vertical-align: middle;max-width:1400px;}
.sec-content2{width:90%;margin-left:auto;margin-right:auto;vertical-align: middle;max-width:1400px;}


.page-space-top{padding-top:120px;}
.page-space-btm{padding-bottom:120px;}

.page-space-top-sub{padding-top:80px;}

.space-block-top30{margin-top:30px;}
.space-block-btm30{margin-bottom:30px;}

.space-block-top50{margin-top:50px;}
.space-block-btm50{margin-bottom:50px;}

.space-block-top80{margin-top:80px;}
.space-block-btm80{margin-bottom:80px;}


.copy-l{text-align:left;}
.copy-r{text-align:right;}
.copy-c{text-align:center;}

.line200{line-height:200%;}
.line150{line-height:150%;}


/*-----改行----*/
.br-pc-sp{display:block;}
.br-pc-mb{display:block;}
.br-landscape{display:block;}
.br-sp{display:none;}
.br-mb{display:none;}

/*-----ルビ----*/
ruby{
    ruby-position:under;
}

/*-----インデント----*/
p.indent-br {
	padding-left:1em;
	text-indent:-1em;
}

/*-----ページ内リンク----*/
a.anchor{
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}


/*-----------スマホ設定-----------------*/

@media screen and (max-width:1200px){
	main {border:none;}
}

@media screen and (max-width:768px){
	.sec-content1{width:90%;}
	.br-pc-sp{display:none;}
	.br-sp{display:block;}
	.page-space-top{padding-top:80px;}
	.page-space-btm{padding-bottom:80px;}
	.page-space-top-sub{padding-top:30px;}
}

@media screen and (max-width:599px){
	.br-pc-mb{display:none;}
	.br-mb{display:block;}
}

@media screen and (min-device-width: 375px) and (max-device-width: 855px) and (orientation: landscape) {
.br-landscape{display:none;}
}

/* order */
@media screen and (max-width:768px){
	.order1{order:1;}
	.order2{order:2;}
	.order3{order:3;}
	.order4{order:4;}
	.order5{order:5;}
	.order6{order:6;}
	.order7{order:7;}
	.order8{order:8;}
	.order9{order:9;}
	.order10{order:10;}
}


/* # =================================================================
   # loading
   # ================================================================= */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation img{width:120px;}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width:599px){
.loading-animation img{width:100px;}
}



   
   
/* # =================================================================
   # gsap
   # ================================================================= */
   
.trigger-area-load{opacity: 0;}
.trigger-area-load-head{opacity: 0;}
.trigger-area-feed{opacity: 0;}
.trigger-area-txt{opacity: 0;}
.trigger-area-title{opacity: 0;}


/* # =================================================================
   # gsap 画像
   # ================================================================= */
.curtain {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.curtain::after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 2;
  -webkit-transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s, width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.curtain-red::after {background-color: var(--color-red);}
.curtain-blue::after {background-color: var(--color-blue);}
.curtain-gold::after {background-color: var(--color-gold);}
.curtain-green::after {background-color: var(--color-green);}


.curtain.is-active::after {
  left: 100%;
  width: 100%;
}

.curtain img {
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}

.curtain.is-active img {
  opacity: 1;
}


/* # =================================================================
   # 共通背景
   # ================================================================= */

.bg-gray{background:var(--color-gray6);}
.bg-bk{background:var(--color-gray1);}

/* # =================================================================
   # 共通ボタン
   # ================================================================= */

.btn-L{
	margin-left:0;
	margin-right:auto;
}

.btn-R{
	margin-left:auto;
	margin-right:0;
}

.btn-C{
	margin-left:auto;
	margin-right:auto;
}

.btn-L-R{
	margin-left:0;
	margin-right:auto;
}

@media screen and (max-width:768px){
.btn-L-R{
	margin-left:auto;
	margin-right:0;
}
}

.main__btn{
	display:block;
	display:flex;
    align-items: center;
	justify-content: center;
	padding:10px 15px 10px 20px;
	background-color: var(--color-white);
	color: var(--color-gray1);
	transition: all .5s;
	text-decoration:none;
	line-height:180%;
	width:220px;
	border-radius:50px;
	box-shadow: 4px 4px 20px -5px rgb(0 0 0 / 24%);
}


.main__btn:hover{
	color: var(--color-red) !important;
	text-decoration:none;
}

.main__btn__gold{
	display:block;
	display:flex;
    align-items: center;
	justify-content: center;
	padding:10px 10px 10px 15px;
	background-color: var(--color-gold);
	color: var(--color-white);
	transition: all .5s;
	text-decoration:none;
	line-height:1;
	width:200px;
	border-radius:50px;
	margin-top:20px;
	box-shadow: 4px 4px 20px -5px rgb(0 0 0 / 24%);
}


.main__btn__gold:hover{
	color: var(--color-white) !important;
	text-decoration:none;
}

.main__btn__txt{
	flex:1;
	text-align:left;
	font-size:14px;
	font-weight:Bold;
}

.main__btn__txt_color{
	flex:1;
	text-align:left;
	font-size:14px;
	font-weight:500;
}

#follow .item__link{
	display:block;
	display:flex;
    align-items: center;
	justify-content: center;
	padding:20px 15px 20px 30px;
	background-color: var(--color-white);
	color: var(--color-gray1);
	transition: all .5s;
	text-decoration:none;
	line-height:180%;
	width:350px;
	border-radius:50px;
	box-shadow: 4px 4px 20px -5px rgb(0 0 0 / 24%);
}


#follow .item__link:hover{
	color: var(--color-gray1) !important;
	text-decoration:none;
}

#follow .item__link__txt{
	flex:1;
	text-align:center;
	font-size:18px;
	font-weight:500;
}

@media screen and (max-width:599px){
	#follow .item__link{width:90%;}
	.main__btn, .main__btn__gold{width:200px;}
}

/* # =================================================================
   # more icon
   # ================================================================= */

.c-more {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1/1;
    border-radius:50%
}

.c-more::before {
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition-property: transform, background;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius:50%
}

.c-more .more {
    transition: fill .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    display: block;
    position: relative;
    z-index: 1;
    aspect-ratio:1/1
}

.linkbox .c-more{
    width:2.5rem;
}

.linkbox .c-more .more {
    width: 1.5rem;
    fill:var(--color-red);
}

.linkbox .c-more::before {
    background-color:var(--color-white);
}

@media (hover: hover) {
	.linkbox:hover .c-more::before {
        transform: scale(1.2);
        background:var(--color-red);
    }
    .linkbox:hover .c-more .more {
       fill:var(--color-white);
    }
}

@media screen and (max-width:599px){
	.linkbox .c-more{width:2.2rem;}
	.linkbox .c-more .more {width: 1.5rem;}
}


/* # =================================================================
   # 丸矢印
   # ================================================================= */


.c-arw {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 1/1;
    border-radius:50%
}

.c-arw::before {
    transition: all .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    transition-property: transform, background;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius:50%
}

.c-arw .arw {
    transition: fill .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    display: block;
    position: relative;
    z-index: 1;
    aspect-ratio:1/1
}

@media (hover: hover) {
    a:hover .c-arw .arw--r {
        animation:arw-r .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s
    }
	.linkbox:hover .c-arw .arw--r {
        animation:arw-r .4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s
    }
}

@media (hover: hover) {
    #follow .item__link:hover .c-arw::before {
        transform: scale(1.5);
        background:#c92a22
    }

    #follow .item__link:hover .c-arw .arw {
        fill:var(--color-white);
    }
	
	.main__btn:hover .c-arw::before {
        transform: scale(1.2);
        background:var(--color-red);
    }

    .main__btn:hover .c-arw .arw {
        fill:var(--color-white);
    }
	
	.main__btn__gold:hover .c-arw::before {
        transform: scale(1.2);
        background:var(--color-white);
    }

    .main__btn__gold:hover .c-arw .arw {
        fill:var(--color-gold);
    }
	
	.linkbox:hover .c-arw::before {
        transform: scale(1.2);
        background:var(--color-red);
    }

    .linkbox:hover .c-arw .arw {
       fill:var(--color-white);
    }

}

#follow .c-arw {
    width:2rem
}

#follow .c-arw::before {
    border:#c92a22 solid 1px
}

#follow .c-arw .arw {
    width: 0.8rem;
    fill:#c92a22
}

.main__btn .c-arw {
    width:2rem
}

.main__btn .c-arw::before {
    border:#c92a22 solid 1px
}

.main__btn .c-arw .arw {
    width: 0.8rem;
    fill:#c92a22
}

.main__btn__gold .c-arw {
   width:1.5rem
}

.main__btn__gold .c-arw::before {
    border:solid 1px var(--color-white)
}

.main__btn__gold .c-arw .arw {
    width: 0.6rem;
    fill:var(--color-white);
}

.news__arow .c-arw {
    width:2.5rem
}

.news__arow .c-arw::before {
    border:#c92a22 solid 1px
}

.news__arow .c-arw .arw {
    width: 0.8rem;
	fill:#c92a22
}

.linkbox .c-arw{
    width:2.5rem;
}

.linkbox .c-arw .arw {
    width: 1rem;
    fill:var(--color-red);
}

.linkbox .c-arw::before {
    background-color:var(--color-white);
}

@media screen and (max-width:599px){
	.linkbox .c-arw{width:2rem;}
	.linkbox .c-arw .arw {width: 0.8rem;}
}

.index__arow .c-arw {
    width:2.5rem
}

.index__arow .c-arw::before {
    border:#c92a22 solid 1px
}

.index__arow .c-arw .arw {
    width: 1rem;
    fill:#c92a22
}

@keyframes arw-r {
    0% {
        transform: translateX(0);
        opacity:1
    }

    50% {
        transform: translateX(100%);
        opacity:0
    }

    50.1% {
        transform: translateX(-100%);
        opacity:0
    }

    100% {
        transform: translateX(0);
        opacity:1
    }
}



/* # =================================================================
   # header
   # ================================================================= */

header{
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

.win-out::after{
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-left: 6px;
	background-image: url(../img/win_out.svg);
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}

.header-pc{ display:block; position:fixed; top:0; left:0; z-index:100; width:100%; }
.header-sp{ display:none; }

/*-----------スマホ設定-----------------*/
@media screen and (max-width:800px){
.header-pc{display:none;}
.header-sp{ display:block; }
}


.head-menu{
    display:flex;
    align-items: center;
	justify-content: center;
	height:110px;
}


.head-menu-logo{text-align:left;padding-left:30px;}	
.head-menu-logo img{width:50px;}



/*-----------bgがある時-----------------*/
.head-nav-box {
    flex:1;
	text-align:right;
	padding-right:30px;
}

.head-nav-linkbox-top ul {
    padding: 0px;
    list-style-type: none;
	display:flex;
	align-items: center;
	justify-content: flex-end;
	column-gap:.5em;
	margin:15px 0 25px 0;
}

.head-nav-linkbox-top li a{
	text-decoration:none;
	font-size: clamp(8px, 1.2vw, 14px);
	font-weight:Bold;
	color:var(--color-white);
}

.head-nav-linkbox-btm ul {
    padding: 0px;
    list-style-type: none;
	display:flex;
	align-items: center;
	justify-content: flex-end;
	column-gap:1.2em;
}

@media screen and (max-width:900px){
	.head-nav-linkbox-btm ul {column-gap:.7em;}
}


.head-nav-linkbox-btm li {
	font-size: clamp(8px, 1.2vw, 14px);
	font-weight:Bold;
}

.head-nav-linkbox-btm li a, .head-nav1 li p{
	cursor:pointer;
	color:var(--color-gray1);
	text-decoration:none;
	position: relative;
	display: inline-block;
	transition: all .3s;
}

.head-nav-linkbox-btm li a:hover, .head-nav1 li p:hover{
	color:var(--color-gold);
}


.head-nav-contact{
	background-image: url(../img/i_mail.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: left 15px center;
	background-color:var(--color-red);
	padding:8px 20px 8px 40px;
	border-radius:50px;
	transition: all .3s;
}


.head-nav-contact:hover{
	background:var(--color-gold);
	background-image: url(../img/i_mail.svg);
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: left 15px center;
}

.head-nav-news{
	background-color:var(--color-red);
	padding:8px 20px;
	border-radius:50px;
	transition: all .3s;
}


.head-nav-news:hover{
	background:var(--color-gold);
}





/*-----------hoverで文字を上下-----------------*/
.list{
    color:var(--color-gray1);
}
.list a{
    display: block;
    overflow: hidden;/*はみ出た要素を隠す*/
    letter-spacing: .1em;/*文字間を広げて余裕のある感じに*/
}
.list a.is-active{
    color:var(--color-red);
}
.list a:hover span{
    color:var(--color-red);
}
.list a.is-active{
    cursor: initial;
}
/* display:flexとalign-items:centerは中身の高さに合わせるために記述*/
.text-wrap{
    position: relative;
    display: flex;
    align-items: center;
}
.after{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.before{
    display: flex;
    align-items: center;
}
.before span,
.after span{
    line-height: 1.1;
    transition: color .3s ease-out;/*ease-outで余裕のある動きに*/
}
.after span{
    transform: translateY(100%);
}


/*-----------sp ロゴ-----------------*/

.head-menu-logo-sp{display:none;}
.head-menu-logo-sp img{width: 40px;}


@media screen and (max-width:768px){
.head-menu-logo-sp{display:block;position:absolute;top:20px;left:20px;z-index:2;}
}





/* # =================================================================
   # footer
   # ================================================================= */
   
footer {
	padding: 80px 0 100px 0;
	font-size: 14px;
	color:var(--color-gray1);
}

.flex-footer{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

.flex-footer-box-L{
	width:20%;
}
.flex-footer-box-R{
	width:70%;
}

.flex-footer-box-link{
	width:48%;
}


.flex-footer-box-R a{
	color:var(--color-gray1);
	text-decoration:none;
	transition: all .5s;
}

.flex-footer-box-R a:hover{
	color:var(--color-red);
	text-decoration:none;
}


.footer-logo{text-align:center;margin-bottom:30px;}
.footer-logo img{width:110px;}

.footer-txt{
	line-height:180%;
	text-align:left;
}

.flex-footer-box-R ul{list-style-type: none;padding-left:25px;}
.flex-footer-box-R li{font-weight:Bold;padding-bottom:20px;}
.flex-footer-box-R li p{display:block;padding:15px 0 0 15px;font-size:14px;line-height:1;font-weight:normal;color:var(--color-gray2);}
.footer-li-border1{border-top:solid 0px var(--color-gray3);}
.footer-li-border2{padding-top:25px;margin-top:10px;border-top:solid 1px var(--color-gray3);}


.footer-copy{
	margin-top:60px;
	font-size:12px;
	text-align:right;
}

/*-----------スマホ設定-----------------*/
@media screen and (max-width:768px){
	.flex-footer-box-L, .flex-footer-box-R{width:100%;}
	.flex-footer-box-link{width:100%;}
	.flex-footer-box-R ul{padding-left:0;}
	.flex-footer-box-R li p{display:none;}
	.footer-logo{text-align:center;}
	.footer-logo img{width:100px;}
	.footer-li-border1{padding-top:25px;border-top:solid 1px var(--color-gray3);margin-top:50px;}
	.footer-copy{text-align:center;}
}


/* # =================================================================
   # CTA
   # ================================================================= */

#follow {
	width: 100%;
	background:var(--color-red);
	background-image: url(../img/follow_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius:0 0 2.5rem 2.5rem;
}

#follow .page-block{
	padding:80px 0 80px 0;
}

#follow .main-title{
	font-size:80px;
	line-height:80%;
	text-transform:uppercase;
	margin-bottom:30px;
	font-weight:400;
}

#follow .main-title span{
	display:block;
	font-size:16px;
}



#follow p{
	font-size:16px;
	line-height:180%;
	color: var(--color-white);
	text-align:center;
	margin-top:30px;
}



@media screen and (max-width:768px){
	#follow .page-block{padding:50px 0 50px 0;}
	#follow .main-title{font-size:60px;margin-bottom:20px;}
}

@media screen and (max-width:599px){
	#follow .main-title{font-size:40px;}
}

/* # =================================================================
   # 画像loop
   # ================================================================= */

/* CSS: 無限ループアニメーション */
.loop_wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.loop_wrap_h-txt{height: 20vw;}
.loop_wrap_h-img{height: 35vw;}

.loop {
  display: flex;
  width: auto; /* クローン後の幅を自動調整 */
}

.loop img {
  width: auto;
  height: 100%;
}

@keyframes loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media screen and (max-width: 768px) {
.loop_wrap_h-txt{height: 30vw;}
.loop_wrap_h-img{height: 50vw;}
}



/* # =================================================================
   # div link
   # ================================================================= */

.linkbox {
    position: relative;
	cursor: pointer;
}

.linkbox .divlink{
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
	z-index:2;
}

/* # =================================================================
   # ぱんくず
   # ================================================================= */

.Breadcrumb {
	font-family: 'Noto Sans JP', sans-serif;
	font-size:12px;
	padding-bottom: 1em;
	border-bottom:solid 1px var(--color-gray4);
}
.Breadcrumb-ListGroup {
	display: flex;
	align-items:center;
	justify-content: flex-end;
	margin-right: auto;
	margin-left:auto;
	margin-top:5px;
	margin-bottom:5px;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
	color:var(--color-red);
	text-decoration:none;
}
.Breadcrumb-ListGroup > * + * {
	margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
	content: ">";
	margin-left: 0.75em;
	margin-right: 0.75em;
}

.Breadcrumb a{
	color:var(--color-gray1);
}


@media screen and (max-width:768px){
	.Breadcrumb {
		overflow-x: scroll;
		word-break: keep-all;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.Breadcrumb::-webkit-scrollbar{display:none;}
	.Breadcrumb-ListGroup {width:100%;justify-content: flex-start;}
}

/* # =================================================================
   # contact
   # ================================================================= */


#contact .page-block{
	padding:0 0 100px 0;
}


#contact .head-title{
	font-size:40px;
	line-height:1;
	text-transform: uppercase;
	margin-bottom:50px;
	font-weight:300;
	text-align:center;
}

#contact .head-title span{
	display:block;
	font-size:14px;
	font-weight:700;
	margin-top:10px;
	color:var(--color-gold);
	text-transform:uppercase;
}

/*-----------タブ-----------------*/

#contact .tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#contact .tab_label {
  line-height: 1.2em;
  padding:10px 0;
  color: var(--color-white);
  background:var(--color-gray3);
  font-size:16px;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 0 0 auto;
  width: 200px;
}



#contact .tab_label:not(:last-of-type) {
  margin-right: 5px;
}

#contact .tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--color-gray6);
  border-radius:1em;
  margin-top: -1px;
}


/* アクティブタブ */
#contact .tab_active:checked + .tab_label {
  color: var(--color-white);
  background-color: var(--color-gold);
}

#contact .tab_active:checked + .tab_label + .tab_content {
  height: auto;
  overflow: auto;
  padding: 50px 0;
}

/* ラジオボタン非表示 */
#contact .tab_active {
  display: none;
}




/*----------- cta button -----------------*/


#contact .flex{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
	align-items:center;
	justify-content: center;
}



@media screen and (max-width:900px){
	#contact .page-block{padding:0 0 80px 0;}
	#contact .follow-txt{width:90%;}
}

@media screen and (max-width:768px){
	#contact .cta-title{font-size:30px;line-height:1.2;}
	#contact .cta-title span{font-size:18px;}	
	#contact .tab_label {width: 40%;font-size:14px;padding:10px 0;}
}

@media screen and (max-width:599px){
	#contact .page-block{padding:0 0 50px 0;}
	#contact .follow-txt{font-size:16px;}
	#contact .head-title{font-size:30px;}
}


/* # =================================================================
   # form
   # ================================================================= */
table.form-tbl {
  border-collapse: collapse;
  width: 100%;
}
table.form-tbl th,
table.form-tbl td {
  padding: 10px;
  border: 1px solid var(--color-gray4);
}
table.form-tbl th {
  background-color: #f5f2e4;
  text-align: center;
  vertical-align:middle;
  width: 30%;
}

table.form-tbl td {
  text-align: left;
  background-color: var(--color-white);
}

table.form-tbl th p,
table.form-tbl td p {
	font-size:14px;
	line-height:1.5em;
}

table.form-tbl th p {
	padding:0;
}

table.form-tbl td p {
	padding:5px;
}


.form-hissu{
	display: inline-block;
	font-size:12px;
	background-color: var(--color-red);
	color:var(--color-white);
	padding:0 5px;
	border-radius: 5px;
	margin-left:5px;
}

.copy-12{font-size:12px;}


.forbu{width:200px;margin:0 auto;}



@media screen and (max-width: 768px) {
  table.form-tbl {
   border-top: 1px solid var(--color-gray4);
  }
  table.form-tbl td {
    display: block;
    text-align: left;
  }
  table.form-tbl th {
    display: block;
    border-top: none;
    border-bottom: none;
    width: 100%;
  }
}

/* # =================================================================
   # wp form
   # ================================================================= */

.wpcf7{border:0;padding:0;margin:0;width:100%;}

.wpcf7 p {
    margin-bottom: 0;
    padding: 0;
}

.wpcf7 .wpcf7-list-item input[type=checkbox] {
	width: auto !important;
	display: inline-block !important;
}
.wpcf7 .wpcf7-list-item input[type=radio] {
	width: auto !important;
	display: inline-block !important;
}

.wpcf7 p {
    margin-bottom: 0;
    padding: 0;
}

.wpcf7 .menupage-box p{font-size:14px;line-height:2em;}

.wpcf7 .form-title p{
	font-size:20px;
	line-height:1.5em;
	font-weight:bold;
	text-align:left;
	margin-bottom:30px;
	padding-bottom:20px;
	border-bottom:solid 1px var(--color-gray4);
}

@media screen and (max-width:599px){
	.wpcf7 .form-title p{font-size:18px;}
}

.wpcf7 input, .wpcf7 textarea { font-size:16px;border: 1px solid #ccc; line-height: 1.2; padding: 8px; width: 100%; height: auto;}

.wpcf7 .wpcf7-submit{width:200px;padding:15px;background-color:var(--color-gold);}


/* # =================================================================
   # policy
   # ================================================================= */

/* policy scroll box */
.policy-box {
	width:100%;
	margin-top: 25px;
	margin-bottom: 50px;
}
.policy-box .scrollbox {
	overflow-y: scroll;
	height: 300px;
	padding: 10px 20px 10px 20px;
	background-color: var(--color-white);
	border:solid 1px var(--color-gray3);
}
.policy-box .scrollbox::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
.policy-box .scrollbox::-webkit-scrollbar-track {
	background: rgba(255,255,255,0.1);
	border-radius: 3px;
}
.policy-box .scrollbox::-webkit-scrollbar-thumb {
	background: var(--color-gray1);
	border-radius: 3px;
}

.policy-box .scrollbox .txt-box span{font-weight:Bold;color:var(--color-gray1);}



.poricy-txt-box{
	line-height:2rem;
	text-align:left;
}

.poricy-txt-box p{font-size:14px;}

.poricy-txt-box span{
	display:block;
	font-size:18px;
	font-weight:Bold;
	line-height:1;
	text-align:left;
	padding:35px 0 15px 0;
}

.poricy-ul{
	list-style: square;
	text-align:left;
	padding-left:20px;
	margin-top:10px;
}

.poricy-ol{
	list-style-type: decimal;
	text-align:left;
	padding-left:20px;
	margin-top:10px;
}
.poricy-ul li{padding-bottom:5px;}
.poricy-ol li{padding-bottom:5px;}



/* # =================================================================
   # thanks
   # ================================================================= */

.thanks-txt1{
	font-size:25px;
	font-weight:700;
	line-height:180%;
	color:var(--color-gold);
	padding-bottom:60px;
	text-align:left;
}

.thanks-txt2{
	line-height:180%;
	text-align:left;
}

.thanks-txt2 span{color:var(--color-red);}