@charset "UTF-8";

:root {
  --base-color: #fef9f1;
  --assorted-color1: #f7f1da;
  --assorted-color2: #fef4f3;
  --accent-color1: #3a7367;
  --accent-color2: #d4b74b;
  --accent-color3: #dd9089;
  --accent-color4: #aaa09f;
  --color1: #fff;
  --color2: #3a3e49;
  --color3: #005548;
  --color4: #ee8888;
}

body {
  color: #454545;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  background-color: var(--accent-color1);
}

body::before {
  content: "";
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 65vh;
  background-color: var(--base-color);
  z-index: -1;
}

a {
  transition: .4s;
}

@media(any-hover: hover) {
  a:hover {
    opacity: .4;
  }
}

/* フォント */
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}



.bginner {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--base-color);
  box-shadow: 0px 0px 7px -3px #d4b74b;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}



.letter_space02 {
  letter-spacing: 2em;
}

.letter_space03 {
  letter-spacing: .5em;
}

.letter_space04 {
  letter-spacing: .3em;
}



/* section */
section {
  padding-block: 60px;
}

.section_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.inner {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}

.bgline {
  width: 100%;
}

.button {
  pointer-events: all;
  transition: .4s;
  display: inline-block;
  padding: .5em 1em;
  background-color: #fff;
}

@media(any-hover: hover) {
  .button:hover {
    opacity: .4;
  }
}

@media(max-width:500px) {
  .bginner {
    box-shadow: none;
  }
}

/* header */
.header {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 500px;
  z-index: 3;
}

.header .inner {
  display: flex;
  justify-content: space-between;
}

.header_title img {
  mix-blend-mode: multiply;
  max-width: 75px;
}

.header_nav {
  display: none;
  transition: 0.5s;
}

.is-fixed .header_nav {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--base-color);
  text-align: center;
}

.header_nav-item {
  margin-top: 1.5em;
  position: relative;
  text-align: left;
}

.header_nav-item:first-of-type {
  margin-top: 0;
}

.header_nav-item a {
  max-width: 62px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  font-size: 15px;
}

.is-fixed .header_nav-item a {
  max-width: 72px;
  font-size: 17px;
}

.header_nav-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1em;
  width: 4px;
  height: 4px;
  background-color: var(--color2);
  transform: translate(-50%, -50%);
}

.header_nav-item:nth-of-type(2n) a::before {
  background-color: var(--accent-color2);
}

.header_nav-item:nth-of-type(3n) a::before {
  background-color: var(--accent-color3);
}

.header_nav-item:nth-of-type(4n) a::before {
  background-color: var(--accent-color4);
}

.hamburger_menu {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}

@media(max-width:900px) {
  .hamburger_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: 10px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 9999;
  }

  .hamburger_menu::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--color3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .hamburger_menu span {
    width: 100%;
    height: 2px;
    background-color: var(--color1);
    transition: all 0.3s ease;
  }



  /* × 状態 */
  .hamburger_menu.class2 span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }

  .hamburger_menu.class2 span:nth-child(2) {
    opacity: 0;
  }

  .hamburger_menu.class2 span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

/* footer */
.footer {
  background-color: var(--accent-color1);
  padding-top: 40px;
  position: relative;
}

.footer_wrap {
  display: flex;
  justify-content: space-between;
}

.footer_nav-item {
  margin-left: 30px;
  margin-top: 1.5em;
  position: relative;
}

.footer_nav-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1em;
  width: 4px;
  height: 4px;
  background-color: var(--color2);
  transform: translate(-50%, -50%);
}

.footer_nav-item:nth-of-type(2n):before {
  background-color: var(--accent-color2);
}

.footer_nav-item:nth-of-type(3n):before {
  background-color: var(--accent-color3);
}

.footer_nav-item:nth-of-type(4n):before {
  background-color: var(--accent-color4);
}

.footer_nav-item a {
  color: var(--color1);
}

.footer_nav-item-other {
  margin: 60px 0 60px 20px;
}

.footer_nav-item-other a {
  color: var(--color1);
}

.footer_illust {
  position: absolute;
  bottom: 130px;
  right: 40px;
}

.insta_button {
  margin-right: 30px;
}

.insta_button a {
  font-size: 13px;
  font-weight: bold;
  background-color: var(--color3);
  display: inline-block;
  color: var(--color4);
  border: 1px solid var(--color4);
  padding: .3em 2em;
  width: 135px;
  text-align: center;
}

.copyright {
  font-size: 10px;
  font-weight: 500;
  display: block;
  text-align: right;
  color: var(--color1);
  background-color: var(--color2);
  padding: 45px 2em 15px 0;
}


/* PC ゾーン */
.pc_zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.pc_zone .header_title img {
  mix-blend-mode: multiply;
  max-width: 75px;
}

.pc_zone_nav_wrap {
  position: fixed;
  top: 10px;
  left: 30px;
}

.pc_zone_nav_wrap .header_title {
  max-width: 100px;
}

.pc_zone_nav_wrap .header_nav {
  display: block;
  margin-left: 30px;
}

.pc_nav-item-other {
  position: fixed;
  bottom: 30px;
  left: 30px;
  color: var(--color1);
}

.pc_zone_illust {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.pc_zone .sns_bottan {
  position: fixed;
  top: 30px;
  right: 30px;
  max-width: 300px;
  text-align: center;
}

.pc_zone .insta_button {
  margin: 0;
}

.pc_zone .insta_button a {
  max-width: 300px;
  width: 100%;
}

.image-story_button {
  margin-top: 10px;
}

.image-story_button button {
  font-size: 13px;
  font-weight: bold;
  background-color: var(--color3);
  display: inline-block;
  color: var(--accent-color2);
  border: 1px solid var(--accent-color2);
  padding: .3em 2em;
  width: 135px;
  text-align: center;
}

.pc_zone_header_title {
  margin-bottom: 20px;
}

@media(max-width:900px) {

  .pc_zone .header_title,
  .pc_zone .sns_bottan,
  .pc_zone_illust,
  .pc_nav-item-other {
    display: none;
  }

  .pc_zone {
    z-index: 1000;
    height: auto;
  }

  .is-fixed .pc_zone {
    z-index: 9999;
    height: 100vh;
  }

  .is-fixed .pc_zone .header_title {
    display: block;
    position: absolute;
    top: 10px;
    left: 21px;
    z-index: 9999;
  }

  .pc_zone_header_title {
    max-width: 500px;
    position: relative;
    margin: 0 auto;
  }

  .pc_zone_hamburger_menu {
    max-width: 500px;
    position: relative;
    margin: 0 auto;
  }

  .pc_zone_nav_wrap {
    opacity: 0;
    top: 0;
    left: 0;
  }

  .pc_zone_nav_wrap .header_nav {
    height: 100vh;
    z-index: 999;
  }

  .header_list {
    margin-top: -15%;
  }

  .pc_zone_nav_wrap .header_nav {
    display: block;
    margin-left: 0;
  }

  .pc_zone_nav_wrap .header_nav {
    display: flex;
    margin-left: 0;
    flex-direction: column;
    justify-content: center;
  }

  .is-fixed .pc_zone_nav_wrap {
    opacity: 1;
    width: 100%;
    height: 100vh;
    pointer-events: all;
  }

}


/* fade */
/* =========================
  共通初期状態
========================= */
.fade {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

/* =========================
  表示状態
========================= */
.fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================
  方向
========================= */
.fade-up {
  transform: translateY(30px);
}

.fade-down {
  transform: translateY(-30px);
}

.fade-left {
  transform: translateX(30px);
}

.fade-right {
  transform: translateX(-30px);
}

/* =========================
  スピード
========================= */
.fade-fast {
  transition-duration: 0.4s;
}

.fade-slow {
  transition-duration: 1.2s;
}

/* 指定なしの場合 */
.fade:not(.fade-fast):not(.fade-slow) {
  transition-duration: 0.8s;
}