@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
html{
	font-size:62.5%;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video { margin:0; padding:0; }
body{
	width:100%;
	font-family: 'Zen Maru Gothic','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-size: 1.4rem;
	line-height: 1.65;
	text-autospace:ideograph-alpha;
	font-weight:normal;
	font-feature-settings: 'palt';
	letter-spacing: .05em;
	position: relative;
	color: var(--black);
	background: unset;
}
.wf{
	font-family: "Open Sans", sans-serif;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--black);
	transition: all .3s ease 0s;
	display: block;
}
a:hover{
	color: unset;
	opacity: 0.8;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	width: 100%;
	height: auto;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.4em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section,main{
	display:block;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Zen Maru Gothic','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #dadada;
	width: 90%;
	box-sizing: border-box;
}
select {
	padding: 10px 16px 10px 10px;
	border: 1px solid #dadada;
	appearance: none;
	border-radius: 0;
	background: #fff url(/img/common/arrow_select.png) no-repeat right 6px center;
	background-size: auto 5px;
}

:root{
	--black:#333333;
	--bg:#fffdf1;
	--orange: #ff6632;
	--blue:#43adc7;
	--yellow:#ffe874;
	--green:#269f95;
}
.flex-box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.image img{
	width: 100%;
	height: 100%;
}
table {
	width: 100%;
	border-collapse: collapse;
}
.textarea{
	text-align: justify;
}
.btn{
	background: unset;
    color: unset;
    padding: 0;
    margin: 0;
    position: relative;
    border: none;
}
.btn a{
	background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 8px;
}
.btn a::after{
	content: "";
	background: url(../img/arrow_w.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

@media screen and (min-width:768px) {
	body{min-width:1200px;}
	.pc{display: block;}
	.sp,.sp-nav{display: none;}
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
	.btn a:hover{
		transform: translateY(5px);
	}
	.btn a::after{
        width: 22px;
        height: 22px;
        right: 15px;
	}
}
@media screen and (max-width:767px) {
	body{font-size: 3.73vw;}
	.pc{display: none;}
	.sp{display: block;}
	.btn{
		display: block;
	}
	.btn a{
        width: 100%;
        height: 16vw;
        font-size: 4.27vw;
	}
	.btn a::after{
		width: 5.33vw;
        height: 5.33vw;
        right: 4vw;
	}
}

/*------------------------
header
------------------------*/
header{
	background: #fff6e9;
}
header .inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
header .new-header-nav .menu li a {
	font-weight: bold;
}
/* PC */
@media screen and (min-width:768px) {
	.contact-fixed a{
		width: 75px;
		height: 345px;
		position: fixed;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		z-index: 10;
	}
	header .inner{
        padding: 20px 40px 15px;
        margin: 0 auto;
        position: relative;
	}
	header .logo a {        
		width: 370px;
        height: auto;
	}
	header .right{
		display: flex;
		align-items: center;
	}
	header .new-header-nav .menu {
		display: flex;
		align-items: center;
	}
	header .new-header-nav .menu li a {
		font-size: 16px;
        margin-right: 40px;
	}
	header .social-links {
        display: flex;
	}
	header .social-links .link a {
		margin-left: 8px;
	}
}
/* SP */
@media screen and (max-width:767px) {
	header {
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 999;
	}
	header .inner{
		width: 100%;
		padding: 3.33%;
		position: relative;
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		line-height: 1;
	}
	header .logo a{
        width: 48vw;
        height: auto;
	}
	header .inner .menu {
        width: 12vw;
        height: 12vw;
        position: relative;
        margin-left: 2.67vw;
	}
	header .inner .right{
		display: flex;
		align-items: center;
	}
	header .social-links {
        display: flex;
	}
	header .social-links .link a {
		width: 8vw;
		height: 8vw;
		margin-left: 1.33vw;
	}
	header .menu > div {
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		width: 67%;
		height: 2px;
		background: var(--black);
		transition: .35s ease-in-out;
	}
	header .menu .menu1 {
		top: 26%;
	}
	header .menu .menu2 {
		top: calc(50% - 1px);
	}
	header .menu .menu3 {
		top: calc(72% - 1px);
	}
	header .menu.active .menu1 {
		top: 48%;
		left: 0;
		right: 0;
		width: 62%;
		margin: auto;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	header .menu.active .menu2,
	header .menu.active .menu3{
		top: 48%;
		left: 0;
		right: 0;
		width: 62%;
		margin: auto;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
		
	/*------------------------
	ナビ 
	------------------------*/
	/*メニューリスト*/
	#menu-list {
		width: 100%;
		padding: 6% 4.5% 6%;
		min-height: 100vh;
		box-sizing: border-box;
		position: absolute;
		overflow: hidden;
		z-index: 150;
		top: 16vw;
		left: 0;
		background: #fff6e9;
		transform: translateY(-200%);
		transition: all .6s;
	}
	#menu-list.active {
		transform: translateY(0);
	}
	#menu-list .menu {
		width: 100%;
        height: 100%;
        margin-left: 0;
	}
	#menu-list li {
		font-size: 4vw;
	}
	#menu-list li a{
        display: block;
        font-weight: bold;
        position: relative;
        font-size: 4.27vw;
        padding: 2.67vw 0;
        border-bottom: 1px solid var(--orange);
	}
	#menu-list li a span{
		font-size: 3.2vw;
		color: var(--orange);
		font-weight: 600;
		padding-top: .6vw;
		display: block;
		line-height: 1;
	}
	#menu-list .nav-inner{
		margin-bottom: 4vw;
	}
}

/*--------------------
共通
--------------------*/
/* PC */
@media screen and (min-width:768px) {
	section .inner{
		width: 1200px;
		margin: 0 auto;
	}
}
/* SP */
@media screen and (max-width:767px) {
	section .inner{
		margin: 0 4vw;
		padding: 8vw 0 10.33vw;
	}
}


/*------------------------
フッター
------------------------*/
footer.footer{
	margin-top: 0;
	padding: 0;
}
footer .social-links{
	display: flex;
}
footer .new-footer-nav ul{
	display: flex;
	flex-wrap: wrap;
}

/* PC */
@media screen and (min-width:768px) {
	footer .inner{
		width: 1200px;
		margin: 0 auto;
		padding: 60px 0 70px;
		justify-content: space-between;
	}
	footer .logo{
		margin-bottom: 25px;
	}
	footer .social-links a{
		width: 60px;
		height: 60px;
		margin-right: 5px;
	}
	footer .new-footer-nav{
		width: 750px;
	}
	footer .new-footer-nav ul li a{
        font-size: 16px;
        margin-right: 40px;
        margin-bottom: 8px;
        font-weight: bold;
	}
}

/* SP */
@media screen and (max-width:767px) {
	footer .inner{
        margin: 0 6.67vw;
        padding: 6.67vw 0 5.33vw;
        display: block;
	}
	footer .logo{
        margin-bottom: 4vw;
	}
	footer .social-links{
		margin-bottom: 4vw;
	}
	footer .social-links a{
		width: 12vw;
        height: 12vw;
        margin-right: 1.33vw;
	}
	footer .new-footer-nav ul{
		display: flex;
		flex-wrap: wrap;
	}
	footer .new-footer-nav ul li{
		width: 49%;
	}
	footer .new-footer-nav ul li a{
        font-size: 3.73vw;
        margin-bottom: 1.33vw;
        font-weight: bold;
        letter-spacing: 0;
	}
	.footer-bottom{
		font-size: 2.67vw!important;
	}
}


/*------------------------
エフェクト
------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 30px);
	transition: all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.img-animation {
	overflow: hidden;
	position: relative;
}
.img-animation.active::before {
	animation: img-animation 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #fff;
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}
