﻿@charset "utf-8";
/* CSS Document */

:root{
    font-size:62.5%;
}
html {
    font-size:62.5%;
}
body{
	font-size:16px;
	color:#353535;
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	margin:0;
	position: relative;
    font-feature-settings: "palt";
    padding-top: 12.4rem;
}
h1,h2,h3,h4,h5,h6,th,dt,a{  
    line-height:1.5;
    font-weight: 700;
}
p,li,td,dd,span,div{  
    line-height:1.5;
    font-weight: 400;
}
a{
	color:#353535;
	text-decoration:none;
    transition: 0.3s;
}
a:link, a:visited {
	color:#353535;
}
a:hover{
	text-decoration:none;
	opacity:0.5;
	filter:alpha(opacity=50);
	-ms-filter: "alpha( opacity=50 )";
}
img {
	border: none;
	vertical-align: bottom;
    max-width: 100%;
	height: auto;
}
a img { 
	border: none;
}
a.nolink{
    pointer-events: none;
}
ul {
	list-style-type: none;
}
table{
	border-collapse: collapse;
}
.clearfix:after {
	content: "";
	display: block;
	overflow: hidden;
	clear: both;
}
.fix-flex{
    display: flex;
}
.leftBox{
	float:left;
}
.rightBox{
	float:right;
}
.center{
    text-align: center;
}
.c_white{
    color:#FFFFFF;
}
.sp{
	display:none !important;
}
.spacer{
    width:100%;
}
.contentWidth{
    width:92%;
    max-width: 1000px;
    margin-left:auto;
    margin-right: auto;
    box-sizing: border-box;
}
.linkBtn{
    width:20.0rem;
    height:5.0rem;
    margin: 3.0rem auto 0 auto;
}
.linkBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 2.8rem;
    background: #F1C524;
    font-weight: 700;
}
.mb{
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    body{
        font-size:13px;
        padding-top: 7.8rem;
    }
    .pc{
        display:none !important;
    }
    .sp{
        display:block !important;
    }
    .leftBox{
        float:none !important;
    }
    .rightBox{
        float:none !important;
    }
    .contentWidth{
        width:calc(100% - 40px);
    }    
    .linkBtn{
        width:17.4rem;
        height:4.5rem;
    }
    .mb{
        margin-bottom: 50px;
    }
}

/*--------------------------------------
    header
--------------------------------------*/

header{
    width:100%;
    height:12.4rem;
    background: rgba(234,234,234,0.7);
    backdrop-filter: blur(4.2rem);
    padding: 0 8.0rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:auto;
    z-index: 9999;
}
header h1{
    position: relative;
    z-index: 9999;
}
header .menu{
    margin-left: auto;
}
header .menu .headerContent{
    display: flex;
    align-items: center;
}
header .menu .headerContent .snsNav{
    display: flex;
    gap:1.6rem;
    align-items: center;
    margin-right: 5.0rem;
}
header .menu .headerContent .tel{
    display: flex;
    gap:1.0rem;
    align-items: center;
    font-size:3.0rem;
    margin-right: 1.5rem;
}
header .menu .headerContent .tel:before{
    width:3.2rem;
    height:2.1rem;
    content: "";
    background: url("../img/common/icon_tel.png") no-repeat center center;
}
header .menu .headerContent .time{
    font-size:1.3rem;
    line-height: 1.2;
    text-align: center;
    margin-right: 2.4rem;
}
header .menu .headerContent .contactBtn{
    width:20.0rem;
    height:5.0rem;
}
header .menu .headerContent .contactBtn a{
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:1.8rem;
    line-height: 1.5;
    font-weight: bold;
    background:#F1C524;
    border-radius: 2.8rem;
}
header .menu .gNav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:4.5rem;
    margin-top: 1.0rem;
}
header .menu .gNav li{
    padding: 1.0rem 0;
}
header .menu .gNav li a{
    font-size:1.6rem;
    font-weight: bold;
}
header .menu .gNav li.parent{
    position: relative;
}
header .menu .gNav li.parent span{
    font-size:1.6rem;
    font-weight: bold;
}
header .menu .gNav li.parent .child{
    width:200px;
    height:auto;
    background: #FFFFFF;
    position: absolute;
    top:100%;
    left:50%;
    transform: translate(-50%,20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}
header .menu .gNav li.parent:hover .child{
    transform: translate(-50%,0);
    opacity: 1;
    pointer-events: fill;
}
header .menu .gNav li.parent .child p{
    line-height: 40px;
    display: block;
}
header .menu .gNav li.parent .child p a{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #353535;
    font-size:14px;
    line-height: 40px;
}
header .menu .gNav li.parent .child p:last-child a{
    border-bottom: none;
}
header .spmenu{
    display: none;
}
@media (max-width: 768px) {
    header{
        height:7.8rem;
        padding: 0 8%;
        backdrop-filter: blur(0rem);
        transition: 0.3s;
        background: #FFFFFF;
    }
    header h1{
        width:11.2rem;
    }
    header .menu{
        display: none;
    }
    header .spmenu{
        display: block;
        margin: auto 0 auto auto;
        width: 40px;
        height: 40px;
    }
    header .spbtn{
        width: 40px;
        height: 40px;
        transition: 0.3s;
        z-index: 10000;
        position: relative;
        display: block;
    }
    header .spbtn,
    header .spbtn span {
        display: inline-block;
        -webkit-transition: all 0.3s; 
        -moz-transition: all 0.3s; 
        -o-transition: all 0.3s; 
        transition: all 0.3s;
        box-sizing: border-box;
    }
    header .spbtn span {
        position: absolute;
        left: 0;
        right:0;
        margin: auto;
        width: 26px;
        height: 1px;
        background-color: #353535;
        transition: 0.3s;
    }
    header .spbtn span:nth-of-type(1) {
        top: 12px;
    }
    header .spbtn span:nth-of-type(2) {
        top: 16px;
    }
    header .spbtn span:nth-of-type(3) {
        top: 20px;
    }
    header.select .spbtn span:nth-of-type(1) {
        transform: translate(0,4px) rotate(-30deg);
    }
    header.select .spbtn span:nth-of-type(2) {
        opacity: 0;
    }
    header.select .spbtn span:nth-of-type(3) {
        transform: translate(0,-4px) rotate(30deg);
    }
    header .spmenu .spbtn:after{
        content: "MENU";
        position: absolute;
        top:24px;
        left: 0;
        right:0;
        text-align: center;
        font-size:9px;
    }
    header .spNav{
        width:100%;
        height:100vh;
        height:100dvh;
        position: fixed;
        top:0;
        left:0;
        right:0;
        bottom:auto;
        margin: auto;
        z-index:9990;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        background: #FFFFFF;
        transform:translate(0,-100%);
        padding:9.8rem 0 0 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
        overflow-y: scroll;
    }
    header.select .spNav{
        transform:translate(0,0);
    }
    header .spNav .gNav{
        display: grid;
        gap:1.0rem;
    }
    header .spNav .gNav li a{
        font-size:1.4rem;
        font-weight: 700;
        text-align: center;
        display: block;
    }
    header .spNav .snsNav{
        display: flex;
        gap:2.0rem;
        align-items: center;
        margin: 2.0rem auto 1.5rem auto;
    }
    header .spNav .tel{
        display: flex;
        gap:1.0rem;
        align-items: center;
        font-size:2.4rem;
        font-weight: 600;
    }
    header .spNav .tel:before{
        width:3.2rem;
        height:2.1rem;
        content: "";
        background: url("../img/common/icon_tel.png") no-repeat center center;
    }
    header .spNav .address{
        font-size:1.0rem;
        font-weight: 300;
        line-height: 1.2;
        text-align: center;
        margin-right: 0;
    }
}

/*--------------------------------------
    footer
--------------------------------------*/

.linkArea{
    width:100%;
    padding: 7.0rem 0 4.0rem 0;
    background: #F1C524;
    position: relative;
    z-index: 40;
}
.linkArea .innerArea{
    width:112.0rem;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.linkArea .innerArea h2{
    height:6.0rem;
    font-size:4.1rem;
    font-weight: 900;
    padding: 0 4.0rem 0 4.0rem;
    margin-bottom: 6.0rem;
    position: relative;
    display: inline-block;
}
.linkArea .innerArea h2::before{
    content: "";
    width:0.2rem;
    height:5.0rem;
    display: block;
    background: #FFFFFF;
    position: absolute;
    top:1.0rem;
    left:0.5rem;
    transform: rotate(-30deg);
}
.linkArea .innerArea h2::after{
    content: "";
    width:0.2rem;
    height:5.0rem;
    display: block;
    background: #FFFFFF;
    position: absolute;
    top:1.0rem;
    right:0.5rem;
    transform: rotate(30deg);
}
.linkArea .innerArea ul{
    display: grid;
    gap:45px 40px;
    grid-template-columns: 1fr 1fr;
}
.linkArea .innerArea ul li{
    height:112px;
}
.linkArea .innerArea ul li:last-child{
    grid-column: 1 / 3;
}
.linkArea .innerArea ul li a{
    width:100%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size:2.3rem;
    font-weight: 700;
    background: #FFFFFF;
    border-radius: 1.0rem;
}
.linkArea .innerArea ul li a:after{
    content: "";
    background: url("../img/top/icon_btn.png") no-repeat center center / contain;
    width:3.0rem;
    height:3.0rem;
    position: absolute;
    top:0;
    right:3.6rem;
    bottom:0;
    left:auto;
    margin: auto;
}
.linkArea .innerArea ul li a.splink:after{
    display: none;
}
.linkArea .innerArea ul li a .tel{
    border-radius: 1.0rem;
    display: flex;
    gap:2.0rem;
    align-items: center;
    font-size:45px;
    margin-left: 15.0rem;
    margin-right: 1.0rem;
}
.linkArea .innerArea ul li a .tel:before{
    width:5.0rem;
    height:3.3rem;
    content: "";
    background: url("../img/top/icon_tel.png") no-repeat center center / contain;
}
.linkArea .innerArea ul li a .address{
    font-size:14px;
    line-height: 1.3;
    text-align: left;
}
.linkArea .innerArea .comment{
    font-size:1.0rem;
    font-weight: 300;
    margin-top: 3.5rem;
    text-align: left;
}
@media (max-width: 768px) {
    .linkArea{
        padding: 4.0rem 0 4.5rem 0;
    }
    .linkArea .innerArea{
        width:calc(100vw - 6.0rem);
    }
    .linkArea .innerArea h2{
        height:6.3rem;
        font-size:2.2rem;
        line-height: 1.4;
        padding: 0 3.6rem 0 3.6rem;
        margin-bottom: 3.0rem;
    }
    .linkArea .innerArea ul{
        gap:1.5rem;
        grid-template-columns: 1fr;
    }
    .linkArea .innerArea ul li{
        height:7.5rem;
    }
    .linkArea .innerArea ul li:last-child{
        grid-column: 1 / 2;
    }
    .linkArea .innerArea ul li a{
        font-size:1.6rem;
        flex-direction: column;
    }
    .linkArea .innerArea ul li a:after{
        width:2.0rem;
        height:2.0rem;
        right:1.5rem;
    }
    .linkArea .innerArea ul li a.splink:after{
        display: block;
    }
    .linkArea .innerArea ul li a .tel{
        gap:1.0rem;
        font-size:2.3rem;
        margin-top: 0.5rem;
        margin-left: 0;
        margin-right: 0;
    }
    .linkArea .innerArea ul li a .tel:before{
        width:2.6rem;
        height:1.7rem;
    }
    .linkArea .innerArea ul li a .address{
        font-size:10px;
        font-weight: 300;
        text-align: center;
    }
    .linkArea .innerArea .comment{
        margin-top: 1.5rem;
    }
}

.newsArea{
    width:100%;
    padding: 8.0rem 0 8.0rem 0;
    background: #FFFFFF;
    position: relative;
    z-index: 40;
}
.newsArea .innerArea{
    width:112.0rem;
    min-height: 24.0rem;
    margin: 0 auto;
    position: relative;
    display:flex;
    justify-content: space-between;
}
.newsArea .innerArea h2{
    font-size:3.8rem;
    font-weight: 900;
    text-align: center;
}
.newsArea .innerArea .newsList{
    width:88.0rem;
}
.newsArea .innerArea .newsList li{
    width:88.0rem;
    height:8.0rem;
}
.newsArea .innerArea .newsList li a{
    display: flex;
    align-items: center;
    width:100%;
    height:100%;
    font-size:1.8rem;
    font-weight: 500;
    border-bottom: 1px solid #DBDBDB;
}
.newsArea .innerArea .newsList li a time{
    font-size:1.6rem;
    color:rgba(53,53,53,0.5);
    margin-right: 7.5rem;
}
.newsArea .innerArea .linkBtn{
    width:120px;
    height:24px;
    position: absolute;
    top:0;
    left:0;
    right:auto;
    bottom:0;
    margin: auto;
}
.newsArea .innerArea .linkBtn a{
    display: flex;
    align-items: center;
    width:100%;
    height:100%;
    font-size:1.6rem;
    line-height: 2.0rem;
    background: none;
    border-radius: 0;
}
.newsArea .innerArea .linkBtn a:after{
    content: "";
    background: url("../img/top/icon_btn.png") no-repeat center center / contain;
    width:2.4rem;
    height:2.4rem;
    margin-left: 1.2rem;
}
@media (max-width: 768px) {
    .newsArea{
        padding: 4.5rem 0 4.5rem 0;
    }
    .newsArea .innerArea{
        width:calc(100vw - 6.0rem);
        min-height: 0;
        display:block;
    }
    .newsArea .innerArea h2{
        font-size:2.1rem;
        margin-bottom: 3.0rem;
    }
    .newsArea .innerArea .newsList{
        width:100%;
    }
    .newsArea .innerArea .newsList li{
        width:100%;
        height:auto;
        margin-bottom: 3.0rem;
    }
    .newsArea .innerArea .newsList li a{
        display: block;
        font-size:1.5rem;
        padding-bottom: 3.0rem;
    }
    .newsArea .innerArea .newsList li a time{
        font-size:1.4rem;
        margin-right: auto;
        margin-bottom: 1.0rem;
        display: block;
    }
    .newsArea .innerArea .linkBtn{
        position: static;
        width:17.4rem;
        height:4.5rem;
        margin: 0 auto 0 auto;
    }
    .newsArea .innerArea .linkBtn a{
        font-size:1.3rem; 
        display: flex;
        justify-content: center;
        align-items: center;
        width:100%;
        height:100%;
        border-radius: 2.8rem;
        background: #F1C524;
        font-weight: 700;
    }
    .newsArea .innerArea .linkBtn a:after{
        display: none;
    }
}


footer .footerContent{
    width:100%;
    height:40.0rem;
    padding: 6.0rem calc(50vw - 56.0rem) 8.0rem 8.0rem;
    box-sizing: border-box;
    background: #EAEAEA;
    position: relative;
}
footer .footerContent .innerArea{
    width:22.0rem;
    margin-left: 0;
}
footer .footerContent .innerArea .logo{
    margin-bottom: 2.5rem;
}
footer .footerContent .innerArea .detail{
    font-size:1.4rem;
    line-height: 1.8;
}
footer .footerContent nav.fNav{
    width:90.0rem;
    position: absolute;
    top:6.0rem;
    right:calc(50vw - 56.0rem);
    display: flex;
    justify-content: space-between;
}
footer .footerContent nav.fNav ul.parent li{
    margin-bottom: 1.0rem;
}
footer .footerContent nav.fNav ul.parent li span{
    font-size:1.8rem;
    font-weight: bold;
}
footer .footerContent nav.fNav ul.parent li ul.child{
    margin-top: 2.5rem;
}
footer .footerContent nav.fNav ul.parent:last-child{
    margin-right: 6.5rem;
}
footer .footerContent nav.snsNav{
    display: none;
}
footer .footerContent nav.oNav{
    width:90.0rem;
    position: absolute;
    bottom:8.0rem;
    right:calc(50vw - 56.0rem);
}
footer .footerContent nav.oNav ul{
    display: flex;
    gap:8.0rem;
}
footer .footerContent nav.oNav ul li{
    position: relative;
}
footer .footerContent nav.oNav ul li:not(:last-child):after{
    content: "";
    width:1px;
    height:2.0rem;
    background: rgba(53,53,53,0.5);
    position: absolute;
    top:0;
    left:calc(100% + 4.0rem);
    bottom:0;
    margin: auto;
}
footer .footerContent nav.oNav ul li a{
    font-size:1.4rem;
    color:rgba(53,53,53,0.5);
    line-height: 2.0rem;
}
footer .footerContent .copy{
    position: absolute;
    bottom: 8.0rem;
    left: 8.0rem;
    font-size:1.2rem;
    color:rgba(53,53,53,0.5);
}
.floatBtn{
    position: fixed;
    right:5.0rem;
    bottom:4.0rem;
    z-index: 9990;
}
a.pagetop{
    position: fixed;
    right:22.0rem;
    bottom:4.0rem;
    z-index: 9999;
}
@media (max-width: 768px) {
    footer .footerContent{
        padding: 3.5rem 0 10.0rem 0;
    }
    footer .footerContent .innerArea{
        width:100%;
    }
    footer .footerContent .innerArea .logo{
        width:40vw;
        margin:0 auto 5.0rem auto;
    }
    footer .footerContent .innerArea .detail{
        display: none;
    }
    footer .footerContent nav.fNav{
        display: none;
    }
    footer .footerContent nav.snsNav{
        display: block;
    }
    footer .footerContent nav.snsNav ul{
        display: flex;
        justify-content: center;
        gap:3.0rem;
        margin-bottom: 3.2rem;
    }
    footer .footerContent nav.oNav{
        width:100%;
        position: static;
        margin-bottom: 4.5rem;
    }
    footer .footerContent nav.oNav ul{
        justify-content: center;
        gap:4.0rem;
    }
    footer .footerContent nav.oNav ul li:not(:last-child):after{
        left:calc(100% + 2.0rem);
    }
    footer .footerContent .copy{
        text-align: center;
        position: static;
    }
    .floatBtn{
        top:auto;
        left:3.0rem;
        right:3.0rem;
        bottom:1.0rem;
        text-align: center;
        opacity: 0;
        pointer-events: none;
        transition: 0.5s;
    }
    .floatBtn.is-active{
        opacity: 1;
        pointer-events: fill;
    }
    .pagetop{
        display: none;
    }
}
