@charset "utf-8";
/*
Theme Name:Maria
Author:Verve
*/

/* WP */
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright { display: block; margin: 0 0 10px auto; }/* 配置位置 左 */
.alignleft { display: block; margin: 0 auto 10px 0; }/* 配置位置 右 */
.aligncenter { display: block; margin: 0 auto 10px; }/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } *//* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*//* 後続テキスト右回り込み */

/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited { text-decoration: none; color: #333333; }
a:hover  { text-decoration: none; color: #333333; 	transition: 0.3s ease-in-out;
}
a:active { text-decoration: none; color: #333333; }
a:hover img{
	transition: 0.3s ease-in-out;
}

/* FONT FAMILY */
/* -------------------------------------------------- */


.oswald{
    font-family: 'Oswald', sans-serif;
	font-weight: 200;
}
.source{
	font-family: "Source Serif 4", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: italic;
}


/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

.center{
	text-align: center;
}
.rightTxt{
	text-align: right;
}
/* MARGIN */
/* -------------------------------------------------- */

.mb10{margin-bottom: 10px !important;}
.mb15{margin-bottom: 15px !important;}
.mb20{margin-bottom: 20px !important;}
.mb25{margin-bottom: 25px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}
.mb45{margin-bottom: 45px !important;}
.mb50{margin-bottom: 50px !important;}
.mb55{margin-bottom: 55px !important;}
.mb65{margin-bottom: 65px !important;}
.mb70{margin-bottom: 70px !important;}
.mb75{margin-bottom: 75px !important;}
.mb100{margin-bottom: 100px !important;}

.mb1rem{margin-bottom: 1.0rem !important}
.mb3rem{margin-bottom: 3.0rem !important}

/* OUTLINE */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;/* 10px */
}
body {
	color: #000;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 300;
	font-feature-settings : "palt";
	line-height: normal;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}

#container {
	position: relative;
	overflow: hidden;
}

/*アニメーション設定*/
.blur {
 opacity: 0;
 -webkit-filter: blur(8px);
 filter: blur(8px);
 -webkit-transition: all 1s ease-out;
 transition: all 1s ease-out;
}
.blur.on {
 opacity: 1;
 -webkit-filter: blur(0);
 filter: blur(0);
}
.fadeInLeft {
 opacity: 0;
 -webkit-transform: translateX(-30px);
 transform: translateX(-30px);
 -webkit-transition: all 1.2s ease-out;
 transition: all 1.2s ease-out;
}
.fadeInLeft.on {
 opacity: 1;
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
.fadeInUp {
 opacity: 0;
 -webkit-transform: translateY(40px);
 transform: translateY(40px);
 -webkit-transition: all 1s ease-out;
 transition: all 1s ease-out;
}
.fadeInUp.on {
 opacity: 1;
 -webkit-transform: translateY(0);
 transform: translateY(0);
}
.fadeIn {
 opacity: 0;
 -webkit-transition: all 1s ease-out;
 transition: all 1s ease-out;
}
.fadeIn.on {
 opacity: 1;
}
.delay250 {
 transition-delay: 250ms;
}
.delay500 {
 transition-delay: 500ms;
}
.delay1000 {
 transition-delay: 1000ms;
}
.delay1500 {
 transition-delay: 1500ms;
}


/* RESPONSIVE */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) {
        /* 768px以上用（PC用）の記述 */

	body {
		background: url("img/bg@2x.jpg") no-repeat;
		background-size: cover;
		background-position: top center;
	}


    #container {
        min-width: 1100px;
    }
    .contentWrap1{
        width: 1000px;
        margin: 0 auto;
		box-sizing: border-box;
    }
    .contentWrap2{
        width: 1000px;
        margin: 0 auto;
		box-sizing: border-box;
    }
	.contentWrap3{
        width: 920px;
        margin: 0 auto;
		box-sizing: border-box;
	}
	.contentWrap4{
        width: 100%;
        margin: 0 auto;
		box-sizing: border-box;
	}
    #header{
        width: 100%;
        box-sizing: border-box;
        position: fixed;
        z-index: 10;
		min-width: 1100px;
    }
    .topHeader{
        top: -100px;
		opacity: 0;
		transition: 0.5s;
    }
	/*スクロール時設定*/
	.topHeader.smaller{
		opacity: 1;
		top: 0px;
	}
	
    #menu{
        width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
		box-sizing: border-box;
    }
    .menuWrap {
        background: #fff;
        width: 1000px;
        height: 100px;
        border-radius: 0 0 16px 16px;
        box-shadow: 10px 10px 38px rgba(0,0,0,0.13);
        padding: 0 55px 0 43px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
    }
	.headerLogo {
		padding-top: 25px;
		display: inline-block;
		vertical-align: top;
	}
	.headerEn{
		font-size: 1rem;
		letter-spacing: 0.025em;
		color: #646464;
		font-weight: 300;
		margin-bottom: 8px;
	}
	.headerJp{
		font-weight: 200;
		font-size: 1.8rem;
		letter-spacing: 0.2em;
	}
	.headerJp small{
		font-size: 1.4rem;
		margin-right: 10px;
	}

	.menuSlide01{
		width: 500px;
        position: relative;
		box-sizing: border-box;
	}
    .menuLists {
        display: flex;
        justify-content: space-between;
        white-space: nowrap;
        position: relative;
        z-index: 20;
        box-sizing: border-box;
		padding-top: 38px;
    }
	#header.smaller .menuLists{
	}
    .menuList{
        display: inline-block;
        position: relative;
        text-align: center;
    }
    .menuList:after{
		content: "";
		background: rgba(0,0,0,0.3);
		width: 1px;
		height: 15px;
		position: absolute;
		right: -18px;
		top: 3px;
		display: block;
    }
    .menuList:last-child{
		margin-right: 0px;
    }
    .menuList:last-child:after{
		display: none;
    }
    .menuLink1 {
        display: inline-block;
        position: relative;
        width: 100%;
        color: #000;
        font-size: 1.3rem;
        font-weight: 300;
		letter-spacing: 0.2em;
        overflow: hidden;
        z-index: 10;
        box-sizing: border-box;
    }
	.menuLink1:before{
        content: "";
        position: absolute;
        display: block;
        left: -100%;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.3);
        transition: 0.3s;
		z-index: -1;
    }
    .menuLink1:hover:before{
        left: 0;
    }
	.menuLink1 span{
		display: inline-block;
		box-sizing: border-box;
		position: relative;
	}
	.headerBtnW{
		width: 182px;
	}
	.headerBtn{
		display: flex;
		position: relative;
		justify-content: center;
		align-items: center;
        font-size: 1.6rem;
        font-weight: 500;
		width: 100%;
		height: 88px;
		background: #fff;
        box-shadow: 10px 10px 38px rgba(0,0,0,0.13);
		text-align: center;
		border-radius: 16px;
		box-sizing: border-box;
	}
	.headerBtn span{
		position: relative;
		padding-left: 34px;
		transition: 0.3s;
	}
	.headerBtn:hover span{
		filter: brightness(1.2);
	}
	.headerBtn span:before{
		content: "";
		background: url("img/icon_mail_1.svg") no-repeat;
		background-size: contain;
		width: 28px;
		height: 20px;
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	#goTop{
        width:79px;
        height: 80px;
        position: fixed;
        right: 0;
        bottom: 0px;
        z-index: 100;
    }
    .goTopBtn{
        display: block;
        width:80px;
        height: 80px;
        background: #5f503c;
    }
    .goTopBtn:hover{
        opacity: 0.8;
    }
    #gMap{
        width: 100%;
        height: 580px;
    }
    #gMap iframe{
        width: 100%;
        height: 580px;
    }
	
	/*中面共通*/
    .inHeader{
		transition: 0.5s;
    }
	.inMain{
		padding-top: 150px;
	}

    /*Footer*/

	footer {
	}
    .footerWrap{
        width: 1000px;
        margin: 0 auto;
        padding: 100px 0 45px;
		box-sizing: border-box;
		border-bottom: 1px solid rgba(255,255,255,0.3);
    }
    #footerL{
        width: 318px;
        box-sizing: border-box;
    }
    .footerLogo{
        width: 318px;
    }
    .footerLogo img{
        width: 100%;
        height: auto;
    }
    
    #footerR{
        box-sizing: border-box;
		position: relative;
		display: inline-block;
		padding-top: 10px;
		width: 100%;
		text-align: right;
    }
    
    .footerNavW{
		position: relative;
		display: inline-block;
    }
    .footerLists{
		width: 500px;
    }
    .footerList{
		display: inline-block;
    }
	.footerLink1{
		display: inline-block;
		font-weight: 300;
		letter-spacing: 0.1em;
		position: relative;
		overflow: hidden;
	}
	.footerLink1:before{
        content: "";
        position: absolute;
        display: block;
        left: -100%;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.3);
        transition: 0.3s;
    }
    .footerLink1:hover:before{
        left: 0;
    }
	.footerInfo{
		width: 1000px;
		margin: 0 auto;
		text-align: center;
		font-size: 1.2rem;
		letter-spacing: 0.2em;
		margin-bottom: 25px;
		padding: 25px 0;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	.footerInfoName{
		display: inline-block;
		margin-right: 20px;
	}
	.footerAdd{
		display: inline-block;
		margin-right: 20px;
	}
	.footerTel{
		display: inline-block;
		margin-right: 20px;
	}


    .copyright{
		width: 100%;
        text-align: center;
        font-size: 1rem;
		letter-spacing: 0.05em;
        color: #000;
		padding: 0px 0 30px;
    }

/*commonタイトル*/
	.commonTtl01{
		font-size: 2rem;
		font-weight: 300;
		letter-spacing: 0.2em;
	}
	.commonTtl02En{
		font-size: 1rem;
		font-weight: 300;
		letter-spacing: 0.05em;
	}
	.commonTtl02{
		font-size: 2rem;
		font-weight: 300;
		letter-spacing: 0.2em;
	}
	.commonTtl03En{
		font-size: 1rem;
		color: #23bfcb;
		margin-bottom: 10px;
		letter-spacing: 0.2em;
	}
	.commonTtl03EnB{
		font-size: 1rem;
		margin-bottom: 10px;
		letter-spacing: 0.2em;
	}
	.commonTtl03{
		font-size: 2.4rem;
		font-weight: 200;
		letter-spacing: 0.2em;
		margin-bottom: 24px;
	}
	.commonTtl04{
		font-size: 2rem;
		font-weight: 200;
		line-height: 2.6rem;
		letter-spacing: 0.2em;
		margin-bottom: 45px;
		text-align: center;
		padding-bottom: 25px;
		border-bottom: 1px solid rgba(150,150,150,0.3);
	}
	.commonTtl05{
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: 0.05em;
	}

	
/*commonテキスト*/
	.commonTxt01{
		letter-spacing: 0.2em;
		line-height: 2.3rem;
	}
	.commonTxt02{
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		line-height: 2.6rem;
		font-weight: 300;
	}
	.commonTxt03{
		letter-spacing: 0em;
		line-height: 2.4rem;
	}
	.commonTxt04{
		font-size: 1.6rem;
		letter-spacing: 0.05em;
		line-height: 2.6rem;
	}

/*commonボタン*/

	.commonBtn01W{
		text-align: center;
	}
	.commonBtn02W{
		display: block;
		text-align: left;
	}
	.commonBtn01{
		min-width: 300px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #000 !important;
		background: #fff;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding-left: 10px;
	}
	.commonBtn01:before{
		content: "";
		background: #23bfcb;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn01:hover:before{
		left: 0;
	}
	.commonBtn01 span{
		position: relative;
	}
	.commonBtn01 span:before{
		content: "";
		background: url("img/arrow_r_1.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}
	
	.commonBtn02{
		min-width: 218px;
		display: inline-block;
		line-height: 40px;
		border-radius: 10px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #000 !important;
		background: #fff;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding-left: 10px;
		border: 1px solid rgba(0,0,0,0.3);
	}
	.commonBtn02:before{
		content: "";
		background: #23bfcb;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn02:hover:before{
		left: 0;
	}
	.commonBtn02 span{
		position: relative;
	}
	.commonBtn02 span:before{
		content: "";
		background: url("img/arrow_r_2.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 8px;
		height: 13px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}

	.commonBtn03{
		min-width: 300px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #fff !important;
		background: #23bfcb;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding-left: 10px;
	}
	.commonBtn03:before{
		content: "";
		background: rgba(255,255,255,0.3);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn03:hover:before{
		left: 0;
	}
	.commonBtn03 span{
		position: relative;
	}
	.commonBtn03 span:before{
		content: "";
		background: url("img/arrow_r_3.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}

	.commonBtn04{
		min-width: 300px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #fff !important;
		background: #23bfcb;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding: 0 15px;
		border: none;
	}
	.commonBtn04:before{
		content: "";
		background: rgba(255,255,255,0.3);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn04:hover:before{
		left: 0;
	}
	.commonBtn04 span{
		position: relative;
	}
	.commonBtn04 span:after{
		content: "";
		background: url("img/arrow_r_3.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		right: -25px;
	}
/*commonLink*/
	.commonLink01{
		display: inline-block;
		position: relative;
		font-size: 1.6rem;
		font-weight: 500;
		text-decoration-line: underline !important;
		color: #4E5769;
		text-underline-offset: 4px;
	}
	.commonLink01:hover{
		filter: brightness(1.2);
	}
	.commonLink01:after{
		content: "";
		background: url("img/arrow_r_02.svg") no-repeat;
		width: 32px;
		height: 32px;
		background-size: contain;
		position: absolute;
		display: inline-block;
		top: -2px;
		right: -42px;
	}
}
@media screen and (max-width: 767px) {
        /* 767px以下用（スマートフォン用）の記述 */
	body {
		background: url("img/bg_sp.jpg") repeat-y;
		background-size: contain;
		background-position: top center;
	}

	#container {
        width: 100%;
/*        overflow: clip;
*/        overflow: hidden;
		font-size: 1.4rem;
    }
    .contentWrap1{
        width: 90%;
        margin: 0 auto;
    }
    .contentWrap2{
        width: 90%;
        margin: 0 auto;
    }
    .contentWrap3{
        width: 90%;
        margin: 0 auto;
    }
    .contentWrap4{
        width: 90%;
        margin: 0 auto;
    }
    #header{
        width: 100%;
        height: 60px;
        box-sizing: border-box;
        position: fixed;
        z-index: 9999;
		background: #fff;
    }
    .topHeader{
        top: -100px;
		opacity: 0;
		transition: 0.5s;
    }
	/*スクロール時設定*/
	.topHeader.smaller{
		opacity: 1;
		top: 0px;
	}
	#header.smaller{
		background: rgba(255,255,255,0.8);
		backdrop-filter: blur(5px);
	}

    #menu{
        width: 100%;
        margin: 0 auto;
        position: relative;
		box-sizing: border-box;
    }
	.headerLogo {
		padding-top: 10px;
		display: inline-block;
		vertical-align: top;
		padding-left: 20px;
	}
	.headerEn{
		font-size: 1rem;
		letter-spacing: 0.025em;
		color: #646464;
		font-weight: 300;
		margin-bottom: 0px;
	}
	.headerJp{
		font-weight: 200;
		font-size: 1.6rem;
		letter-spacing: 0.2em;
	}
	.headerJp small{
		font-size: 1.4rem;
		margin-right: 10px;
	}

/*メニュー用*/

    .headerMenuBtn{
        position: absolute;
        right: 14px;
        top: 8px;
		z-index: 1000;
    }
    .menuSlide01{
        position: fixed;
        top: 0px;
        width: 100%;
        height: 100vh;
		background: #23bfcb;
        text-align: left;
        left: 100%;
        transition: 0.5s;
        z-index: 999;
		box-sizing: border-box;
    }
    .menuSlide01.current{
        left: 0;
    }
	.menuLogo{
        display: inline-block;
		position: relative;
        padding-top: 10px;
		padding-left: 24px;
		z-index: 900;
		margin-bottom: 30px;
		color: #fff !important;
	}
	.menuSlide01 .headerEn {
		color: #fff;
	}
	.menuLists {
		text-align: left;
		width: 100%;
		margin: 0 auto 40px;
	}
	.menuList{
        display: block;
		box-sizing: border-box;
		border-bottom: 1px solid #fff;
    }
	.menuLink1 {
		display: block;
		position: relative;
		color: #fff !important;
		font-size: 1.6rem;
		line-height: 5rem;
		padding-left: 30px;
		letter-spacing: 0.05em;
	}
	.menuLink1:after{
		content: "";
		background: url("img/sp/arrow_menu_r.svg") no-repeat;
		background-size: contain;
		width: 7px;
		height: 12px;
		display: block;
		position: absolute;
		right: 33px;
		top: 50%;
		transform: translateY(-50%);
	}
	.hasSub .menuLink1:after{
		content: "";
		background: url("img/sp/arrow_menu_b.svg") no-repeat;
		background-size: contain;
		width: 12px;
		height: 7px;
		display: block;
		position: absolute;
		right: 30px;
		top: 50%;
		transform: translateY(-50%);
	}
	.subLists {
	}
	.menuLink2 {
		display: block;
		position: relative;
		background: rgba(255,255,255,0.2);
		color: #23bfcb !important;
		line-height: 3rem;
		font-size: 1.2rem;
		padding-left: 30px;
		border-top: 1px solid #FBFCFC;
	}
	.menuLink2:after{
		content: "";
		background: url("img/sp/arrow_menu_r.svg") no-repeat;
		background-size: contain;
		width: 5px;
		height: 10px;
		display: block;
		position: absolute;
		right: 33px;
		top: 50%;
		transform: translateY(-50%);
	}
	.menuSlideAddW{
		position: absolute;
		bottom: 50px;
		left: 30px;
		color: #fff;
		line-height: 2.4rem;
	}
/*ハンバーガメニュー*/
/*ベース*/
	.menu-trigger {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        vertical-align: middle;
        height: 44px;
        width: 44px;
        position: relative;
        z-index: 104;
        margin: 0;
        border-radius: 50%;
		background: #23bfcb;
	}

    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 12px;
        width: 20px;
        height: 1px;
        background-color: #fff;
        border-radius: 2px;
    }
    .menu-trigger.current{
        background-color: #fff;
    }
    .menu-trigger.current span{
		background: #73bd6d;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 17px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 22px;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 27px;
    }
	
    /*動き*/
    .menu-trigger.current span:nth-of-type(1) {
        transform: translateY(5px) rotate(-45deg);
    }
    .menu-trigger.current span:nth-of-type(2) {
        left: 50%;
        opacity: 0;
        animation: active-menu-bar02 .8s forwards;
    }
    .menu-trigger.current span:nth-of-type(3) {
        transform: translateY(-5px) rotate(45deg);
    }
	.headerBtn{
		display: flex;
		margin: 0 auto 20px;
		position: relative;
		justify-content: center;
		align-items: center;
        font-size: 1.6rem;
        font-weight: 500;
		width: 220px;
		height: 60px;
		background: #fff;
		text-align: center;
		border-radius: 16px;
		box-sizing: border-box;
	}

    #goTop{
        width: 40px;
        height: 40px;
        position: fixed;
        right: 0;
        bottom: 30px;
        z-index: 100;
    }
    .goTopBtn{
        display: block;
        width:40px;
        height: 40px;
        background: #5f503c;
    }
    .goTopBtn:hover{
        opacity: 0.8;
    }
    .goTopBtn img{
        width: 100%;
        height: auto;
    }
    #gMap{
        width: 100%;
        height: 300px;
    }
    #gMap iframe{
        width: 100%;
        height: 300px;
    }

    /*Footer*/

	footer {
	}
    .footerWrap{
        width: 100%;
        margin: 0 auto;
        padding: 25px 0 0;
		box-sizing: border-box;
		flex-wrap: wrap;
		border-top: 1px solid rgba(255,255,255,0.3);
    }
    #footerL{
        width: 100%;
		text-align: center;
        box-sizing: border-box;
		margin-bottom: 30px;
    }
    .footerLogo{
		display: inline-block;
    }
    
    #footerR{
        box-sizing: border-box;
		position: relative;
		display: inline-block;
		text-align: center;
		width: 100%;
    }
    
    .footerNavW{
		display: inline-block;
		position: relative;
		text-align: center;
    }
    .footerLists{
		width: 100%;
		flex-wrap: wrap;
		margin-bottom: 20px;
    }
    .footerList{
		width: 100%;
		display: inline-block;
		line-height: 2.8rem;
    }
	.footerLink1{
		display: inline-block;
		font-weight: 200;
		letter-spacing: 0.2em;
		font-size: 1.4rem;
		position: relative;
		overflow: hidden;
	}
	.footerLink1:before{
        content: "";
        position: absolute;
        display: block;
        left: -100%;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: rgba(0,0,0,0.3);
        transition: 0.3s;
    }
    .footerLink1:hover:before{
        left: 0;
    }
	.footerInfo{
		width: 100%;
		margin: 0 auto;
		text-align: center;
		font-size: 1.2rem;
		letter-spacing: 0.2em;
		padding: 25px 0;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		border-top: 1px solid rgba(255,255,255,0.3);
	}
	.footerInfoName{
		display: block;
		margin-bottom: 5px;
	}
	.footerAdd{
		display: block;
		margin-bottom: 5px;
	}
	.footerTel{
		display: block;

	}

    .copyright{
		width: 100%;
        text-align: center;
        font-size: 1rem;
		padding: 20px 0 27px;
    }

/*commonタイトル*/

	.commonTtl01{
		font-size: 1.8rem;
		font-weight: 300;
		letter-spacing: 0.2em;
	}
	.commonTtl02En{
		font-size: 1rem;
		font-weight: 300;
		letter-spacing: 0.05em;
	}
	.commonTtl02{
		font-size: 1.6rem;
		font-weight: 300;
		letter-spacing: 0.2em;
	}
	.commonTtl03En{
		font-size: 1rem;
		color: #23bfcb;
		margin-bottom: 10px;
		letter-spacing: 0.2em;
	}
	.commonTtl03EnB{
		font-size: 1rem;
		margin-bottom: 10px;
		letter-spacing: 0.2em;
	}
	.commonTtl03{
		font-size: 2.4rem;
		font-weight: 200;
		letter-spacing: 0.2em;
		margin-bottom: 24px;
	}
	.commonTtl04{
		font-size: 2rem;
		font-weight: 200;
		line-height: 2.6rem;
		letter-spacing: 0.2em;
		margin-bottom: 45px;
		text-align: center;
		padding-bottom: 25px;
		border-bottom: 1px solid rgba(150,150,150,0.3);
	}
	.commonTtl05{
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: 0.05em;
	}
	
/*commonテキスト*/
	.commonTxt01{
		letter-spacing: 0.2em;
		line-height: 2.3rem;
	}
	.commonTxt02{
		letter-spacing: 0.05em;
		line-height: 3.4rem;
		font-weight: 300;
	}
	.commonTxt03{
		letter-spacing: 0em;
		line-height: 2.4rem;
	}
	.commonTxt04{
		letter-spacing: 0.05em;
		line-height: 2.6rem;
	}

/*commonボタン*/

	.commonBtn01W{
		text-align: center;
	}
	.commonBtn02W{
		display: block;
		text-align: left;
	}
	.commonBtn01{
		min-width: 300px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #000 !important;
		background: #fff;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding-left: 10px;
	}
	.commonBtn01:before{
		content: "";
		background: #23bfcb;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn01:hover:before{
		left: 0;
	}
	.commonBtn01 span{
		position: relative;
	}
	.commonBtn01 span:before{
		content: "";
		background: url("img/arrow_r_1.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}
	
	.commonBtn02{
		min-width: 218px;
		display: inline-block;
		line-height: 40px;
		border-radius: 10px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #000 !important;
		background: #fff;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		border: 1px solid rgba(0,0,0,0.3);
	}
	.commonBtn02:before{
		content: "";
		background: #23bfcb;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn02:hover:before{
		left: 0;
	}
	.commonBtn02 span{
		position: relative;
	}
	.commonBtn02 span:before{
		content: "";
		background: url("img/arrow_r_2.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 8px;
		height: 13px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}
	.commonBtn03{
		min-width: 218px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #fff !important;
		background: #23bfcb;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding-left: 10px;
	}
	.commonBtn03:before{
		content: "";
		background: rgba(255,255,255,0.3);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn03:hover:before{
		left: 0;
	}
	.commonBtn03 span{
		position: relative;
	}
	.commonBtn03 span:before{
		content: "";
		background: url("img/arrow_r_3.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		left: -25px;
	}
	.commonBtn04{
		min-width: 218px;
		display: inline-block;
		line-height: 60px;
		border-radius: 30px;
		box-sizing: border-box;
		position: relative;
		transition: 0.3s;
		overflow: hidden;
		text-align: center;
		font-weight: 300;
		color: #fff !important;
		background: #23bfcb;
		font-size: 1.4rem;
		letter-spacing: 0.2em;
		padding: 0 15px;
		border: none;
	}
	.commonBtn04:before{
		content: "";
		background: rgba(255,255,255,0.3);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: -100%;
		transition: 0.3s;
	}
	.commonBtn04:hover:before{
		left: 0;
	}
	.commonBtn04 span{
		position: relative;
	}
	.commonBtn04 span:after{
		content: "";
		background: url("img/arrow_r_3.svg") no-repeat;
		background-size: contain;
		display: block;
		position: absolute;
		width: 9px;
		height: 14px;
		top: 50%;
		transform: translateY(-50%);
		right: -25px;
	}

}


/*ハンバーガーメニュー動き*/

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
