@charset "UTF-8";
/* CSS Document */

/*

使用フォント

日本語
font-family: "hiragino-kaku-gothic-pron", sans-serif;
W3:300
W6:600

英語
font-family: "noto-sans", sans-serif;
R:400
M:500
SB:600
B:700

*/

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

.img_ma{
	margin-right:auto;
	margin-left:auto;
	display:block;
	max-width: 100%;
}

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

/*IMG*/

a{
	transition:.2s;
	text-decoration: none;
}

body{
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-size:16px;
	line-height:1.5;
	font-weight: 600;
}

@media screen and (max-width:550px) {
	body{
		font-size: 14px;
	}
}

/*ハンバーガー*/
.ham_btn{
	display: none;
	justify-content: center;
	align-items: center;
	width:60px;
	height: 60px;
	cursor: pointer;
	z-index: 11;
}

.ham_btn > div{
	position: relative;
	width:60%;
	height: 30%;
}

.ham_btn > div > span{
	display: block;
	width:100%;
	height: 2px;
	background:#000;
	transition: .3s;
}

.ham_btn > div > span:nth-of-type(1){
	position: absolute;
	top:0;
	left: 0;
	transform-origin: top right;
}

.ham_btn > div > span:nth-of-type(2){
	position: absolute;
	top:50%;
	left: 0;
	margin-top: -1px;
}

.ham_btn > div > span:nth-of-type(3){
	position: absolute;
	bottom:0;
	left: 0;
	transform-origin: bottom right;
}

.ham_open .ham_btn > div > span:nth-of-type(1){
	transform: rotate(-25deg);
}

.ham_open .ham_btn > div > span:nth-of-type(2){
	opacity: 0;
	left:24px;
}

.ham_open .ham_btn > div > span:nth-of-type(3){
	transform: rotate(25deg);
}

.ham_bg{
	position: fixed;
	top:0;
	left:0;
	z-index: 9;
	background:#fbf6ef;
	width:100%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

.ham_open .ham_bg{
	opacity: 1;
	pointer-events: auto;
}

.ham_open header{
	background: #fff !important;
}

.ham_open .h_logo a img:nth-of-type(1){
	display: block !important;
}

.ham_open .h_logo a img:nth-of-type(2){
	display: none !important;
}

.ham_wrap{
	position: fixed;
	right:0;
	top:60px;
	z-index: 10;
	width:100%;
	padding-top:0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
}

.ham_open .ham_wrap{
	opacity: 1;
	pointer-events: auto;
}

.ham_box{
	width:100%;
	max-height: 100%;
	overflow-y: auto;
	padding:40px 20px;
	padding-right: 0;
}

.ham_nav{
	width:100%;
}

.ham_nav > li{
	margin-bottom: 6px;
}

.ham_nav > li > a{
	display: block;
	color:#000;
	padding:10px;
	background: #ff9933;
	color:#fff;
	border: 1px solid #ff9933;
}

.ham_nav > li > a:hover{
	color:#ff9933;
	background: #fff;
}

.ham_nav > li > p{
	display: block;
	color:#000;
	padding:10px;
	background: #ff9933;
	color:#fff;
	border: 1px solid #ff9933;
	transition: .2s;
	cursor: pointer;
}

.ham_nav > li > p:hover{
	color:#ff9933;
	background: #fff;
}

.ham_nav_sub{
	padding: 15px 0 10px 10px;
}

.ham_nav_sub > li{
	width:100%;
	border-bottom: 1px solid #ff9933;
}

.ham_nav_sub > li + li{
	margin-top: 10px;
}

.ham_nav_sub > li > a{
	display: block;
	color:#000;
	padding-bottom: 4px;
}

.ham_nav_sub > li > a:hover{
	color:#f93;
}

.ham_com{
	margin-top: 50px;
}

.ham_com > p{
	padding-right: 20px;
}

.ham_com > p:nth-of-type(1){
	border-bottom: 1px solid #ff9933;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

@media screen and (max-width:850px) {
	.ham_btn{
		display: flex;
	}
}

header{
	width:100%;
	padding:20px 40px;
	position: absolute;
	top:0;
	left: 0;
	z-index: 5;
	transition: .2s;
	background: #fff;
}

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.h_logo{
	width:350px;
}

.h_nav > ul{
	display: flex;
}

.h_nav > ul > li{
	margin-left: 50px;
	position: relative;
}

.h_nav > ul > li a{
	color:#000;
}

.h_nav > ul > li a:hover{
	color:#ff9933;
}

.h_nav_sub_wrap{
	width:200px;
	position: absolute;
	top:50%;
	left: 0;
	padding-top: 10px;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

.h_nav > ul > li:hover .h_nav_sub_wrap{
	top:100%;
	opacity: 1;
	pointer-events: auto;
}

.h_nav_sub{
}

.h_nav_sub > li{
	border-top: 1px solid #fff;
}

.h_nav_sub > li > a{
	display: block;
	background:#ff9933;
	color:#fff !important;
	padding:4px 10px;
	border:1px solid #ff9933;
}

.h_nav_sub > li > a:hover{
	background: #fff;
	color:#ff9933 !important;
} 

@media screen and (max-width:1000px) {
	header{
		padding:20px;
	}
	
	.h_nav > ul > li{
		margin-left: 30px;
	}
}

@media screen and (max-width:850px) {
	.ham_btn{
		display: flex;
	}
	
	header{
		padding:0 20px;
		padding-right: 0 !important;
	}
	
	.header{
		height: 60px;
	}
	
	.h_nav{
		display: none;
	}
}

@media screen and (max-width:450px) {
	.ham_btn{
		width:50px;
		height: 50px;
	}
	
	header{
		padding:0 10px;
	}
	
	.header{
		height: 50px;
	}
	
	.h_logo{
		width:250px;
	}
}

.top_vis_wrap{
	width:100%;
	height: 100svh;
	padding-top: 100px;
	margin-bottom: 60px;
}

.top_vis{
	position: relative;
	width:100%;
	height: 100%;
	padding-left: 50px;
}

.top_vis_text{
	width:600px;
	font-size: 18px;
	line-height: 1.7;
	padding-top: 50px;
}

.top_vis_text_h{
	font-size: 48px;
	line-height: 1.2;
	padding-bottom: 15px;
	border-bottom: 2px solid #ff9933;
	margin-bottom: 25px;
}

.top_vis_img1{
	width:calc( 100% - 700px );
	height: 65%;
	background: url("images/top_vis1.webp") no-repeat center/cover;
	position: absolute;
	top:0;
	right: 0;
}

.top_vis_img2{
	width: 650px;
	height: calc( 100% - 400px );
	position: absolute;
	bottom: 0;
	left: 0;
	background: url("images/top_vis2.webp") no-repeat center top;
	background-size: cover;
}

.top_vis_img3{
	width:calc( 100% - 700px );
	height: 30%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 0;
	right: 0;
}

.top_vis_img3 > div{
	width:48%;
	height: 100%;
}

.top_vis_img3_1{
	background: url("images/top_vis3.webp") no-repeat center/cover;
}

.top_vis_img3_2{
	background: url("images/top_vis4.webp") no-repeat center/cover;
}

@media screen and (max-width:1150px) {
	.top_vis{
		padding-left: 20px;
	}
	
	.top_vis_text{
		width:50%;
	}
	
	.top_vis_img1{
		width:calc( 50% - 50px );
	}
	
	.top_vis_img2{
		width:calc( 50% + 25px );
	}
	
	.top_vis_img3{
		width:calc( 50% - 50px );
		height: 32%;
	}
}

@media screen and (max-width:1000px) {
	.top_vis_text_h{
		font-size: 36px;
	}
}

@media screen and (max-width:750px) {
	.top_vis_wrap{
		padding-top: 80px;
	}
	
	.top_vis{
		display: flex;
		align-items: flex-end;
		padding-left: 0;
	}
	
	.top_vis_text{
		width:95%;
		max-width: 500px;
		position: relative;
		z-index: 2;
		padding:30px;
		background:#fff;
		font-size: 16px;
	}
	
	.top_vis_img1{
		width:85%;
	}
	
	.top_vis_img2{
		display: none;
	}
	
	.top_vis_img3{
		display: none;
	}
}

@media screen and (max-width:450px) {
	.top_vis_wrap{
		padding-top: 60px;
	}
	
	.top_vis_text{
		font-size: 14px;
	}
	
	.top_vis_text_h{
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.top_vis_img1{
		width:90%;
	}
}

.top_nav1_wrap{
	padding:50px 20px;
	background: #fbf6ef;
	margin-bottom: 70px;
}

.top_nav1{
	max-width: 1200px;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_nav1_box{
	width:48%;
	max-width: 560px;
	text-align: center;
}

.top_nav1_box_img{
	display: block;
	margin-bottom: 15px;
}

.top_nav1_box_img:hover{
	opacity: 0.6;
}

.top_nav1_box_h{
	display: table;
	font-size: 18px;
	padding:0 10px 6px;
	border-bottom: 1px solid #ff9933;
	margin:0 auto 15px;
}

.top_nav1_box > p{
	max-width: 420px;
	margin:0 auto;
}

.top_nav1_box > p > span{
	display: inline-block;
}

.btn1{
	display: flex;
	justify-content: center;
	align-items: center;
	width:170px;
	height: 44px;
	border-radius: 20px;
	background: #ff9933;
	border:1px solid #ff9933;
}

.btn1 > p{
	padding-right: 20px;
	background: url("images/ar1.png") no-repeat right center;
	background-size: 14px 14px;
	transition: .2s;
	font-size: 14px;
	color:#fff;
}

.btn1:hover{
	background: #fff;
}

.btn1:hover > p{
	color:#ff9933;
	background-image: url("images/ar1_2.png");
}

.top_nav1_box .btn1{
	margin:24px auto 0;
}

@media screen and (max-width:750px) {
	.top_nav1{
		justify-content: center;
	}
	
	.top_nav1_box{
		width:100%;
	}
	
	.top_nav1_box:nth-of-type(1){
		margin-bottom: 50px;
	}
}

@media screen and (max-width:550px) {
	.top_nav1_box_h{
		font-size: 16px;
	}
}

.top_bus{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto 80px;;
}

.heading1{
	font-size: 48px;
	line-height: 1.3;
}

.top_bus_list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.top_bus_box{
	width:50%;
	padding:50px 16px;
	background: #faf8f6;
	border-top: 2px solid #ff9933;
}

.top_bus_box_h{
	height: 100px;
	padding-left: 40px;
	display: flex;
	align-items: center;
	margin-bottom: 36px;
	font-size: 24px;
	line-height: 1.3;
}

.top_bus_box:nth-of-type(1) .top_bus_box_h{
	background: url("images/num01.webp") no-repeat left/contain;
}

.top_bus_box:nth-of-type(2) .top_bus_box_h{
	background: url("images/num02.webp") no-repeat left/contain;
}

.top_bus_box .btn1{
	margin-top: 30px;
}

@media screen and (max-width:750px) {
	.top_bus_box{
		width:100%;
	}
}

@media screen and (max-width:550px) {
	.top_bus{
		margin-bottom: 60px;
	}
	
	.heading1{
		font-size: 28px;
	}
	
	.top_bus_box{
		padding:30px 20px;
	}
	
	.top_bus_box_h{
		height: 70px;
		margin-bottom: 20px;
		padding-left: 10px;
		font-size: 18px;
	}
}

.top_nav2{
	max-width: 1140px;
	padding:0 20px;
	margin:0 auto 120px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_nav2_box{
	width:48%;
	max-width: 490px;
	height: 270px;
	background: #fbf6ef;
	border:1px solid #fbf6ef;
	padding:20px;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color:#000;
}

.top_nav2_box:hover{
	border:1px solid #ff9933;
	background:#fff;
}

.top_nav2_box img{
	width:230px;
	display: block;
	margin: 0 auto 18px;
}

.top_nav2_box_h{
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.top_nav2_box_h + p{
	font-size: 18px;
	line-height: 1.2;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	color:#cccccc;
}

@media screen and (max-width:550px) {
	.top_nav2{
		margin-bottom: 70px;
	}
	
	.top_nav2_box{
		width:100%;
		height: 180px;
	}
	
	.top_nav2_box:nth-of-type(1){
		margin-bottom: 20px;
	}
	
	.top_nav2_box img{
		width:200px;
		margin-bottom: 12px;
	}
	
	.top_nav2_box_h{
		font-size: 18px;
	}
	
	.top_nav2_box_h + p{
		font-size: 16px;
	}
}

.top_info{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.top_info_h .heading1{
	margin-bottom: 40px;
}

.info_list{
	width:calc( 100% - 230px );
	max-width: 850px;
}

.info_list_box{
	margin-bottom: 15px;
}

.info_list_box a{
	min-height: 60px;
	display: flex;
	align-items: center;
	padding:20px 40px;
	background: #eeeeee;
	border:1px solid #eeeeee;
	color:#000;
	border-radius: 20px;
}

.info_list_box a:hover{
	background: #fff;
	border:1px solid #ff9933;
}

.info_list_box a > div{
	display: flex;
	flex-wrap: wrap;
}

.info_list_box_date{
	width:130px;
}

.info_list_box_h{
	width:calc( 100% - 130px );
}

@media screen and (max-width:750px) {
	.top_info_h{
		width:100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 30px;
	}
	
	.top_info_h .heading1{
		margin-bottom: 0;
	}
	
	.info_list{
		width:100%;
	}
}

@media screen and (max-width:550px) {
	.top_info_h .btn1{
		width:120px;
		font-size: 12px;
	}
	
	.info_list_box a{
		padding:15px 20px;
	}
	
	.info_list_box_h{
		width:100%;
	}
}

footer{
	margin-top: 150px;
}

.footer_wrap{
	background: url("images/ft_bg.webp") no-repeat 30% top;
	background-size: cover;
}

.footer{
	max-width: 1240px;
	padding:40px 20px 0;
	height: 600px;
	margin:0 auto;
	display: flex;
	justify-content: flex-end;
}

.footer_text{
	width: 500px;
}

.ft_nav{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

.ft_nav > li{
	width:32%;
	margin-bottom: 10px;
}

.ft_nav > li > a{
	width:100%;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	color:#000;
	background: #fff;
	border:1px solid #fff;
}

.ft_nav > li > a:hover{
	background: #fbf6ef;
	border:1px solid #ff9933;
}

.ft_text_box{
	position: relative;
}

.ft_logo{
	display: block;
	max-width: 360px;
	margin-bottom: 35px;
}

.ft_logo2{
	width:110px;
	position: absolute;
	top:0;
	right: 0;
}

.ft_name{
	margin-bottom: 40px;
}

.ft_ad{
	margin-bottom: 5px;
}

.footer_text > p > span{
	display: inline-block;
	padding:0 5px;
}

.ft_inst{
	width:50px;
	display: block;
	margin-top: 30px;
}

.copy_r{
	min-height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:20px;
	background: #fff;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}

@media screen and (max-width:750px) {
	.footer{
		align-items: center;
		justify-content: center;
		text-align: center;
		height: 400px;
		padding:0 10px;
	}
	
	.footer_text{
		width:100%;
		max-width: 500px;
		padding:30px 20px;
		padding-top: 20px;
		background: rgba(255,255,255,0.60);
	}
	
	.ft_nav{
		display: none;
	}
	
	.ft_logo{
		width:100%;
		margin:0 auto 20px;
	}
	
	.ft_logo2{
		display: block;
		position: static;
		margin:0 auto 20px;
		width:80px;
	}
	
	.ft_name{
		margin-bottom: 20px;
	}
	
	.ft_inst{
		margin:20px auto 0;
		width:40px;
	}
}

@media screen and (max-width:550px) {
	footer{
		margin-top: 90px;
	}
}


.page_title_wrap{
	background: #fbf6ef;
	padding:30px 20px 20px;
	margin-bottom: 50px;
}

.page_title{
	max-width: 1200px;
	margin:0 auto;
}

.page_title_text{
	margin-bottom: 30px;
}

.page_title_text > p:nth-of-type(1){
	font-size: 48px;
	line-height: 1.2;
	border-bottom: 2px solid #ff9933;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.page_title_text > p:nth-of-type(2){
	font-size: 18px;
	line-height: 1.4;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	color:#cccccc;
}

.page_title_img{
	width:100%;
	height: 300px;
	margin-bottom: 20px;
}

.page_title_pp{
	background: url("images/page_title_pp.webp") no-repeat 40% 10%;
	background-size: cover;
}

.page_title_sp{
	background: url("images/page_title_sp.webp") no-repeat 60% 10%;
	background-size: cover;
}

.page_title_com{
	background: url("images/page_title_com.webp") no-repeat 70% 0;
	background-size: cover;
}

.page_title_ins{
	background: url("images/page_title_ins.webp") no-repeat 50% 0;
	background-size: cover;
}

.page_title_info{
	background: url("images/page_title_info.webp") no-repeat 70% 0;
	background-size: cover;
}

.page_title_other{
	background: url("images/page_title_other.webp") no-repeat 70% 0;
	background-size: cover;
}

@media screen and (max-width:750px) {
	.page_title_text > p:nth-of-type(1){
		font-size: 36px;
	}
	
	.page_title_img{
		height: 250px;
	}
}

@media screen and (max-width:550px) {
	.page_title_text{
		margin-bottom: 20px;
	}
	
	.page_title_text > p:nth-of-type(1){
		font-size: 24px;
		padding-bottom: 6px;
		margin-bottom: 10px;
	}
	
	.page_title_text > p:nth-of-type(2){
		font-size: 16px;
	}
	
	.page_title_img{
		height: 150px;
	}
}

.breadcrumbs{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumbs > span{
	font-size: 14px;
	margin-right: 14px;
}

.breadcrumbs > span a{
	color:#000;
}

.breadcrumbs > span a:hover{
	color:#ff9933;
}

.page_wrap{
	max-width: 1240px;
	padding:0 20px;
	margin:0 auto;
}

.pp_top_text{
	margin-bottom: 70px;
}

.pp_top_text > p{
	line-height: 1.8;
	margin-bottom: 34px;
}

.pp_box{
	margin-bottom: 50px;
}

.pp_box a{
	color:#ff9933;
}

.pp_box a:hover{
	color:#ccc;
}

.pp_box_h{
	font-size: 18px;
	padding:15px 20px;
	margin-bottom: 20px;
	background: #f6f9fa;
}

.pp_box_h > p{
	position: relative;
	padding-left: 24px;
}

.pp_box_h > p > span{
	position: absolute;
	top:0;
	left: 0;
}

.pp_box_text{
	padding-left: 44px;
}

.pp_box_text > p{
	margin-bottom: 20px;
}

.pp_tline{
	border-top: 1px solid #cccccc;
	padding:20px 0 0;
	margin-top: 20px;
}

.pp_tline_h{
	padding-left: 16px;
	position: relative;
	margin-bottom: 10px;
}

.pp_tline_h > span{
	position: absolute;
	top:0;
	left: 0;
}

.pp_tline > p{
	padding-left: 16px;
}

.pp_ol1 > li{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.pp_ol1_h{
	width:430px;
	position: relative;
	padding-left: 30px;
}

.pp_ol1_h > span{
	position: absolute;
	top:0;
	left: 0;
}

.pp_ol1 > li > div{
	width:calc( 100% - 430px );
}

.ul1 > li{
	position: relative;
	padding-left: 16px;
	margin-bottom: 4px;
}

.ul1 > li::before{
	content:"・";
	display: block;
	position: absolute;
	top:0;
	left: 0;
}

.pp_text1{
	margin-bottom: 40px;
}

.pp_text1_h{
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.pp_text1_h > span{
	position: absolute;
	top:0;
	left: 0;
}

.ol1 > li{
	padding-left: 20px;
	position: relative;
	margin-bottom: 6px;
}

.ol1 > li > span{
	position: absolute;
	top:0;
	left: 0;
}

.ol2 > li{
	position: relative;
	padding-left: 30px;
	margin-bottom: 6px;
}

.ol2 > li > span{
	position: absolute;
	top:0;
	left: 0;
}

.pp_con{
	padding:20px;
	background: #fbf6ef;
}

.pp_con_h{
	font-size: 18px;
	line-height: 26px;
	padding-left: 40px;
	position: relative;
	margin-bottom: 25px;
}

.pp_con_h::before{
	display: block;
	content:"";
	width:26px;
	height: 26px;
	background: #ff9933;
	position: absolute;
	top:0;
	left: 0;
}

.pp_con_flex{
	display: flex;
	flex-wrap: wrap;
	padding-left: 40px;
}

.pp_con_name{
	width:300px;
	line-height: 1.8;
	border-right: 1px solid #ccc;
}

.pp_con_flex > div{
	width:calc( 100% - 300px );
	padding-left: 50px;
	line-height: 1.8;
}

.pp_con_flex > div > p:nth-of-type(2){
	font-size: 14px;
	line-height: 1.5;
	margin-top: 15px;
}

.pp_last{
	text-align: right;
	font-size: 14px;
	margin-top: 20px;
}

@media screen and (max-width:1000px) {
	.pp_ol1_h{
		width:100%;
		margin-bottom: 10px;
	}
	
	.pp_ol1 > li > div{
		width:100%;
		padding-left: 30px;
	}
	
	.pp_con_name{
		width:100%;
		border-right: 0;
		border-bottom: 1px solid #ccc;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	
	.pp_con_flex > div{
		width:100%;
		padding-left: 0;
	}
}

@media screen and (max-width:550px) {
	.pp_box_h{
		font-size: 16px;
		padding:10px;
	}
	
	.pp_box_text{
		padding:0 10px;
	}
	
	.pp_ol1 > li{
		margin-bottom: 30px;
	}
	
	.pp_con_h{
		margin-bottom: 15px;
	}
	
	.pp_con_flex{
		padding-left: 0;
	}
	
	.pp_con_flex > div > p:nth-of-type(2){
		font-size: 12px;
	}
	
	.pp_last{
		font-size: 12px;
	}
}

.sp_box{
	max-width: 960px;
	margin:0 auto;
}

.sp_box_h{
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
}

.sp_box_h + p{
	display: table;
	line-height: 1.8;
	margin:0 auto 50px;
}

.ol3 > li{
	list-style: decimal outside;
	margin-bottom: 20px;
	margin-left: 20px;
}

@media screen and (max-width:550px) {
	.sp_box_h{
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.sp_box_h + p{
		margin-bottom: 30px;
	}
}

.con_text{
	display: table;
	margin:0 auto 50px;
}

.con_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding:40px 0;
	padding-right: 30px;
	border:10px solid #eee;
}

.con_flex_name{
	width:400px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #ccc;
	text-align: center;
}

.con_flex_text{
	width:calc( 100% - 400px );
	padding-left: 30px;
}

.con_flex_text > p{
	margin-top: 20px;
}

.con_flex_text > p:first-of-type{
	margin-top: 0;
}

.con_flex_text > p a{
	color:#000;
	text-decoration: none;
}

.con_flex_text > p a:hover{
	color:#ff9933;
}

@media screen and (max-width:1000px) {
	.con_flex_name{
		width:300px;
	}
	
	.con_flex_text{
		width:calc( 100% - 300px );
	}
}

@media screen and (max-width:700px) {
	.con_flex{
		padding:30px 20px;
	}
	
	.con_flex_name{
		width:100%;
		height: auto;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-right: 0;
		border-bottom: 1px solid #ccc;
	}
	
	.con_flex_text{
		width:100%;
		padding:0;
	}
}

.heading2_1{
	position: relative;
	margin-bottom: 60px;
}

.heading2_1 > img{
	display: block;
}

.heading2_1 > p{
	width:100%;
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 30px;
	line-height: 1.2;
}

.heading2_2 > img{
	margin: 0 auto;
}

.heading2_2 > p{
	text-align: center;
}

.com_box{
	margin-bottom: 150px;
}

.com1{
	margin-top: 80px;
}

.com1_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

.com1_img{
	width:30%;
	max-width: 380px;
}

.com1_text{
	width:66%;
	max-width: 760px;
}

.com1_text > p{
	margin-bottom: 20px;
}

.com1_sign{
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.com1_sign img{
	width:100%;
	max-width: 460px;
	display: block;
}

@media screen and (max-width:750px) {
	.heading2_1{
		margin-bottom: 40px;
	}
	
	.heading2_1 img{
		max-height: 80px;
	}
	
	.heading2_1 > p{
		font-size: 24px;
	}
	
	.com1 .heading2_1 img{
		display: block;
		margin: 0 auto;
	}
	
	.com1 .heading2_1 > p{
		text-align: center;
	}
	
	.com1_flex{
		justify-content: center;
	}
	
	.com1_img{
		width:100%;
		max-width: 200px;
		margin-bottom: 30px;
	}
	
	.com1_text{
		width:100%;
	}
}

@media screen and (max-width:550px) {
	.com_box{
		margin-bottom: 70px;
	}
	
	.com1{
		margin-top: 40px;
	}
	
	.heading2_1{
		margin-bottom: 30px;
	}
	
	.heading2_1 img{
		max-height: 60px;
	}
	
	.heading2_1 > p{
		font-size: 20px;
	}
}

.co_tbl{
	width:100%;
	max-width: 850px;
	margin:0 auto;
}

.co_tbl th{
	width:190px;
	border-bottom: 1px solid #ccc;
	padding:20px 10px;
	vertical-align: top;
}

.co_tbl td{
	border-bottom: 1px solid #ccc;
	padding:20px 0;
}

.co_tbl td table{
	width:100%;
}

.co_tbl td table th{
	display: table-cell;
	width:140px;
	border-bottom: 0;
	padding:0 0 5px;
	vertical-align: top;
}


.co_tbl td table td{
	width:auto;
	display: table-cell;
	border-bottom: 0;
	padding:0 0 5px;
}

.co_tbl td table tr:last-of-type th , .co_tbl td table tr:last-of-type td{
	padding-bottom: 0;
}

@media screen and (max-width:750px) {
	.co_tbl th{
		width:120px;
	}
}

@media screen and (max-width:550px) {
	.co_tbl{
		width:100%;
	}
	
	.co_tbl th{
		display: block;
		width:100%;
		border-bottom: 0;
		padding:20px 0 0;
	}
	
	.co_tbl td{
		display: block;
		width:100%;
		padding-top: 6px;
	}
}

.com_bi{
	max-width: 1000px;
	margin:70px auto 0;
}

.com_bi_box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 80px;
}

.com_bi_box:last-of-type{
	margin-bottom: 0;
}

.com_bi_box_h{
	width:210px;
	padding:20px;
	font-size: 18px;
	background: #fbf6ef;
}

.com_bi_box_text{
	width:calc( 100% - 250px );
	padding:20px 0 0;
}

.com_bi_box_text_h{
	font-size: 18px;
	line-height: 1.2;
	border-bottom: 1px solid #000;
	margin-bottom: 15px;
	display: table;
}

.com_bi_box_text > p{
	margin-bottom: 15px;
}

.com_bi_box_text > table{
	width:100%;
}

.com_bi_box_text > table th{
	width:130px;
	vertical-align: top;
	padding-bottom: 5px;
}

.com_bi_box_text > table td{
	padding-bottom: 5px;
}

.com_bi_box_text .btn1{
	margin-top: 30px;
}

@media screen and (max-width:750px) {
	.com_bi_box_h{
		width:100%;
	}
	
	.com_bi_box_text{
		width:100%;
		padding:20px 20px 0;
	}
	
	.com_bi_box_text .btn1{
		margin:30px auto 0;
	}
}

@media screen and (max-width:550px) {
	.com_bi{
		margin-top: 50px;
	}
	
	.com_bi_box{
		margin-bottom: 40px;
	}
	
	.com_bi_box_h{
		font-size: 16px;
		padding: 10px 15px;
	}
	
	.com_bi_box_text{
		padding:20px 15px 0;
	}
	
	.com_bi_box_text_h{
		font-size: 16px;
	}
	
	.com_bi_box_text > table th{
		width:100px;
	}
	
	.com_bi_box_text .btn1{
		margin:20px auto 0;
	}
}

.ins1_wrap{
	background: url("images/ins_bg.webp") no-repeat center/cover;
	padding:50px 20px 30px;
	margin-bottom: 50px;
}

.ins1{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.ins1_h{
	display: flex;
	justify-content: center;
	align-items: center;
	width:440px;
	height: 110px;
	font-size: 30px;
	line-height: 1.2;
	color:#fff;
	background: #ff9933;
	border-radius: 20px;
	margin:0 auto 30px;
}

.ins1_1{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 30px;
}

.ins1_1 > div:nth-of-type(1) , .ins1_1 > div:nth-of-type(3){
	color: #666666;
	font-size: 72px;
	line-height: 1;
	font-weight: 300;
}

.ins1_1 > div:nth-of-type(1){
	transform: rotateY(180deg);
}

.ins1_1 > div:nth-of-type(2){
	padding:0 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 30px;
}

.ins1_1 > div:nth-of-type(2) > p:nth-of-type(1) span{
	color:#006633;
}

.ins1_1 > div:nth-of-type(2) > p:nth-of-type(2) span{
	color:#990000;
}

.ins1_2{
	display: table;
	font-size: 24px;
	line-height: 1.2;
	border-bottom: 1px solid #000;
	margin:0 auto 40px;
}

.ins1_3{
	font-size: 72px;
	line-height: 1;
	text-align: center;
	color:#993300;
}

.ins1_3 span{
	padding:0 8px;
}

.ins1_car1{
	width:230px;
	position: absolute;
	bottom:0;
	left: 0;
}

.ins1_car2{
	width:224px;
	position: absolute;
	bottom:0;
	right: 0;
}

@media screen and (max-width:1150px) {
	.ins1_car1 , .ins1_car2{
		display: none;
	}
}

@media screen and (max-width:750px) {
	.ins1_3{
		font-size: 46px;
	}
	
	.ins1_3 span{
		padding:0 4px;
	}
}

@media screen and (max-width:550px) {
	.ins1_h{
		font-size: 24px;
		width:100%;
		max-width:300px;
		height: 80px;
	}
	
	.ins1_1 > div:nth-of-type(1), .ins1_1 > div:nth-of-type(3){
		font-size: 48px;
	}
	
	.ins1_1 > div:nth-of-type(2){
		font-size: 20px;
		padding:0;
	}
	
	.ins1_2{
		font-size: 18px;
	}
	
	.ins1_3{
		font-size: 30px;
	}
}

.ins_link1{
	padding:30px;
	background: #fbf6ef;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.ins_link1 > p{
	font-size: 24px;
}

.ins_link1 > p span{
	display: inline-block;
}

.ins_link1 > div{
	width:150px;
}

.ins_link1 > div img{
	width:36px;
	display: block;
	margin:0 auto;
}

.ins_link1 > a{
	font-size: 14px;
	line-height: 1.4;
	color:#ff9933;
	font-family: "noto-sans", sans-serif;
	font-weight: 500;
}

.ins_link1 > a img{
	width:300px;
	display: block;
	margin-bottom: 5px;
	transition: .3s;
}

.ins_link1 > a:hover{
	color:#006c60;
}

.ins_link1 > a:hover img{
	opacity: 0.6;
}

@media screen and (max-width:950px) {
	.ins_link1{
		justify-content: center;
		padding:30px 20px;
	}
	
	.ins_link1 > p{
		width:100%;
		text-align: center;
	}
	
	.ins_link1 > div{
		width:100%;
		padding:10px 0;
	}
	
	.ins_link1 > div img{
		transform: rotate(90deg);
	}
	
	.ins_link1 > a{
		text-align: center;
	}
	
	.ins_link1 > a img{
		margin:0 auto 10px;
	}
}

@media screen and (max-width:550px) {
	.ins_link1 > p{
		font-size: 18px;
	}
}

.ins2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ins2_box{
	width:48%;
	max-width: 560px;
	margin-bottom: 60px;
}

.ins2_box:nth-of-type(1){
	width:100%;
	max-width: 100%;
}

.ins2_box_h{
	width:100%;
	padding:15px 20px;
	background: #f6f9fa;
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 1.3;
}

.ins2_box_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ins2_box_flex .ins2_box_img{
	width:430px;
}

.ins2_box_flex .ins2_box_text{
	width:calc( 100% - 460px );
}

.ins2_box_p1{
	font-size: 18px;
	margin-bottom: 20px;
	color:#ff9933;
}

.ins2_box_p2{
	margin-bottom: 20px;
}

.ins2_box_p3{
	font-size: 14px;
}

.ul2 > li{
	padding-left: 20px;
	position: relative;
	margin-bottom: 10px;
}

.ul2 > li::before{
	content:"◉";
	display: block;
	position: absolute;
	top:0;
	left: 0;
}

.ins2_box_text .ul2 > li{
	font-size: 18px;
	padding-left: 24px;
}

@media screen and (max-width:950px) {
	.ins2_box_flex .ins2_box_img{
		width:48%;
	}

	.ins2_box_flex .ins2_box_text{
		width:48%;
	}
}

@media screen and (max-width:750px) {
	.ins2_box{
		width:100%;
		max-width: 100%;
	}
	
	.ins2_box_flex .ins2_box_img{
		width:100%;
		margin-bottom: 30px;
	}

	.ins2_box_flex .ins2_box_text{
		width:100%;
	}
}

@media screen and (max-width:550px) {
	.ins2_box{
		margin-bottom: 40px;
	}
	
	.ins2_box_h{
		font-size: 16px;
	}
	
	.ins2_box_text .ul2 > li{
		font-size: 16px;
	}
	
	.ins2_box_p1{
		font-size: 16px;
	}
	
	.ins2_box_p3{
		font-size: 12px;
	}
}

.ins3_wrap{
	border:10px solid #eeeeee;
	padding:30px;
	margin-bottom: 50px;
}

.ins3{
	max-width: 1020px;
	margin:0 auto;
}

.ins3_h{
	font-size: 24px;
	line-height: 1.3;
	color:#ff9933;
	text-align: center;
	margin-bottom: 20px;
}

.ins3_p1{
	text-align: center;
	margin-bottom: 50px;
}

.ins_link2{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.ins_link2 > p{
	font-size: 24px;
}

.ins_link2 > p span{
	display: inline-block;
}

.ins_link2 > div{
	width:150px;
}

.ins_link2 > div img{
	width:36px;
	display: block;
	margin:0 auto;
}

.ins_link2 > a{
	font-size: 14px;
	line-height: 1.4;
	color:#ff9933;
	font-family: "noto-sans", sans-serif;
	font-weight: 500;
}

.ins_link2 > a img{
	width:300px;
	display: block;
	margin-bottom: 5px;
	transition: .3s;
}

.ins_link2 > a:hover{
	color:#006c60;
}

.ins_link2 > a:hover img{
	opacity: 0.6;
}

.ins3 .ol1{
	font-size: 14px;
	margin-bottom: 34px;
}

.ins3_ms{
	display: flex;
	justify-content: space-between;
}

.ins3_ms > a{
	width:130px;
}

.ins3_ms > div{
	width:calc( 100% - 150px );
	display: flex;
	align-items: center;
	font-size: 14px;
}

@media screen and (max-width:950px) {
	.ins_link2{
		justify-content: center;
	}
	
	.ins_link2 > p{
		width:100%;
		text-align: center;
	}
	
	.ins_link2 > div{
		width:100%;
		padding:10px 0;
	}
	
	.ins_link2 > div img{
		transform: rotate(90deg);
	}
	
	.ins_link2 > a{
		text-align: center;
	}
	
	.ins_link2 > a img{
		margin:0 auto 10px;
	}
}

@media screen and (max-width:550px) {
	.ins3_wrap{
		padding:30px 20px;
		border-width: 5px;
	}
	
	.ins3_h{
		font-size: 20px;
	}
	
	.ins3_p1{
		margin-bottom: 30px;
	}
	
	.ins_link2{
		margin-bottom: 30px;
	}
	
	.ins_link2 > p{
		font-size: 20px;
	}
	
	.ins3_ms > a{
		width:100px;
	}
	
	.ins3_ms > div{
		width:calc( 100% - 110px );
		font-size: 12px;
	}
}

.ins_1day{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding:30px;
	background: #fbf6ef;
	margin-bottom: 60px;
}

.ins_1day_img{
	width:270px;
}

.ins_1day_text{
	width:calc( 100% - 300px );
}

.ins_1day_h{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #ff9933;
	margin-bottom: 20px;
}

.ins_1day_h > p{
	font-size: 24px;
	line-height: 1.2;
	padding-right: 20px;
	padding-bottom: 6px;
}

.ins_1day_h > div{
	display: flex;
	align-items: flex-end;
	padding-bottom: 6px;
}

.ins_1day_text > p{
	margin-bottom: 20px;
}

.ins_1day_text > ul > li{
	font-size: 14px;
	line-height: 1.4;
	margin-top: 4px;
	padding-left: 20px;
	position: relative;
}

.ins_1day_text > ul > li::before{
	content:"※";
	display: block;
	position: absolute;
	top:0;
	left: 0;
}

.sp_show{
	display: none;
}

@media screen and (max-width:750px) {
	.ins_1day_img{
		margin:0 auto 30px;
	}
	
	.ins_1day_text{
		width:100%;
	}
	
	.ins_1day_h > p{
		padding-right: 0;
		width:100%;
		text-align: center;
	}
	
	.sp_show{
		display: inline;
	}
	
	.sp_none{
		display: none;
	}
}

@media screen and (max-width:550px) {
	.ins_1day{
		padding:30px 20px;
	}
	
	.ins_1day_h > p{
		font-size: 20px;
	}
	
	.ins_1day_text > ul > li{
		font-size: 12px;
		padding-left: 18px;
	}
}

.ins_faq{
	margin-bottom: 50px;
}

.ins_faq_box{
	padding:20px 0 30px;
	border-bottom: 1px solid #ccc;
}

.ins_faq_box_h{
	min-height: 30px;
	padding-left: 70px;
	position: relative;
	display: flex;
	color:#ff9933;
	padding-top: 4px;
	margin-bottom: 10px;
}

.ins_faq_box_h img{
	width:30px;
	position: absolute;
	top:0;
	left: 20px;
}

.ins_faq_box_text{
	padding-left: 70px;
}

@media screen and (max-width:550px) {
	.ins_faq_box:first-of-type{
		padding-top: 0;
	}
	
	.ins_faq_box{
		padding:20px 0;
	}
	
	.ins_faq_box_h{
		padding-left: 40px;
	}
	
	.ins_faq_box_h img{
		left: 0px;
	}
	
	.ins_faq_box_text{
		padding-left: 0;
	}
}

.ins_ms_link{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width:350px;
	height: 150px;
	border:10px solid #eeeeee;
	margin:0 auto 60px;
	color:#ff9933;
}

.ins_ms_link img{
	width:180px;
	display: block;
	margin:0 auto 6px;
}

.ins_ms_link:hover{
	opacity: 0.6;
}

.ins_last_text{
	text-align: center;
	line-height: 1.8;
}

.ins_last_text span{
	display: inline-block;
}

@media screen and (max-width:550px) {
	.ins_ms_link{
		border-width: 5px;
		width:280px;
		height: 120px;
	}
}

.info_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.info_l{
	width:calc( 100% - 280px );
	max-width: 830px;
}

.info_r{
	width:230px;
}

.info_r_box > p{
	padding-left: 15px;
	font-size: 18px;
	line-height: 34px;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	color:#fff;
	background: #ff9933;
	margin-bottom: 16px;
}

.info_arch{
	padding-left: 15px;
}

.info_arch li{
	margin-bottom: 8px;
}

.info_arch li a{
	color:#000;
	text-decoration: none;
}

.info_arch li a:hover{
	color: #ff9933;
}

.info_date{
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	margin-bottom: 14px;
}

.info_h{
	font-size: 24px;
	line-height: 1.3;
	border-bottom: 1px solid #ff9933;
	padding-bottom: 8px;
	margin-bottom: 25px;
}

.info_content > p{
	margin-bottom: 15px;
}

.info_content strong{
	font-weight: bold;
}
.info_content em{
	font-style: italic;
}
.info_content li{
	list-style: inherit;
	margin-left: 20px;
}

.info_l .info_list{
	width:100%;
}

@media screen and (max-width:800px) {
	.info_l{
		width:100%;
		margin-bottom: 50px;
	}
	
	.info_r{
		width:100%;
	}
	
	.info_arch{
		display: flex;
		flex-wrap: wrap;
	}
	
	.info_arch li{
		width:32%;
		margin-right: 2%;
	}
	
	.info_arch li:nth-of-type(3n){
		margin-right: 0;
	}
}

@media screen and (max-width:550px) {
	.info_h{
		font-size: 18px;
	}
	
	.info_arch li{
		width:48%;
		margin-right: 4%;
	}
	
	.info_arch li:nth-of-type(3n){
		margin-right: 4%;
	}
	.info_arch li:nth-of-type(2n){
		margin-right: 0;
	}
}

.wp-pagenavi{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "noto-sans", sans-serif;
	margin-top: 30px;
}

.wp-pagenavi > .current , .wp-pagenavi > .page{
	display: flex;
	justify-content: center;
	align-items: center;
	width:40px;
	height: 40px;
	border:1px solid #ff9933;
	margin:0 7px;
	color:#333;
	text-decoration: none;
}

.wp-pagenavi > .page{
	color:#fff;
	background: #ff9933;
	transition: .2s;
}

.wp-pagenavi > .page:hover{
	background: #fff;
	color:#ff9933;
}

.nextpostslink , .previouspostslink{
	color:#333;
	margin:0 7px;
}

.nextpostslink:hover , .previouspostslink:hover{
	color:#ff9933;
}

.other_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.other_box{
	width:48%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.other_box_img{
	width:170px;
}

.other_box_text{
	width:calc( 100% - 200px );
	line-height: 1.7;
}

.other_box_h{
	width:100%;
	padding:10px 20px;;
	background: #f6f9fa;
	font-size: 18px;
	margin-bottom: 20px;
}

.other_box_text .btn1{
	margin-top: 20px;
}

@media screen and (max-width:850px) {
	.other_list{
		justify-content: center;
	}
	
	.other_box{
		width:100%;
		max-width: 650px;
	}
}

@media screen and (max-width:450px) {
	.other_box{
		margin-bottom: 30px;
	}
	
	.other_box_h{
		padding:10px;
		font-size: 16px;
	}
	
	.other_box_img{
		width:100px;
	}
	
	.other_box_text{
		width:calc( 100% - 120px );
	}
	
	.other_box_text .btn1{
		width:160px;
		height: 30px;
		font-size: 12px;
		margin-top: 10px;
	}
	
	.other_box_text .btn1 > p{
		padding:0;
		background: 0;
	}
}



















