@charset "utf-8";
/* CSS Document */

/*------------------------
ローディング
------------------------*/
#loading{
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
background-color: #d1e1f0;
z-index: 99999;
}
.animate #loading{
animation: loadingEnd 500ms linear forwards;
}

@keyframes loadingEnd{
0%{
visibility: visible;
opacity: 1;
}
100%{
visibility: hidden;
opacity: 0;
z-index: -1;
}
}
/*------------------------
／ローディング
------------------------*/





#stickyContainer{
overflow: clip;
}





/*------------------------
ヘッダー
------------------------*/
header{
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
/*right: 0;
left: 0;*/
height: 100px;
padding: 0 0 0 30px;
background-color: #ffffff;
-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3);
box-shadow: 0 0 1px rgba(0,0,0,0.3);
z-index: 100;
}
#headerLogo{
max-width: 300px;
flex: 1;
}
#headerNav{
display: flex;
height: 100%;
}
#headerNav nav{
height: 100%;
}
#headerNav nav>ul{
display: flex;
height: 100%;
}
#headerNav nav>ul>li>a{
position: relative;
display: flex;
height: 100%;
justify-content: center;
align-items: center;
text-align: center;
color: #333333;
text-decoration: none;
font-size: 0.875rem;
padding: 0 25px;
transition: color 100ms ease;
}
#headerNav nav>ul>li>a:hover{
color: #67cecc;
}
#headerNav nav>ul>li>a span{
display: block;
position: relative;
padding: 10px 0;
}
#headerNav nav>ul>li.current>a span::after{
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 3px;
background-color: #387ebe;
}
#headerNav nav>ul>li>ul.sub{
display: none;
}
#headerNavTel{
height: 100%;
}
#headerNavTel>a{
display: flex;
height: 100%;
justify-content: center;
align-items: center;
color: #ffffff;
background-color: #387ebe;
text-decoration: none;
padding: 0 25px;
}
#headerNavTel>a p{
position: relative;
font-size: 1.5rem;
font-weight: 700;
line-height: 1.4;
}
#headerNavTel>a p span{
display: flex;
align-items: center;
}
#headerNavTel>a p span::before{
content: '';
display: block;
width: 20px;
height: 20px;
background-image: url(../images/tel_white.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 16px auto;
}
#headerNavTel>a p small{
display: block;
font-size: 50%;
font-weight: 500;
padding: 0 0 0 20px;
}
#headerSpBtns{
display: none;
margin: 0 0 0 20px;
}
#headerSpBtns>ul{
display: flex;
align-items: center;
}
#headerSpBtns>ul>li+li{
margin-left: 10px;
}
#headerSpBtns>ul>li>a{
display: flex;
justify-content: center;
align-items: center;
width: 52px;
height: 52px;
border: 2px solid #387ebe;
border-radius: 50%;
text-decoration: none;
}
#headerSpBtns>ul>li#headerSpTel>a{
background-color: #ffffff;
}
#headerSpBtns>ul>li#headerSpTel>a img{
max-width: 22px;
}
#headerSpBtns>ul>li#headerSpMenu>a{
color: #ffffff;
background-color: #387ebe;
cursor: pointer;
font-size: 10px;
}
#headerSpBtns>ul>li#headerSpMenu>a span{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 100%;
}
#headerSpBtns>ul>li#headerSpMenu>a span::before{
content: '';
display: block;
width: 24px;
height: 14px;
margin-bottom: 3px;
background-image: url(../images/menu_icon.png);
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
}
#headerSpBtns>ul>li#headerSpMenu.show>a span::before{
background-image: url(../images/menu_close.png);
}

@media screen and (max-width: 999px){
header{
height: 80px;
padding: 0 10px 0 15px;
}
#headerLogo{
max-width: 240px;
}
#headerNav{
display: block;
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: calc(100vh - 80px);
background-color: #ffffff;
opacity: 0;
visibility: hidden;
transform: translateY(-50px);
transition: opacity 600ms ease, transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
overflow-y: auto;
z-index: -1;
}
#headerNav.show{
opacity: 1;
visibility: visible;
transform: none;
}
#headerNav nav{
height: auto;
}
#headerNav nav>ul{
display: block;
height: auto;
}
#headerNav nav>ul>li{
border-top: 1px solid #387ebe;
}
#headerNav nav>ul>li>a{
display: block;
height: auto;
color: #387ebe;
padding: 5px 10px;
text-align: left;
}
#headerNav nav>ul>li>ul.sub{
display: block;
}
#headerNav nav>ul>li>ul.sub>li{
border-top: 1px solid #387ebe;
}
#headerNav nav>ul>li>ul.sub>li>a{
display: block;
color: #387ebe;
text-decoration: none;
padding: 15px 10px 15px calc(10px + 3em);
font-size: 0.875rem;
transition: color 100ms ease;
}
#headerNav nav>ul>li>ul.sub>li>a:hover{
color: #67cecc;
}
#headerNavTel{
height: auto;
border-top: 1px solid #387ebe;
border-bottom: 1px solid #387ebe;
}
#headerNavTel>a{
height: auto;
color: #387ebe;
background-color: #ffffff;
padding: 10px;
}
#headerNavTel>a p span::before{
background-image: url(../images/tel_blue.png);
}
#headerSpBtns{
display: block;
}
}/*999*/
/*------------------------
／ヘッダー
------------------------*/



/*------------------------
フッター
------------------------*/
footer{
position: relative;
padding-top: 8%;
z-index: 99;
}
footer::before{
content: '';
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
padding-top: 8%;
background-image: url(../images/footer_obj.svg);
background-repeat: no-repeat;
background-position: center bottom;
background-size: 100% 100%;
z-index: 1;
}
footer::after{
content: '';
display: block;
position: absolute;
left: 0;
top: calc(8vw + 1px);
width: 100%;
height: 3px;
background-color: #387ebe;
z-index: 1;
}
#footerWrap{
position: relative;
color: #ffffff;
background-color: #387ebe;
padding: 40px 0 50px;
z-index: 2;
}
#footerWrap>div{
max-width: 1000px;
margin: 0 auto;
}
#footerWrap h2{
position: relative;
font-size: 1.875rem;
line-height: 1.5;
font-weight: 700;
padding-bottom: 25px;
}
#footerWrap h2 small{
display: block;
font-size: 60%;
font-weight: 500;
}
#footerWrap h2::before{
content: '';
display: block;
position: absolute;
left: 0;
bottom: 0;
width: 40px;
height: 2px;
background-color: #ffffff;
}
#footerContent{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 30px;
}
#footerCompany{
width: calc(100% - 650px);
}
#footerCompany p.title{
max-width: 250px;
}
#footerCompany p.add{
margin-top: 1em;
}
#footerContact{
width: 600px;
}
#footerContact>ul{
display: flex;
justify-content: space-between;
align-items: center;
}
#footerContact>ul>li{
width: 280px;
}
#footerContact>ul>li a{
display: flex;
justify-content: center;
align-items: center;
height: 90px;
color: #387ebe;
background-color: #ffffff;
text-decoration: none;
padding: 10px;
border-radius: 100rem;
transition: background 100ms ease;
}
#footerContact>ul>li a:hover{
background-color: #cafcfb;
}
#footerContact>ul>li#footerContactTel a p{
position: relative;
font-size: 1.75rem;
font-weight: 700;
line-height: 1.4;
}
#footerContact>ul>li#footerContactTel a p span{
display: flex;
align-items: center;
}
#footerContact>ul>li#footerContactTel a p span::before{
content: '';
display: block;
width: 24px;
height: 24px;
background-image: url(../images/tel_blue.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 18px auto;
}
#footerContact>ul>li#footerContactTel a p small{
display: block;
font-size: 50%;
font-weight: 500;
padding: 0 0 0 24px;
}
#footerContact>ul>li#footerContactMail a p{
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
}
#footerContact>ul>li#footerContactMail a p::before{
content: '';
display: block;
width: 30px;
height: 30px;
background-image: url(../images/mail_blue.png);
background-repeat: no-repeat;
background-position: left center;
background-size: 24px auto;
}
#copy{
margin-top: 80px;
font-size: 0.75rem;
text-align: right;
}
/*#pagetop{
position: absolute;
top: 8vw;
right: 20%;
width: 60px;
height: 60px;
transform: translateY(-50%);
}
#pagetop a{
display: flex;
justify-content: center;
align-items: center;
color: #387ebe;
background-color: #ffffff;
border: 2px solid #387ebe;
border-radius: 50%;
height: 100%;
transition: background 100ms ease;
}
#pagetop a:hover{
background-color: #cafcfb;
}
#pagetop img{
width: auto;
height: 30px;
}*/
#pagetop{
position: absolute;
left: 0;
top: 0;
width: 100%;
padding-top: calc(8% + 30px);
z-index: 3;
}
#pagetop a{
position: absolute;
right: 20%;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
width: 60px;
height: 60px;
color: #387ebe;
background-color: #ffffff;
border: 2px solid #387ebe;
border-radius: 50%;
transition: background 100ms ease;
}
#pagetop a:hover{
background-color: #cafcfb;
}
#pagetop img{
width: auto;
height: 30px;
}

@media screen and (max-width: 999px){
#footerWrap{
padding: 20px 10px;
}
#footerWrap h2{
font-size: 1.75rem;
}
#footerContent{
display: block;
margin-top: 30px;
}
#footerCompany{
width: auto;
}
#footerCompany p.add{
font-size: min(4.5vw, 100%);
}
#footerContact{
width: auto;
margin-top: 30px;
}
#footerContact>ul{
display: block;
}
#footerContact>ul>li{
width: 100%;
max-width: 280px;
margin: 0 auto;
}
#footerContact>ul>li+li{
margin-top: 15px;
}
#footerContact>ul>li#footerContactTel a p{
font-size: min(9vw, 1.75rem);
}
#footerContact>ul>li#footerContactMail a p{
font-size: min(5.5vw, 100%);
}
#copy{
margin-top: 40px;
text-align: center;
}
/*#pagetop{
right: 15%;
width: 50px;
height: 50px;
}
#pagetop img{
height: 20px;
}*/
#pagetop{
padding-top: calc(8% + 25px);
}
#pagetop a{
right: 15%;
width: 50px;
height: 50px;
}
#pagetop img{
height: 20px;
}
}/*999*/
/*------------------------
／フッター
------------------------*/





#mainContent{
position: relative;
background-color: #ffffff;
z-index: 2;
}





#pageTitle{
display: flex;
justify-content: center;
align-items: center;
position: relative;
height: calc(200px + 11vw);
background-color: #eeeeee;
overflow: hidden;
padding: 0 10px 11vw;
z-index: 1;
}
#pageTitle::before{
content: '';
display: block;
position: absolute;
left: 0;
bottom: -1px;
width: 100%;
height: 3px;
background-color: #ffffff;
z-index: 3;
}
#pageTitle::after{
content: '';
display: block;
position: absolute;
left: 0;
bottom: 0;
width: 100%;
padding-top: 11%;
background-image: url(../images/pagetitle_obj.svg);
background-repeat: no-repeat;
background-position: center bottom;
background-size: 100% 100%;
z-index: 4;
}
#pageTitle h1{
position: relative;
width: 100%;
max-width: 1000px;
font-size: 1.875rem;
line-height: 1.5;
color: #ffffff;
font-weight: 700;
text-shadow: 5px 5px 10px rgba(0,0,0,0.50);
z-index: 2;
}
#pageTitle h1 small{
display: block;
font-size: 60%;
font-weight: 500;
}
#pageTitle figure{
position: fixed;
top: 100px;
right: 0;
left: 0;
height: calc(200px + 8vw + 10px);
z-index: 1;
}
#pageTitle figure img{
width: 100%;
height: 100%;
object-fit: cover;
}

@media screen and (max-width: 999px){
#pageTitle{
height: 50vw;
padding: 0 20px 11vw;
}
#pageTitle h1{
font-size: 1.75rem;
text-shadow: 3px 3px 5px rgba(0,0,0,0.50);
}
#pageTitle figure{
top: 80px;
height: calc(47vw + 10px);
}
}/*999*/





#bread{
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 2;
}
#bread>ol{
display: flex;
padding: 0 30px;
/*overflow-x: scroll;*/
}
#bread>ol>li{
position: relative;
padding: 0 0 0 46px;
flex-shrink: 0;
}
#bread>ol>li::before{
content: '';
display: block;
position: absolute;
top: 50%;
left: 20px;
transform: translateY(-50%);
width: 6px;
height: 10px;
background-image: url(../images/bread_arrow.png);
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
}
#bread>ol>li:first-child{
width: 12px;
padding: 0;
}
#bread>ol>li:first-child::before{
content: none;
}
#bread>ol>li a{
display: block;
padding: 15px 0;
text-decoration: none;
color: #ffffff;
line-height: 100%;
font-size: 0.75rem;
}

@media screen and (max-width: 999px){
#bread{
display: none;
}
#bread>ol{
overflow-x: scroll;
}
}/*999*/





.heading{
position: relative;
display: flex;
align-items: center;
font-size: 1.5rem;
line-height: 1.5;
font-weight: 700;
color: #387ebe;
}
.heading::after{
content: '';
display: block;
width: 100%;
height: 2px;
background-color: #387ebe;
margin-left: 15px;
flex: 1;
}





.btn a{
position: relative;
display: flex;
justify-content: center;
align-items: center;
color: #ffffff;
background-color: #387ebe;
text-decoration: none;
padding: 10px 50px;
border-radius: 100rem;
line-height: 1.5;
transition: background 100ms ease;
}
.btn a::before{
content: '';
display: block;
position: absolute;
top: 50%;
right: 15px;
width: 14px;
height: 14px;
background-color: #ffffff;
border-radius: 50%;
transform: translateY(-50%);
background-image: url(../images/arrow_blue.png);
background-repeat: no-repeat;
background-position: center center;
background-size: 8px auto;
}
.btn a:hover{
background-color: #67cecc;
}





#privacyPolicy p.lead{
margin-top: 1.5em;
}
#privacyPolicy dl dt{
counter-increment: policy;
margin-top: 1.5em;
position: relative;
padding-left: 1.5em;
}
#privacyPolicy dl dt::before{
content: counter(policy, decimal) '.';
display: block;
position: absolute;
top: 0;
left: 0;
width: 1.5em;
}
#privacyPolicy dl dd{
padding-left: 1.5em;
}
#privacyPolicy dl dd ul li{
margin-left: 20px;
list-style: disc;
}





#pagination{
display: flex;
justify-content: center;
align-items: center;
margin-top: 80px;
}
#pagination a{
display: flex;
justify-content: center;
align-items: center;
height: 40px;
color: #333333;
text-decoration: none;
text-align: center;
transition: color 100ms ease;
}
#pagination a:hover{
color: #67cecc;
}
#pagination .paginationArrow{
width: 70px;
}
#pagination .paginationArrow.disabled{
display: none;
}
#pagination #pageNum{
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: -20px 0 0;
}
#pagination #pageNum li{
width: 40px;
margin: 20px 10px 0;
}
#pagination #pageNum a.current{
color: #ffffff;
background-color: #387ebe;
}

@media screen and (max-width: 999px){
#pagination{
margin-top: 40px;
}
#pagination .paginationArrow{
width: 50px;
}
#pagination #pageNum{
margin: -10px 0 0;
}
#pagination #pageNum li{
margin: 10px 5px 0;
}
}/*999*/





.nonePosts{
padding: 22px 0;
}





#notFoundArea{
padding: 60px 10px 100px;
}

@media screen and (max-width: 999px){
#notFoundArea{
padding: 40px 10px 50px;
}
}/*999*/





#notFoundArea>div{
max-width: 1000px;
margin: 0 auto;
}





#notFoundMain{
display: flex;
flex-direction: column;
align-items: flex-start;
}
#notFoundMain h2{
width: 100%;
}
#notFoundMain p.lead{
/*margin-top: 1.5em;*/
}
#notFoundMain p.btn{
margin-top: 30px;
}

@media screen and (max-width: 999px){
#notFoundMain h2{
font-size: 1.75rem;
}
#notFoundMain p.btn{
margin-top: 20px;
}
}/*999*/