@charset "utf-8";

/* cssリセット */

/*利用するタグによってこちらの内容は増やす*/

html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1;
  /*デフォルトの文字色、font-familyを予め当てておく*/
  color: #333333;
  font-family: "Honoka-Maru-Gothic", " honoka-maru-gothic", "Honoka Maru Gothic",
    "honoka maru gothic", "FOT-TsukuARdGothic Std", "fot tsukubrdgothic-std";
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
  background-color: #f9ecd9;
}

a {
  /*下線を消す*/
  text-decoration: none;
  /*色を消す*/
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

ul {
  /*左の「・」を消す*/
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

.heading {
  width: 100px;
  margin: 0 auto;
}

.heading img {
  width: 100%;
}

/* ヘッダー */
.header_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7% 0 3%;
}

.header_logo {
  width: 100px;
  z-index: 90;
}

.pc_nav ul {
  display: flex;
}

.pc_nav ul li {
  width: 40px;
  margin-left: 160px;
  font-size: 14px;
  text-align: center;
  font-family: "Arial";
  font-weight: 300;
  z-index: 90;
}

.sp_nav,
.sp_btn {
  display: none;
}

@media screen and (max-width: 1100px) {
  .pc_nav {
    display: none;
  }

  /* ハンバーガー */
  .sp_btn {
    position: absolute;
    top: 20px;
    right: 25px;
    display: block;
    height: 23px;
    cursor: pointer;
    z-index: 2;
  }

  .sp_btn span {
    position: relative;
    top: 10px;
    display: block;
    width: 33px;
    height: 3px;
    border-radius: 2px;
    background-color: #333;
    transition: 0.3s;
  }

  .sp_btn span::after,
  .sp_btn span::before {
    position: absolute;
    content: "";
    display: block;
    width: 33px;
    height: 3px;
    border-radius: 2px;
    background-color: #333;
    transition: 0.3s;
  }

  .sp_btn span::before {
    bottom: 10px;
  }

  .sp_btn span::after {
    top: 10px;
  }

  /* ハンバーガー閉じ */
  .sp_btn.open span {
    background: transparent;
  }

  .sp_btn.open span::before {
    bottom: 0px;
    transform: rotate(45deg);
  }

  .sp_btn.open span::after {
    top: 0px;
    transform: rotate(135deg);
  }

  /* ハンバーガーメニュー */
  .sp_nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(249, 236, 217, 1);
    z-index: 1;
  }

  .sp_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .sp_nav ul li {
    padding: 20px;
    color: #333;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .header_logo {
    width: 60px;
  }
}

.main_visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main_logo {
  width: 210px;
}

.main_logo img {
  width: 100%;
}

.main_left_top {
  position: absolute;
  width: 60vw;
  top: 0px;
  left: 0px;
}

.main_right_top {
  position: absolute;
  width: 60vw;
  top: 0px;
  right: 0px;
}

.main_left_bottom {
  position: absolute;
  width: 60vw;
  bottom: 0px;
  left: 0px;
}

.main_right_bottom {
  position: absolute;
  width: 60vw;
  bottom: 0px;
  right: 0px;
}

.main_scroll {
  position: absolute;
  left: 28px;
  bottom: 22%;
  width: 15px;
}

.main_scroll img {
  width: 100%;
  animation-name: UpDown;
  /* アニメーションの１回分の長さ */
  animation-duration: 1.5s;
  /* アニメーションの回数 */
  animation-iteration-count: infinite;
  /* アニメーションの進行具合 */
  animation-timing-function: ease-in-out;
  /* アニメーション再生の向き */
  animation-direction: alternate;
}

/* アニメーションの設定 */
@keyframes UpDown {
  /* 開始地点 */
  0% {
    /* Y軸0px */
    transform: translateY(0);
  }
  /* 終了地点 */
  100% {
    /* Y軸50px */
    transform: translateY(30px);
  }
}

/* フッター */
footer {
  background-color: #fff;
}

.footer_wrap {
  padding-top: 58px;
}

.x_icon {
  width: 40px;
  height: 40px;
  padding: 0px 100px 0px 70px;
}

.x_icon img {
  width: 100%;
}

.instagram_icon {
  width: 43px;
  height: 43px;
  margin-right: auto;
}

.instagram_icon img {
  width: 100%;
}

.footer_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer_nav {
  margin-left: auto;
}

.footer_nav_flex {
  display: flex;
  align-items: center;
}

.icon_wrap {
  display: flex;
  width: 300px;
}

.footer_nav_flex li {
  margin-right: 128px;
}

.footer_nav_flex li:last-child {
  margin-right: 100px;
}

.copyright {
  text-align: center;
  margin: 80px auto 0px auto;
  padding-bottom: 30px;
}

.copyright small {
  font-size: 14px;
}

@media screen and (max-width: 1100px) {
  footer {
    margin: 0 auto;
  }
  .footer_wrap {
    display: block;
    margin: 0 auto;
  }

  .icon_wrap {
    display: flex;
    margin: 0 auto 30px auto;
  }

  .footer_nav {
    margin-left: 0px;
    justify-content: center;
  }

  .footer_nav_flex {
    justify-content: space-evenly;
  }

  .footer_nav_flex li {
    width: 50px;
    margin: 0;
  }

  .footer_nav_flex li:last-child {
    margin-right: 0px;
  }
}

/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s 0s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}
