﻿@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 1.5rem;
    font-weight: normal;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

img {
    width: 100%;
}

.inner {
    max-width: 1195px;
    padding: 0 15px;
    margin: 0 auto;
}
@media screen and (max-width: 760px) {
    .inner {
        width: 100%;
        padding: 0 25px;
    }
}

/* -----------------
    共通文字指定
------------------- */

.main_head {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 1.8rem;
    line-height: 3.6;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl; /* 縦書き */
    color: #fff;
}
.main_catch {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 3.8rem;
    line-height: 1.9;
    letter-spacing: 0.025em;
    font-weight: normal;
}
.main_lead {
    font-family: "ヒラギノ明朝 ProN W2", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 1.5rem;
    line-height: 2.7;
    letter-spacing: 0.05em;
}
.desc_catch {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 2.6rem;
    line-height: 1.7;
    letter-spacing: 0.025em;
    font-weight: normal;
}
.desc_text {
    font-family: "ヒラギノ明朝 ProN W2", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 1.5rem;
    line-height: 2.4;
    letter-spacing: 0.05em;
}
.page_link {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
}
.page_link:hover {
    color: #A58751;
}
.intro-sub {
    font-size: 2.6rem;
    letter-spacing: 0.2em;
}


.br-pc {
    display: block;
}
.br-tb {
    display: none;
}
.br-sp {
    display: none;
}

@media screen and (max-width: 760px) {
    .main_head {
        font-size: 1.5rem;
        line-height: 3;
    }
    .main_catch {
        font-size: 2.1rem;
        line-height: 1.5;
    }
    .main_lead {
        line-height: 1.9;
        letter-spacing: 0.025em;
    }
    .desc_catch {
        font-size: 2.1rem;
        line-height: 1.5;
    }
    .desc_text {
        line-height: 1.9;
    }
    .page_link {
        font-size: 1.5rem;
    }
    .intro-sub {
        font-size: 1.5rem;
    }

    .br-pc {
        display: none;
    }
    .br-tb {
        display: block;
    }
    
}
    @media screen and (max-width: 390px) {
    .br-sp {
        display: block;
    }
}

/* -----------------
    パララックス指定
------------------- */
.fixed-image_area {
	width: 100%;
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 760px) {
    .fixed-image_area {
        background-attachment: scroll;
    }
}

/* -------------------
    基本アニメーション
-------------------- */

.fadeIn {
    animation-name: fadeIn; /* ふわっとアニメ */
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}



/* ------------------------
        header
------------------------ */
header {
    z-index: 100;
}
#header {
    position: absolute;
    top: -100px;
    left: 0;
    margin: 100px auto 0;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
}

#header.fixed {
    background-color: #fff;
    position: fixed;
    margin-top: 0;
    top: 0;
    width: 100%;
    left: 0;
    height: 85px;
    opacity: 0.9;
    z-index: 50;
    transition: top 1s ease-in;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1365px;
    padding: 0 30px;
    margin: 30px auto 0;
}

.site-title {
    width: 256px;
    height: 40px;
}

.site-title img {
    width: 100%;
}

#g-nav {
    display: flex;
    justify-content: left;
    align-items: center;
}

#g-nav .nav_menu {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    margin-right: 48px;
}

#g-nav .nav_menu li {
    font-weight: normal;
}
#g-nav .nav_menu li a {
    position: relative;
}

#g-nav .nav_menu li a::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: '';
    width: 0;
    height: 4px;
    background: #9E3324;
}


#g-nav .nav_menu li a:hover::after {
    width: 100%;
    transform-origin: left top;
    transition: all .3s ease;
}

#g-nav .tel_container {
    display: flex;
    align-items: center;
}

#g-nav .tel_container p {
    line-height: 1.4;
}
#g-nav .tel_container span.yoyaku {
    font-size: 1.2rem;
    font-weight: normal;
    margin-right: 15px;
}
#g-nav .tel_container span.freedial {
    font-size: 0.9rem;
    font-weight: normal;
    margin-left: 10px;
    margin-right: 20px;
}
#g-nav .sns_container {
    display: flex;
    justify-content: right;
    gap: 10px;
}
    #g-nav .sns_container a img {
    width: 36px;
}

#header #sp-menu {
    display: none;
}

main {
    margin-top: 85px;
}


@media screen and (max-width: 1200px) {
    #g-nav .nav_menu {
        gap: 30px;
        margin-right: 30px;
    }
}


@media screen and (max-width: 1100px) {

    #header #g-nav {
        display: none;
    }

    #header.fixed {
        background-color: transparent;
        height: 50px;
    }
    
    .header_container {
        margin: 0 auto;
    }
    .site-title {
        width: 175px;
        height: 35px;
        margin-top: 12px;
        vertical-align: bottom;
    }
    
    #header #sp-menu {
        display: block;
    }

    #sp-menu .toggle_btn {
        display: block;
        width: 50px;
        height: 50px;
        position: fixed;
        /* position: absolute; */
        top: 0;
        right: 0;
        transition: all 0.5s;
        cursor: pointer;
        background-color: #898989;
        z-index: 1000;
    }

    #sp-menu .toggle_btn span {
        display: block;
        position: absolute;
        left: 12px;
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
    }
    

    #sp-menu .toggle_btn span:nth-child(1) {
        top: 12px;
    }
    #sp-menu .toggle_btn span:nth-child(2) {
        top: 20px;
    }
    #sp-menu .toggle_btn span:nth-child(3) {
        top: 28px;
    }
    #sp-menu .toggle_btn span:nth-child(4) {
        top: 35px;
        color: #fff;
        font-size: 9px;
        font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        background-color: transparent;
        height: inherit;
    }

    #sp-menu .sp-nav {
        position: absolute;
        top: -500px;
        right: 0;
        background-color: rgba(255, 255, 255, 1);
        opacity: 0;
        width: 100%;
        height: 100vh;
        transition: all 0.8s;
        z-index: 100;
    }
    
    #sp-menu .sp-nav ul {
        display: block;
        margin-top: 45px;
        height: 100%;
    }

    #sp-menu .sp-nav li {
        padding: 15px;
        text-align: center;
        font-weight: normal;
    }
    #sp-menu .sp-nav li a {
        color: #000;
    }
    #sp-menu .sp-nav li a:hover {
        opacity: 0.5;
    }

    #sp-menu .sp-nav li img {
        width: 36px;
        height: 36px;
    }

    .open #sp-menu .toggle_btn {
        opacity: 0.7;
        background-color: rgba(255, 255, 255, 1);
    }
        
    .open #sp-menu .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(-135deg);
        transform: translateY(8px) rotate(-135deg);
        background-color: #000;
    }
    .open #sp-menu .toggle_btn span:nth-child(2) {
        opacity: 0;
    }
    .open #sp-menu .toggle_btn span:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(135deg);
        transform: translateY(-8px) rotate(135deg);
        background-color: #000;
    }
    .open #sp-menu .toggle_btn span:nth-child(4) {
        opacity: 0;
    }

    .open #sp-menu .sp-nav {
        top: 0;
        opacity: 1;
        transition: all 0.5s;
    }

    main {
        margin-top: 0;
    }
}

/* @media screen and (max-width: 520px) {
    .site-title {
        width: 240px;
        padding-top: 12px;
    }
} */




/* ------------------------
        footer
------------------------ */
#footer {
    padding-bottom: 20px;
}

#footer .menu_for_sp {
    display: none;
}

.footer_upper {
    width: 100%;
    background-color: #F2F4F4;
    padding: 50px 0;
    text-align: center;
}


.footer_upper p {
    line-height: 1;
}

.footer_upper p.name {
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.footer_upper img {
    width: 142px;
    margin-bottom: 20px;
}
.footer_upper p.yoyaku {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.footer_upper ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}
.footer_upper ul li {
    font-size: 2.1rem;
}
.footer_upper ul li span.small  {
    font-size: 1.1rem;
    margin-right: 7px;
}
.footer_upper p.demae_service {
    margin-bottom: 20px;
}
.footer_upper p.demae_service span {
    font-size: 2.1rem;
    position: relative;
}
.footer_upper p.demae_service span::before,
.footer_upper p.demae_service span::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
}
.footer_upper p.demae_service span::before {
    left: -30px;
    top: 0;
}
.footer_upper p.demae_service span::after {
    right: -30px;
    top: 0;
}
.footer_upper a.demae_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 345px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 1.8rem;
    margin: 0 auto 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5)
}

.footer_upper a.demae_menu i {
    margin-left: 10px;
}
.footer_upper a.demae_menu:hover {
    transform: translateY(5px);
    box-shadow: none;
}
.footer_upper p.parking {
    font-size: 1.8rem;
}

.footer_under {
    padding: 50px 0 55px;
    text-align: center;
}
.footer_under img {
    width: 380px;
    margin-bottom: 30px;
}
.footer_under .address_container {
    margin-bottom: 40px;
}
.footer_under .address_container p {
    line-height: 1;
    margin-bottom: 15px;
}
.footer_under ul {
    display: flex;
    justify-content: center;
    gap: 45px;
}


.footer_under ul li a {
    transition: all 0.5s;
}
.footer_under ul li a:hover {
    color: #ECBC53;
}


/*  PAGE TOP ボタン */

#footer #page-top {
    width: 60px;
    height: 60px;
    padding-top: 40px;
    transition: all 0.3s;
    font-size: 9px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    display: block;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    margin: 0 auto 30px;
}
#footer #page-top::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
#footer #page-top::after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}
  
#footer #page-top:hover {
    border: 1px solid #000;
}

#footer .copyright {
    font-size: 1.2rem;
    display: block;
    text-align: center;
}


@media screen and (max-width: 760px) {
    
    #footer .menu_for_pc {
        display: none;
    }
    #footer .menu_for_sp {
        display: flex;
    }
    .footer_upper {
        padding: 35px 0;
    }
    .footer_upper p.name {
        font-size: 1.8rem;
    }
    .footer_upper img {
        width: 102px;
        margin-bottom: 15px;
    }
    .footer_upper p.yoyaku {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .footer_upper ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 18px;
    }
    .footer_upper ul li {
        font-size: 1.5rem;
    }
    .footer_upper ul li span.small  {
        font-size: 0.8rem;
        margin-right: 5px;
    }
    .footer_upper p.demae_service {
        margin-bottom: 15px;
    }
    .footer_upper p.demae_service span {
        font-size: 1.5rem;
        position: relative;
    }
    .footer_upper p.demae_service span::before,
    .footer_upper p.demae_service span::after {
        width: 15px;
        height: 15px;
    }
    .footer_upper p.demae_service span::before {
        left: -25px;
    }
    .footer_upper p.demae_service span::after {
        right: -25px;
    }
    .footer_upper a.demae_menu {
        width: 250px;
        height: 30px;
        font-size: 1.5rem;
        margin: 0 auto 20px;
    }
    
    .footer_upper a.demae_menu img {
        width: 13px;
        height: 17px;
        margin-top: 13px;
        margin-left: 5px;
    }
    .footer_upper p.parking {
        font-size: 1.5rem;
    }
    .footer_under {
        padding: 35px 15px 80px;
    }
    .footer_under img {
        width: 300px;
        margin-bottom: 25px;
    }
    .footer_under .address_container p {
        font-size: 1.5rem;
        margin-bottom: 13px;
    }
    .footer_under ul {
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    .footer_under ul li {
        font-size: 1.5rem;
    }

    #footer .copyright {
        font-size: 1.2rem;
        display: block;
        text-align: center;
    }

}

@media screen and (max-width: 360px) {
    .footer_upper ul {
        flex-direction: column;
        gap: 0;
    }
    .footer_upper p.demae_service span {
        font-size: 1.3rem;
        position: relative;
    }
    .footer_upper p.demae_service span::before,
    .footer_upper p.demae_service span::after {
        width: 13px;
        height: 13px;
    }
    .footer_upper p.demae_service span::before {
        left: -15px;
    }
    .footer_upper p.demae_service span::after {
        right: -15px;
    }
    .footer_upper a.demae_menu {
        width: 80%;
        height: 30px;
        font-size: 1.3rem;
    }
    .footer_upper p.parking {
        font-size: 1.3rem;
    }
    .footer_under img {
        width: 80%;
    }
    .footer_under .address_container p {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    .footer_under ul {
        gap: 12px 15px;
        padding: 0 
    }
    .footer_under ul li {
        font-size: 1.3rem;
    }
    
}

/* スマホ版で出てくるフッター */

#footer .sp-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
#footer .sp-footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer .sp-footer ul li {
    width: 50%;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .sp-footer ul li a {
    color: #fff;
    font-size: 1.8rem;
}
#footer .sp-footer ul li a i {
    margin-right: 10px;
    font-size: 2rem;
}
#footer .sp-footer ul li.tel {
    background-color: #585757;
}
#footer .sp-footer ul li.access {
    background-color: #474646;
}


@media screen and (max-width: 760px) {
    #footer .sp-footer {
        display: block; /* 表示 */
        animation-name: fadeInAnimeFooter; /* ふわっとアニメ */
        animation-duration: 0.8s;
        animation-fill-mode: forwards;
    }   

    @keyframes fadeInAnimeFooter {
        from {
            opacity: 0;
            transform: translateY(43px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

