@charset "utf-8";


body {
  background-color: #fff;
  /* opacity: 0;
  transition: opacity 0.3s ease; */
}
/* body.fade-in {
  opacity: 1;
} */

/* Reem Kufi---<weight>: Use a value from 400 to 700 */
/* kiwi-maru---<weight>: Use a value from 300 to 500 */

body,h1,h2,h3,h4,h5,h6,p,ul,li,dl,dt,dd,figure {
  margin:0;
  padding:0;
  list-style: none;
  font-family:"Reem Kufi","Kiwi Maru","Yu Gothic Medium","游ゴシック Medium", YuGothic, "游ゴシック体", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0.1em;
  color:#ea5514;
  line-height:1.8em;
  font-weight:400;
}

a {
  text-decoration: none;
}
img {
  vertical-align: bottom;
  pointer-events: none;
}
.flex {
  display:flex;
  flex-wrap: wrap;
}
.text-align-center{
  text-align: center;
}
.br_sp{
  display: block;
}
@media screen and (min-width:1000px) {
  .br_sp{
    display: none;
  } 
}


/* Loading */

#loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loading_animation {
  width:40vw;
  margin: auto;
  text-align: center;
  transform: translateY(-40%);
}
.maru_animation {
  width:26%;
  margin:auto auto 30px;
  display: block;
}
.logo_animation {
  width:100%;
}
@media screen and (min-width:768px) {
  .loading_animation {
    width:15vw;
    transform: translateY(-60%);
  }
}

/* 共通 */

.h2_ttl {
  font-size: clamp(40px, 7vw, 80px);
  margin: auto auto .4em;
  letter-spacing: 0.02em;
}
.h3_ttl {
  font-size: clamp(40px, 6vw, 60px);
  text-align: center;
  padding-top: 50px;
  letter-spacing: 0.02em;
}
@media screen and (min-width:768px) {
  .h3_ttl {
    padding-top: 150px;
  }
}
.gradation01 {
  display: inline-block;
  background: linear-gradient(90deg, #ee7828, #efaa87, #ed9e2c);
  background-size: 100% 100%;
  background-clip: text; 
  -webkit-background-clip: text; /* 背景を文字の形に切り抜く */
  color: transparent; /* フォールバック */
  -webkit-text-fill-color: transparent; /* 文字塗りを透明にする */
}
.gray {
  color:#666;
}

/* 表示アニメーション */
.show {
  opacity : 0;
  transform : translate(0, 20px);
  transition : all 1s ease;
}
.showUp{
  opacity : 1;
  transform : translate(0, 0);
}

/* ----- HEADER ----- */

.header__wrap {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  background: #ffffffd1;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); /* Safari */
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 1px 10px rgba(93, 51, 0, 0.03);
  border-bottom: 1px solid #f3ebdf;
}
.header__wrap.visible {
  opacity: 1;
  pointer-events: auto;
}
.header_logo {
  display: block;
  width: 90px;
  height: auto;
}
@media screen and (min-width:768px){
  .header_logo {
    width: 120px;
  }
}
.header_logo img{
  width:100%;
  height: auto;
  padding-bottom:17px;
}

.hamburger{
  position:fixed;
  top:0;
  right:0;
  z-index: 100;
}
.header__menuIcon {
  position: absolute;
  top: 25px;
  right: 0;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  width: 37px;
  height: 30px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .header__menuIcon{
    top: 37px;
  }
}
.header__menuIcon span {
  display: block;
  position: absolute;
  left: 10px;
  background: #fff;
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  transition: all 0.5s ease;
}
.header__menuIcon span.active {
  background-color: #ea5514; /* スクロール後はオレンジ */
}
.header__menuIcon.open span {
  background: #FFFFFF;
}
.header__menuIcon span:nth-of-type(1) {
  top: 7px;
}
.header__menuIcon span:nth-of-type(2) {
  top: 15px;
}
.header__menuIcon span:nth-of-type(3) {
  top: 23px;
}
.header__menuIcon.open span:nth-of-type(1) {
  top: 18px;
  transform: rotate(45deg);
}
.header__menuIcon.open span:nth-of-type(2) { opacity: 0; }
.header__menuIcon.open span:nth-of-type(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.header__menuBox {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  min-width: 600px;
  height: 100%;
  min-height: 100vh;
  padding: 0 5vw;
  color: #FFFFFF;
  background-color: #ea5514;
  transition: .3s;
  pointer-events: none;
  box-shadow: -1px 4px 20px rgba(0, 0, 0, 0.2); 

  /* スライドイン */
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transform: translateX(110%) translateZ(0);
  -webkit-transition: -webkit-transform 500ms 0s ease;
  transition: -webkit-transform 500ms 0s ease;
  transition: transform 500ms 0s ease;
  transition: transform 500ms 0s ease,
  -webkit-transform 500ms 0s ease;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
}
.header__menuBox.open {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  overflow-x: hidden;
  pointer-events: auto;
}
.header__menuBoxWrap {
  margin-top: 50px;
}
.header__menuLink li {
  margin-bottom: 40px;
}
.header__menuLink li span {
  color:#fff;
}
.header__menuLink .text-en{
  font-size: clamp(16px, 1.3vw, 24px);
  margin-right: 12px;
}
.header__menuLink .text-ja{
  font-size: clamp(11px, 0.9vw, 14px);
}
.list_product {
  justify-content: space-between;
  margin-top: 10px;
}
.list_product .item_product{
  width:30%;
  margin-bottom: 10px;
}
.item_product figure{
  width:100%;
  height: 230px;
  overflow: hidden;
  border-radius: 18px;  
}
.item_product figure img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center 88%;
  transform: scale(1.3);
}
.item_product figcaption {
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 1.4em;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .header__wrap {
    height: 50px;
  }
  .header__logo {
    width: 116px;
  }
  .header__menuIcon {
    right: -10px;
  }

  .header__menuBox {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 90%;
    width:90%;
    height: auto;
    min-height: 65vh;
    padding: 0;
    border-radius: 0 0 0 40px;
  }
  .header__menuBoxWrap {
    margin-top: 60px;
    padding-bottom: 40px;
  }
  .header__menuLink {
    width: 85%;
    margin: auto;
  }
  .header__menuLink li {
    margin-bottom: 20px;
  }
  .list_product .item_product {
    margin-bottom: 0;
  }
  .item_product figure{
    height: 33vw;
  }
  .item_product figure img{
  object-position: center bottom;
  }
  .item_product figcaption {
    margin-top: 10px;
    letter-spacing: 0.05em;
  }
}

/* ----- MAIN ----- */
main{
  overflow: hidden;
}
.width_900{
  width:90vw;
  margin: auto;
}
@media (min-width: 768px){
  .width_900{
    width:80vw;
  }
}
@media (min-width: 1000px){
  .width_900{
    width:900px;
  }
}

/* 背景固定 */
.bg_attachment_inner {
  clip-path: inset(0);
}
.bg_attachment {
  background-image: url(../images/bg_colorwater.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
}

/* LINE UP */ 

.contents_line-up {
  text-align: center;
  padding: 100px 0;
}
.contents_line-up .gray {
  line-height: 2em;
  font-size:clamp(13px, 2vw, 18px);
  margin: 0 auto 4em;
}

.lu_list_product {
  justify-content: space-between;
  gap: 20px 0;
}
.lu_item_product {
  width:47%;
  margin: 0 auto;
  border-radius: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.lu_item_product a {
  display: inline-block;
  height: 100%;
  width: 100%;
  background-color: #fff;
  padding: 0 0 20px;
  transition: 0.3s ease;  
}
.lu_item_product a:hover {
  transition: 0.3s ease; 
}
.or a:hover {
  background-color: #feefd8;
}
.yl a:hover {
  background-color: #fffbdc;
}
.gr a:hover {
  background-color: #f2f7e2;
}

.lu_product_ttl {
  padding: 0 0 6%;
  height: 60px;
}
.fragrance_name {
  font-size:13px;
  color:#fff;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  margin-bottom: 0.4em;
  padding-top: 1.2em;
}
.lu_product_name {
  font-size:10px;
  color:#fff;
  letter-spacing: 0;
  line-height: 1.2em;
}
.lu_item_product figure {
  width:36%;
  margin: 20px auto 0;
  transition: transform 0.3s ease;
  transform-origin: 50% 90%; 
}
.lu_item_product figure img{
  width:100%;
  height:100%;
  object-fit: contain;
}
.lu_item_product a:hover figure {
  transform: scale(1.04);
}
.icon_sent {
  width:60%;
  margin: auto;
}
.lu_item_product .btn {
  width:80%;
  color:#fff;
  border-radius: 30px;
  font-size: 12px;
  line-height: 2.4em;
  margin: auto;
  padding: 0.1em 0 0 0.6em;
  position:relative;
}
.lu_item_product .btn:after {
  content:"";
  display: inline-block;
  width:0.7em;
  height:0.7em;
  background-image: url(../images/arw_wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0.1em 0 0 0.5em;
  transition: transform 0.3s ease;
}
.lu_item_product a:hover .btn:after {
  transform: translateX(0.25em);
}

.or {
  border:solid 2px #ea5514;
}
.or .lu_product_ttl, .or .btn  {
  background: #ea5514;
}

.yl {
  border:solid 2px #fac02c;
}
.yl .lu_product_ttl, .yl .btn  {
  background: #fac02c;
}

.gr {
  border:solid 2px #27c2ab;
}
.gr .lu_product_ttl, .gr .btn  {
  background: #27c2ab;
}
.bg_wave_or {
  width:100%;
  margin-bottom: -1px;
}


@media screen and (min-width:768px){
  .contents_line-up {
    padding: 200px 0 280px;
  }
  .lu_item_product {
    width:31%;
    border-radius: 70px;
  }
  .lu_product_ttl {
    padding: 10% 0 8%;
    height: auto;
  }
  .fragrance_name {
    font-size:21px;
    padding-top:0;
  }
  .lu_product_name {
    font-size:13px;
  }
  .lu_item_product figure {
    width:50%;
    margin: 50px auto 0;
  }
  .lu_item_product .btn {
    width:60%;
    font-size: 16px;
  }
  .lu_item_product a {
    padding: 0 0 30px; 
  }
}

/* TOPICS */

.topics-list {
  text-align: center;
}
.contents_topics{
  text-align: center;
  padding-top: 50px;
}
.wrap_list_topics {
  width: 80vw;
  margin: 20px auto 0;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  gap: 20px;
}
.list_topics {
  gap: 10px;
}
.item_topics {
  width:280px;
  text-align: justify;
  letter-spacing: 0.04em;
  margin:auto;
}
.item_topics figure {
  width:100%;
  height:180px;
  margin: 0 0 0.3em 0;
  border-radius: 16px;
  overflow: hidden;
}
.item_topics figure img {
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.date_topics {
  font-size: 10px;
  font-family: "Yu Gothic Medium", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}
.ttl_topics {
  font-size:13px;
  margin-bottom: 0.5em;
  letter-spacing: 0.04em;
  overflow: hidden;
  line-height: 1.5em;
}
.bg_gradation_wh {
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

@media screen and (min-width:768px){
  .wrap_list_topics {
    width: 600px;
    margin: 50px auto 0;
    gap: 20px;
  }
  .contents_topics{
    padding-top: 100px;
  }
  .list_topics {
   gap: 30px;
  }
  .item_topics {
    margin:0;
  }
  .item_topics a:hover figure img {
   transform: scale(1.05);
  }
  .bg_gradation_wh {
    height: 300px;
  }
}
@media screen and (min-width:1000px){
  .wrap_list_topics {
    width: 900px;
    justify-content:space-between;
  }
}


/* ----- FOOTER ----- */
.wrap_links {
  flex-wrap: wrap;
}
.wrap_links a, .followme {
  width:100%;
  height:100%;
  font-size: 0;
  color:transparent;
  display: block;
  background-size: contain; 
  background-position: center center;
  background-repeat: no-repeat;
}
.links_online, .links_sns {
  width:100%;
  padding: 0 50px;
}
.links_online a {
  background-image: url(../images/link_online_bgor.svg);
  height: 325px;
  position: relative;
  width: 96%;
  margin: auto;
  display: block;
  transition: width 0.3s ease;
}
.links_online a::after {
  content: "";
  display: block;
  background-image: url(../images/link_online.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 90%;
  height: 200px;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none; 
}
.links_online:hover a {
  width: 100%;
  transition: width 0.3s ease;
}

.links_sns ul {
  justify-content: space-around;
  gap:20px;
  padding: 0;
}
.followme {
  background-image: url(../images/follw_me.svg);
  height: 42px;
  margin: 30px auto;
}
.icon_sns{
  width:42px;
  height:42px;
  transition: 0.3s ease; 
}
.icon_sns:hover {
  opacity: .5;
  transition: 0.3s ease; 
}
.links_sns .insta a {
  background-image: url(../images/icon_insta.svg);
}
.links_sns .X a {
  background-image: url(../images/icon_X.svg);
  width: 85%;
  margin: auto;
}
.links_sns .facebook a {
  background-image: url(../images/icon_facebook.svg);
}
.links_sns .line a {
  background-image: url(../images/icon_line.svg);
}

.logo_area {
  background-image: url(../images/bg_footer.png);
  background-repeat:no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 100px 0 0;
  margin: 70px auto 0;
}
.ft_logo {
  width:130px;
  height:auto;
  margin: 200px auto;
}
.ft_logo img {
  width:100%;
  height:auto;
  object-fit: cover;
}
.copyright {
  text-align: center;
  padding: 0 0 30px;
  font-size: 11px;
}

@media (min-width: 768px){
  .wrap_links {
    margin-top:50px;
    flex-wrap: nowrap;
  }
  .links_online, .links_sns {
    width:50%;
    padding: 20px;
  }
  .links_online a::after {
  width: 300px;
  top: 50%;
}
  .links_sns ul {
    padding: 0 80px;
  }
  .followme {
    height:60px;
    margin: 50px auto;
  }
  .icon_sns{
    width:50px;
    height:50px;
  }
  .ft_logo {
    width:230px;
  }
  .copyright {
    font-size: 14px;
  }
}

/* 404 page */

.error404 .sec_ttl {
  margin-top: 100px;
  text-align: center;
}