@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

*:focus {
  outline: none;
}

html { 
    font-size: 62.5%;
}

body {
    font-family: "Zen Maru Gothic", serif;
	font-size: 14px;
    font-weight: 500;
	color: #333;
    line-height: 1.5;
}

/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

#all_wrap {
}

#contents {
    width: 100vw;
    overflow-x: visible;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}

a {
    font-size: 14px;
	outline: none;
	color: #333333;
	text-decoration:none;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}

/*電話番号のリンク（.tellink）はPCではOFF*/
a.tellink{
}

.pc_hide {
}
.sp_hide {
	display: none !important;
}

ul{
    list-style-type: none;
}

input, textarea{
    /*bodyと同じフォントcssを入れる*/
    font-family: "Zen Maru Gothic", serif;
	font-size: 14px;
    font-weight: 500;
	color: #333;
    line-height: 1.5;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
select::-ms-expand {
    display: none;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/*-----------------------------------------------------------*/
/*フォント*/

.noto-sans-jp{
	font-family: "Noto Sans JP", sans-serif;
}

.zen-kaku-gothic-new{
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.zen-maru-gothic{
	font-family: "Zen Maru Gothic", serif;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/


/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
	width: 100%;
    height: 75px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}

#header_wrap #header{
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header_wrap #header .logo{
    position: relative;
    width: 79.17%;
    height: 75px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s;
}
body.scrolloff #header_wrap #header .logo{
    z-index: 11;
    transition: all 0.6s;
}
#header_wrap #header .logo img{
    /*width: 81.58%;*/
	width: 86.58%;
    height: auto;
}

/*※縦スクロール可*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 35%, rgba(255,248,230,1) 100%);	
    top:0;
    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;
}

.openbtn4{
    position: relative;
    cursor: pointer;
    width: 55px;
    height: 55px;
    z-index: 1000;
    background-color: #EF685E;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin-right: 18px;
}
.openbtn4::before{
    content: 'MENU';
	font-size: 10px;
	color: #fff;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 9px;
	left: 0;
	right: 0;
	margin: auto;
}
.openbtn4.active::before{
    content: 'CLOSE';
}

.openbtn4 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 0;
	left: 0;
	margin: auto;
    width: 27px;
    height: 3px;
    border-radius: 5px;
    background: #fff;
}
.openbtn4 span:nth-of-type(1) {
	top: 12px; 
}

.openbtn4 span:nth-of-type(2) {
	top: 20px; 
}

.openbtn4 span:nth-of-type(3) {
	top: 28px; 
}

/*activeクラスが付与したら線が回転して×に変更*/
.openbtn4.active span:nth-of-type(1) {
	top: 12px; 
    right: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
}

.openbtn4.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn4.active span:nth-of-type(3){
	top: 25px;
	right: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
}

/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul{
    width: 100%;
    margin: 130px auto 0;
}

#header_wrap #g-nav ul li{
    position: relative;
}
#header_wrap #g-nav ul li:not(:first-child){
    margin-top: 65px;
}
#header_wrap #g-nav ul li:not(:first-child)::before{
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	background-color: #EF685E;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: absolute;
	top: -38px;
	left: 0;
	right: 0;
	margin: auto;
} 
#header_wrap #g-nav ul li a{
	display: block;
    font-size: 15px;
	text-align: center;
    color: #333333;
}

#header_wrap #g-nav .copy{
	margin: 75px auto 0;
	font-size: 11px;
	color: #EF685E;
	text-align: center;
}

/*-----------------------------------------------------------*/
/*コアページ*/

main#coa{
	background-color: #FFF8E6;
}

section#coatitle{
	background: url("../image/common/bg_coatitlesp.jpg") no-repeat;
	background-size: cover;
	width: 100%;
	height: 155px;
	position: relative;
}
section#coatitle::before{
	content: '';
	display: block;
	background: url("../image/common/bg_coatitle_partssp.png") no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -1px;
}

section#coatitle .inner{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
section#coatitle .inner > h2{
	font-size: 20px;
	font-weight: 700;
	color: #EF685E;
	margin-top: 60px;
}

main#coa section h3{
	font-size: 19px;
	font-weight: 700;
	color: #EF685E;
	text-align: center;
	padding-bottom: 14px;
	position: relative;
}
main#coa section h3::before{
    content: '';
    display: block;
    background: url(../image/top/a03-3.png) no-repeat;
    background-size: contain;
    width: 43px;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
	padding: 0 0 0;
	margin: 0 auto 65px;
	background: url("../image/common/footer-bgsp.png") no-repeat;
	background-size: cover;
	background-position: top center;
	background-color: #FFF8E6;
}

#footer_wrap .info{
	background: url("../image/common/footer-parts.png") no-repeat;
	background-size: 310px 187px;
	background-position: bottom center;
	width: 310px;
	height: 187px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	filter: drop-shadow(0px 0px 0.68rem rgba(124,108,99,0.20));
	padding-bottom: 23px;
}
#footer_wrap .info dl{
	text-align: center;
}
#footer_wrap .info dl dt{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}
#footer_wrap .info dl dd{
	font-size: 15px;
	color: #EF685E;
	font-weight: 700;
	line-height: 130%;
}
#footer_wrap .info dl dd > span{
	font-size: 14px;
}
#footer_wrap .info > p{
	margin-top: 13px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}
#footer_wrap .info > p > span{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	font-weight: 500;
}

#footer_wrap .copy{
	padding: 23px 0 33px;
	font-size: 10px;
	color: #705856;
	text-align: center;
}

/*-----------------------------------------------------------*/
/*下部固定メニュー*/

.footer_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
	height: 65px;
    background-color: #FFE780;
	z-index: 9;
}

.footer_area .footer_area_inner{
	width: 100%;
	height: 100%;
    position: relative;
    margin: 0px auto;
	display: flex;
}
.footer_area .footer_area_inner a{
    width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 60px;
	font-size: 13px;
	color: #EF685E;
	font-weight: 700;
	position: relative;
}
.footer_area .footer_area_inner a:not(:last-of-type){
    border-right: 1px solid #fff;
	box-sizing: border-box;
}
.footer_area .footer_area_inner a::before{
	content: '';
	display: block;
	width: 38px;
	height: 38px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 15px;
}
.footer_area .footer_area_inner a.tel::before{
	background: url("../image/common/footericon01.png") no-repeat;
	background-size: contain;
}
.footer_area .footer_area_inner a.mail::before{
	background: url("../image/common/footericon02.png") no-repeat;
	background-size: contain;
}
.footer_area .footer_area_inner a.qa::before{
	background: url("../image/common/footericon03.png") no-repeat;
	background-size: contain;
}

/*-----------------------------------------------------------*/

#pagetop {
    position: fixed;
	width: 45px;
    right: 13px;
    bottom: 75px;
    z-index: 10;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp{
    opacity: 0;
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*ズームアウト*/
.zoomOutTrigger, .afterloadzoomOut{
    opacity: 0;
}
.zoomOut{
    animation-name:zoomOutAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes zoomOutAnime{
    from {
      transform: scale(1.2);
      opacity: 0;
    }
    to {
      transform: scale(1.0);
      opacity: 1.0;
    }
}

/*ズームアップ*/
a.zoomup img{
    transition-duration: 0.3s;
}
a.zoomup:hover img{
    transform: scale(1.05);
    transition-duration: 0.3s;
}



/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/