@charset "utf-8";
/* CSS Document */
* {
  scroll-behavior: smooth;
}
body {
  background-color: #0A223F;
	
}
header {
  position: fixed;
  background-color: transparent;
  z-index: 10;
}
section {
  margin: 120px auto 0;
}
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 {
  margin-top: 24px;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  text-align: center
}
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 {
  text-decoration-line: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}
dl {
  display: flex;
  flex-wrap: wrap;
  margin: 48px auto;
  max-width: 100%;
  line-height: 1.8;
}
dt {
  width: 60%;
}
dd {
  width: 40%;
}
/*ブランドロゴ*/
h1 img {
  padding-top: 24px;
  padding-left: 24px;
}
/*ローディングブランドロゴ*/
/*ローディングブランドロゴ*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  background-color: #0A223F;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
  z-index: 9999;
}
.loading.is_active {
  opacity: 0;
  visibility: hidden;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading_logo {
  width: 175px;
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/*ハンバーガーメニューのスタイル*/
.menu {
  position: fixed;
  top: -300%;
  width: 100%;
  height: 500px;
  background-color: #ACADB3;
  color: #F2F2F1;
  transition: top 0.3s ease;
  padding: 20px;
  z-index: 100;
}
/* メニューが開いているとき */
.menu.open {
  top: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  cursor: pointer;
  z-index: 100;
}
.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;
  font-weight: 600;
}
.menu li a {
  color: #F2F2F1;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.menu ul li a:hover {
  color: #F7C06E;
  opacity: 1.0;
}
/*コンテンツ幅*/
.contents_wrap {
  width: 960px;
  margin: 0 auto;
  overflow: hidden;
}
/*ファーストビュー*/
.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: 1;
}
/*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;
  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;
  }
}
/*コンセプトセクション*/
#concept {
  position: relative;
  overflow: hidden;
}
/*煙*/
.svg_bg {
  position: absolute;
  top: 0;
  width: 120%;
  height: auto;
  z-index: -1;
  pointer-events: none;
}
/* 共通で非表示にしておく */
.smoke_svg {
  display: none;
}
/* PCサイズでのみ表示 */
@media (min-width: 980px) {
  .smoke_svg.pc {
    display: block;
  }
}
/* 煙のフェードイン */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
/*------------------------*/
#concept h2 {
  display: none;
}
#concept 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: 100vw;
  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;
  overflow: hidden;
  column-gap: 56px;
}
.scent_card {
  margin: 0 auto;
  padding: 16px;
}
.test img {
  margin: 0 auto;
}
#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: 70%;
}
/*販売店舗*/
.online {
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 48px;
}
/*フッター*/
footer {
  width: 100vw;
  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 #concept {
    padding: 24px;
  }
  #concept img {
    max-width: 90%;
  }
  .message {
    background-position: right -200px center;
  }
}
@media screen and (max-width: 979px) {
  .smoke_svg.tablet {
    display: block;
  }
  .scent_card:not(:first-child) {
    margin-top: 56px;
  }
}
@media screen and (max-width:500px) {
  h1 img {
    width: 64px;
    padding-top: 10px;
    padding-left: 10px;
  }
  .contents_wrap {
    max-width: 90vw;
  }
  .right_end {
    justify-content: flex-start;
  }
  .copy_extraordinary p, .copy_fire p {
    transform: scale(0.8);
  }
  .copy_free p {
    font-size: 56px;
  }
  /**/
  /* scentセクションの調整 */
  #scent {
    padding: 40px 16px;
  }
  .scent_card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 16px;
  }
  .scent_card img {
    display: block;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    transform: scale(0.8);
    transform-origin: center;
  }
  .flex_2 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
  h4 {
    font-size: 20px;
  }
  .sns_icons {
    column-gap: 80px;
  }
}