/*========================================================================
//
// common
//
//========================================================================*/
/********* SP - iPhone 6 or higher (screen width up to 761px) ************/
@media (max-width:761px) {
	html, body {
		height: 100%;
		font-size: calc(100vw / 37.5);
	}
	article {
		overflow: hidden;
	}
	.wrapper {
		padding: 0 6%;
		position: relative;
	}
	.pc_contents {
		display: none;
	}
}
/*========================================================================
//
// header
//
//========================================================================*/
/********* SP - iPhone 6 or higher (screen width up to 761px) ************/
@media (max-width: 761px) {
	#ghead {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 900;
	}
	#ci_wrap {
		width: 42vw;
		margin: 0;
		position: relative;
		z-index: 100000;
		opacity:0;
		transform:translate(0,-10px);
		transition: all 0.4s cubic-bezier(0.03, 0.36, 0.18, 1) 0s;
	}
	
	#ci_wrap.loading_out{
		opacity:1;
		transform:translate(0,0);
	}
	
	#ci {
		margin: 16px 0 0 20px;
		position: relative;
		z-index: 10;
	}

	
	/* head_navi start ------------------ */
	#head_navi {
		display: none;
	}
	/* head_navi end ------------------ */
	
}
/*========================================================================
//
// Page Top
//
//========================================================================*/
/********* SP - iPhone 6 or higher (screen width up to 761px) ************/
@media (max-width: 761px) {
	.pagetop{
		position: fixed;
		right: 0;
		bottom: -60px;
		z-index:9000;
		transition: all 0.8s cubic-bezier(0.03, 0.36, 0.18, 1) 0s;
	}
	
	.pagetop_act{
	bottom: 0;
	}

	.pagetop li a:before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        border-right: solid 2px #fff;
        border-bottom: solid 2px #fff;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-135deg);
    }
    

	.pagetop li a{
		display:block;
		background: #000;
		width: 56px;
		height: 56px;
		transition: all 0.4s cubic-bezier(0.03, 0.36, 0.18, 1) 0s;
	}

}
/*========================================================================
//
// ハンバーガーメニュー
//
//========================================================================*/


/*********  SP iPhone6以上（画面の横幅が761pxまで） ************/

@media (max-width:761px) {
	
	/* Menu ボタン　----------------------------- */
	#drawer-icon {
	  position: fixed;
	  cursor: pointer;
	  display: inline-block;
	  height: 60px;
	  width: 60px;
	  background: #000;
	  top: 0;
	  right: 0;
	  z-index:9999;
	  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	#drawer-icon:after{
		content: "MENU";
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.1rem;
		letter-spacing: 1px;
		line-height: 100%;
		color: #fff;
		margin: 39px 0 0 0;
		text-align:center;
		display: block;
	}
	#drawer-icon span {
	  background:  #fff;
	  border-radius: 4px;
	  display: block;
	  height: 2px;
	  position:absolute;
	  top: 40%;
	  left: 50%;
	  -webkit-transform:translate(-50%, -50%);
	  transform:translate(-50%, -50%);
	  transition: all 0.3s ease-in-out;
	  width: 22px;
	}
	#drawer-icon span::before,
	#drawer-icon span::after {
	  background: #fff;
	  border-radius: 2px;
	  content: "";
	  display: block;
	  height: 100%;
	  position:absolute;
	  top: 50%;
	  left: 0;
	  -webkit-transform:translate(-50%, -50%);
	  transform:translate(-50%, -50%);
	  transform: rotate(0);
	  transition: all 0.3s ease-in-out;
	  width: 22px;
	}
	#drawer-icon span::before {
	  margin-top: -30%;
	}
	#drawer-icon span::after {
	  margin-top: 24%;
	}

	#drawer-icon.fix{
		background: rgba(0, 0, 0, 1);
	}
	
	
	/* CLOSE ボタン　----------------------------- */
	#drawer-close-icon {
	  position: absolute;
	  cursor: pointer;
	  display: inline-block;
	  height: 60px;
	  width: 60px;
	  top: 10px;
	  right: 6px;
	  z-index:9999;
	  /* transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); */
	}
	#drawer-close-icon:after{
		content: "CLOSE";
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.0rem;
		letter-spacing: 1px;
		line-height: 100%;
		color: #a5a5a5;
		margin: 44px 0 0 0;
		text-align:center;
		display: block;
	}
	#drawer-close-icon span {
	  display: block;
	  height: 100%;
	  position: absolute;
	  top: 43%;
	  left: 50%;
	  transform:translate(-50%, -50%);
	  width:100%;
	}
	
	#drawer-close-icon span::before,
	#drawer-close-icon span::after {
	  content: "";
	  background: #a5a5a5;
	  display: block;
	  height: 1px;
	  width: 32px;
	  position: absolute;
	  top: 50%;
	  left: 23%;
	  transform:translate(-50%, -50%);
	}
	#drawer-close-icon span::before {
			  transform: rotate(-45deg);
	}
	#drawer-close-icon span::after {
			  transform: rotate(45deg);
	}
	
	
	/* メニューエリア　----------------------------- */
	
	#drawer-content {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10001;
		width: 80vw;
		height: 100%;
		background: #000000e8;
		transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateX(100%);
	}

	#drawer-content.act {
		overflow-y: auto;
		transform: translateX(0);
		box-shadow: 6px 0 25px rgba(0, 0, 0, 0.2);
	}
	
	#drawer-content-inner{
		width: 100%;
		height: 100%;
		overflow-y: auto;
	}

	#drawer-close {
	  display: none;
	  cursor: pointer;
	  position: fixed;
	  z-index: 10000;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  transition: all 0.3s ease-in-out 0s;
	}
	#drawer-close.act {
	  display: block;
	}

	
	

	/*ボタン*/
	.no_accordion_btn_wrap{
		padding: 18px 0 90px 14px;
		display:flex;
		gap:0 4px;
	}
	.no_accordion_btn_wrap li:nth-child(1){
		width:24vw;
	}
	.no_accordion_btn_wrap li:nth-child(2){
		width:30vw;
	}
	.no_accordion_btn_wrap li:first-child a{
		box-sizing: border-box;
		display: block;
		font-family: 'Barlow', sans-serif;
		font-weight: 500;
		color: #fff;
		letter-spacing: 0rem;
		line-height: 1.2;
		border: 1px solid #6e6e6e;
		text-align: center;
		font-size: 1.4rem;
		border-radius: 4px;
		padding: 14px 0 16px;
	}

	.no_accordion_btn_wrap li a .t_icon_a{
		display:inline-block;
		width: 22px;
		margin: 0 4px 0 -1px;
	}

	.no_accordion_btn_wrap li a .t_icon_b{
		display:inline-block;
		width: 20px;
		vertical-align: text-top;
		margin: -3px 5px 0 -1px;
		filter: brightness(0);
	}
	
	.no_accordion_btn_wrap li:nth-child(2) a{
		box-sizing: border-box;
		display: block;
		font-family: 'Barlow', sans-serif;
		font-weight: 500;
		color: #000;
		background: #fff;
		letter-spacing: 0rem;
		line-height: 1.2;
		border: 1px solid #fff;
		text-align: center;
		font-size: 1.4rem;
		border-radius: 4px;
		padding: 14px 0 16px;
	}

	


	/*アコーディオン*/


	input.accordion {
		display: none;
	}

	.accordion_btn_wrap li a{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.5rem;
		line-height: 1.4;
		display:block;
		color: #959595;
		/* background: #363636; */
		letter-spacing: 0.05rem;
		font-feature-settings: 'palt';
		padding: 6px 0 6px 50px;
		position: relative;
	}

	

	.accordion_btn_wrap li a .ar1{
		display:block;
		font-size: 1.4rem;
		line-height:1;
		color: #919191;
		position: absolute;
		top: 50%;
		right: 18px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap li a .ar2{
		display:block;
		font-size: 1.0rem;
		letter-spacing:0;
		line-height:1;
		color: #919191;
		position: absolute;
		top: 53%;
		left: 31px;
		transform: translate(0, -50%) rotate(90deg);
	}

	.accordion_btn_wrap li a .ar3{
		display:block;
		font-size: 1.4rem;
		letter-spacing:0;
		line-height:1;
		color: #919191;
		position: absolute;
		top: 50%;
		right: 85px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap li a .t_pdf{
		display:block;
		font-size: 1.2rem;
		line-height:1;
		color: #484848;
		background:#919191;
		padding: 2px 7px 3px;
		border-radius:20px;
		position: absolute;
		top: 50%;
		right: 16px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap li a .win_icon{
		display:block;
		width: 18px;
		line-height:1;
		opacity: 0.8;
		position: absolute;
		top: 44%;
		right: 20px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap li a .win_icon2{
		display:block;
		width: 18px;
		line-height:1;
		opacity: 0.8;
		position: absolute;
		top: 44%;
		right: 138px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap li a .win_icon3{
		display:block;
		width: 18px;
		line-height:1;
		opacity: 0.8;
		position: absolute;
		top: 44%;
		right: 87px;
		transform:translate(0, -50%);
	}

	.accordion_btn_wrap > li{
		padding: 0 0 2px 0;
	}

	
	/* ac BTN */
	.menu_ac_wrap li {
		border-top: 1px solid #2c2c2d;
	}

	.menu_ac_wrap li.last_li{
		border-bottom: 1px solid #2c2c2d;
	}

	.menu_ac_wrap li a{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 600;
		font-size: 1.6rem;
		display: block;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 20px 0 22px 56px;
		position: relative;
		color: #fff;
	}

	.menu_ac_wrap li a.eng_txt{
		font-family: 'Barlow', sans-serif;
		font-weight: 600;
		font-size: 1.8rem;
		display: block;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 20px 0 22px 56px;
		position: relative;
		color: #fff;
	}

	.menu_ac_wrap li a .ar1{
		display:block;
		font-size: 1.4rem;
		line-height:1;
		color: #959595;
		position: absolute;
		top: 58%;
		left: 28px;
		transform: translate(0, -50%) rotate(90deg);
	}

	

	
	.menu_ac_wrap li a:before{
		position:absolute;
		content:"";
		top: 50%;
		left: 30px;
		width: 12px;
		transition: all 0.5s ease 0s;
		border-top: 1px solid #9e9e9e;
		transform: rotate(0);
	}
	
	.menu_ac_wrap li a:after{
		position:absolute;
		content:"";
		top: 50%;
		left: 30px;
		width: 12px;
		transition: all 0.5s ease 0s;
		border-top: 1px solid #9e9e9e;
		transform: rotate(90deg);
	}
	
	.menu_ac_wrap li a.no_plus:before,
	.menu_ac_wrap li a.no_plus:after
	{
		border-top:none;
	}
	
	.menu_ac_wrap li a{
		transition: all 0.3s ease-in-out 0s;
	}
	
	.accordion_btn_wrap li a.no_link{
		pointer-events: none;
		color: #838383;
		font-weight: 500;
		letter-spacing: 0.05rem;
		opacity: 0.5;
	}

	.accordion_btn_wrap li a.no_link span{
		opacity:40%;
	}

	.accordion_btn_wrap li a.no_link_btn{
		pointer-events: none;
		color: #838383;
		opacity: 0.5;
	}

	.accordion_btn_wrap li a.no_link_btn span.ar2{
		color:#363636;
	}
	
	
	/* ac BTN active */

	
	.menu_ac_wrap li a.active{
		
	}
	
	.menu_ac_wrap li a.active:before{
		transform: rotate(180deg);
	}
	.menu_ac_wrap li a.active:after{
		transform: rotate(360deg);
	}
	
	.menu_ac_contents{
		padding: 24px 19px;
		background: #1c1c1c;
	}

	.menu_ac_contents p.ttl{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.4rem;
		display: inline-block;
		border: 1px solid #616161;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 8px 10px 8px;
		margin: 0 0 9px;
		position: relative;
		color: #C2C2C2;
	}

	.menu_ac_contents p.ttl span{
		font-weight: 600;
	}

	.menu_ac_contents p.mt{
		margin: 24px 0 9px;
	}

	.menu_ac_contents p.ttl2{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.4rem;
		display:block;
		border: 1px solid #616161;
		text-align:center;
		border-radius:20px;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 8px 10px 8px;
		margin: 44px 0 0;
		position: relative;
		color: #C2C2C2;
	}

	.menu_ac_contents p.ttl3{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.4rem;
		display:block;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 30px 0 12px 0;
		position: relative;
		color: #C2C2C2;
	}

	.menu_ac_contents p.ttl4{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.4rem;
		display:block;
		line-height:1;
		letter-spacing: 0.1rem;
		padding: 4px 0 12px 0;
		position: relative;
		color: #C2C2C2;
	}

	.menu_ac_contents .mb_line{
		padding: 0 0 50px;
		margin: 30px 0 20px;
		border-bottom: 1px solid #606060;
	}

	.menu_ac_contents .mb_dot_line{
		padding: 0 0 16px;
		margin: 0 0 16px;
		border-bottom: 1px dashed #606060;
	}
	
	
	.scroll-prevent {
	  /*動き固定*/
	  position: fixed;
	  /*奥行きを管理*/
	  z-index: -1;
	  /*下2つで背景を元のサイズのまま表示することができる*/
	  width: 100%;
	  height: 100%;
		top: 0;
  		right: 0;
	}
}

/*========================================================================
//
// footer
//
//========================================================================*/
/********* SP - iPhone 6 or higher (screen width up to 761px) ************/
@media (max-width:761px) {
	footer {
		background: #333333;
		padding: 70px 0 0;
		position: relative;
	}

	footer .ttl{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 500;
		font-size: 1.8rem;
		letter-spacing: 0.1rem;
		font-feature-settings: 'palt';
		color: #999999;
		line-height: 1;
		padding:0 0 20px;
	}

	footer ul{
		display:flex;
		flex-wrap: wrap;
		gap: 20px 0;
	}

	footer ul li{
		width: 100%;
	}

	footer ul li a{
		width:340px;
		box-sizing:border-box;
		padding:20px;
		display:flex;
		justify-content:space-between;
		position:relative;
		background:#474747;
	}

	footer ul li .img_cata{
		width: 25vw;
		line-height:0;
	}

	footer ul li .cata_txt{
		width: 46vw;
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.4rem;
		letter-spacing: 0.1rem;
		font-feature-settings: 'palt';
		color: #999999;
		line-height: 1.4;
	}

	footer ul li .view_txt{
		width: 46vw;
		position:absolute;
		right:20px;
		bottom:20px;
		padding: 6px 0 7px;
		font-family: 'Barlow', sans-serif;
		font-weight: 500;
		font-size: 1.4rem;
		letter-spacing: 0.1rem;
		font-feature-settings: 'palt';
		text-align:center;
		color: #d0d0d0;
		background:#626262;
		line-height: 1.4;
	}

	footer .copyright_wrap{
		/* display:flex; */
		/* justify-content:space-between; */
		border-top: 1px solid #999999;
		margin: 70px 0 0;
		padding: 24px 7px;
	}

	footer .copyright_wrap .img_eidai{
		width:80px;
		line-height:0;
	}

	footer .copyright_txt{
		font-family: 'Noto Sans JP', sans-serif;
		font-weight: 400;
		font-size: 1.2rem;
		letter-spacing: 0.1rem;
		text-align: left;
		font-feature-settings: 'palt';
		color: #999999;
		line-height: 1.4;
		padding: 5px 0 80px;
	}

}
/*========================================================================
//
// GDPR Cookie
//
//========================================================================*/
/********* SP - iPhone 6 or higher (screen width up to 761px) ************/
@media (max-width:761px) {
	.g-gdpr {
		width: 80%;
		padding: 30px 10%;
		justify-content: center;
		align-items: center;
		background: rgba(0, 0, 0, .75);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 10000;
		-webkit-backdrop-filter: blur(15px);
		backdrop-filter: blur(15px);
		transition: 1s;
		transform: translateY(100%);
		animation: anime-gdpr 1s both 1s;
	}
	.is-gdpr_off .g-gdpr {
		animation: anime-gdpr_off 1s both;
	}
	.g-gdpr__text {
		display: block;
		color: #cacaca;
		text-shadow: 0 0 3px #000;
		padding: 0 0 20px;
		font-size: 1.4rem;
	}
	.g-gdpr__text a {
		color: #85b9d0;
		text-decoration: underline !important;
		padding: 0 .15em;
		display: inline-block;
	}
	a.g-gdpr__button {
		color: #fff;
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1;
		text-align: center;
		white-space: nowrap;
		vertical-align: middle;
		padding: 1em 2em 1em 2em;
		display: block;
		background: #578da7;
		border: 1px solid #fff;
		transition: .2s;
		cursor: pointer;
	}
}