@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* 共通 */
* {
  min-width: 0;
  min-height: 0;
}

/* 共通 */
body {
  margin: 0;
  padding: 0;
  background-color: #e7e2d7;
}

p,
h1,
h2,
h3,
h4,
h5,
ul,
li,
a,
div {
  color: #333333;
  letter-spacing: 26;
  line-height: 28px;
  font-family: "Noto Sans JP", Noto Sans CJK JP, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, Yu Gothic, "メイリオ", Meiryo, "MS ゴシック", sans-serif;
  font-size: 16px;
  letter-spacing: 1.8px;
  color: #643700;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.wrap {
  max-width: 80%;
  /* full-width 1400pxに対して、1000px maxを想定 */
  margin: 0 auto;
}

@media (max-width: 900px) {
  .wrap {
    max-width: 100%;
    padding: 0 3%;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

div img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  vertical-align: top;
}

/* header */
#header {
  width: 100%;
  background-color: #fff;
  z-index: 10;
}

.header-wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-wrap .header-logo {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20%;
}

.header-wrap .header-logo img {
  height: 70px;
  width: auto;
}

@media (max-width: 600px) {
  .header-wrap .header-logo img {
    height: 60px;
  }
}
.header-wrap .header-logo a {
  font-size: 24px;
}

.header-wrap .header-logo a span {
  display: block;
  font-size: 12px;
}

.header-wrap .header-menu {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1400px) {
  .header-wrap .header-menu {
    display: none;
  }
}
.header-wrap .header-menu ul {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-wrap .header-menu ul .contact a {
  display: block;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
  border-radius: 40px;
  font-size: 14px;
}

.header-wrap .header-menu ul li {
  margin-right: 20px;
}

.header-wrap .header-menu ul li .contact-menu {
  background-color: #ae9a80;
  height: 110px;
  line-height: 110px;
  text-align: center;
  width: 220px;
  font-size: 18px;
  position: relative;
}

.header-wrap .header-menu ul li .contact-menu:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #d2c7b8;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.header-wrap .header-menu ul li .contact-menu:hover:after {
  width: 100%;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  /*長さをMaxに*/
}

.header-wrap .header-menu ul li:last-child {
  margin-right: 0px;
}

.header-wrap .header-menu ul li a {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #643700;
  position: relative;
}

.header-wrap .header-menu ul li a img {
  height: 35px;
  width: auto;
}

.header-wrap .header-menu ul li a:hover:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 20px;
  background-image: url(/wp-content/uploads/2023/03/hibari-onpu@2x-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-wrap .header-menu ul li:nth-last-child(-n+2) a:hover:before {
  display: none;
}

/*ハンバーガーメニュー*/
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -350px;
  bottom: 0;
  width: 350px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

@media (max-width: 600px) {
  nav {
    right: -330px;
    width: 330px;
  }
}
nav .inner {
  padding: 25px;
}

nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 70%;
  margin-top: 50px;
  text-align: center;
}

nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #643700;
}

nav .inner ul li:first-child {
  border-top: 1px solid #643700;
}

nav .inner ul li a {
  display: block;
  color: #643700;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  font-weight: 500;
}

.toggle_btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
  background-color: #643700;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .toggle_btn {
    display: block;
  }
}
.toggle_btn .toggle_line {
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.toggle_btn .toggle_line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.toggle_btn .toggle_line span:nth-child(1) {
  top: 2px;
}

.toggle_btn .toggle_line span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.toggle_btn .toggle_line span:nth-child(3) {
  bottom: 2px;
}

.toggle_btn.open span {
  background-color: #fff;
  color: #643700;
}

.toggle_btn.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(-315deg);
  transform: translateY(50%) rotate(-315deg);
}

.toggle_btn.open span:nth-child(2) {
  opacity: 0;
}

.toggle_btn.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(315deg);
  transform: translateY(50%) rotate(315deg);
}

.open nav {
  right: 0;
  opacity: 1;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#navArea {
  z-index: 1;
}

/* top scroll */
.top_jump {
  visibility: hidden;
  width: 60px;
  height: 60px;
  background-color: #666666;
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

.top_jump::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -15%) rotate(-45deg);
}

.view {
  visibility: visible;
  opacity: 1;
}

.top_jump a {
  display: block;
  height: 100%;
}

/* header */
/* footer */
.footer {
  background-color: #fff;
}

.footer .footer-menu {
  max-width: 1450px;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .footer .footer-menu {
    padding: 40px 0;
  }
}
.footer .footer-menu .content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .footer .footer-menu .content {
    width: 33.33%;
    padding: 0px 25px;
  }
}
@media (max-width: 900px) {
  .footer .footer-menu .content {
    width: 100%;
    padding: 0px;
  }
}
.footer .footer-menu .content a {
  font-size: 24px;
}

.footer .footer-menu .content a img {
  height: 24px;
  width: auto;
}

.footer .footer-menu .logo img {
  height: auto;
  width: 300px;
}

@media (max-width: 1400px) {
  .footer .footer-menu .logo img {
    width: 220px;
  }
}
.footer .footer-menu .contact {
  border-right: 1px solid #61381a;
  border-left: 1px solid #61381a;
  padding: 15px 50px;
}

@media (max-width: 1200px) {
  .footer .footer-menu .contact {
    padding: 15px 25px;
  }
}
@media (max-width: 900px) {
  .footer .footer-menu .contact {
    padding: 0px;
    border-right: none;
    border-left: none;
    margin: 30px 0;
  }
}
.footer .footer-menu .sns {
  right: 50px;
  bottom: 60px;
}

.footer .footer-menu .sns a {
  margin-right: 20px;
}

.footer .footer-menu .sns a img {
  height: 30px;
}

@media (max-width: 1400px) {
  .footer .footer-menu .snspc {
    display: none;
  }
}
.footer .footer-menu .snssp {
  display: none;
}

@media (max-width: 1400px) {
  .footer .footer-menu .snssp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 10px;
  }
}
.footer .copywrite {
  background-color: #643700;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.mx-width {
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .mx-width {
    max-width: 95% !important;
  }
}
.subtitle {
  height: 23px;
  width: auto;
  display: block;
}

@media (max-width: 1400px) {
  .subtitle {
    height: 16px;
  }
}
.title {
  height: 90px;
  width: auto;
  margin: 50px 0;
  display: block;
}

@media (max-width: 1400px) {
  .title {
    margin: 40px 0;
    height: 60px;
  }
}
.hibari-btn {
  display: inline-block;
  margin-top: 50px;
  font-size: 22px;
  color: #596e80;
  font-weight: 500;
  width: 100%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1400px) {
  .hibari-btn {
    font-size: 16px;
  }
}
.hibari-btn img {
  height: 30px;
  width: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (max-width: 1400px) {
  .hibari-btn img {
    height: 20px;
  }
}
@media (max-width: 600px) {
  .hibari-btn img {
    position: relative;
  }
}
.hibari-btn:hover img {
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

.hibari-btn span {
  border: 3px solid #643700;
  border-radius: 50%;
  padding: 20px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 30px;
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1400px) {
  .hibari-btn span {
    padding: 15px 19px;
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  .hibari-btn span {
    width: 55px;
    height: 55px;
    padding: 10px 14px !important;
    margin-right: 7px !important;
    border: 2px solid #643700 !important;
  }
}
.mx-midlewidth {
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .mx-midlewidth {
    max-width: 95%;
  }
}
.text {
  font-size: 16px;
  color: #643700;
  line-height: 2;
}

.fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.fade.animated {
  opacity: 1;
}

.slick-dots li {
  width: 15px;
  height: 15px;
}

.slick-arrow {
  display: none !important;
}

/*===================================
 *
===================================*/
.test {
  font-size: 12px;
}

@media (max-width: 1400px) {
  .test {
    padding: 15px 19px;
    margin-right: 15px;
  }
}