@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* 全ての要素に対して box-sizing を border-box に設定 */
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* デフォルトのフォントファミリーとサイズを設定 */
body {
    color: #333333;
    font-family: 'Noto Serif JP', serif !important;
    font-weight: 400;
    /*"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "BIZ UDPGothic", Meiryo, sans-serif */
    font-size: 15px;
    background-image: url(../img/main_bg.jpg);
    /* 画像を常に天地左右の中央に配置 */
    background-position: center center;
    /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    background-size: cover;
    object-fit: cover;
    /* 背景画像が読み込まれる前に表示される背景のカラー */
    background-color: #464646;
    /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-attachment: fixed;
}
p {
    letter-spacing: 0.08em;
    
}
@media screen and (min-width: 768px) {
    body {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
}
/* リストのスタイリングを削除 */
ul,ol
{
    list-style: none;
}
dt {
    font-weight: lighter;
}

/* リンクの基本的なスタイリング */
a {
    text-decoration: none;
}

/* メインコンテンツを最大幅に設定し、中央に配置 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダーの基本的なスタイリング */
/* h1,h2,h3,h4,h5,h6 {
    margin-bottom: 10px;
} */


/* 段落間にスペーシングを追加 */
:root {
    --main_color: #D1BF88;
    --sab_color:#454545;
    --sub_blue:#53A4D7;
}


@media screen and (min-width: 768px) {
    :root {

    }
}

/*========= 背景 =========*/
.bg_gray {
    background-color: #fafafa;
}


/*=== PC only / SP only ===*/
@media screen and (min-width:391px) {
    .sp_only{
        display: none;
    }
}
@media (max-width: 391px) , (min-width: 1024px) {
    .tb_only{
        display: none;
    }
}
@media screen and (min-width:769px) {
    .sptb_only{
        display: none;
    }
}
@media screen and (max-width:390px) {
    .tbpc_only{
        display: none;
    }
}
@media screen and (max-width:768px) {
    .pc_only{
        display: none;
    }
}

.list-item_gap:not(:last-child) {
    margin-bottom: 0.8rem;
}
.list-item_gap_02:not(:last-child) {
    margin-bottom: 3.3rem;
}
.item_gap:not(:last-child) {
    margin-bottom: var(--margin_01);
}
.block_gap:not(:last-child) {
    margin-bottom: 7.5rem;
}


.section-gap {
    margin-bottom: var(--sec_margin);
}

.block-gap:not(:last-child) {
    margin-bottom: var(--block_margin);
}

/* ＝＝＝＝＝＝＝＝＝＝　共通　＝＝＝＝＝＝＝＝＝＝*/
.sec_ttl {
    width: 100%;
    display: inline-block;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
}
.sec_ttl::after {
    content: "";
    display: block;
    height: 2px;
    width: 90px;
    background-color: var(--main_color);
    margin: 20px auto 0; 
}
.sec_ttl-2 {
    width: 100%;
    display: inline-block;
    font-size: 32px;
    line-height: 0.75;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    color: #fff;
}
.sec_btn_w,
.sec_btn_b {
    display: block;
    font-size: 20px;
    text-align: center;
    padding: 15px 60px;
    max-width: 282px;
    width: 100%;
    transition: .3s;
    margin: 0 auto;   
}

.sec_btn_w {
    color: #fff;
    border: 1px solid #fff;
}
.sec_btn_b {
    color: #333;
    border: 1px solid #333;
}
.sec_btn_w:hover,
.sec_btn_b:hover {
    color: #333;
    background-color: #fff;
    text-decoration: none;
}
.tag_y,
.tag_b {
    position: absolute;
    display: block;
    top: 30px;
    left: 0;
    height: 25px;
    width: 65px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center; 
    align-items: center;
}
.tag_y {
    background-color: var(--main_color);
}
.tag_b {
    background-color: var(--sub_blue);
}
@media screen and (max-width:768px) {
    .sec_ttl {
        width: 100%;
        display: inline-block;
        font-size: 28px;
        text-align: center;
        line-height: 1.5;
        margin: 0 auto;
        position: relative;
        margin-bottom: 50px;
    }
    .sec_ttl::after {
        content: "";
        display: block;
        height: 2px;
        width: 90px;
        background-color: var(--main_color);
        margin: 20px auto 0; 
    }
    .sec_btn_w,
    .sec_btn_b {
    display: block;
    font-size: 20px;
    text-align: center;
    padding: 15px 30px;
    max-width: 282px;
    width: 100%;
    transition: .3s;
    margin: 0 auto;   
}
}

/* ==================== header ==================== */
#header {
    position: fixed;
    top: 0;
    padding: 10px 40px;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    
    /* background-color: transparent;
    transition: background-color 0.3s ease; */
    color: #333 !important;
}
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.7) !important;
    color: #333;
}
.header_inner,
.header-sp_inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.header-sp_inner {
    display: none;
}
.header_logo img {
    height: 45px;
    width: auto;
}
.nav {
    width: auto;
    height: auto;
}
.nav-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    align-items: center;
    gap: 35px;
}
.nav-cont li {
    font-size: 16px;
    font-weight: 300;

}
.nav-cont a {
    position: relative;
    text-decoration:none;
}

.nav-item a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: -1px;
    transform: scale(0,1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.nav-item a:hover::after {
    transform: scale(1,1);    
}
.sp_nav {
    display: none;
}
@media screen and (max-width: 767px) {
    #header {
        height: 80px;
        padding: 0 0;
    }
    .header_inner {
        display: none;
    }
    .header-sp_inner {
        display: block;
    }
    .header-sp_inner .header_logo {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 20;
    }
    .nav {
        display: none;
    }

    /* ボタンのスタイル */
    .hamburger {
        position: fixed;
        top: 26px;
        right: 20px;
        width: 30px;
        cursor: pointer;
        z-index: 20;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #333;
        margin: 5px 0;
        transition: 0.4s;
    }
    /* バツ印に変化するスタイル */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }  
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }  
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .sp_nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: var(--main_color);
        color: #fff !important;
        transition: opacity 0.3s ease; /* スライドインのアニメーション */
        padding: 65px 20px 20px;
        box-sizing: border-box;

    }
    /* メニューが開いているとき */
    .sp_nav.open {
        display: block;
        opacity: 100;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        text-align: center;
    }
    /* メニューリストのスタイル */
    .sp_nav ul {
        list-style-type: none;
        padding: 0;
        margin: 40px 0 30px;
        display: flex;
        flex-direction: column;
        gap: 40px;

    }
    .sp_nav .nav-item {
        font-size: px;
    }
    .sp_nav .nav-item a {
        text-decoration: none;
        display: block;
    }
    /* メニューリストのスタイル */
    .sp_nav_contact {
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        gap: 20px;
    }
    .sp_nav_contact .sec_btn_w {
        border-radius: 8px;
        width: 80%;
        min-width: 295px;
        padding: 20px 30px;
    }
    .sp_nav_contact .sec_btn_w:hover {
        color: #333 !important;
        background-color: #fff;
        text-decoration: none;
    }
}

/* ==================== sub-top ==================== */
.sub_top {
    margin-top: 65px;
}
.sub_top_innner {
    position: relative;
    height: calc(270px + 50px); /* 画面の高さにフィット */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
    rgba(0, 0, 0, 0.1), 
    rgba(0, 0, 0, 0.1)),
    url(../img/top_bg_f.jpg) no-repeat center/cover;
    text-align: center;
    color: white;
}
.sub_top_innner_text {
    position: absolute;
    font-size: 38px;
    letter-spacing: 0.2em;
    color: #FFFFFF;
    text-shadow: 0px 0px 7px #000000;
}
.sub_top_innner_text p {
    font-size: 32px;
}
/* ==================== breadcrumb ==================== */
#breadcrumb {
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.breadcrumb_inner {
    max-width: 1024px;
    width: 100%;
    padding: 10px 40px;
    font-size: 11px;
}
/* ==================== sub_cont-ttl ==================== */
.sub_cont-h2 {
    max-width: 1024px;
    width: 100%;
    height: auto;
    padding: 15px 20px;
    background: linear-gradient(90deg, #D1BF88 60.17%, rgba(200, 180, 136, 0) 100%);
    font-size: 28px;
    color: white;
    margin-bottom: 50px;
}

.sub_cont-h3 {
    max-width: 1024px;
    width: 100%;
    height: auto;
    font-size: 28px;
    border-bottom: solid 1px #333;
    padding-bottom: 10px;
    margin-bottom: 50px;
}

/* ==================== footer ==================== */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sec_contact {
    width: 100%;
    padding: 50px 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/デザイン/DSC04172.jpg);
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.sec_contact_ttl {
    font-size: 28px;
    color: #fff;
    margin-bottom: 35px;
} 
.sec_contact_cont {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    gap: 50px;
}
.sec_contact_btn {
    width: 320px;
    height: 100px;
    display: flex;
    justify-content: center; 
    align-items: center;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}
.sec_contact_btn:hover {
    background-color: #fff;
    color: #333;
    text-decoration: none;
}
.dotted-line {
    width: 1px;
    height: 150px;
    border-left: 2px dotted #fff;
}

@media screen and (max-width:768px) {
    .sec_contact {
        padding: 100px 24px;
        background: 
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)), url(../img/デザイン/DSC04172.jpg);
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
    }
    .sec_contact_ttl {
        font-size: 7.467vw;
        color: #fff;
        margin-bottom: 35px;
    } 
    .sec_contact_cont {
        flex-direction: column;
    }
    .sec_contact_btn {
        height: 100px;
        width: 100%;
        display: flex;
        border: 1px solid #fff;
        border-radius: 8px;
        color: #fff;
        font-size: 20px;
        transition: .3s;
    }
    .dotted-line {
        width: 90%;
        height: 1px;
        border-left: none;
        border-bottom: 2px dotted #fff;
    }
}

.footer_nav {
    background-color: #fff;
    height: 60px;
    padding: 15px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}
.footer_nav .nav-cont {
    gap: 0;
}
.footer_nav li:not(:first-child) {
    padding-left: 40px;
}
.footer_nav li:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid #333;
}
.footer_nav_item:not(:last-child) {
    padding-bottom: 20px;
}
@media screen and (max-width:768px) {
    .footer_nav {
        background-color: transparent;
        height: 40px;
    }
    .footer_nav .nav-cont {
        display: none;
    }
}


.footer_inner {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 65px 40px;
    background-color: var(--sab_color);
    color: #fff;
    gap: 40px;
}

.footer_cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.footer_cont_ttl {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer_cont li:not(:last-child) {
    margin-bottom: 10px;
}

.footer_cont_about  {
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}
.footer_cont01_about li {
    font-size: 16px;
}

.map_size {
    width: 390px;
    height: 320px;
    
}
@media screen and (max-width:768px) {
    .footer_inner {
        width: 100%;
        flex-direction: column;
        padding: 35px 12px;
        background-color: var(--sab_color);
        color: #fff;
        gap: 40px;
    }
    
    .footer_cont_ttl {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .footer_cont_about  {
        padding-bottom: 30px;
        border-bottom: 1px solid #fff;
    }
    .footer_cont01_about li {
        font-size: 15px;
    }
    
    .map_size {
        width: 100%;
        height: 261px;
    }
}

/* @media screen and (min-width: 391px) and (max-width: 1024px) {
    .footer {
        width: 100%;
        height: auto;
        color: white;
    }
    .footer_innner {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .footer_nav{
        font-size: 16px;
        margin-bottom: 40px;
    }
    .footer_nav ul {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer_nav_item {
        font-size: 2.1vw;
    }
    .footer_nav_item:not(:last-child) {
        padding-right: 40px;
    }
    .footer_nav_item:not(:last-child) {
        padding-bottom: 0px;
    }
    
}
@media screen and (max-width: 767px) {
    .footer_cont01 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer_inner_ttl {
        text-align: center;
    }

}
@media screen and (max-width: 390px) {
    .footer {
        padding: 40px 12px ;
        width: 100%;
        height: auto;
    }
    .footer_nav {
        display: none;
    }
    .footer_cont01 {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .map_size {
        width: 93.846vw;
        height: 320px;
    }
} */
