@charset "utf-8";
/* CSS Document */
body {
  background-color: #0A223F;
}
header {
  position: fixed;
  background-color: transparent;
  z-index: 10;
}
section {
  margin: 120px auto;
}
h2, h3, h4, p, dl {
  color: #F2F2F1;
}
h2, h3 {
  font-family: "Vesper Libre", serif;
  font-weight: 500;
  text-align: center;
}
h2 {
  font-size: 64px;
}
h2::first-letter {
  color: #F7C06E;
}
h3 {
  font-size: 32px;
}
h4 {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: normal;
}
p, dl {
  font-family: "Noto Serif JP", serif;
}
p {
  font-size: 16px;
  line-height: 1.8;
}
li {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}
h2 + div {
  margin-top: 56px;
}
h3 + img {
  margin-top: 32px;
}
a img:hover, a i:hover {
  opacity: 0.8;
}
/*ブランドロゴ*/
 h1 img{
  padding-top: 24px;
  padding-left: 24px;
}
/*ハンバーガーメニューのスタイル*/
.menu {
  position: fixed;
  top: -300%;
  width: 100%;
  height: 500px;
  background-color: #ACADB3;
  color: #F2F2F1;
  transition: top 0.3s ease;
  padding: 20px;
  z-index: 20;
}
/* メニューが開いているとき */
.menu.open {
  top: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  cursor: pointer;
  z-index: 99;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #F2F2F1;
  margin: 8px 0;
  transition: 0.4s;
}
/* バツ印に変化するスタイル */
.hamburger.active span {
  background-color: #F2F2F1;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
}
.menu li a {
  padding: 20px 0;
  border-bottom: 1px solid #F9F7F7;
  text-align: center;
}
.menu li a {
  color: #F2F2F1;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.menu ul li a:hover {
  color: #F7C06E;
}
/*コンテンツ幅*/
.contents_wrap {
  width: 960px;
  margin: 0 auto;
}
/*ファーストビュー*/
.fv {
  position: relative;
}
.video_front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/video_front.svg");
  background-repeat: repeat;
  opacity: 0.3;
  z-index: 1;
}
.fv video {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  object-fit: cover;
  object-position: bottom;
  z-index: 3;
}
/*スクロールダウン*/
/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 30px;
  /*全体の高さ*/
  height: 50px;
  z-index: 10;
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-family: "Vesper Libre", serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 80px;
  background: #F9F7F7;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*コンセプト*/
#consept h2 {
  display: none;
}
#consept div {
  margin: 120px auto;
}
.right_end {
  display: flex;
  justify-content: flex-end;
}
.copy_extraordinary p {
  font-family: "Shippori Mincho", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.3;
  text-align: end;
  z-index: 2;
}
.copy_extraordinary {
  position: relative;
  z-index: 2;
}
.img_smoke {
  position: relative;
  z-index: 1;
  transform: translateY(-210px);
}
.copy_extraordinary .smoke {
  font-size: 96px;
  color: #acadb3;
}
.copy_fire {
  display: flex;
  justify-content: center;
}
.copy_fire p {
  font-family: "Shippori Mincho", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.3;
}
.copy_fire .fire {
  font-size: 96px;
  background: linear-gradient(180deg, #f4d29f 0%, #f7c06e 68%, #ff9900 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
/*ブランドメッセージセクション*/
.message {
  width: 100%;
  margin: 0 calc(50% - 50vw);
  background-image: url("img/bg_message.png");
  background-size: cover;
  background-position: center;
}
.message h2 {
  display: none;
  width: 100vw;
}
.copy_free p {
  display: inline-block;
  margin-top: 80px;
  padding: 40px;
  font-size: 128px;
  line-height: 1.3;
  background-color: #201D4455;
}
.adventure {
  margin-top: 440px;
}
.message .adventure {
  padding: 40px;
  background-color: #33333355;
}
.adventure p + p {
  margin-top: 16px;
}
/*香りの説明*/
.flex_2 {
  display: flex;
  flex-wrap: wrap;
}
#scent img + p {
  margin-top: 32px;
}
h4 + p {
  margin-top: 32px;
}
/*製品情報*/
.product_info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 50%;
}
dl {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  line-height: 1.8;
}
dt {
  width: 50%;
}
dd {
  width: 50%;
}
/*販売店舗*/
.online {
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 48px;
}
/*フッター*/
footer {
  margin-top: 120px;
  background: linear-gradient(180deg, #0A223F 0%, #f7c06eee 100%);
  text-align: center;
}
.sns_icons {
  display: flex;
  justify-content: center;
  column-gap: 160px;
  margin: 56px;
}
.sns_icons i {
  font-size: 80px;
  color: #F2F2F1;
}
.footer_logo {
  margin: 40px;
}
.company {
  margin-top: 56px;
}
.fiction {
  margin-top: 64px;
  font-size: 12px;
}
.copyright {
  font-size: 14px;
}
@media screen and (max-width:980px) {
  .contents_wrap {
    width: 90vw;
  }
  main #consept {
    padding: 24px;
  }
  #consept img {
    width: 90%;
  }
  /*  .copy_and_img{
    text-align: center;
    
  }*/
  .message {
    background-position: right -200px center;
  }
  @media screen and (max-width:500px) {
    
    section {
      margin-top: 80px;
    }
    
    h1 img{
      
      width: 64px;
      padding-top: 10px;
  padding-left: 10px;
    }
    
    .right_end {
      justify-content: flex-start;
    }
    .copy_free p {
      font-size: 56px;
    }
  }
  /* #scent img{
    width: 70%;
   
  }*/
  .sns_icons {
    column-gap: 80px;
  }
}