@charset "UTF-8";
/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
/* ==============================
  index
  ---------------------------
  commons
    >html body main_wrapper *
  header
  footer
  animation keyframes
  commons style
  font style

============================== */
html, body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html {
  color: #434343;
}

.header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  height: 50px;
  width: 100vw;
}

@media screen and (min-width: 750px) {
  .header_fixed {
    padding: 0 5%;
  }
}

.header_fixed--logo {
  width: 50%;
}

@media screen and (min-width: 750px) {
  .header_fixed--logo {
    width: 170px;
  }
}

.header_fixed--btn {
  position: relative;
  width: 50px;
  height: 50px;
}

.header_fixed--btn .fixed_btn__item {
  display: block;
  position: absolute;
  right: 10px;
  width: 30px;
  height: 2px;
  background: #666b00;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header_fixed--btn .fixed_btn--item1 {
  top: 15px;
}

.header_fixed--btn .fixed_btn--item2 {
  top: 24px;
}

.header_fixed--btn .fixed_btn--item3 {
  bottom: 15px;
}

.header_fixed--btn.btn_on .fixed_btn--item1 {
  -webkit-transform: rotate(45deg) translate(9px, 4px);
  transform: rotate(45deg) translate(9px, 4px);
}

.header_fixed--btn.btn_on .fixed_btn--item2 {
  opacity: 0;
}

.header_fixed--btn.btn_on .fixed_btn--item3 {
  -webkit-transform: rotate(-45deg) translate(9px, -4px);
  transform: rotate(-45deg) translate(9px, -4px);
}

.header_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 60px 5% 0;
  background: #f0eeef;
  z-index: 99;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.header_nav.btn_on {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (min-width: 750px) {
  .header_nav_list {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header_nav_list__item a {
  display: block;
  padding: 10px 0;
  color: #333;
  border-bottom: 1px #d4d4d4 solid;
}

.footer {
  padding: 2.5% 0;
  background: top no-repeat;
  background-size: cover;
}

@media screen and (min-width: 750px) {
  .footer {
    padding: 25px 0;
  }
}

.footer .copyright {
  font-size: 1.2rem;
}

.footer_logo {
  display: block;
  width: 120px;
  margin: auto;
}

.footer_nav {
  padding: 5%;
}

.footer_nav a {
  color: inherit;
      padding: 0 1%;
}

@-webkit-keyframes svg_line {
  0% {
    stroke-dashoffset: 1000;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@keyframes svg_line {
  0% {
    stroke-dashoffset: 1000;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.fadein.fadein_on {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.cursor_pointer {
  cursor: pointer;
}

.arrow_btn {
  position: relative;
  display: block;
  width: 60%;
  padding: 4px 0;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  letter-spacing: 2px;
  font-weight: bold;
  color: inherit;
}

@media screen and (min-width: 750px) {
  .arrow_btn {
    max-width: 350px;
  }
}

.arrow_btn_line {
  position: relative;
  display: block;
  width: 60%;
  padding: 4px 0;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  letter-spacing: 2px;
  font-weight: bold;
  border: 1px solid #999;
  color: inherit;
}

@media screen and (min-width: 750px) {
  .arrow_btn_line {
    max-width: 350px;
  }
}

.title--svg_line-img path, .title--svg_line-img polygon, .title--svg_line-img rect, .title--svg_line-img polyline {
  stroke: #544010;
  fill: #544010;
  stroke-width: 0.5;
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.title--svg_line.scroll_on path, .title--svg_line.scroll_on polygon, .title--svg_line.scroll_on rect, .title--svg_line.scroll_on polyline {
  -webkit-animation: svg_line 5s ease-in-out 1s forwards;
  animation: svg_line 5s ease-in-out 1s forwards;
}

.title--svg_line-text {
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.2;
  -webkit-transition: 1s 1s;
  transition: 1s 1s;
  color: #544010;
}

.title--svg_line-text::before, .title--svg_line-text::after {
  display: block;
  position: absolute;
  top: 0;
  left: 20%;
  bottom: auto;
  right: auto;
  width: 0%;
  height: 1px;
  content: "";
}

.title--svg_line-text::before {
  -webkit-transition: 1s 1s;
  transition: 1s 1s;
  background: #544010;
  opacity: 0.25;
}

.title--svg_line-text::after {
  -webkit-transition: 1s 1.5s;
  transition: 1s 1.5s;
  background: #544010;
}

.title--svg_line.scroll_on .title--svg_line-text {
  opacity: 1;
}

.title--svg_line.scroll_on .title--svg_line-text::before, .title--svg_line.scroll_on .title--svg_line-text::after {
  width: 60%;
}

.font_10 {
  font-size: 1rem;
}

.font_11 {
  font-size: 1.1rem;
}

.font_12 {
  font-size: 1.2rem;
}

.font_13 {
  font-size: 1.3rem;
}

.font_14 {
  font-size: 1.4rem;
}

.font_15 {
  font-size: 1.5rem;
}

.font_16 {
  font-size: 1.6rem;
}

.font_17 {
  font-size: 1.7rem;
}

.font_18 {
  font-size: 1.8rem;
}

.font_19 {
  font-size: 1.9rem;
}

.font_20 {
  font-size: 2rem;
}

.font_21 {
  font-size: 2.1rem;
}

.font_22 {
  font-size: 2.2rem;
}

.font_23 {
  font-size: 2.3rem;
}

.font_24 {
  font-size: 2.4rem;
}

.font_25 {
  font-size: 2.5rem;
}

.font_26 {
  font-size: 2.6rem;
}

.font_27 {
  font-size: 2.7rem;
}

.font_28 {
  font-size: 2.8rem;
}

.font_29 {
  font-size: 2.9rem;
}

.font_30 {
  font-size: 3rem;
}

.font_31 {
  font-size: 3.1rem;
}

.font_32 {
  font-size: 3.2rem;
}

.font_33 {
  font-size: 3.3rem;
}

.font_34 {
  font-size: 3.4rem;
}

.font_35 {
  font-size: 3.5rem;
}

.font_36 {
  font-size: 3.6rem;
}

.font_37 {
  font-size: 3.7rem;
}

.font_38 {
  font-size: 3.8rem;
}

.font_39 {
  font-size: 3.9rem;
}

.font_40 {
  font-size: 4rem;
}

.font_red {
  color: #ce0000;
}

.font_blue {
  color: #00bee7;
}

.font_bold {
  font-weight: bold;
}
