/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/********************************************/
/*  Sp-menu*/
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 999;
}
@media (max-width: 768px) {
  .header {
    padding: 10px 0 5px;
  }
}
.header.is-scroll {
  background-color: rgba(200, 190, 166, 0.85);
}
.header .inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
}
.header .inner .logo {
  position: relative;
  width: 30%;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header .inner .logo {
    width: calc(100% - 40px);
  }
}
.header .inner .logo a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7%;
}
@media (max-width: 768px) {
  .header .inner .logo a {
    gap: 10px;
  }
}
.header .inner .logo a img {
  display: block;
  width: 70px;
}
.header .inner .logo a .txt {
  color: #FFF;
  font-size: clamp(1.1rem, 1.4vw, 1.7rem);
}
@media (max-width: 768px) {
  .header .inner .logo a .txt {
    margin-bottom: 1em;
  }
}

.header .inner .header_nav {
  width: 70%;
}
.header .inner .header_nav .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: right;
}
.header .inner .header_nav .list .item a {
  padding: 0 0.7em;
  color: #FFF;
  font-size: clamp(1.8rem, 1.9vw, 2.1rem);
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .header_nav .list .item a:hover {
  opacity: 0.7;
}

.header .inner .menu_trigger {
  position: relative;
  width: 40px;
  height: 29px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header .inner .menu_trigger {
    margin-bottom: 10px;
    width: 30px;
    height: 23px;
  }
}
.header .inner .menu_trigger span {
  position: absolute;
  display: block;
  background-color: #FFF;
  width: 100%;
  height: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .menu_trigger span:nth-child(1) {
  top: 0;
}
.header .inner .menu_trigger span:nth-child(2) {
  top: 14px;
}
@media (max-width: 768px) {
  .header .inner .menu_trigger span:nth-child(2) {
    top: 11px;
  }
}
.header .inner .menu_trigger span:nth-child(3) {
  bottom: 0;
}
.header .inner .menu_trigger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
@media (max-width: 768px) {
  .header .inner .menu_trigger.active span:nth-child(1) {
    top: 10px;
  }
}
.header .inner .menu_trigger.active span:nth-child(2) {
  opacity: 0;
}
.header .inner .menu_trigger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 14px;
}
@media (max-width: 768px) {
  .header .inner .menu_trigger.active span:nth-child(3) {
    bottom: 11px;
  }
}

.header .inner .menu_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 105px;
  background-color: #C8BEA6;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .menu_nav.open {
  opacity: 1;
  visibility: visible;
  z-index: 998;
}
.header .inner .menu_nav .scroll {
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header .inner .menu_nav .scroll::-webkit-scrollbar {
  display: none;
}

.header .inner .menu_nav .scroll .list {
  padding-bottom: 200px;
}
.header .inner .menu_nav .scroll .list .item {
  padding-bottom: 10px;
  border-bottom: 1px solid #3A1E10;
}
.header .inner .menu_nav .scroll .list .item .btn {
  position: relative;
  display: block;
  padding: 13px 0 5px;
  color: #3A1E10;
  font-size: 1.9rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .menu_nav .scroll .list .item .btn:hover {
  opacity: 0.7;
}
.header .inner .menu_nav .scroll .list .item .btn.acc {
  padding-right: 30px;
}
.header .inner .menu_nav .scroll .list .item .btn.acc:after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 22px;
  height: 22px;
  background: url(../img/ico/ico-acc-plus.svg) no-repeat center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .menu_nav .scroll .list .item .btn.acc.open:after {
  background-image: url(../img/ico/ico-acc-minus.svg);
}

.header .inner .menu_nav .scroll .list .item .sub_nav {
  padding-bottom: 5px;
}
.header .inner .menu_nav .scroll .list .item .sub_nav .sub_item a {
  display: inline-block;
  color: #3A1E10;
  font-size: 1.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .inner .menu_nav .scroll .list .item .sub_nav .sub_item a:hover {
  opacity: 0.7;
}

/********************************************/
/*footer */
/********************************************/
.footer {
  background-color: #C8BEA6;
  padding: 60px 0 32px;
}
@media (max-width: 768px) {
  .footer {
    padding: 27px 0 24px;
  }
}

.footer .nav_inner {
  margin-bottom: 95px;
}
.footer .nav_inner .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 3%;
}
.footer .nav_inner .flex:not(:last-child) {
  margin-bottom: 45px;
}
.footer .nav_inner .flex .box {
  width: 20%;
}
.footer .nav_inner .flex .box .item_ttl {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
}
.footer .nav_inner .flex .box .item_ttl a {
  color: inherit;
  font: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .nav_inner .flex .box .item_ttl a:hover {
  opacity: 0.7;
}
.footer .nav_inner .flex .box .list .item {
  font-size: 1.3rem;
  line-height: 1.4;
}
.footer .nav_inner .flex .box .list .item a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: fit-content;
  padding: 0.2em 0;
  color: inherit;
  font-size: 1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .nav_inner .flex .box .list .item a:before {
  content: "";
  display: block;
  margin-top: 0.4em;
  margin-right: 0.3em;
  background: url(../img/ico/ico-arrow.svg) no-repeat center/contain;
  width: 10px;
  height: 10px;
}
.footer .nav_inner .flex .box .list .item a:hover {
  opacity: 0.7;
}

.footer .sns_box {
  padding: 15px 0;
  border-top: 1px solid rgba(58, 30, 16, 0.43);
  border-bottom: 1px solid rgba(58, 30, 16, 0.43);
}
@media (max-width: 768px) {
  .footer .sns_box {
    padding: 0 0 10px;
    margin: auto;
    width: calc(100% - 25px);
    border-top: none;
  }
  .footer .sns_box .main_width930 {
    width: 100%;
  }
}
.footer .sns_box .sns_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4%;
}
@media (max-width: 768px) {
  .footer .sns_box .sns_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer .sns_box .sns_list .item {
    margin-bottom: 10px;
  }
}
.footer .sns_box .sns_list .item a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: fit-content;
  color: inherit;
  font-size: 1rem;
  line-height: 1.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .sns_box .sns_list .item a:after {
  content: "";
  display: block;
  padding-left: 8px;
}
.footer .sns_box .sns_list .item a:hover {
  opacity: 0.7;
}
.footer .sns_box .sns_list .item.fb a:after {
  width: 14px;
  height: 13px;
  background: url(../img/ico/ico-fb.svg) no-repeat center/contain;
}
.footer .sns_box .sns_list .item.x a:after {
  width: 10px;
  height: 11px;
  background: url(../img/ico/ico-x.svg) no-repeat center/contain;
}
.footer .sns_box .sns_list .item.youtube a:after {
  width: 14px;
  height: 10px;
  background: url(../img/ico/ico-youtube.svg) no-repeat center/contain;
}
.footer .sns_box .sns_list .item.insta a:after {
  width: 12px;
  height: 12px;
  background: url(../img/ico/ico-instagram.svg) no-repeat center/contain;
}
.footer .sns_box .sns_list .item.pinterest a:after {
  width: 12px;
  height: 12px;
  background: url(../img/ico/ico-pinterest.svg) no-repeat center/contain;
}
.footer .sns_box .sns_list .item.linkedin a:after {
  width: 10px;
  height: 10px;
  background: url(../img/ico/ico-linkedin.svg) no-repeat center/contain;
}

.footer .policy_box {
  padding-top: 20px;
}
.footer .policy_box .nav_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer .policy_box .nav_list {
    display: block;
  }
}
.footer .policy_box .nav_list .item {
  font-size: 1rem;
  line-height: 1.6;
}
.footer .policy_box .nav_list .item a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: fit-content;
  color: inherit;
  font: inherit;
  line-height: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .policy_box .nav_list .item a:before {
  content: "";
  display: block;
  margin-top: 0.5em;
  margin-right: 0.3em;
  background: url(../img/ico/ico-arrow.svg) no-repeat center/contain;
  width: 7px;
  height: 7px;
}
.footer .policy_box .nav_list .item a:hover {
  opacity: 0.7;
}
.footer .policy_box .txt {
  display: block;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer .policy_box .txt {
    margin-bottom: 20px;
  }
}
.footer .policy_box .copyright {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}/*# sourceMappingURL=navigation.css.map */