@charset "utf-8";
/* ============================
common
============================ */
root {
    --primary-black: #333333;
    --primary-brown: #86756A;
    --primary-beige: #CDBBB1;
    --primary-beige2: #F0EBE3;
    --primary-white: #FFFFFF;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
    
body {
    font-family:
        "Poppins",
        "Noto Sans JP",
         sans-serif;
    font-weight: 400;     
    font-style: normal;
    color: var(--primary-black, #333333);
    background-color: var(--primary-white, #FFFFFF  );
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    color: var(--primary-brown, #86756A);
    text-align: center;
    font-family: Poppins;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 auto;
}

/* ==========================
header
=========================== */
.header {
    padding: 10px 0 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,0.7);
}

.header__topic img {
    height: 40px;
    cursor: pointer;
}

.header__item {
    display: flex;
    align-items: center;
}

.vector__tel {
    width: 22px;
    height: 25px;
    margin-top: 8px;
    cursor: pointer;
}

.header__txt {
    font-size: 0.9rem;
    margin-top: 1px;
    cursor: pointer;
}

.header__tel {
    text-align: center;
    width: 50px;
    height: 50px;
}

.openbtn {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
}

.openbtn span {
    display: inline-block;
    width: 45%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    left: 14px;
    transition: all.4s;
    border-radius: 2px;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* @media (hover: hover) and (pointer: fine) {
    .nav__item:hover {
      background-color: #F0EBE3;
      border-radius: 50%;
    }
  } */

/* .nav 初期表示 */
.nav {
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:70px;
    right: -120%;
	width:100%;
	background-color:#F0EBE3;
    
    /*動き*/
	transition: all 0.6s;
    padding: 30px;
}

.nav.panelactive{
    right: 0;
}

.nav__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__Txt {
    font-family: Poppins;
    font-size: 1.8rem;
    text-align: center;
    margin-top: 3px;
}

.nav__item {
    height: 30px;
    transition: .5s;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.nav__item:hover::after {
    display: block;
}

.nav__item::after{
    content: "";
    display: none;
    width: 30px;
    height: 30px;
    background-color: #F0EBE3;
    border-radius: 50%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;

}

.nav__txt {
    font-size: 1.1rem;
    font-weight: 350;
    text-align: center;
    margin-top: 5px;
}

.nav__item:nth-of-type(5) {
    padding-top: 10px;
}

.nav__Txt:nth-of-type(5) {
    padding-top: 12px;
}

.nav__tel img {
    width: 16px;
    height: 16px;
    font-family: "Open Sans";
}

.navTel {
    font-family: Poppins;
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
}

.nav__time {
    font-size: 1.4rem;
    font-weight: 350;
    text-align: center;
    margin-top: 5px;
}

.nav__tel {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-top: 5px;
}

.nav__telGroup {
    margin-top: 20px;
}

.nav__line {
    position: relative;
    top: calc(50% - 1px);
    border: none;
    border-top: dotted 1px #333333;
    margin: 0 10px;
}

.navTeltxt {
    font-size: 1.3rem;
    font-weight: 350;
    text-align: center;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        top: 0;
        transition: transform 0.5s 0.5s;
    }
    
    header.hidden {
        transform: translateY(-90px);
    }
    
    .header__topic img {
        height: 60px;
    }
    
    .nav {
        background:  transparent;  
        /* 背景を透明にする */
        width: auto;
        height: 70px;
        padding: 0;
        transform: translate(0);
        display: flex;
        position: static;
        gap: 30px;
    }
    
    .nav__line {
        display: none;
    }
    
    .header__item {
        display: none;
    }    

    .hamburger-menu {
        display: none;
    }

    .header {
        height: 90px;
        padding: 0 20px;
    }

    .nav__Txt {
        font-family: Poppins;
        font-size: 1.4rem;
    }

    .nav__txt {
        font-size: 0.9rem;
    }

    .nav__list {
        display: flex;
        align-items: center;
        gap: 20px
    }

    .navTeltxt {
        display: none;
    }

    .navTel {
        font-size: 2.5rem;
    }

    .nav__tel img {
        width: 20px;
        height: 20px;
    }

    .nav__time {
        margin-top: 3px;
    }

    .nav__telGroup {
        margin: 0;
        padding: 5px;
    }

    .nav__tel {
        margin-top: 6px;
    }
    
    .nav__item:nth-of-type(5) {
        padding-top: 14px;
    }
}/* pc */


/* footer */
.footer__container {
    text-align: center;
    padding: 50px 20px;
    background-image: url(../images/background-footer.jpg);
    background-size: cover;
    margin-top: 130px;
    position: relative;
}

.footer__container::after {
    content: '';
    background: rgba(240, 235, 227, 0.70);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.footerTopic {
    height: 64px;
    position: relative;
    z-index: 1;
}

.footerNav__list {
    font-family: Poppins;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.footerNav__list:nth-of-type(5) {
    font-family: Noto Sans JP;
}

.footer__line {
    position: relative;
    z-index: 1;
}

.footerAdress {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footerTel {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footerItem__title {
    font-size: 1.5rem;
}

.footerItem__txt {
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer__group {
    text-align: left;
    margin: 10px auto;
    position: relative;
    z-index: 1;
    max-width: 270px;
}

.footer__map {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-decoration: underline;
    color: #86756A;
    cursor: pointer;
}

.footerItem01 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 10px;
}

.footerItem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.footer__group02 {
    text-align: center;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}

.tel__item img {
    width: 20px;
}

.tel__txt {
    font-family: Poppins;
    font-size: 2.5rem;
    font-weight: 300;
}

.tel__Sp {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin-bottom: 5px;
}

.copy {
    font-family: Poppins;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer__container {
        padding: 100px 150px 50px;
    }

    .footerTopic img {
        height: 60px;
    }

    .footerNav__list {
        margin-bottom: 0;
    }

    .footerNav__menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .footerNav__list:nth-of-type(5) {
        padding-bottom: 3px;
    }

    .footer__line {
        display: none;
    }

    .footer__group02 {
        margin: 0;
    }

    .footer__group {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 50px;
        margin-top: 50px;
        max-width: none;
        flex-wrap: wrap;
    }

    .tel__Sp {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}/* pc */
