@charset "UTF-8";
/* 共通 */
html,
body{
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

html{
    scroll-behavior: smooth;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 17px;
    line-height: 2em;
}

h2{
    margin-bottom: 40px;
    color: #000;
    font-size: 36px;
    font-weight: bold;
}

h3{
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
}

h4{
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: bold;
}

h5{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a{
    display: block;
    width: 100%;
    height: 100%;
}

.red{
    color: red;
}

.more-info_Btn{
    width: 280px;
    height: 60px;
    margin-top: 40px;
    background-color: #000;
    border-radius: 30px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;    
    line-height: 60px;
}

.more-info_Btn:hover{
    background-color: rgb(0, 180, 120);
}

.SP_only{
    display: none;
}

.readability_br{
    margin-bottom: 1rem;
}

/* 共通：フォント */
.sofia-sans-semi-condensed{
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/* 共通：ヘッダー＞グローバルナビ：PC */
.navi_global_PC{
    width: 100vw;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgb(255, 220, 0);
    border-bottom: 1px solid #000;
}

.navi_Wrap_PC{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.navi_Wrap_PC h1{
    width: 160px;
    height: 100%;
    margin-left: 80px;
}

.navi_Wrap_PC h1 a{
    padding-left: 60px;
    font-size: 20px;
    line-height: 80px;
    background: url(../images/logo.webp) left center/50px no-repeat;
}

.navi_Wrap_PC h1 a:hover{
    opacity: 0.5;
}

.navi_Wrap_PC ul{
    display: flex;
    justify-content: right;
    margin-right: 240px;
}

.navi_Wrap_PC ul li a{
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
}

.navi_Wrap_PC ul li a:hover{
    opacity: 0.5;
}

.navi_global_PC .contact_Btn{
    width: 200px;
    height: 80px;
    position: fixed;
    right: 0;
    top: 0;
}

.navi_global_PC .contact_Btn a{
    background: #000 url("../images/icon_mail.webp") left 14px center / 20px no-repeat;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-indent: 24px;
    line-height: 80px;
    border-bottom: 1px solid #000;
}

.navi_global_PC .contact_Btn a:hover{
    background-color: rgb(0, 180, 120);
    border-bottom: 1px solid #000;
}

/* 共通：ヘッダー＞グローバルナビ：SP */
.navi_global_SP{
    display: none;
}

/* 共通：フッター */
footer{
    background-color: rgb(255, 220, 0);
    padding: 120px 0 0;
}

/* 共通：フッター＞コンタクト */
.footer_contact{
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer_contact::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 314px;
    background: url( ../images/background_decoration_04.webp) center center no-repeat;
    background-size: 100% auto;
}

.footer_contact_Wrap{
    width: 90%;
    max-width: 720px;
    position: relative;
    z-index: 3;
}

.footer_contact_Wrap h2{
    color: #000;
}

.footer_contact_mail{
    position: relative;
    height: 160px;
    margin: 0 auto;
    background-color: #000;
    border-radius: 12px;
    color: #fff;
}

.footer_contact_mail a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer_contact_mail:hover{
    background-color: rgb(0, 180, 120);
}

.footer_contact_mail p:nth-of-type(1){
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
}

.footer_contact_mail p:nth-of-type(2){
    font-size: 20px;
    font-weight: bold;
}

/* 共通：フッター＞サイトマップ */
.footer_site-map{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0 ;
}

.footer_site-map h2{
    display: block;
    padding-right: 40px;
    margin: 0 40px 0 0;
    border-right: 1px solid #000;
    color: #000;
    font-size: 20px;
    line-height: 80px;
}

.footer_site-map ul{
    color: #000;
}

.footer_site-map ul li{
    display: inline-block;
    margin-right: 40px;
}

.footer_site-map a:hover{
    opacity: 0.5;
}

/* 共通：フッター＞フッターバー */
.footer_bar{
    background-color: #000;
    color: #fff;
    text-align: center;
}