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

/*共通 Styles
────────────────────────────────────*/
section {
    width: 100%;
}
.inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.br_sp {
    display: none;
}


/* Button Styles - 全ページ共通 */
.btn {
    position: relative;
    width: 280px;
    height: 50px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}
.btn-white {
    background-color: white;
    color: #333333;
}
.btn-orange {
    background-color: #ff7f00;
    color: white;
}
.btn > span:first-child {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
}
.btn > span:last-child {
    margin-right: 20px;
}


/* Common Heading Styles - 全ページ共通 */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

h2.h2_type01 {
    position: relative; 
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
h2.h2_type01::after {
    content: ""; 
    display: block; 
    width: 120px; 
    height: 3px; 
    position: absolute; 
    bottom: -10px; 
    left: 0;
    background: #ff7f00;
}
.header-group>p {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffdfc0;
    margin-bottom: 30px;
}
@media (max-width: 1028px) {
    h2.h2_type01 {
        font-size: 2.6rem;
    }
}



header {
    height: 100px;
    background-color: #FFF5D8;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease-in-out;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header > .inner {
    display: flex;
    justify-content: space-between;
}

header .logo {
    display: inline-block;
    padding: 14px 0 0;
    text-align: center;
}

header .logo > p:first-child {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    font-weight: 500;
}

header .logo > p:last-child {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

header > .inner > p {
    font-size: 2.4rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 25px 0 0;
}

header > .inner > .nav-contact > nav ul {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    margin-top: 10px;
}

header > .inner > .nav-contact > nav ul li > a {
    color: #333333;
    white-space: nowrap;
    text-decoration: none;
}

header > .inner > .nav-contact > nav ul li > a:hover {
    color: #ff7f00;
}

header .contact {
    overflow: hidden;
    color: #ff7f00;
    display: flex;
    justify-content: space-between;
    height: 50px;
}
header .phone {
    width: 362px;  
    position: relative; 
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 13px 0 0 25px;
    line-height: 1;
}
header .phone span{
    font-size: 1.4rem;
    vertical-align: middle;
    position: absolute;
    top: 18px;
}
header .phone::before {
    content: "";
    display: block; 
    width: 24px; 
    height: 24px;
    position: absolute; 
    top: 16px; 
    left: 0;
    background-image: url('../images/common/tel_icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
header a.email-btn {
    width: 260px;  
    background-color: #ff7f00;
    border-radius: 0 0 10px 10px;
    padding: 8px 15px;
    color: white;
    text-align: center;
    text-decoration: none;
}
header a.email-btn:hover {
    background-color: #ff9900;
}
header a.email-btn p {
    white-space: nowrap;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
header a.email-btn p::before {
    content: "";
    display: block; 
    width: 24px; 
    height: 24px;
    position: absolute; 
    top: 4px; 
    left: 14px;
    background-image: url('../images/common/mail_icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hamburger Menu Styles */
.drawerBtn {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.drawerBtn > span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.drawerBtn.on > span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.drawerBtn.on > span:nth-child(2) {
    opacity: 0;
}

.drawerBtn.on > span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.on {
    display: block;
    opacity: 1;
}

.drawerMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #9e5914;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 80px 20px 20px;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}
.drawerMenu.on {
    right: 0;
}
.drawerMenu > nav ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.drawerMenu > nav ul li > a {
    font-size: 1.8rem;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid #e4bb93;
    display: block;
	color: #ffffff;
}
.drawerMenu > nav ul li > a:hover {
    color: #ff7f00;
}
.drawerMenu > .contact {
    color: #ff7f00;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: unset;
}
.drawerMenu > .contact > .phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.0rem;

    padding: 0 0 0 25px;
    width: 100%;
}
/* .drawerMenu > .contact > .phone:before {
    background-image: url(../images/common/tel_icon_white.svg);
} */
.drawerMenu > .contact > .phone::before {
    top: 50%;
    transform: translateY(-50%);
}
.drawerMenu > .contact > .phone span {
    font-size: 1.4rem;
    vertical-align: middle;
    /* position: absolute;
    top: 18px; */
    position: relative;
    top: unset;
}
.drawerMenu > .contact > .email-btn {
    width: 100%;
    background-color: #ff7f00;
    /* border-radius: 0 0 10px 10px; */
    border-radius: 10px;
    padding: 12px 15px;
    color: white !important;
    text-align: center;
    text-decoration: none;
    display: block !important;
    margin: 0;
    min-height: 44px;
    box-sizing: border-box;
    font-size: 1.6rem;
    visibility: visible !important;
    opacity: 1 !important;
}
.drawerMenu > .contact > .email-btn:hover {
    background-color: #ff9900;
}
.drawerMenu > .contact > .email-btn > p {
    white-space: nowrap;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    color: white !important;
    margin: 0;
    line-height: 1.5;
    display: block;
    font-size: 1.6rem;
}
.drawerMenu > .contact > .email-btn > p::before {
    content: "";
    display: block; 
    width: 24px; 
    height: 24px;
    position: absolute; 
    /* top: 4px; */
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
    background-image: url('../images/common/mail_icon.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1279px) {
    header{
        height: 80px;
    }
    header .logo {
        padding: 11px 0 0;
    }
    header .nav-contact {
        display: none;
    }
    .drawerBtn {
        display: flex;
        margin-top: 28px;
    }
    header .inner > p.slogan {
        font-size: 1.8rem;
        padding: 22px 0 0;
        color:#ff7f00;
    }
    header .logo > p:first-child {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    header .logo > p:last-child {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}

@media screen and (max-width:440px) {
    header .br_sp {
        display: block;
    }
    header .logo {
        padding: 14px 0 0;
    }
    header .inner > p.slogan {
        font-size: 1.4rem;
        padding: 21px 0 0;
        line-height: 1.4;
        text-align: center;
    }
    header .logo > p:first-child {
        letter-spacing: 1px;
    }
}


/* Footer Styles - 全ページ共通 */
.footer {
    margin: 0 auto;
    padding: 50px 0 10px;
    background-color: #FFF5D8;
}
.footer > .inner {
    text-align: center;
}
.footer > .inner > .logo {
    white-space: nowrap;
    margin-bottom: 20px;
}
.footer > .inner > .logo > p:first-child {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    font-weight: 500;
}
.footer > .inner > .logo > p:last-child {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}
.footer > .inner > .address {
    margin-bottom: 15px;
}
.footer > .inner > .copyright {
    font-size: 1.2rem;
}

@media (max-width: 1028px) {
    .footer {
        padding: 40px 0 10px;
    }
    .footer .logo > p:first-child {
        font-size: 1.2rem;
    }
    .footer .logo > p:last-child {
        font-size: 2.0rem;
    }
    .footer .address {
        margin-bottom: 10x;
    }
}
@media (max-width: 820px) {
    .footer .br_sp {
        display: block;
    }
}

/**
pagetop
**/
.pagetop {
    position: fixed;
    display: none;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    right: 5%;
    bottom: 7%;
    border: 1px solid #ccc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    transition: .15s ease-in-out;
    z-index: 2;
}
@media screen and (max-width: 539px) {
    .pagetop {
        bottom: 5%;
    }
}
