@charset "UTF-8";

/*====================
common
======================  */

:root {
    --primary-white :#FDFDFD;
    --primary--whiteLow :#F8F7F4;
    --primary-black :#363736;
    --primary-darkgreen :#6E7C62;
    --primary-beige : #D4B17E;
    --contentWidth :89.3%;
    --contentPadding :5.3%;
}


html {
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
}

body{
    font-family: 
    "Zen Kaku Gothic New", 
    "Zen Old Mincho","Playfair Display","Open Sans", sans-serif;
    font-style: normal;
    font-size: 1.4rem;
    color: var(--primary-black, #363736);
    background-color: var(--primary-white, #FDFDFD);
    line-height: 1.5;
}

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

.title {
    color: #5B6950;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.8px;
}

.sub__title {
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.8px;
    margin-top: 5px;
}

.arrow {
    width: 35px;
    margin-left: 20px;
    position: relative;
    top: -3px;
}

/* common pc */
@media screen and (min-width: 769px) {
    .title {
        font-size: 3rem ;
    }

    .arrow {
        width: 40px;
        margin-left: 20px;
    }

    
} 

@media screen and (min-width: 1024px) {
    body{
        font-size: 1.6rem;
    }
    
    .title {
        font-size: 4.2rem;
    }

    .sub__title {
        font-size: 2rem;
    }

}

@media screen and (min-width: 1440px) {
      .title {
        font-size: 4.8rem;
    }

    .sub__title {
        font-size: 2.4rem;
    }
    
}

/*====================
header
======================  */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    width: 100%;
    opacity: 0.9;
    z-index: 9999;
    background-color: var(--primary-white);
    position: fixed;
}

.brand {
  display: inline-flex;    
  align-items: center;        
  gap: 10px;                  
  text-decoration: none;      
}

.logo {
    height: 41px;
}

.brand .logo {
  height: 41px; 
  width: auto;
  display: block;
}

.brand .logo__txt {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  color: var(--primary-black);
}

.logo__txt {
    font-family:"Zen Old Mincho";
    font-size: 2rem;
    vertical-align: 12px;
}

.header__topic {
    padding: 10px 0 0 10px;
}

.header__icon {
  display: flex;
}

/* メールアイコン */
.header__btn {
  background-color: var(--primary-beige); 
  width: 60px;
  height: 60px;
  padding: 8px;
  border-radius: 0; 
  box-sizing: border-box;
}

.mail__img {
    padding: 10px 0 0 7px;  
}

/* メニューアイコン */
.header__btn-02 {
    background-color: var(--primary-darkgreen); 
    width: 60px;
    height: 60px;
    border-radius: 0;
    box-sizing: border-box;  
    border: none; 
}

.menu__img {
    padding: 20px 13px;
}

/* nav 初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background-color: var(--primary-darkgreen);
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.instagram__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary--white);
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5%;
    height: 60px;
    background-color: var(--primary--white, #FDFDFD);
}

.nav__content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn__close {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.nav__list {
    margin-top: 60px;
    padding-left: 50px;
    gap: 40px;
}

.nav__item {
    font-family: "Zen Old Mincho";
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    list-style: none;
    margin-top: 40px;
}

.nav__item a {
    text-decoration: none;
    color: var(--primary--white, #FDFDFD);
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}
 
.nav__instagram {
    width: 50px;
    height: 50px;
}

/* header pc */
@media screen and (min-width: 769px) {
     .header {
        padding: 5px 0;
    }

    .header__topic {
        position: relative;
        z-index: 10;
    }

        .nav {
        z-index: 1;
    }

    .nav__header {
        display: none;
        position: relative;
    }

    .nav {
        background: transparent;
        height: auto;
        transform: translateX(0);
    }

    
    .nav__list {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        margin-top: -24px;
        padding-right: 10px;
    }

    .nav__item {
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .nav__item a {
        color: var(--primary-black, #525050);
       
    }

    .nav__item a:hover {
        color: var(--primary-darkgreen);
    }

     .nav__item:nth-of-type(4) {
        display: none;
    }

    .header__btn,
    .header__btn-02 {
        display: none;
    }

    .instagram__btn {
        display: none;
    }

    .contact-item a {
        display: inline-block;
        background-color: var(--primary-beige);
        color: var(--primary--white);
        padding: 7px 50px;
        text-decoration: none;
        text-indent: -9999px;
        position: relative;
    }
 
    .contact-item a::after {
        content: "CONTACT";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        color: var(--primary-white);
        font-weight: bold;
        text-transform: uppercase;
    }

    .contact-item a:hover {
        background-color: var(--primary-darkgreen, #6E7C62); 
        transition: 0.4s;
    }

}

/* common 1024px */
@media screen and (min-width: 1024px) {
    .header {
        height: 80px;
    }

     .brand {    
        gap: 20px;                  
    }

    .brand .logo {
        height: 65px; 
    }

    .brand .logo__txt {
        font-size: 2.8rem;
    }

    .nav__item {
        font-size: 1.8rem;
    }

    .contact-item a {
        padding: 10px 70px;
    }

    .nav__list {
        gap: 25px;
        margin-top: -20px;
        padding-right: 20px;
    }

}

@media screen and (min-width: 1440px) {
    .header {
        height: 100px;
    }

      .brand {    
        gap: 30px;                  
    }

      .brand .logo {
        height: 80px; 
    }

     .brand .logo__txt {
        font-size: 4rem;
    }

     .nav__item {
        font-size: 2.2rem;
    }

      .contact-item a {
        padding: 12px 100px;
    }

      .nav__list {
        gap: 40px;
        margin-top: -15px;
        padding-right: 20px;
    }
    
}

/*====================
footer
======================  */  
.footer {
    background-color: var(--primary-darkgreen);
}

.contact__txt {
    color: var(--primary-white);
    font-weight: 400;
    text-align: center;
    padding-top: 40px;
}

.about__contact {
  display: block;      
  background-color: var(--primary-white);    
  color: var(--primary-darkgreen);      
  border: 1px solid var(--primary-darkgreen); 
  text-decoration: none;   
  font-weight: 400;      
  width: 263px;
  height: 45px; 
  box-sizing: border-box;  
  text-align: center;  
  padding: 0 20px;   
  line-height: 40px;
  margin: 30px auto;
  margin-bottom: 0;
}

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

.number-02 {
    color: var(--primary-white);
    font-family: "Open Sans";
    letter-spacing: 0.1em;
    font-size: 2rem;
    font-weight: 300;
    text-decoration: none;
}

.contact__right {
    padding: 30px 5.3% 0; 
}

.iframe {
    width: 100%;
    height: 251px;
    display: block; 
    filter: grayscale(100%) contrast(95%) brightness(98%);
    border: 0;
}

.content__map {
    display: flex;
    justify-content: right;
    gap: 10px;
    margin-top: 10px;
    padding-right: 20px;
}

.arrow-03 {
    width: 40px;
    height: 12px;
}

.map {
    color: var(--primary-white);
}

.map-wrap {
    position: relative;
}

.map-wrap .link-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}
.content__name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.content__logo {
    width: 40px;
}

.content__txt {
    color: var(--primary-white);
    font-size: 2rem;
    font-family: "Zen Old Mincho";
}

.address__content {
    color: var(--primary-white);
    font-family: "Zen Old Mincho";
    font-style: normal;
    display: grid;
    margin-top: 10px;
    justify-content: center;
}

.instagram__content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    padding-bottom: 60px;
}

.instagram__txt {
    color: var(--primary-white);
    font-family: "Playfair Display";
    letter-spacing: 0.1em;
}

.copy {
    font-size: 1.3rem;
    text-align: center;
    padding: 12px 82px;
    background-color: var(--primary--whiteLow);
}

/* contact pc */
@media screen and (min-width: 769px) {
    .contact__group {
        display: flex;
        justify-content: center;
        padding: 60px 5.3% 0;
        gap: 30px;
    }

    .about__contact {
        margin: 40px auto 30px;
        font-size: 1.6rem;
    }

    .contact__left {
        min-width: 320px; 
    box-sizing: border-box;
    }
    
    .contact__right {
        width: 100%;
        max-width: 450px;
    }

    .contact__right .iframe {
        display: block;
    }

    .contact__txt {
        padding-top: 0;
    }

    .contact__txt,
    .map {
        font-size: 1.6rem;
    }

    .contact__right {
        padding: 0; 
    }
    .iframe {
        width: 100%; 
        margin: 0;   
    }

    .content__map {
        padding-right: 0;
    }

    .content__logo {
        width: 65px;
    }

    .content__txt {
        font-size: 2.6rem;
    }

    .content__name {
        margin-top: 40px;
    }

    .address__content {
        color: var(--primary-white);
        font-family: "Zen Old Mincho";
        font-style: normal;
        display: flex;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }

    .instagram__icon {
        width: 30px;
    }

}
@media screen and (min-width: 1024px) {
      .contact__group {
        padding: 80px 80px 0;
        align-items: center;
    }

    .iframe {
        height: 300px;
    }

    
}

@media screen and (min-width:  1440px) {  
     .contact__group {
        padding: 130px 120px 0;
        gap: 60px;
    }

      .about__contact {
        margin: 60px auto 30px;
    }


    .contact__content {
        margin-top: 20px;
        gap: 15px;
        
    }

    .contact__right {
        width: 100%;
        max-width: 600px;
    }

     .contact__right .iframe {   
        height: 450px;
    }

    .content__name {
        margin-top: 80px;
    }

    .content__map {
        gap: 20px;
        margin-top: 20px;
    }

    .contact__txt,
    .map {
        font-size: 1.8rem;
    }

    .content__logo {
        width: 80px;
    }

     .content__txt {
        font-size: 3.4rem;
    }

    .content__name {
        gap: 30px;
    }
    
    .instagram__content {
        padding-bottom: 130px;
    }

    .copy {
        font-size: 1.6rem;
        padding: 28px;
    }
}

/* footer pc */


/* =========================
   404 error page (common)
========================= */
.error-404 {
  padding: 120px 20px;
  text-align: center;
}

.error-404__inner {
  max-width: 720px;
  margin: 0 auto;
}

.error-404__code {
  font-size: 6rem;
  font-weight: 600;
  color: var(--primary-darkgreen);
  margin-bottom: 24px;
}

.error-404__title {
  font-size: 2rem;
  margin-bottom: 30px;
}

.error-404__text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.error-404__buttons {
  margin-top: 40px;
}

.error-404__links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.error-404__links a {
  color: var(--primary-darkgreen);
  text-decoration: none;
  font-weight: 600;
}

.btn--primary {
  display: inline-block;
  padding: 12px 40px;
  text-decoration: none;
  background-color: var(--primary-darkgreen);
}

a.btn--primary {
  color: var(--primary-white);
}
.error-404__links li {
  list-style: none;
}

