@charset "utf-8";
.resize{
	position:fixed;
	left:10px;
	bottom:15%;
	color:#555;
	z-index:1;
}
/* -------------------------------------------------------------------
 style info :共通
------------------------------------------------------------------- */
:root{
	--height:1.4;
	--spacing:1.5px;
	--w500:500;
	--w700:700;
	--base-color:#191919;
	--fontbase_sp:.9rem;
	--fontbase_pc:1rem;
}

body{
	background: #FFE100;
	color: var(--base-color);
	font-family: sans-serif;
	font-feature-settings: "palt";
	text-size-adjust: 100%;
	font-size: 62.5%;
	min-height:100vh;
	-webkit-print-color-adjust: exact;
	font-family: sans-serif;
}

/* -------------------------------------------------------------------
画像指定
------------------------------------------------------------------- */
img {max-width: 100%;}
/* -------------------------------------------------------------------
改行指定
------------------------------------------------------------------- */
.pcbreak{display:block;}
.spbreak{display:none;}
@media screen and (max-width:768px){
.pcbreak{display:none;}
.spbreak{display:block;}
}
.indent-block{
	display:block;
}
/* -------------------------------------------------------------------
エフェクト
------------------------------------------------------------------- */
.hover-on a{
	-webkit-transition:opacity ease 0.3s;
	-moz-transition:opacity ease 0.3s;
	transition:opacity ease 0.3s;
}
.hover-on a:hover{
	opacity: 0.6 !important;
	-khtml-opacity: 0.6;
	-moz-opacity: 0.6;
}


/* -------------------------------------------------------------------
共通のBODY
------------------------------------------------------------------- */
.cmn-body{
	width:min(93%, 1000px);
	margin: 0 auto;
}
.left-and-right{
	width:min(100%, 1000px);
	margin: 0 auto;
}

@media screen and (max-width:768px){
.left-and-right{
	margin: 0;
	}
}
/* -------------------------------------------------------------------
共通のh2
------------------------------------------------------------------- */
.base-title_h2{
	text-align:center;
	font-size:clamp(16px, 5vw, 36px);
	letter-spacing:var(--spacing);
	font-weight:700;
	position:relative;
	padding:20px 0;
}
.base-title_h2_white{
	background:#fff;
	color:#222;
	border-top:5px solid #000;
}
.base-title_h2_black{
	background:#222;
	color:#fff;
}
/* -------------------------------------------------------------------
共通のh3
------------------------------------------------------------------- */
.base-title_h3{
	text-align:center;
	font-size:clamp(18px, 6vw, 32px);
	letter-spacing:var(--spacing);
	position:relative;
	font-weight:700;
}
.h3-border:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}
/* -------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------- */
header{
	background:#FFE100;
	padding:10px 0;
}
header ul{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
@media screen and (max-width:768px){
header ul{
	justify-content:start;
	gap:0 20px;
	}
}

header ul img{
	max-width:250px;
}
@media screen and (max-width:768px){
header ul img{
	max-width:130px;
	}
}

/* -------------------------------------------------------------------
フッター
------------------------------------------------------------------- */
.copyright{
	background:#FFDF00;
	padding:7px 0;
	text-align:center;
	font-size:.9rem;
	font-weight:500;
}
footer{
	border-top:1px solid #222;
	padding:30px 0;
	letter-spacing:var(--spacing);
	position:relative;
	background:#fff;
}
.footer-content{
	width:min(93%, 1000px);
	margin: 0 auto;
	display:grid;
	grid-template-columns:1.5fr 1fr;
	align-items:center;
	gap:0 30px;
}


.footer-content .access{
	border-right:1px solid #222;
	padding:0 20px 0px 0;
}

@media screen and (max-width:768px){
.footer-content .access{
	border-right:none;
	border-bottom:1px solid #222;
	padding:0 0 40px;
	}
}

@media screen and (max-width:768px){
.footer-content{
	display:grid;
	grid-template-columns:1fr;
	gap:40px 0;
	}
}

.footer-content .ft-logo{
	margin:0 0 15px;
}
.footer-content .company dt{
	font-size:1.1rem;
	margin:0 0 0px;
}
.footer-content .company dd{font-size:.9rem;}
.footer-content ul{
	display:flex;
	gap:0 20px;
	align-items:center;
	margin:20px 0 0;
}
@media screen and (max-width:768px){
.footer-content ul{
	display:grid;
	grid-template-columns:1fr;
	gap:10px;
	}
}

.footer-content a{
	text-decoration:underline;
	color:var(--basecolor);
}
.footer-content .jcb__link a{
	font-size:.8rem;
	background:url(../../assets/img/cmn/arrow_blank.png) no-repeat 100% 50%;
	background-size:10px;
	padding-right:15px;
}
.footer-content .card dt{font-size:1rem;}
.footer-content .card dd{
	margin:40px 0 0;
	font-size:.8rem;
}
.footer-content .card dt a{
	background:url(../../assets/img/cmn/arrow_blank.png) no-repeat 100% 50%;
	background-size:10px;
	padding-right:15px;
}
/* -------------------------------------------------------------------
TOPへ戻る指定
------------------------------------------------------------------- */
.pagetop a{
	position:absolute;
	right:0px;
	bottom:0px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: #000;
}
.pagetop .arrow-top{
	width: 10px;
	height: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
	margin-top: 5px;
}
@media screen and (min-width:768px){
.pagetop a{
	width: 50px;
	height: 50px;
	}
.pagetop .arrow-top{
	width: 13px;
	height: 13px;
	}
}
/* -------------------------------------------------------------------
グロナビ
------------------------------------------------------------------- */
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#000;
	  background: linear-gradient(-45deg, #FFE100 0%, #FFE100 10%, #000 10%, #000 100%);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
@media screen and (max-width:768px){
#g-nav ul {
	width:95%;
	}
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;

}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size:clamp(15px,3vw,18px);
}
#g-nav li a:hover{
	text-decoration:underline;

}
.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_u:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width:768px){
.arrow_u:before {
  right: 10px;

	}

}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:18px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
@media screen and (max-width:768px){
.openbtn{
	top:3px;
	right: 5px;
	}
}

/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;

}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background:#fff;

}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background:#fff;
}

/* -------------------------------------------------------------------
吸着ボタン
------------------------------------------------------------------- */
.fixed-body {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 100;
  pointer-events: none; 
	background:#333;
	text-align:center;
	letter-spacing:var(--spacing);
	color:#fff;
	width: 100%;
	padding:15px 0;
}

.fixed-body.show {
  opacity: 1;
  pointer-events: auto;
}


@media screen and (min-width:768px){
.fixed-body{
	padding:15px 0;
	}
}
.fixed-body dt{
	letter-spacing:1px;
	line-height:1.3;
	color:#fff;
	font-size:clamp(13px,2.5vw,16px);
	text-align:center;
	margin:0 auto 10px;
	font-weight:500;
	position:relative;
	width:min(90%,450px);
}


.fixed-body dt::before,
.fixed-body dt::after{
	position:absolute;
	top:0;
	content:"";
	width:1px;
	height:20px;
	color:#333;
	background:#fff;
}
.fixed-body dt::before{
	left:10px;
	transform: rotate(-45deg);
}
.fixed-body dt::after{
	right:10px;
	transform: rotate(45deg);
}
@media screen and (min-width:768px){
.fixed-body dt::before,
.fixed-body dt::after{
	height:30px;
	}
.fixed-body dt::before{
	left:15px;
	transform: rotate(-45deg);
}
.fixed-body dt::after{
	right:15px;
	transform: rotate(45deg);
}
}

.fixed-body dd{
	font-size:clamp(16px,3vw,22px);
	margin:5px 0 0;
}


.btnarrow02{
/*矢印の基点とするためrelativeを指定*/
	position: relative;
/*ボタンの形状*/
	background:none;
	padding: 10px 80px 13px 80px;
	display: inline-block;
	text-align: center;
	transition: all .2s linear;
	color:#fff;
	text-decoration: none;
	outline: none;
	z-index:100;
	background:#D41619;
	border-radius:100px;
	font-weight:700;
}
@media screen and (min-width:768px){
.btnarrow02{
	padding: 10px 230px 13px 230px;
	}
}

/*hoverした際のボタンの形状*/
.btnarrow02:hover{
	background:#fff;
	color:#D41619;
}

.fixed-notice{
	text-align:center;
	color:#fff;
	font-size:clamp(12px,2.5vw,14px);
	margin:10px 0 0;
}
