@charset "UTF-8";

html {
  font-size:62.5%;
  scroll-behavior: smooth;
}
body {
  font-size:1.6rem !important;
  background:#f7f4eb !important;
  font-family: "Zen Maru Gothic", serif !important;
}
*, *::before, *::after {
  box-sizing:border-box;
}
.clearfix::after {
  content:'';
  display:block;
  clear:both;
}
a {
  text-decoration: none;
  color:#666;
}
main a {
  text-decoration: none;
  color: #666 !important;
}
header,footer{
  background:none;
}

/* ---- Fonts ---- */
.regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.black {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}
.small{
  font-size:90%;
}
.justify{
  text-align:justify;
}

/* ---- header ---- */
header{
  width:100%;
  display:flex;
  justify-content: space-between;
}
.site-branding,.hamburger-menu {
  /* position: fixed; */
  /* top: 1rem; */
    position: absolute;
      top: 0;
  z-index: 9999;
  padding: 3rem 2rem 2rem;
}
.hamburger-menu{
  right:2rem;
  color:#333;
  font-weight:500;
  font-size:1.8rem;
}
.menu-content ul{
  display:flex;
  gap:2em;
  list-style:none;
}
.menu-content ul li a{
  color:#333;
}
.menu-content ul li a:hover {
  color: #7d488f;
}

#menu-btn-check {
  display: none;
}
/* ---- footer ---- */
.site-footer {
  max-width: 1300px;
  margin: 0 auto;
}

.Photo-bnr {
  margin-bottom: 10rem;
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
}
.pageTop a {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #7d488f;
  display: block;
  text-align: center;
  border-radius: 24px;
}

.pageTop a::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}

/* ----content ---- */
 .content {
   margin: 8rem auto 16rem;
   padding-bottom: 16rem;
   border-bottom: #333 solid 1px;
   position: relative;
 }
 .content::after {
   background-color: #f7f4eb;
   bottom: -1px;
   right: 25%;
   content: "";
   height: 2px;
   position: absolute;
   width: 4rem;
 }

 .content:last-child {
   margin: 8rem auto;
 }

/* ########### 575px以下 ＞sm ########### */
@media (max-width: 575px) {
  body {
      font-size: 0.875rem;
    }
    button.menu-toggle{
      background:none;
      border:none;
    }
        .site-branding {
          position:absolute;
        }
/* ----- スマホ用ハンバーガーボタン -------*/
.menu-btn {
  display: none;
}
  .menu-btn {
    /* position: fixed; */
    top: 30px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background:rgba(255, 255, 255, 0.6)
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #111;
    position: absolute;
    transition: all 0.2s ease-in-out 0s;
  }

  .menu-btn span:before {
    bottom: 8px;
  }

  .menu-btn span:after {
    top: 8px;
  }

  #menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }

  #menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .menu-content {
    width: 100%;
    height: 50%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out 0s;
  }

  .menu-content ul {
    margin-top: 40px;
    padding: 70px 10px 0;
  }

  #menu-btn-check:checked~.menu-content {
    transform: translateX(0);
  }

  footer{
    width:95%;
    margin:0 auto;
  }
  .footer-logo{
    width:80%;
    margin: 2rem auto 4rem;
  }
    .Photo-bnr {
      margin-bottom: 4rem;
    }
  .content {
    padding: 0 2rem;
    margin:6rem auto 9rem;
    padding-bottom:9rem;
  }
     .content:last-child {
       margin: 6rem auto;
     }
}


/* ---- TOP ---- */
 .swiper-slide img{
-webkit-filter: drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));
  /* SafariなどのWebkitブラウザ用 */
  filter: drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));
 }
 .site-header.top-header .logo{
        -webkit-filter: brightness(0) invert(1) drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));
          filter: brightness(0) invert(1) drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));
 }
 .site-header.top-header .menu-content ul li a {
   color: #fff;
        -webkit-filter: brightness(0) invert(1) drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));
          filter: brightness(0) invert(1) drop-shadow(0px 2px 3px rgba(4, 0, 0, 0.75));}

 @media (max-width: 575px) {
  .top-header .menu-btn {
      background: rgba(255, 255, 255, 0)
    }
  .top-header .menu-btn span,
  .top-header .menu-btn span:before,
  .top-header .menu-btn span:after {
      background-color: #fff;
    }
  .top-header #menu-btn-check:checked~.menu-btn span::before,
    .top-header #menu-btn-check:checked~.menu-btn span::after{
    background-color: #333;
  }
 }

 #KYOTO-kita{
  margin-top:0;
 }
 #KYOTO-kita h2{
  font-size:2.6rem;
  color:#63a431;
  letter-spacing: 0.2em;
  line-height:2em;
  margin-bottom:4rem;
 }

 .subtitle{
  text-align:center;
  margin-bottom:8rem;
 }
 .subtitle .icon-text{
  font-size:1.6rem;
  color:#7d488f;
  margin: 1rem auto 6rem;
  font-weight:500;
  letter-spacing: 1rem;
  position: relative;
 }
.subtitle .icon-text::before {
   background-color: #7d488f;/* 線の色 */
   border-radius: 5px;/* 線の両端を丸く */
   bottom: -10px; /* 線の位置 */
   content: "";
   height: 2px;/* 線の高さ */
   left: 50%; /* 線の中央寄せ */
   position: absolute;
   transform: translateX(-50%); /* 線の中央寄せ */
   width: 30px; /* 線の長さ */
 }
 .subtitle h2{
  font-size:3.5rem;
  letter-spacing: 0.6rem;
 }

.Facility{
  margin-bottom: 14rem;
}
.FacilityName{
  font-size:2.4rem;
  color:#7d488f;
  margin-bottom:2rem;
}
.Facility-info{
  background:#fff;
  padding:2rem;
  display:flex;
  gap:1em;
}
.arrow{
  margin:4rem auto 6rem;
}

.street {
  width: 100%;
  margin: 16rem 0;
}

.street img {
  margin-bottom: 4rem;
}

.ShopName::first-letter {
  color: #7d488f;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  #KYOTO-kita h2 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom:6rem;
  }
  .subtitle {
      margin-bottom: 6rem;
    }
 .subtitle h2 {
      font-size: 2.2rem;
      letter-spacing: 0.1rem;
      line-height: 1.6;
    }
  .Facility-info p:first-child{
     width:3em;
    }
  .Facility-info p:nth-child(2) {
    width: calc(100% - 4em);
  }
    .street {
      margin:4rem 0 8rem;
    }
    .Facility {
      margin-bottom: 8rem;
    }
        .FacilityName {
          font-size: 2rem;
        }
}

.btn-arrow{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    padding: 1.5rem 2.5rem;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.btn-arrow:after {
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translateY(-50%);
}
.btn-arrow:hover {
  background: #333;
  color: #FFF !important;
}
.btn-insta {
  position: relative;
  /* display: flex;
  justify-content: space-around;
  align-items: center; */
  margin: 0 auto;
  max-width: 100%;
  padding: 2.5rem 2.5rem;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size:3rem;
}

.btn-insta:after {
  position: absolute;
  top: 25%;
  right: 6rem;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  /* font-weight: 500; */
  transform: translateY(-25%);
  transform: scale(2.0);
}

.btn-insta:hover {
  background: #333;
  color: #FFF !important;
}

.btn-purple {
  background: #7d488f;
  color: #fff !important;
}
.btn-white {
  background: #fff;
  color: #333 !important;
}

@media (max-width: 575px) {
  .btn-insta {
  font-size: 1.8rem;
      padding: 2rem 1.6rem;
      }
    .btn-insta:after {
      right: 1.6rem;
      transform: scale(1.3);
      top: 50%;
      transform: translateY(-50%);
    }
}
/* ---- sightseeing ---- */
.frame-ha {
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom:0.5em ;
  letter-spacing: 0.3em;
}

.frame-ha::before,
.frame-ha::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #333333;
  margin: -0.3rem 0.6rem 0;
  position: absolute;
  top: 0;
}

.frame-ha::before {
  left: -2.3rem;
  transform: rotate(-30deg);
}

.frame-ha::after {
  right: -2.3rem;
  transform: rotate(30deg);
}

@media (max-width: 575px) {
  .site-main {
    margin-top:12rem;
  }
}

/* ---- shop ---- */
.nav-below{
  display:flex;
  justify-content: space-around;
}
@media (max-width: 575px) {
  .nav-below {
    font-size: 1.4rem;
  }
}