@charset "UTF-8";
body {
  margin: 0;
  font-family: Noto Serif JP;
  color: #1f1f1f;
}
h1,
p {
  line-height: 1.5;
}
header {
  display: flex;
  padding: 0px 40px;
  /* width: 100%; */
  height: 100px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.8);
}
header .title {
  margin-right: auto;
}
header .menu-group {
  display: flex;
}
header .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*
  ↓ 固定にしたい場合は下記を入れる
      position: sticky;
      top: 0;
      left: 0;
  */
}
header a {
  text-decoration: none;
  color: inherit;
}
header a {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}
header .logo-container {
  width: 150px;
  height: 98px;
  position: relative;
  left: 40px;
  object-fit: contain;
}

header .menu-item a::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  left: 0; /*アンダーラインを各メニュー（aタグ）の左端に指定*/
  content: ""; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
  width: 100%; /*アンダーラインを各aタグの幅に合わせる*/
  height: 2px; /*アンダーラインの高さ（太さ）*/
  background: #0f5214; /*アンダーラインの色*/
}

header .menu-item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1f1f1f;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.6s; /*変形の時間*/
}

header .menu-item a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
header .logo-container .logo {
  width: 80%;
  height: 100%;
  object-fit: contain;
}
header .menu-group {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 20px;
  padding-right: 40px;
  /* font-weight: bold; */
}
header .menu-item--contact {
  background-color: #3c75a5;
  color: #fff;
  padding: 12px 38px;
}
@media (min-width: 1200px) {
  .header2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header1 {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header2 {
    background: var(--background-navbar);
    position: fixed;
    width: 100%;
    height: 60px;
  }
  .logo2 {
    width: 75px;
    height: auto;
    margin-left: 20px;
  }
  header .menu-item--contact {
    background-color: transparent;
  }
}
@media (max-width: 1199px) {
  :root {
    --background-navbar: rgba(255, 255, 255, 0.8);
  }
  header .menu-group {
    display: block;
  }
  /* Nav items */
  .header2-menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 60px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    right: 6%;
    height: 1px;
    border-radius: 2px;
    background: #1f1f1f;
    width: 25px;
  }

  .openbtn1 span:nth-of-type(1) {
    top: 20px;
  }

  .openbtn1 span:nth-of-type(2) {
    top: 28px;
  }

  .openbtn1 span:nth-of-type(3) {
    top: 36px;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .openbtn1.active span:nth-of-type(1) {
    top: 20px;
    right: 6%;
    transform: translateY(6px) rotate(-45deg);
    width: 6%;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 33px;
    right: 6%;
    transform: translateY(-6px) rotate(45deg);
    width: 6%;
  }

  /* Hamburger menu button */
  .menu-btn:checked ~ .header2-menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .header2-menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #1f1f1f;
    opacity: 0;
    transition: 0.5s;
  }

  .header2-menu li {
    border-top: 1px solid rgb(75, 75, 75);
    padding: 15px 0;
    margin: 0 54px;
    opacity: 0;
    transition: 0.5s;
  }

  .menu-btn:checked ~ .header2-menu a,
  .menu-btn:checked ~ .header2-menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }

  .menu-btn {
    display: none;
  }
  .menu-btn_div {
    margin-left: auto;
  }
  .menu-icon {
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .nav-icon {
    background: #1f1f1f;
    display: block;
    height: 1px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .nav-icon:before,
  .nav-icon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #1f1f1f;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }

  .nav-icon:before {
    top: 9px;
  }

  .nav-icon:after {
    bottom: 9px;
  }

  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .nav-icon:before {
    transform: rotate(-45deg);
  }

  .menu-btn:checked ~ .menu-icon .nav-icon:after {
    transform: rotate(45deg);
  }

  .menu-btn:checked ~ .menu-icon:not(.steps) .nav-icon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .nav-icon:after {
    bottom: 0;
  }

  .menu-btn:checked ~ .menu-icon .nav-icon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */

  /* Navbar Container */
  .nav-text-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Navbar Text */
  .nav-text {
    position: absolute;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
}

/*セクションタイトル */
.section-title {
  text-align: center;
}
.section-title-1 {
  font-size: 35px;
  color: #0f5214;
  margin-bottom: 16px;
  padding-top: 300px;
}
.section-title-2 {
  font-size: 16px;
  margin-bottom: 60px;
}

/*SERVICE 詳しくはこちら */
.section-SERVICE_button a,
.section-SERVICE_Cafe_button a {
  background-color: #f0f0d6;
  color: #0f5214;
  padding: 20px 85px;
  border-radius: 50px;
  border: 1px solid #0f5214;
  text-decoration: none;

  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.section-SERVICE_button a::after,
.section-SERVICE_Cafe_button a::after {
  position: absolute;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\25B6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.section-SERVICE_button a:hover,
.section-SERVICE_Cafe_button a:hover {
  background: #0f5214;
  color: #fff;
}

/*NEWS 一覧を見る */
.section-NEWS_button {
  text-align: center;
}
.section-NEWS_button a {
  background-color: #f0f0d6;
  color: #0f5214;
  padding: 20px 85px;
  border-radius: 50px;
  border: 1px solid #0f5214;
  text-decoration: none;

  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.section-NEWS_button a::after {
  position: absolute;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\25B6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.section-NEWS_button a:hover {
  background: #0f5214;
  color: #fff;
}

.section-SHOP .SHOP-bg {
  background-image: url(../image/background_SHOP.png);
  background-size: cover;
}
.section-SHOP .section-SHOP-image-box {
  display: flex;
  margin-bottom: 50px;
  justify-content: center;
}
.section-SHOP .section-SHOP-image {
  margin: 0 20px 20px 20px;
}
.section-SHOP .section-SHOP-image-box1 {
  text-align: center;
}
.section-SHOP .section-SHOP-image-box1 h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 23px;
}
.section-SHOP .section-SHOP-image-box1 p {
  font-size: 18px;
  color: #6e6e6e;
}

/*SHOP 詳しくはこちら */
.section-MENU_button,
.section-CONTACT_button {
  text-align: center;
}
.section-MENU_button a {
  background-color: #3c75a5;
  color: #fff;
  padding: 15px 80px;
  text-decoration: none;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 13px;
}

.section-CONTACT_button a {
  background-color: #3c75a5;
  color: #fff;
  padding: 11px 95px 15px 30px;
  text-decoration: none;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.section-MENU_button a::after,
.section-CONTACT_button a::after {
  position: absolute;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\25B6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.section-MENU_button a:hover,
.section-CONTACT_button a:hover {
  background: #af9366;
  color: #fff;
}

.section-thank_button {
  text-align: center;
}
.section-thank_button a {
  background-color: #3c75a5;
  color: #fff;
  padding: 15px 80px;
  text-decoration: none;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.section-thank_button a {
  background-color: #3c75a5;
  color: #fff;
  padding: 11px 55px 15px 30px;
  text-decoration: none;
  position: relative;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 260px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.section-thank_button a::after {
  position: absolute;
  right: 20px;
  border-radius: 1px;
  transition: 0.2s ease-in-out;
  content: "\25B6";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.section-thank_button a:hover {
  background: #af9366;
  color: #fff;
}

@media (max-width: 960px){

}



.footer02 {
  background-color: #f0f0d6;
}
.footer02_box {
  display: flex;
  justify-content: space-between;
}
.footer02 .footer_top_image {
  display: block;
  justify-content: center;
  margin-top: 30px;
  margin: 0 auto;
}
.footer02 {
  margin-top: -2px;
  color: #fff;
  background: #af9366;
  text-align: center;
  padding: 60px;
}

.footer02 .footer_image {
  margin-bottom: 60px;
  display: block;
  max-width: 200px;
}

.footer02 a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
/* .footer02 a:hover {
  text-decoration: underline;
} */
.footer02_box .INFO ul {
  text-align: left;
}
.footer02_box .INFO ul li {
  list-style: none;
  margin-bottom: 20px;
}
.footer02 .menu {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
.footer02 .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer02 .copyright {
  margin: 0;
}

.footer02 .footer_icon {
  margin-bottom: 23px;
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.footer02 .footer_icon li {
  margin: 0;
  padding: 0 20px;
}

footer a {
  text-decoration: none;
  color: inherit;
}
a {
  position: relative; /*アンダーラインの位置を決めるための基準 */
}

footer .menu a::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  left: 0; /*アンダーラインを各メニュー（aタグ）の左端に指定*/
  content: ""; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
  width: 100%; /*アンダーラインを各aタグの幅に合わせる*/
  height: 2px; /*アンダーラインの高さ（太さ）*/
  background: #fff; /*アンダーラインの色*/
}

footer .menu a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}

footer .menu a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media (max-width: 1200px) {
  /* PC版Footerを非表示 */
  .footer02 {
    display: none;
  }
  /* SP版Footerを表示 */
  .footer03 {
    display: block;
  }
}
@media (min-width: 1199px) {
  /* PC版Footerを表示 */
  .footer02 {
    display: block;
  }
  .footer02 .footer02_box .INFO {
    width: 300px;
  }

  /* SP版Footerを非表示 */
  .footer03 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .footer03 {
    background-color: #af9366;
    padding: 30px 20px;
    color: #fff;
    font-size: 19px;
  }
  .footer03 img {
    max-width: 200px;
    margin-bottom: 5px;
  }
  .footer03 ul li {
    list-style: none;
  }
  .footer03 .menu li {
    padding: 25px 0;
    border-bottom: 1px solid #fff;
  }
  .footer03 .box-2 {
    padding-top: 15px;
    font-size: 13px;
  }
  .footer03 .box-2 ul li {
    padding-top: 25px;
    line-height: 1.5;
  }
}

/* 画面外 */
.fade-block1 {
  opacity: 0.1;
  transition: all 1.5s;
}
/* 画面に入った時の動き */
.fade-block1.blockIn {
  opacity: 1;
}

#slider {
  width: 100%;
  height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
