@charset "UTF-8";
/* CSS Document */
body{
	margin:0;
	padding:0;
	color:#fff;
	background: #003BAF;
	background: transparent linear-gradient(270deg, #003BAF 0%, #0054FF 50%, #003BB0 100%) 0% 0% no-repeat padding-box;
	font-size:16px;
	font-weight:400;
	line-height: 1.5;
	overflow-x:hidden;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

.en{
	font-family: "Montserrat", sans-serif;
}

body.open, body.modaal-noscroll{
	overflow: hidden;
}
input, textarea {
    border-radius: 0;
    outline: none;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size:16px;
    -webkit-border-radius : 0;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}

img{
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

a {
	color:inherit;
	text-decoration:none;
	transition: all 0.3s ease-in-out 0s;
}

a:hover {
	text-decoration:none;
}
.flex_wrap{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
}
.flex_wrap_between{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex_wrap_center{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	justify-content: center;
}
.flex_wrap_middle{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	align-items: center;
}

.sp{display:none !important;}
.note{font-size:8px;}

/************************
header
************************/
.nav_bg{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(37, 37, 37, .87);
	z-index: 9;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-in-out 0s;
}
.open .nav_bg{
	opacity: 1;
}
header{
	width: 100%;
	z-index: 1000;
	height: 70px;
	transition: all 0.3s ease-in-out 0s;
	background: #fff;
	box-shadow: 0px 3px 6px #00000029;
	position: fixed;
}

header .logo{
	width: 189px;
}
.inner_header{
	margin: auto;
	width: 89%;
	max-width: 1280px;
	align-items: center;
	height: 100%;
	position: relative;
}
.inner_header .g_nav{
	gap:56px;
	transition: all 0.3s ease-in-out 0s;
	position: fixed;
	top:70px;
	height: calc(100svh - 70px);
	background: #003BAF;
	width: 100%;
	max-width: 708px;
	right: -100%;
	padding: 67px 52px;
	overflow: auto;
	z-index: 100;
}
.open .inner_header .g_nav{
	right: 0;
}
.list_pc_nav{
	color: #252525;
	gap:40px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease-in-out 0s;
}
.list_pc_nav a:hover{
	opacity: .5;
}
.inner_header ul.gnav_list{
	max-width: 289px;
}
.inner_header .gnav_list{
	margin-bottom: 24px;
}
.inner_header .gnav_list li{
	border-bottom: 1px solid #D5D5D5;
}
.inner_header .gnav_list li a{
	padding: 14px 52px 14px 8px;
	position: relative;
	font-size: 18px;
	font-weight: 700;
	display: block;
}
.inner_header .gnav_list li a span{
	display: block;
	font-weight: 500;
	font-size: 12px;
}
.inner_header .gnav_list li a::after{
	position: absolute;
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: translateY(8px) rotate(45deg);
}

.sub_nav{
	margin-bottom: 32px;
}
.sub_nav li:not(:last-child){
	margin-bottom: 8px;
}
.sub_nav li a{
	gap:14px;
}
.sub_nav li a img{
	vertical-align: middle;
}
.i_blank{
	width: 20px;
}

.list_sns_nav li{
	width: 42px;
}

/************************
menu btn
************************/
.menu_btn{
	width: 30px;
	height: 50px;
	text-align: center;
	cursor:pointer;
	transition: all 0.3s ease-in-out 0s;
    z-index: 101;
	top: 0;
	right: 4%;
	margin-left: 15px;
	display: none;
}
.sp_nav_btn{
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-align: center;
	position: relative;
}
#panel-btn{
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
  right: 0;
}
#panel-btn:hover{
}
#panel-btn-icon{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #333333;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: .5s;
}
#panel-btn:hover #panel-btn-icon, #panel-btn:hover #panel-btn-icon:before, #panel-btn:hover #panel-btn-icon:after{
}
#panel-btn-icon:before{
  margin-top: -11px;
}
#panel-btn-icon:after{
  margin-top: 8px;
}
#panel-btn .close, #panel-btn:hover #panel-btn-icon.close{
  background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
  margin-top: 0;
}
#panel-btn .close:before{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#panel-btn .close:after{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

/************************
btn
************************/
.btn{
	width: 100%;
	max-width: 442px;
	margin: auto;
}
.btn_area{
	gap:10px;
}
.btn_area .btn{
	width: calc((100% - 10px) / 2);
}
.btn a{
	padding: 10px;
	color: #252525;
	background: #F4F142;
	position: relative;
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	box-shadow: 0px 1px 0px #72727263;
	display: block;
}
.btn a::after{
	content: '';
	display: block;
	position: absolute;
	width: 6px;
	height: 13px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 7px;
	background: #252525;
	clip-path: polygon(0px 0px, 0% 100%, 100% 50%);
}
.btn a:hover{
	opacity: .5;
}

.btn_area .btn a{
	background: #BF0000;
	color: #fff;
}
.btn_area .btn a::after{
	background-color: #fff;
}
.btn_area .btn:nth-child(2) a{
	background: #FE9901;
}

.wrapper{
	padding-top: 70px;
	background: transparent linear-gradient(270deg, #003BAF 0%, #0054FF 50%, #003BB0 100%) 0% 0% no-repeat padding-box;
	width: 100%;
	overflow: hidden;
}

.inner_960{
	width: 90%;
	max-width: 960px;
	margin: auto;
}
/************************
kv
************************/
.kv{
	background: url("../img/kv_bg.png") center / cover;
}
.inner_kv{
	margin: auto;
	width: calc((100vh - 250px) * 1.6);
	height: calc(100vh - 250px);
	min-height: 500px;
	min-width: calc(500px * 1.6);
	position: relative;
}
@keyframes kv_p {
    0% {transform: scale(0);opacity: 0;}
    100% {transform: scale(1);opacity: 1;}
}
.inner_kv p{
	position: absolute;
	width: 50%;
	z-index: 2;
	top: 9.6%;
	left: 34%;
	animation: kv_p .3s cubic-bezier(.17,.67,.56,1.56) .5s backwards;
}
.inner_kv h1{
	animation: kv_p .4s cubic-bezier(.17,.67,.56,1.56) 1s backwards;
}


.sns_wrap{
	background: #fff;
	padding: 15px 0;
}
.list_sns{
	justify-content: flex-end;
	width: 89%;
	max-width: 1280px;
	margin: auto;
}
.ttl_sns{
	margin-right: 16px;
	color: #C9C9C9;
	font-weight: 700;
	border: 2px solid #C9C9C9;
	border-radius: 5px;
	padding: 4px 14px;
	background: #fff;
	position: relative;
	z-index: 1;
}
.ttl_sns::before, .ttl_sns::after{
	content: '';
	display: block;
	position: absolute;
	margin: auto;
	width: 10px;
	height: 10px;
	clip-path: polygon(0px 0px, 0% 100%, 100% 50%);
	top: 0;
	bottom: 0;
}
.ttl_sns::before{
	background: #C9C9C9;
	right: -10px;
	z-index: -1;
}
.ttl_sns::after{
	background: #fff;
	right: -6px;
}
.list_sns li a{
	display: block;
	width: 54px;
}

.camp_wrap{
	padding: 69px 0;
	text-align: center;
}
.camp_wrap p{
	margin: auto;
	width: 89%;
	max-width: 960px;
}



.sec_lineup{
	padding-bottom: 72px;
}
.sec_lineup h2{
	background: transparent linear-gradient(180deg, #DFC98F 0%, #D9BE79 100%) 0% 0% no-repeat padding-box;
	padding: 19px 30px;
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 34px;
}
.sec_lineup h2 img{
	max-width: 474px;
}
.sec_lineup h2::before{
	height: 100%;
	width: 100%;
	position: absolute;
	content: ''; 
	background: url("../img/bg_rightning.png") no-repeat center / auto 100%;
	top: 0;
	left: 0;
	z-index: -1;
	transform: translateX(100px);
}
.lead_linup{
	font-weight: 500;
	margin-bottom: 38px;
}
.wrap_slide{
	width: 330px;
	padding: 0 15px;
}
.inner_slide{
	background: #fff;
	padding: 16px 24px 24px;
	color: #252525;
}
.inner_slide h3{
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}
.inner_slide h3 span{
	font-size: 14px;
	display: block;
	
}
.slider{
	max-width: 990px;
	margin: auto;
}
.slide_head{
	gap:7%;
	margin-bottom: 12px;
	align-items: center;
	justify-content: center;
}
.slide_head figure{
	width: 40%;
}
.slide_head figure img{
	width: auto;
	height: 206px;
}
.head_cnt{
	width: 53%;
	font-size: 12px;
	font-weight: 500;
	background: #DBE6EC;
	padding: 10px 10px 20px;
}
.head_cnt h4{
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.head_cnt li{
	padding-left: 21px;
	background: url("../img/check.png") no-repeat left center / 17px auto;
}
.head_cnt li:not(:last-child){
	margin-bottom: 8px;
}
.slick-slide > div {
    height: 100%;
}

.slick-track {
    display: flex;
}
.wrap_s_pc{
	display: block;
}
.pc_item{
	display: none;
}
/*
@media screen and (min-width: 1058px) {
	.wrap_slide{
		width: 1056px;
		padding: 0 48px;
	}
	.inner_slide{
		padding: 34px 114px;
	}
	.wrap_s_pc{
		display: flex;
	}
	.pc_item{
		display: block;
		width: 184px;
	}
	.pc_item_wrap{
		width: 487px;
	}
	.slide_head figure{
		display: none;
	}
	.head_cnt{
		width: 100%;
		padding: 12px 20px 20px;
	}
	.list_check{
		display: flex;
		gap:5%;
	}
	.head_cnt li:not(:last-child){
		margin-bottom: 0;
	}
	.head_cnt li{
		width: 47.5%;
		background-position: left top 3px;
	}
	.head_cnt h4{
		text-align: left;
	}
	.btn{max-width: 100%;}
	.inner_slide h3{
		font-size: 29px;
	}
}
*/


.fuki_btn{
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	margin: 14px 0 8px;
}
.list_post{
	margin-top: 84px;
	gap:30px 20px;
}
.list_post li{
	width: 303px
}
.list_post li:nth-child(2), .list_post li:nth-child(5){
	width: 313px;
}
.list_post li figure{
	margin-bottom: 10px;
}
.list_post li .tag{
	background: #F4F142;
	color: #252525;
	font-size: 12px;
	font-weight: 700;
	padding: 1px 6px;
	margin-right: 12px;
	text-align: center;
	min-width: 68px;
}
.list_post li h3{
	font-size: 16px;
	font-weight: 500;
}


.ft_top{
	padding: 36px 0;
	background: #DEC78C url("../img/bg_ft.png") no-repeat top center / 1920px auto;
}
.ft_top h2{
	width: 200px;
	margin-bottom: 25px;
}
.ft_top .sub_nav{
	gap:9px 48px;
	color: #252525;
	margin-bottom: 24px;
}
.copy{
	font-size: 13px;
	color: #252525;
	background: #fff;
	text-align: center;
	line-height: 38px;
}
.btn_totop{
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 0;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
	pointer-events: none;
	z-index: 99;
	width: 80px;
}
.btn_totop.show{
	opacity: 1;
	pointer-events: all;
}

.pan{
	padding: 24px 0;
	margin: auto;
	width: 89%;
	max-width: 960px;
}
.pan a{
	margin-right: 10px;
	padding-right: 16px;
	position: relative;
}
.pan a::after{
	position: absolute;
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: rotate(45deg);
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
}
.non_bg{
	background: none;
}

.topic_top{
	text-align: center;
}
.topic_top h1{
	text-align: left;
	font-size: 48px;
	margin-bottom: 24px;
}
.topic_top h1 span{
	font-size: 16px;
	display: inline-block;
	background: #F4F142;
	padding: 0 24px;
	margin-right: 5px;
	color: #252525;
}
.topic_top img{
	width: 100%;
	max-width: 496px;
}
.wrap_topic{
	padding-bottom: 214px;
}
.lead_topic{
	margin: 0 auto 32px;
	max-width: 700px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.8px;
}

.index_397{
	background: #DBE6EC;
	max-width: 496px;
	margin: 0 auto 54px;
	box-shadow: 0px 3px 6px #00000029;
	border-radius: 4px;
	color: #252525;
	padding: 19px 52px;
}
.index_397 h2{
	text-align: center;
	font-size: 20px;
	margin-bottom: 19px;
}
.index_397 li{
	font-size: 18px;
}
.index_397 li:not(:last-child){
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #252525;
}

.topic_body{
	background: #F5F5F5;
	padding: 62px 130px;
	color: #252525;
}
.topic_body h2{
	font-size: 22px;
	position: relative;
	padding: 0 0 10px 20px;
	margin-bottom: 28px;
}
.topic_body h2::after{
	content: '';
	position: absolute;
	display: block;
	width: 116px;
	height: 3px;
	background: #F4F142;
	left: 0;
	bottom: 0;
}
.topic_body figure{
	text-align: center;
	margin-bottom: 16px;
}

.topic_body .topic_sec:not(:last-child){
	margin-bottom: 60px;
}

.sns_bottom{
	margin: 32px auto 0;
	background: #EDEDED;
	padding: 10px 0px;
}
.sns_bottom .list_sns{
	justify-content: center;
}

.kv_prd{
	padding: 42px 0 0;
}
.kv_prd h1{
	margin:0 auto 40px;
	max-width: 590px;
}
.l_nav{
	background: #F4F142;
}
.l_nav li{
	width: 270px;
	text-align: center;
	color: #252525;
	font-size: 23px;
}
.l_nav li:not(:last-child){
	border-right:1px dashed #252525;
}
.l_nav li a{
	display: block;
	font-weight: 500;
	padding: 21px 0 10px;
}
.l_nav li a i{
	display: block;
	width: 22px;
	line-height: 15px;
	margin: 8px auto 0;
}
.l_nav li a:hover{
	opacity: .5;
}

.sec_pro_top{
	padding: 40px 0;
}
.inner_810{
	margin: auto;
	width: 89%;
	max-width: 810px;
}
.sec_pro_top h2{
	text-align: center;
	font-size: 35px;
	margin-bottom: 48px;
}
.lead_pro_top{
	font-size: 25px;
	margin-bottom: 32px;
	font-weight: 700;
}

.sec_pro2{
	background: #DCC383;
	padding: 90px 0;
	clip-path: polygon(50% 80px, 100% 0, 100% 100%, 0 100%, 0 0);
	color: #252525;
}
.wrap_spro_ttl{
	position: relative;
	z-index: 1;
}
.wrap_spro_ttl h2{
	font-size: 35px;
	margin: 32px 0 50px;
}
.wrap_spro_ttl h2 span{
	color: #fff;
	display: inline-block;
	background: #0C93E4;
	margin: 0 0 10px;
}
.ttl_i{
	position: absolute;
	z-index: -1;
}
.ti_01{
	top: -80px;
	left: -130px;
}
.ti_02{
	top: -80px;
	right: -110px;
}
.ti_03{
	top: 70px;
	left: -180px;
}
.ti_04{
	top: 120px;
	right: -20px;
}
.ti_05{
	top: 60px;
	right: -200px;
}

.time14{
	font-size: 140%;
	font-weight: 700;
}
.time2{
	font-size: 200%;
	font-weight: 700;
}
.sec_pro3{
	background: url("../img/bg_pro2.png") no-repeat top center;
	padding: 50px 0 0;
}
.sec_pro3 h2{
	text-align: center;
	margin-bottom: 68px;
}

.list_4func li{
	background: #fff;
	padding: 18px 75px 48px;
	border-radius: 10px;
	box-shadow: 0px 3px 6px #00000029;
	overflow: hidden;
	color: #252525;
	align-items: center;
}
.list_4func li:not(:last-child){
	margin-bottom: 28px;
}
.num_func{
	line-height: 1;
	font-weight: 700;
	font-size: 25px;
	margin-bottom: 24px;
}
.num_func .num_bic{
	font-size: 188%;
	margin-left: 10px;
}
.wrap_num_func{
	position: relative;
	display: inline-block;
	z-index: 1;
	padding: 8px 0;
}
.wrap_num_func::after{
	display: block;
	content: '';
	position: absolute;
	z-index: -1;
	height: 100%;
	width: 200%;
	background: #F4F142;
	right: -32px;
	top: 0;
}
.list_4func li h3{
	font-size: 26px;
	margin-bottom: 24px;
}

.func_01_cnt{
	background: #DBE6EC;
	padding: 16px 95px;
	margin-top: 20px;
}
.func_01_cnt h4{
	text-align: center;
	font-size: 1em;
	margin-bottom: 16px;
}
.func_01_link{
	margin-top: 6px;
	gap:12px;
}
.mt_20{
	margin-top: 20px;
}
.label_f_link{
	width: 233px;
	background: #fff;
	border: 1px solid #252525;
	text-align: center;
	font-size: 13px;
	padding: 13px;
}
.func_01_link a{
	font-weight: 500;
	padding-right: 20px;
	background: url("../img/i_blank_b.png") no-repeat right center / 16px auto;
}

.func_cnt{
	width: 421px;
}

.list_4func li:nth-child(even){
	flex-direction: row-reverse;
}
.list_4func li:nth-child(even) .num_func{
	text-align: right;
}
.list_4func li:nth-child(even) .num_func .wrap_num_func::after{
	right: auto;
	left: -32px;
}
.list_4func li:nth-child(even) h3{
	text-align: right;
}

.sec_pro4{
	background: url("../img/bg_pro2.png") no-repeat top center;
	padding: 50px 0 120px;
	color: #252525;
}
.sec_pro4 h2{
	text-align: center;
	margin-bottom: 60px;
}
.sec_pro4 h3{
	text-align: center;
	font-size: 25px;
	background: #DBC17E;
	padding: 20px;
}

.item_prod{
	background: #fff;
	border-radius: 0 0 4px 4px;
	padding: 42px 70px;
}

.item_p_top{
	align-items: center;
	gap:12px;
	margin-bottom: 38px;
}
.item_p_top h4{
	font-size: 31px;
}
.item_p_top h4 span{
	display: block;
	font-size: 17px;
	font-weight: 500;
}
.prod_item_cnt{
	margin-bottom: 24px;
}
.prod_item_cnt figure{
	width: 31%;
}
.ip_c_disc{
	width: 61%;
}
.ip_c_disc .btn_area{
	margin-bottom: 12px;
}
.ip_c_disc .btn_area .btn a{
	padding: 21px 10px;
}
.btn_ip{
	margin: 16px 0 0;
}
.btn_ip.btn a{
	background: #fff;
	border: 1px solid #252525;
	box-shadow: 2px 2px 0px #252525;
}
.ip_caution{
	border: 2px dashed #0C93E4;
	border-radius: 4px;
	padding: 18px 24px;
	margin-top: 16px;
}
.ip_caution li{
	padding-left: 21px;
	background: url("../img/check.png") no-repeat left center / 15px auto;
	margin-bottom: 4px;
	font-size: 13px;
}

/*20250422 追記*/
.prod_flex {
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.prod_flex p {
	width: 60%;
}

.ttl_situ{
	align-items: center;
	gap:12px;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
}
.list_situ{
	text-align: center;
	gap:9px;
	justify-content: center;
}
.list_situ p{
	font-weight: 500;
	margin-bottom: 4px;
}
.list_situ img{
	width:  278px;
}

.item_prod .list_sns{
	width: auto;
	background: #EDEDED;
	padding: 8px 10px;
	margin: 18px 0 0 auto;
}
.wrap_sns_item{
	justify-content: flex-end;
}

.sec_pro4 .prod_item_wrap:not(:last-child){
	margin-bottom: 80px;
}
.img_satif{
	width: 45px;
}
.note_sec_pro2{
	font-size: 87.5%;
/*	color: #D31B15;*/
}
.prof{
	background: #fff;
	border: 1px solid #707070;
	border-radius: 10px;
	padding: 16px;
	margin:24px 0;
}
.prof .prof_top{
	gap:13px;
	margin-bottom: 20px;
}
.prof .prof_top i{
	width: 43px;
}
.prof .prof_top span{
	font-size: 81%;
}
.prof_date{
	text-align: right;
	margin-top: 10px;
	color: #9B9B9B;
}
.icon_p{
	margin: 24px 0 8px;
}
.yopi_body .icon_p img{
	width: 69px;
}
.yopi_body a, .link_or{
	color: #FF7800;
	text-decoration: underline;
}
.yopi_body img{
	width: 100%;
}
.c_red{
	color: #D31B15;
}
.yopi_body figure{
	margin: 35px 0;
}
.yopi_body figure figcaption{
	text-align: center;
	margin-bottom: 8px;
}
.tweet_wrap{
	margin: 20px 0;
}
.tweet_wrap > div{
	margin: auto;
}
.fs_18{
	font-size: 18px;
}
.fs_24{
	font-size: 24px;
}

.prof_buddha{
	border: 1px solid #FFFFFF;
	padding: 16px;
	text-align: center;
	margin-top: 80px;
}
.ttl_yopi{
	text-align: center;
	margin:34px 0 17px;
}
.sns_bottom.sns_yopi{
	margin-top: 0;
}

.c_blue{
	color: #0C93E4;
	font-weight: 700;
}
.fs_26{
	font-size: 26px;
	font-weight: 700;
}
.ttl_alfa{
	margin: 30px 0;
	padding: 8px 6px;
	background: #f2f2f2;
	font-size: 24px;
	font-weight: 700;
	border-left: 6px solid #D31B15;
	color: #50534f;
}
.fs_36{
	font-size: 36px;
}
.ta_l{
	text-align: left;
}
.rep_04_sec{
	background: #F5F5F5;
	padding: 62px 130px;
	color: #252525;
}
.ttl_rep_04_top{
	font-size: 24px;
	background: #F4F142;
	text-align: center;
	padding: 10px;
	margin-bottom: 36px;
}
.list_menber{
	margin: 40px 0 48px;
}
.list_menber li:not(:last-child){
	margin-bottom: 36px;
}
.list_menber li{
	gap:24px;
}
.list_menber li figure{
	width: 160px;
}
.list_menber li .menber_cnt{
	width: calc(100% - 184px);
}
.list_menber li h3{
	font-size: 24px;
}
.mb_20{
	margin-bottom: 30px;
}
.yoroi_ttl{
	text-align: center;
	font-size: 25px;
	margin-bottom: 42px;
	padding-bottom: 12px;
	position: relative;
}
.yoroi_ttl::after{
	content: '';
	display: block;
	position: absolute;
	width: 32px;
	height: 3px;
	background: #0C93E4;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
}
.mb_45{
	margin-bottom: 45px;
}
.list_koutei{
	margin: 40px 0;
}
.list_koutei li{
	width: 33.33%;
}
.mg_fig{
	margin: 35px 0;
}
.mg_fig img{
	width: 100%;
}
.wrap_110p{
	width: calc(100% + 260px);
	margin-left: -130px;
}
.wd_100{
	width: 100%;
}
.list_fin li{
	background: #DBC17E;
	position: relative;
	justify-content: flex-end;
	z-index: 1;
}
.list_fin li:not(:last-child){
	margin-bottom: 123px;
}
.fin_p{
	height: 680px;
	margin-top: -60px;
	position: absolute;
	left: 0;
}
.fin_p img{
	height: 100%;
	width: auto;
}
.fin_cnt{
	width: 63%;
	margin-top: -50px;
}
.list_fin li:nth-child(even){
	flex-direction: row-reverse;
}
.list_fin li:nth-child(even) .fin_p{
	right: 0;
	left: auto;
}
.name_fin{
	text-align: center;
	margin-bottom: 30px;
}
.fin_pic{
	text-align: center;
}
.wrap_fin_text{
	background: #F4F142;
	margin-bottom: -50px;
	padding: 50px 50px;
	margin-top: 48px;
	position: relative;
	z-index: 10;
}
.sub_ttl{
	text-align: center;
	margin-bottom: 10px;
}
.sub_ttl span{
	background: #F4F142;
	padding: 2px 12px;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
}
.wrap_comp{
	background: #DBC17E url("../img/bg_yoro_conp.png") no-repeat right top;
	padding: 34px 5.5% 50px;
}
.ttl_cmp{
	text-align: center;
}
.non_pb{
	padding-bottom: 0 !important;
}
.non_pt{
	padding-top: 0 !important;
}
.list_end{
	gap:30px;
	margin: 35px 0;
}
.list_end li{
	width: calc((100% - 35px) / 2);
}
.non_bg_pd{
	padding: 0 !important;
	background: none !important;
}
.item_lead{
	margin: 30px 0 20px;
	text-align: center;
	font-weight: 700;
}
.item_lead span{
	background: linear-gradient(transparent 60%, #F4F142 0%);
}

.slide_ttl_wrap{
	gap:10px;
}
.slide_ttl_wrap figure{
	text-align: center;
	width: 100%;
}
.slide_ttl_wrap figure img{
	width: auto;
	height: 60px;
	margin:auto;
}
.list_disc{
	padding-left: 1em;
	position: relative;
}
.list_disc::before{
	content: '・';
	position: absolute;
	left: 0;
}
.sub_nav_s{
	font-size: 14px;
}
/********************************
sp
********************************/
@media screen and (max-width: 1080px) {
	.list_pc_nav{gap:20px;}
}
@media screen and (max-width: 948px) {
	.list_pc_nav{display: none;}
	.menu_btn{display: block;}
}
@media screen and (max-width: 768px) {
	header{height: 60px;}
	.wrapper{padding-top: 60px;overflow: hidden;}
	header .logo{width: 119px;position: absolute;margin: auto; top: 0;bottom: 0;left: 0;right: 0; height: 18px;}
	.inner_header{justify-content: flex-end;}
	.inner_header .g_nav{top: 60px;padding: 27px 52px 67px;height: calc(100svh - 60px);}
}
/*
@media screen and (max-width: 1024px) {
	.slick-slider{width: 330px; margin: 0 auto 76px;}
}
*/
@media screen and (max-width: 768px) {
	body{font-size: 14px;}
	.note{font-size: 12px;}
	.sp{ display:block !important;}
	.pc{display:none !important;}
	.list_sns{justify-content: flex-start;}
	.list_sns li a{width: 42px;}
	.sec_lineup h2{padding: 12px 0 40px;clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);}
	.sec_lineup h2 img{max-width: 274px; width: 100%; margin: auto;}
	.sec_lineup h2::before{background-image: url("../img/bg_rightning_sp.png");transform: translateX(0);}
	.list_post li,.list_post li:nth-child(2), .list_post li:nth-child(5){width: 100%;}
	.list_post{margin-top: 52px;}
	.ft_top{background-image: url("../img/bg_ft_sp.png");background-size: 100% auto;}
	.btn_totop{bottom: 10px;right: 10px;}
	.camp_wrap{padding: 40px;}
	.pan{font-size: 13px;}
	.lead_topic{font-size: 16px;}
	.index_397{padding: 20px;}
	.index_397 h2{font-size: 18px;}
	.index_397 li{font-size: 16px;}
	.topic_body{padding: 24px 20px;}
	.topic_body h2{font-size: 18px; padding: 0 0 10px;}
	.topic_body h2 span{display: block;}
	.wrap_topic{padding-bottom: 42px;}
	.ttl_sns.bg_b, .ttl_sns.bg_b::after{background: #003BAF;}
	.l_nav li{width: 33.333%;font-size: 14px;}
	.l_nav li a{padding: 14px 0 4px;}
	.l_nav li a i{width: 14px;line-height: 10px;}
	.sec_pro_top h2{font-size: 30px;margin-bottom: 20px;}
	.lead_pro_top{font-size: 20px;}
	.sec_pro2{clip-path: polygon(50% 40px, 100% 0, 100% 100%, 0 100%, 0 0);padding: 45px 0;}
	.ttl_i{display: none;}
	.wrap_spro_ttl h2{margin: 20px 0 40px;font-size: 20px;}
	.list_4func li{overflow: inherit;padding: 0 20px 20px;margin-left: -6%;}
	.num_func{margin-top: -30px;}
	.list_4func li:not(:last-child){margin-bottom: 78px;}
	.list_4func li:nth-child(even){margin-left: auto;margin-right: -6%;}
	.func_01_cnt{padding: 18px;}
	.list_4func figure{margin-bottom: 20px;}
	.label_f_link{width: 115px;padding: 2px;}
	.func_01_link a{width: calc(100% - 127px);}
	.list_4func li:nth-child(even) h3{text-align: left;}
	.sec_pro4 h3{font-size: 20px;}
	.item_prod{padding: 14px;}
	.item_p_top{gap:8px; align-items: center; margin-bottom: 18px;}
	.item_p_top p{width: 110px;}
	.item_p_top h4{width: calc(100% - 118px);font-size: 18px;}
	.item_p_top h4 span{font-size: 14px;}
	.ip_c_disc .btn_area .btn{width: 100%;}
	.ttl_situ{margin-top: 24px;}
	.list_situ li{width: calc((100% - 9px) / 2);}
	.list_situ li img{width: 100%;}
	.list_situ li.wd_100{width: 100%;}
	.item_prod .list_sns{padding: 4px;}
	.item_prod .list_sns{width: 100%;justify-content: center;}
	.sec_pro4 .prod_item_wrap:not(:last-child){margin-bottom: 32px;}
	.topic_body h2::after{left: -40px;}
	.prof .prof_top span{display: block;}
	.ttl_alfa{font-size: 16px;}
	.rep_04_sec{padding: 24px 20px;}
	.ttl_rep_04_top{font-size: 16px;margin-bottom: 20px;}
	.list_menber li figure{width: 82px;}
	.list_menber li{gap:14px;}
	.list_menber li .menber_cnt{width: calc(100% - 96px);}
	.list_menber li h3{font-size: 16px;}
	.mb_20{margin-bottom: 20px;}
	.yoroi_ttl{font-size: 23px; margin-bottom: 38px;}
	.list_koutei{margin: 32px 0;}
	.list_koutei li{width: 100%;}
	.list_koutei li img{width: 70%;}
	.list_koutei li:nth-child(odd){text-align: right;}
	.wrap_110p{width: calc(100% + 80px);margin-left: -40px;}
	.fin_p{height: 390px;}
	.name_fin img{width: auto; height: 43px;}
	.fin_cnt{margin-top: -22px;}
	.name_fin{margin-bottom: 10px;}
	.fin_pic img{width: 184px;}
	.wrap_fin_text{margin-top: 38px;padding: 20px;margin-bottom: -20px;}
	.sub_ttl span{font-size: 17px;}
	.wrap_comp{background-size: 100% auto;}
	.ttl_cmp img{width: 118px;}
	.list_end li{width: 80%; margin:0 auto 0 0;}
	.list_end li:last-child{width: 80%; margin:0 0 0 auto;}
	.list_situ img{width:  160px;}
	.topic_top h1{font-size: 24px;}
}