@charset "UTF-8";
/* CSS Document */


/* ---------------------------------------------------------
btn共通
--------------------------------------------------------- */
.btnarea {
	display: flex;
}
.btnarea.btn-center {
	justify-content: center;
}
.btnarea.btn-right {
	justify-content: flex-end;
}

/* btn ----------------- */
.btn {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	position: relative;
    transition: all ease 0.28s;
}
/* ボタン内容 */
.btn-cont {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 30px;
	line-height: 1.4;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* ---------------------------------------------------------
 option
--------------------------------------------------------- */
/* ボタンの幅：デザイン案に合わせて編集 */
.btnW-s {max-width: 45px;}
.btnW-m {max-width: 300px;}
.btnW-l {max-width: 440px;}

/* ボタンの高さ：デザイン案に合わせて編集 */
.btnH-s {height: 45px;}
.btnH-m {height: 70px;}
.btnH-l {height: 120px;}

@media (max-width: 480px) {
	.btnW-s,.btnW-m,.btnW-l {
		max-width: none;
	}
    .btnH-l {height: 90px;}
}

/* ---------------------------------------------------------
btn-style
--------------------------------------------------------- */
/* btn-style01 */
.btn.btn-style01 {
	border: 2px solid transparent;
	color: #333;
	background-color: #ffcb16; 		/* 背景色 */
	border-radius: 10px;
}

@media (min-width: 768px) {
    .btn.btn-style01:hover {
		border: 2px solid #333;
		background-color: #fff; 		/* 背景色 */
    }
}

/* btn-style02 */
.btn.btn-style02 {
	background-color: #fff; 		/* 背景色 */
	border-radius: 10px;
}
@media (min-width: 768px) {
    .btn.btn-style02:hover {
	   opacity: 0.7;
    }
}

/* btn-style03 */
.btn.btn-style03 {
	background-color: var(--sub-color); 		/* 背景色 */
	border-radius: 10px;
    border: 3px solid var(--sub-color);
}
@media (min-width: 768px) {
    .btn.btn-style03:hover {
	   border: 3px solid var(--sub-color);
       background-color: #fff;
    }
    .btn.btn-style03:hover .btn-txt.f-wht {
       color: var(--sub-color); 
    }
    .btn.btn-style03:hover .icon-mail {
        background-color: #ced7e5;
    }
}


/*.arrow01*/
.arrow01::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid;
	border-right: 2px solid;
	border-color: currentColor;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%) rotate(45deg);
	transition: right ease 0.28s;
}
.arrow01.wht::before {
	border-color: #fff;
}

@media (min-width: 768px){
    .btn:hover .arrow01::before {
	   right: 20px;
    }
	/*.btn.btn-style01:hover .arrow01::before{
		border-color: #ffcb16;
	}*/
}

.btnarea2{
	text-align: right;
}
.btnarea2 .btn{
	width: fit-content;
}
.btn-flex{
	display: flex;
	align-items: center;
}
.btn-flex .btn-txt{
	width: fit-content;
}

/* btn-style追加 */
.btn.btn-style04{
	background-color: #ffcb16;
	border-radius: 5px;
	margin-left: 15px;
	position: relative;
	width: 45px;
	height: 45px;
}
.btn-style04 .arrow01::before {
	right: 35px;
}

@media (min-width: 768px){
    .btn:hover .btn-style04 .arrow01::before {
	   right: 30px;
    }
}

/* -------------------------------------- 
    pager
 -------------------------------------- */
.pager ul {
	display: table;
	table-layout: fixed;
	margin: 0 auto;
    width: 100%;
}
.pager ul li {
	display: table-cell;
	vertical-align: top;
	height: 60px;
}
.pager .nav-current {
	text-align: center;
}
.nav-current span {
	line-height: 60px;
}
.pager ul li a,
.pager ul li > span {
	display: inline-block;
	height: 60px;
	position: relative;
}
.pager .nav-pre {
	text-align: left;
}
.pager .nav-next {
	text-align: right;
}
.pager .nav-next i,
.pager .nav-pre i,
.pager .nav-backlist i {
	position: absolute;
	display: inline-block;
	width: 60px;
	height: 60px;
	overflow: hidden;
	background: var(--sub-color);
	border-radius: 5px;
	text-align: center;
}
.pager .nav-pre i {
	left: 0;
}
.pager .nav-next i {
	right: 0;
}
.pager .nav-pre > span,
.pager .nav-next > span {
	opacity: 0.1;
}
.pager .nav-pre a,
.pager .nav-pre > span,
.pager .nav-backlist a {
	text-align: left;
}
.pager .nav-pre a span,
.pager .nav-pre > span span {
	line-height: 60px;
	padding-left: 60px;
}
.pager .nav-backlist a span {
	line-height: 60px;
	padding-left: 80px;
}
.pager .nav-next a,
.pager .nav-next > span {
	text-align: right;
}
.pager .nav-next a span,
.pager .nav-next > span span {
	line-height: 60px;
	padding-right: 60px;
}
.pager .nav-pre a:hover,
.pager .nav-next a:hover {
}
.pager .nav-pre i::before,
.pager .nav-backlist i::before, 
.pager .nav-next i::before {
	content:"";
	position: absolute;
	top: 50%;
	display: block;
	width: 10px;
	height: 10px;
}
.pager .nav-pre i:before,
.pager .nav-backlist i:before {
	left: 50%;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: translate(-50%,-50%) rotate(-45deg);
}
.pager .nav-next i:before {
	left: 50%;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-50%,-50%) rotate(45deg);
}
.pager ul .nav-pre a:hover i:before,
.pager .nav-backlist a:hover i:before {
	animation: move-left-anim .65s ease 0s 1 forwards;
}
.pager ul .nav-next a:hover i:before {
	animation: move-right-anim .65s ease 0s 1 forwards;
}

.pager:has(.nav-backlist) {
    border-top: solid 2px var(--sub-color);
}

@keyframes move-left-anim {
	0%{transform: translate(-50%,-50%) rotate(-45deg); opacity:1;}
	50%{transform: translate(-100%,-50%) rotate(-45deg); opacity:0;}
	50.1%{transform: translate(0%,-50%) rotate(-45deg); opacity:0;}
	100%{transform: translate(-50%,-50%) rotate(-45deg); opacity:1;}
}
@keyframes move-right-anim {
	0%{transform: translate(-50%,-50%) rotate(45deg); opacity:1;}
	50%{transform: translate(0%,-50%) rotate(45deg); opacity:0;}
	50.1%{transform: translate(-100%,-50%) rotate(45deg); opacity:0;}
	100%{transform: translate(-50%,-50%) rotate(45deg); opacity:1;}
}

@media screen and (max-width: 767px) {
	.pager .nav-pre a span {
		display: none;
	}
	.pager .nav-next a span {
		display: none;
	}
	.pager .nav-pre > span span,
	.pager .nav-next > span span {
		display: none;
	}
	.pager .nav-pre a:hover,
	.pager .nav-next a:hover,
	.pager .nav-backlist a:hover {
		background: none !important;
	}
}

@media screen and (max-width: 480px) {
	.pager ul {
		width: 100%;
		table-layout: auto;
	}
	.pager ul li {
		width : calc(100% / 3) ;
	}
	.pager .nav-current {
		width: 19%;
	}
}



/* ====================================================
sec-contact
==================================================== */
.sec-contact {
	background-image: url(../img/common/bg-contact.svg);
	background-size: cover;
	background-position: center;
}
.sec-contact .contact-ttl {
  line-height: 1.3;
  padding-bottom: 30px;
}
.sec-contact .contact-fl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.sec-contact .btnarea .btn {
  margin-right: 20px;
}
.sec-contact .btnarea .btn:last-child {
  margin-right: 0;
}
.sec-contact .btnarea .btn .btn-cont {
    display: block;
    width: 100%;
    padding: 0 20px 0 50px;
}
.icon-tel {
    width: 45px;
    height: 45px;
    background-color: #ced7e5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background-image: url(../img/common/icon-tel.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
}
.icon-mail {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background-image: url(../img/common/icon-mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
}

@media screen and (max-width: 767px) {
    .sec-contact .btnarea {
        flex-direction: column;
        align-items: center;
    }
    .sec-contact .btnarea .btn {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .sec-contact .btnarea .btn:last-child {
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 480px) {
    .sec-contact .btnarea .btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ====================================================
Footer
==================================================== */
.site-footer::before{
	position: relative;
}
.site-footer .fcont-info{
	padding-bottom: 200px;
}
.site-footer .fcont-fax{
	padding-left: 15px;
}
.site-footer::before{
	background: url(../img/common/bg-town1.svg) repeat-x center bottom;
    background-size: 950px auto;
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 100px;
    content: "";
    display: block;
}
.site-footer::after{
	background: url(../img/common/bg-town2.svg) repeat-x center bottom;
    background-size: 1200px auto;
    position: absolute;
    left: 0;
    bottom: 51px;
    width: 100%;
    height: 110px;
    content: "";
    display: block;
	z-index: -1;
}

.site-footer .privacy a:hover {
    color: var(--sub-color);
    text-decoration: underline;
}



@media screen and (min-width: 768px) {

}

@media screen and (max-width: 480px) {
	.site-footer .fcont-tel,
	.site-footer .fcont-fax{
		display: block;
	}
	.site-footer .fcont-fax{
		padding-left: 0;
	}
}

/* toTop ----------------------------*/
#toTop {
	position: fixed;
	width: 65px;
	height: 65px;
	bottom: 0;
	right: 0;
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 999;
	text-align: center;
	border-radius: 5px 5px 0 0;
	background: var(--sub-color);
	animation: toTop-animation 0.3s ease forwards;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
#toTop > span {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -7px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	border: solid #fff;
	transform: rotate(-45deg);
	border-width: 1px 1px 0 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
#toTop:hover > span {
	top: 30%;
}
@media screen and (max-width: 480px) {
	#toTop {
		width: 50px;
		height: 50px;
	}
	#toTop > i {
		line-height: 50px;
		font-size: 2.0rem;
	}
}

@keyframes toTop-animation {
	from{
		opacity: 0;
		transform: translateY(101%);
		-webkit-transform: translateY(101%);
	}
	to{
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}

@-webkit-keyframes toTop-animation {
    from {
        opacity: 0;
		-webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
    to {
        opacity: 1;
		-webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

