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

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

body{
	font-size: 14px;
	color:#000;
	/*
	line-height:150%;
	background-image:url(../index/image/bg_header.jpg);
	background-repeat:repeat-x;
	background-position:left top;
	*/
	/*font-family:"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-family: 'Noto Sans JP', sans-serif;
	background-color:#FFF;
}
img{
	border:0;
	vertical-align:top;
	vertical-align:bottom;
	/**/
	max-width: 100%;
    height: auto;
}
a{
	overflow:hidden;
	outline:none;
	text-decoration:none;
}
object {
	display: block;
}

.notosans{
	font-family: "Noto Sans JP", sans-serif;
}
.reemkufi{
	font-family: "Reem Kufi Fun", sans-serif;
}
.notosanscc{
	font-family: "Noto Sans SC", sans-serif;
}

.sp_hide {
	display: none !important;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

/*-----------------------------------------------------------*/

#header_wrap{
	width: 100%;
    height: 70px;
	background: url("../index/image_sp/gmenu_bg.jpg") 0 0 / cover no-repeat;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

#header_wrap #header{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header_wrap #header .logo{
    position: relative;
    width: 130px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-left: 16px;
}
#header_wrap #header .logo a, #header_wrap #header .logo img{
	display: block;
	width: 100%;
	height: auto;
}

/*※縦スクロール可*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
    width: 100%;
    height: calc( 100vh - 70px );
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#fff;
    top: 70px;
    right: -120%;
    transition: all 0.6s;
}

#g-nav .menutxt{
    font-size: 28px;
    color: #E01616;
    position: absolute;
    top: 20px;
    left: 26px;
}

#g-nav.panelactive{
    right: 0;
}

#g-nav.panelactive #g-nav-list{
}
#g-nav.panelactive #g-nav-list::-webkit-scrollbar{
  display: none;
}

.openbtn{
    position: relative;
    cursor: pointer;
    width: 70px;
    height: 70px;
    z-index: 1000;
    background-color: #f05b5f;
}
.openbtn::before{
    content: 'MENU';
    display: block;
	width: 100%;
	height: 15px;
	font-size: 15px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 13px;
}
.openbtn.active::before{
    content: 'CLOSE';
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
	left: 0;
	right: 0;
	margin: auto;
    width: 31px;
    height: 1px;
    border-radius: 5px;
    background: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 20px; 
}

.openbtn span:nth-of-type(2) {
  top: 28px;
}
/*activeクラスが付与したら線が回転して×に変更*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
}
.openbtn.active span:nth-of-type(2) {
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
}

/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul{
    width: calc( 100% - 50px );
    margin: 15px auto 0;
	list-style-type: none;
}
#header_wrap #g-nav ul > li{
    position: relative;
}
#header_wrap #g-nav ul > li > a{
    height: 55px;
    display: flex;
    align-items: center;
    font-size: 18px;
	font-weight: 500;
    color: #000;
    position: relative;
    border-bottom: 1px solid #c8c8c8;
    background-color: #fff;
}
#header_wrap #g-nav ul > li > a::before{
    content: '';
    display: block;
	width: 14px;
	height: 16px;
    position: absolute;
    top: 0;
	bottom: 0;
    right: 13px;
    margin: auto;
}
#header_wrap #g-nav ul > li.pink > a::before{
    content: '';
	background: url("../index/image_sp/menuicon01.png") 0 0 / cover no-repeat;
}
#header_wrap #g-nav ul > li.yellow > a::before{
    content: '';
	background: url("../index/image_sp/menuicon03.png") 0 0 / cover no-repeat;
}
#header_wrap #g-nav ol{
	list-style-type: none;
}
#header_wrap #g-nav ol > li{
    position: relative;
}
#header_wrap #g-nav ol > li > a{
    height: 45px;
	padding-left: 13px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #464646;
    position: relative;
}
#header_wrap #g-nav ol.pink > li > a{
    border-bottom: 1px solid #f0bbbd;
    background-color: #fef1ef;
}
#header_wrap #g-nav ol.yellow > li > a{
    border-bottom: 1px solid #ffa800;
    background-color: #fff7e3;
}
#header_wrap #g-nav ol > li:last-child > a{
    border-bottom: 1px solid #c8c8c8;
}
#header_wrap #g-nav ol > li > a::before{
    content: '';
    display: block;
	width: 11px;
	height: 13px;
    position: absolute;
    top: 0;
	bottom: 0;
    right: 14px;
    margin: auto;
}
#header_wrap #g-nav ol.pink > li > a::before{
    content: '';
	background: url("../index/image_sp/menuicon02.png") 0 0 / cover no-repeat;
}
#header_wrap #g-nav ol.yellow > li > a::before{
    content: '';
	background: url("../index/image_sp/menuicon04.png") 0 0 / cover no-repeat;
}

#header_wrap #g-nav .banneres{
    width: calc( 100% - 50px );
    margin: 40px auto 0;
}
#header_wrap #g-nav .banneres > a{
    display: block;
}
#header_wrap #g-nav .banneres > a:not(:first-of-type){
    margin-top: 15px;
}
#header_wrap #g-nav .banneres > a:last-of-type{
    margin-top: 25px;
}
#header_wrap #g-nav .banneres > a img{
    width: 100%;
    height: auto;
}

#header_wrap #g-nav .infomation{
	margin: 60px auto 0;
	background-color: #ffe5e2;
}
#header_wrap #g-nav .infomation > h2{
    background-color: #f0696d;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}
#header_wrap #g-nav .infomation > h2 p{
    width: calc( 100% - 110px );
	height: 55px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
}
#header_wrap #g-nav .infomation > h2 p::before{
    content: '';
	display: block;
	background: url("../index/image_sp/menuicon05.png") 0 0 / contain no-repeat;
	width: 21px;
	height: 23px;
	position: absolute;
	top: 19px;
	left: -25px;
}
#header_wrap #g-nav .infomation > dl{
    margin-top: 20px;
}
#header_wrap #g-nav .infomation > dl:last-of-type{
    padding-bottom: 100px;
}
#header_wrap #g-nav .infomation > dl > dt{
    width: calc( 100% - 110px );
	padding: 10px 30px;
	margin: 0 auto;
	background-color: #fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}
#header_wrap #g-nav .infomation > dl > dt::before{
    content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-color: #f0696d;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 10px;
}
#header_wrap #g-nav .infomation > dl > dd{
	width: calc( 100% - 70px );
	margin: 10px auto 0;
}
#header_wrap #g-nav .infomation > dl > dd > a{
    font-family: "Reem Kufi Fun", sans-serif;
	font-size: 23px;
	color: #4e2700;
}
#header_wrap #g-nav .infomation > dl > dd > a span{
    font-family: "Noto Sans SC", sans-serif;
}

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
	border-top: 1px solid #adadad;
	padding-top: 28px;
	position: relative;
}
#footer_body > .logo{
	display: flex;
	justify-content: center;
}
#footer_body > .logo a img{
	width: 180px;
	height: auto;
}

#footer_body address{
	font-style: normal;
}

#footer_body #f_left_col{
	width: calc( 100% - 50px );
	margin: 20px auto 0;
}
#footer_body #f_left_col #f_photo{
	display: none;
}
#footer_body #f_left_col .text_col{
	display: flex;
	flex-direction: column;
	gap: 25px 0;
}
#footer_body #f_left_col .text_col > dl{
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}
#footer_body #f_left_col .text_col > dl dt{
	max-width: 92px;
	height: 33px;
	background-color: #f1696d;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer_body #f_left_col .text_col > dl:nth-of-type(1) dd{
	font-size: 15px;
	font-weight: 500;
	color: #4e2700;
	text-align: center;
}
#footer_body #f_left_col .text_col > dl dd a{
	font-family: "Reem Kufi Fun", sans-serif;
	font-size: 43px;
	color: #4e2700;
	line-height: 100%;
}
#footer_body #f_left_col .text_col > dl:nth-of-type(2) dd{
	font-size: 13px;
	font-weight: 500;
	color: #4e2700;
	line-height: 173%;
}

#footer_body #f_center_col{
	width: calc( 100% - 50px );
	margin: 20px auto 0;
}

#footer_body #f_center_col #f_access_txt > dl{
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}
#footer_body #f_center_col #f_access_txt > dl dt{
	max-width: 92px;
	height: 33px;
	background-color: #f1696d;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer_body #f_center_col #f_access_txt > dl dd{
	font-size: 13px;
	font-weight: 500;
	color: #4e2700;
	line-height: 173%;
}
#footer_body #f_center_col #f_access_txt > ul{
	margin-top: 10px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
#footer_body #f_center_col #f_access_txt > ul li{
	position: relative;
	font-size: 13px;
	font-weight: 500;
	color: #4e2700;
}
#footer_body #f_center_col #f_access_txt > ul li::before{
	content: '▶';
	color: #f1696d;
	padding-right: 2px;
}
#footer_body #f_center_col #f_access_txt > ul li a{
	color: #4e2700;
}
#f_center_col #access_block #f_access_map {
    background-image: url(../index/image/footer_map.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 208px;
    height: 194px;
    overflow: hidden;
	margin: 15px auto 0;
}
#f_center_col #access_block #f_access_map span{
    display: none;
}

#footer_body #f_right_col{
	width: calc( 100% - 50px );
	margin: 20px auto 35px;
}
#footer_body #f_right_col > dl{
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}
#footer_body #f_right_col > dl dt{
	max-width: 130px;
	height: 33px;
	background-color: #f1696d;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer_body #f_right_col > dl dd ul{
	margin-top: 10px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
#footer_body #f_right_col > dl dd ul li{
	position: relative;
	font-size: 13px;
	font-weight: 500;
	color: #4e2700;
}
#footer_body #f_right_col > dl dd ul li::before{
	content: '▶';
	color: #f1696d;
	padding-right: 2px;
}
#footer_body #f_right_col > dl dd ul li a{
	color: #4e2700;
}

body > #copy{
	padding-bottom: 50px;
	height: 48px;
	background-color: #ffccc3;	
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 500;
	color: #333;
}

/*-----------------------------------------------------------*/
/*コアページ共通*/

h2.hd{
	border: 1px solid #BCBCBC;
	box-sizing: border-box;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #FBFBFB;
	background: linear-gradient(180deg, rgba(251, 251, 251, 1) 0%, rgba(183, 183, 183, 1) 100%);
	font-size: 18px;
	padding: 5px 10px;
}

h3.hd{
	margin: 10px auto;
	padding: 5px 10px 5px 25px;
	font-size: 16px;
	position: relative;
	border-bottom: 1px dotted #BCBCBC;
}
h3.hd::before{
	content: '';
	width: 16px;
	height: 16px;
	background-color: #FF7F7F;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	position: absolute;
	top: 10px;
	left: 0;
}

h4.hd{
	margin: 10px auto;
	font-size: 16px;
	font-weight: bold;
	padding: 5px 10px 5px 15px;
	position: relative;
}
h4.hd::before{
	content: '';
	width: 5px;
	height: 85%;
	background-color: #FF7F7F;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}


/*-----------------------------------------------------------*/
/*各コンテンツの入り口ページのナビゲーション*/

.page_nav_wrap{
	width: 100%;
}

.page_nav_wrap_ins{
	width: 100%;
	margin: 0 auto 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.page_nav_wrap_ins .page_title_wrap{
	/*
	background: url(../page_navigation/bg_nav.jpg) 0 0 / contain no-repeat;
	overflow:hidden;
	*/
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.35);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.page_nav_wrap_ins .page_title_wrap_ins{
	position: relative;
	width: 100%;
    padding: 20px 0 25px;
    border: 1px solid #dbdbdb;
	box-sizing: border-box;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	display: flex;
    align-items: center;
}
.page_nav_wrap_ins .page_title_wrap_ins::before{
	font-family: 'Material Icons';
	content: '\e315';
	font-size: 35px;
	color: #FB8180;
}
.page_nav_wrap_ins .page_title_wrap_ins::after{
	content: '';
	position: absolute;
	width: calc( 100% - 4px );
	height: 10px;
	background-color: #FFE5E4;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-border-bottom-right-radius: 16px;
	-webkit-border-bottom-left-radius: 16px;
	-moz-border-radius-bottomright: 16px;
	-moz-border-radius-bottomleft: 16px;
	border-bottom-right-radius: 16px;
	border-bottom-left-radius: 16px;
}


.page_nav_wrap_ins .page_title_wrap_ins table{
    width: calc( 100% - 60px );
	height: 100%;
    margin: 0 auto;
}

.page_nav_wrap_ins .page_title_wrap_ins table td{
	text-align:left;
	vertical-align:middle;
	font-size: 15px;
	line-height: 125%;
}

.page_nav_wrap_ins .bl-hot a{
	display:block;
	color:#000;
	font-weight:bold;
	text-decoration:none;
	font-size:1.1em;
}

.page_nav_wrap_ins .bl-hover a{
	color:#F99;
}

.page_nav_wrap_ins .page_title_wrap_ins div{
	width: 56px;
	height: 54px;
	padding-right: 25px;
}

.page_nav_wrap_ins ul{
	width: 100%;
	padding:10px 0px 10px 10px;
}

.page_nav_wrap_ins ul li{
	background-image:url(../page_navigation/icon_nav.jpg);
	background-repeat:no-repeat;
	background-position:left 0.5em;
	padding-left:10px;
	margin-bottom:5px;
}

.page_nav_wrap_ins ul li a{
	font-size: 14px;
	color:#000;
}
.page_nav_wrap_ins ul li ul{
	margin-left:0px;
}

.page_nav_wrap_ins ul li ul li{
	list-style-type:none;
	padding:0px;
	background-image:none;
}

/*-----------------------------------------------------------*/
/*孫ページナビゲーション*/

ul#page_navigation, ul#page_navigation2 {
	width: 100%;
	margin: 0px auto 20px;
	overflow:hidden;
	display: flex;
	flex-wrap: wrap;
	list-style-type:none;
	gap: 8px 4px;
}
#page_navigation li {
	width: calc( 50% - 2px );
}
#page_navigation2 li {
	width: calc( 100% - 2px );
}
#page_navigation li a, #page_navigation2 li a {
	display:flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 25px;
	height: calc( 100% - 10px );
	background: #FED1CC;
	background: linear-gradient(180deg, rgba(254, 209, 204, 1) 0%, rgba(250, 178, 180, 1) 100%);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
	text-decoration: none;
	font-size: 15px;
	color: #000;
	padding: 5px 0;
}
#page_navigation li a span, #page_navigation2 li a span {
	display: inline-block !important;
	width: 90%;
	border-bottom: 1px solid #FA757C;
	text-align: center;
}


/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
