@charset "UTF-8";

/*-----------------------------------------------------	*/
/*	基本設定					                         */
/*-----------------------------------------------------	*/

html {
  -webkit-overflow-scrolling: touch; /* iosバグ回避　スマホスクロールスムーズにする */
  scroll-behavior: smooth; /* スムーススクロール */
    touch-action: pan-y;
}

body {
  font-family: "Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  margin: 0px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  font-feature-settings:"palt";
  overflow-x: hidden;
    touch-action: pan-y;
}

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
	letter-spacing: -.40em; /* inline-block隙間除去 文字間を詰めて隙間を削除する */
}

ol {
    list-style-type: none;
    padding: 0px;
    margin: 0px;    
}

ul li {
	list-style-type: none;
	letter-spacing: normal; /* inline-block隙間除去 文字間を通常に戻す */
}

dl dd {
    margin-left: 0px;
}

h1,h2,h3,h4,h5 {
    font-weight: 500;
}

h1,h2,h3,h4,h5,p {
  margin: 0px; /* 初期化 */
}

img {
	width:100%;
	max-width: 100%;
	height: auto;
	vertical-align:bottom; /* img隙間をなくす */
	border: 0px; /* IE10以下で画像周りの青い線を非表示 */
}

a {
    text-decoration: none;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
}

/* テーブル */
table {
    width: 100%;
}

table th {
    font-weight: 400;
}

table th,table td {
    line-height: 1.4em;
}

/* リンク設定
a:link		{ color:#333333; text-decoration: none; }
a:visited	{ color:#333333; }
a:hover		{ color:#5a5758; }
a:active	{ color:#333333; }

 */

/* フォーカスした際に線が入るのを消す処理 */
*:focus {
  outline: none;
}

/* float 解除 Clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* 中央揃え */
.align-center {
    text-align: center;
}

@media screen and (max-width: 767px) {
    body {
      font-size: 70%;
    }   
}

/* マージン設定 */
.mt0 {
    margin-top: 0px !important; 
}

.mb0 {
    margin-bottom: 0px !important; 
}

.mt10 {
   margin-top: 10px !important;  
}

/*** 改行 ***/
.br480 {
    display: none;
}

.br550 {
    display: none;
}

@media screen and (max-width: 767px) {
    .br767hide {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .br550 {
        display: inline;
    }
}

@media screen and (max-width: 480px) {
    .br480 {
        display: inline;
    }
}


/* 字下げ */
.indent-text01 {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

/* ブロックレベル要素 */
.dispaly-block {
    display: block;
}

/* youtubeレスポンシブ */
.youtube-out {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube-out iframe {
  width: 100%;
  height: 100%;
}

.sp-display {
    display: none !important;
}

/* 基本表示・非表示 */
@media screen and (max-width: 767px) {
    .sp-display {
        display: inline !important;
    }    
    
    .sp-hide {
        display: none !important;
    }
}

/*-----------------------------------------------------	*/
/*	共通					                               */
/*-----------------------------------------------------	*/

.inner-width {
    max-width: 1200px;
    margin: 0px auto;
}

.inline-block {
    display: inline-block;
}

/* 注意書き */
.cation-list01 li {
  text-align: left;
    letter-spacing: 0.1em;
/*
  text-indent: -1.7em;
  padding-left: 1.7em;
*/
}


/*** アニメーション ***/
/* スクロールアニメーション用設定 */
.scroll {
    opacity: 0;
    will-change: transform;
  backface-visibility: hidden;
}

.scroll.active {
    opacity: 0;
    will-change: transform;
  backface-visibility: hidden;
}

/* フェードイン */
@keyframes fadeIn {
   0% {
     opacity: 0;
     transform-origin: center;
     transform: translateY(30px) scale(1.1);
   }
   100% {
     transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
     opacity: 1;
   }
}

@keyframes fadeIn02 {
   0% {
     opacity: 0;
   }
   100% {
     transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
     opacity: 1;
   }
}

@keyframes fadeInRotate01 {
   0% {
     opacity: 0;
     transform: rotate(-20deg);
   }
   100% {
     transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
     opacity: 1;
       transform: rotate(0deg);
   }
}

/* フェードアップ */
@keyframes fadeUp01 {
   0% {
     opacity: 0;
     transform: translate(0px, 18px);
   }
   100% {
     opacity: 1;
     transform: translate(0);
   }
}

@keyframes fadeUp02 {
   0% {
     opacity: 0;
     transform: translate(0px, 60px);
   }
   100% {
     opacity: 1;
     transform: translate(0);
   }
}

@keyframes fadeUp03 {
   0% {
     opacity: 0;
     transform: translate(0px, 60px);
     transform: scale(1.6);
   }
   100% {
     opacity: 1;
     transform: translate(0);
     transform: scale(1);
   }
}

@keyframes fadeUp04 {
   0% {
     opacity: 0;
     transform: translate(0px, 200px);
     transform: scale(0.6);
   }
   25% {
       opacity: 1;
     transform: translate(0px, 100px);
       transform: scale(1.1);
   }
    
   50% {
       opacity: 1;
       transform: scale(0.8);
   }
   100% {
     opacity: 1;
    transform: scale(1.1);
     transform: translate(0);
   }
}

@keyframes fadeUp05 {
   0% {
     opacity: 0;
     transform: translate(0px, 60px);
   }
   100% {
     opacity: 1;
     transform: translate(0);
   }
}


@keyframes fadeUpmain {
   0% {
     opacity: 0;
     transform: translate(0px, 18px);
   }
   100% {
     opacity: 1;
     transform: translate(0);
   }
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes stretch01 {
  0% {
    opacity: 0;
    transform: scaleX(0.2); /* 横に縮む */
  }
  100% {
    opacity: 1;
    transform: scaleX(1); /* 元の幅に伸びる */
  }
}

@keyframes fadeUpScale {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.2);
  }
  100% {
    transform: scale(1);
      opacity: 1;
  }
}

@keyframes zoomInStrong {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
      opacity: 1;
  }
}

@keyframes zoomIn01 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  80% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
      opacity: 1;
  }
}

@keyframes shakeScale {
  0% { transform: scale(1); opacity: 0; }
  25% { transform: scale(1.05) rotate(2deg); opacity: 1;}
  50% { transform: scale(1.05) rotate(-2deg); opacity: 1;}
  75% { transform: scale(1.03) rotate(1deg); opacity: 1;}
  100% { transform: scale(1); opacity: 1;}
}

@keyframes pulse {
  0% { transform: scale(0.2); opacity: 0;}
  50% { transform: scale(1.2); opacity: 1;}
  100% { transform: scale(1); opacity: 1;}
}

@keyframes bounceIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
  70% {
    transform: scale(0.8);
      opacity: 1;
  }
  100% {
    transform: scale(1);
      opacity: 1;
  }
}

@keyframes stretchBounce {
  0% {
    opacity: 0;
    transform: scaleX(1);
  }

  30% {
    opacity: 1;
    transform: scaleX(0.2); /* ギュッと縮む */
  }

  60% {
    opacity: 1;
    transform: scaleX(1.6); /* ビヨーンと伸る */
  }

  80% {
    opacity: 1;
    transform: scaleX(0.8); /* 少し戻る */
  }

  100% {
    opacity: 1;
    transform: scaleX(1); /* 安定 */
  }
}

/* スプレーアニメ */
@keyframes sprayFlow {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate(0px, 0px) scale(1.05);
    -webkit-mask-size: 0% 0%;
  }

  20% {
    opacity: 0.6;
    filter: blur(8px);
    transform: translate(0px, 0px) scale(1.08);
  }

  40% {
    opacity: 0.8;
    filter: blur(5px);
    transform: translate(0px, 0px) scale(1.05);
  }

  60% {
    opacity: 1;
    filter: blur(2px);
    transform: translate(0px, 0px) scale(1.02);
  }

  80% {
    transform: translate(0px, 0px) scale(1);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate(0px, 0px) scale(1);
    -webkit-mask-size: 280% 280%;
  }
}
/* ナビゲーション */
#nav-out {
    /* position: relative; */
    z-index: 1010;
    width: 100px;
    border-left: 3px solid white;
    background: #0b2c80;
    box-sizing: border-box;
    order: 2;
}

#nav-out #nav-link {
    margin-top: 100px;
}

#side-nav-logo {
    text-align: center;
}

#side-nav-logo span {
    display: inline-block;
    width: 47px;
    height: 131px;
    background: url(../images/common/nav-logo.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#side-nav-logo img {
    max-width: 47px;
}

#pc-side-nav #insta-icon {
    max-width: 25px;
    margin: 80px auto 35px;
}

#pc-side-nav #x-icon {
    max-width: 28px;
    margin: 0px auto;
}

#nav-link > *:first-child a {
    height: 122px;
    background: url(../images/common/pc-nav-btn01.jpg) no-repeat;
    background-size: 100px auto;
}

#nav-link > *:first-child+* a {
    height: 124px;
    background: url(../images/common/pc-nav-btn02.jpg) no-repeat;
    background-size: 100px auto;
}

#nav-link > *:first-child+*+* a {
    height: 178px;
    background: url(../images/common/pc-nav-btn03.jpg) no-repeat;
    background-size: 100px auto;
}

#nav-link > *:first-child a:hover {
    height: 122px;
    background: url(../images/common/pc-nav-btn01-hover.jpg) no-repeat;
    background-size: 100px auto;
}

#nav-link > *:first-child+* a:hover {
    background: url(../images/common/pc-nav-btn02-hover.jpg) no-repeat;
    background-size: 100px auto;
}

#side-product-btn.sideactive a {
    background: url(../images/common/pc-nav-btn02-hover.jpg) no-repeat;
    background-size: 100px auto;
}

#nav-link > *:first-child+*+* a:hover {
    background: url(../images/common/pc-nav-btn03-hover.jpg) no-repeat;
    background-size: 100px auto;
}

.online-shop-link {
    display: none !important;
}

/*** フッター ***/
#footer-out {
    margin-top: 320px;
    padding: 0px 60px 25px;
    font-weight: 400;
}

#footer-logo {
    display: inline-block;
    width: 590px;
    height: 204px;
    background: url(../images/common/footer-logo-white.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

.second-product-page {
    overflow-x: hidden;
}

.second-product-page #footer-logo {
    background: url(../images/common/footer-logo-dblue.png) no-repeat;
    background-size: contain; 
}

#footer-sns-link {
    display: flex;
    gap: 0px 50px;
    margin-top: 80px;
}

#footer-sns-link a {
    display: block;
    position: relative;
    z-index: 10;
}

#footer-out #insta-icon {
    max-width: 70px;
}

#footer-out #x-icon {
    max-width: 70px;
}

#footer-link-out .sp-link {
    display: none;
}

#logo-footer-link {
    margin-top: 90px;
    text-align: right;
}

#footer-link-out {
    margin-top: 25px;
}

#footer-link-out li {
    display: inline-block;
}

#footer-link-out > *:first-child+* {
    margin-left: 10px;
}

#footer-link-out li a {
    color: white;
    font-size: 0.9em;
    letter-spacing: 0.3em;
}

.second-product-page #footer-link-out li a {
    color: #0b2c80;
}

#footer-arax-logo {
    display: inline-block;
    width: 120px;
    height: 34px;
    background: url(../images/common/arax-white-logo.png) no-repeat;
    background-size: cover;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%; 
}

.second-product-page #footer-arax-logo {
     background: url(../images/common/arax-dblue-logo.png) no-repeat;
     background-size: cover;
}

#copyright {
    font-size: 1em;
    font-weight: 400;
}

@media screen and (max-width: 1024px) {
    #footer-logo {
        width: 55vw;
        height: 20vw;
    }
    
    #footer-out #insta-icon {
        max-width: 50px;
    }

    #footer-out #x-icon {
        max-width: 50px;
    }
}

@media screen and (max-width: 767px) {
    #footer-out {
        padding: 0px 20px 20px;
        margin-top: 120px;
    }    
    
    #footer-arax-logo-out {
        position: relative;
        top: -50px;
    }
    
    #footer-link-out .pc-link {
        display: none;
    }
    #footer-link-out .sp-link {
        display: inline;
    }
    
    #footer-link-out li {
        display: block;
    }
    
    #footer-sns-link {
        gap: 0px 30px;
        margin-top: 60px;
    }
    
    #copyright {
        font-size: 0.6em;
        margin-top:20px;
    }
    
    #footer-arax-logo {
        width: 82px;
        height: 23px;
    }
    
    #footer-out #insta-icon,#footer-out #x-icon {
        max-width: 31px;
    }
    
    #logo-footer-link {
        margin-top: 20px;
    }
}

@media screen and (max-width: 450px) {    
    #footer-logo {
        width: 90vw;
        height: 35vw;
    }
}
    

/*-----------------------------------------------------	*/
/*	セカンドページ共通			             　　　　   */
/*-----------------------------------------------------	*/

.second-product-page {
    color: #0b2c80;
}

/*** セカンドページPOINT ***/
#second-point-out {
    position: relative;
    text-align: center;
    max-width: 1200px;
    margin: 520px auto 0px;
}

#second-point-out.active {
    animation-name: fadeUpScale;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#second-point-title h2 {
    width: 241px;
    height: 92px;
    display: inline-block;
    background: url(../images/secondcommon/point-title.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#second-point-contents-out {
    position: relative;
    max-width: 920px;
    margin: 140px auto 0px;
}

#second-point-out sup {
    font-size: 60%;
}

.second-point {
    width: 60%;
    position: relative;
    color: white;
    background: #0b2c80;
    text-align: left;
    padding: 30px 40px;
    border-radius: 30px;
    margin-top: 35px;
}

.second-point.active {
    animation-name: fadeUp03;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#second-point03 {
    float: left;
}

#second-point05 {
    float: left;
}

#second-point02,#second-point04 {
    float: right;
}

.second-point dt {
    font-size: 1.4em;
    line-height: 1.7em;
    transform: scaleY(0.9);
}

.second-point dd {
    transform: scaleY(0.9);
    margin-top: 10px;
    font-weight: 400;
    font-size: 95%;
}

#second-point01 img {
    position: absolute;
    top: -27px;
    right: -65px;
    z-index: 3;
    max-width: 132px;
}

#second-point01 ol li {
    text-indent: -1em;
  padding-left: 1em;
}

#second-point02 img {
    position: absolute;
    top: -10px;
    left: -80px;
    z-index: 3;
    max-width: 112px;
}

#second-point03 img {
    position: absolute;
    top: -18px;
    right: -48px;
    z-index: 3;
    max-width: 136px;
}

#second-point04 img {
    position: absolute;
    top: -20px;
    left: -68px;
    z-index: 3;
    max-width: 111px;
}

#second-point05 img {
    position: absolute;
    top: -18px;
    right: -48px;
    z-index: 3;
    max-width: 98px;   
}

#u-deco01,#u-deco02,#u-deco03 {
    max-width: 35px;
}

#u-deco01 {
    position: absolute;
    top: 4%;
    right: 3.5vw;
    z-index: 1;
}

#u-deco02 {
    position: absolute;
    bottom: -155px;
    left: 2vw;
    z-index: 1;
}

#u-deco03 {
    position: absolute;
    top: 27%;
    left: 0px;
    z-index: 1;
}

.u-deco {
    animation: floatY 1.2s ease-in-out infinite;
}

#second-point-cation {
    clear: both;
    font-size: 90%;
    padding-top: 80px;
}

#second-point-cation.active {
    animation-name: fadeIn02;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

/*** PRODUCT OVERVIEW ***/
#second-overview-out {
    max-width: 920px;
    margin: 300px auto 0px;
}

#second-overview-out.active {
    animation-name: zoomInStrong;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards; 
}

#second-overview-title {
    text-align: center;
}

#second-overview-title h2 {
    display: inline-block;
    width: 590px;
    height: 78px;
    background: url(../images/secondcommon/overview-title.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#overview {
    display: flex;
    margin-top: 140px;
}

#overview-photo {
    width: 42%;
    padding-right: 40px;
}

#overview-photo.active {
    animation-name: fadeUp03;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;     
}

#overview-photo img {
    max-width: 353px;
}

#overview-setsumei02 {
    margin-top: 30px;    
}

.overview-setsumei.active {
    animation-name: fadeUp03;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

#overview-setsumei ul li {
    font-size: 0.85em;
}

.info-iyakubgai {
    display: inline-block;
    border: 1px solid #0b2c80;
    padding: 4px 7px 4px;
    line-height: 1.1em;
}

#rakuten-ban {
    display: none; /* 一時的に非表示 */
    margin-top: 40px;
}

#rakuten-ban img {
    max-width: 200px;
}
   
/*** 成分など ***/
#component-con-out {
    margin-top: 80px;
}

#component-con-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 1s;
    animation-fill-mode: forwards;     
}

.component-cation-title {
    position: relative;
    font-size: 1.1em;
    letter-spacing: 0.15em;
}

.component-cation-title:hover {
    cursor: pointer;
}

.open-close-btn {
    position: absolute;
    top: 3px;
    right: 5px;
    margin: auto;
    padding: 10px 0px 10px 10px;
}

.open-close-btn:hover {
    cursor: pointer;
}
 
#component-con-out .open-close-btn .line01 {
    display: block;
    width: 21px;
    height: 3px;
    background-color: #0b2c80;
}

#component-con-out .open-close-btn .line02 {
    display: block;
    width: 21px;
    height: 3px;
    background-color: #0b2c80;
    transform: translate(0px, -80%) rotate(90deg);
    transition: 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

#component-con-out .open-close-btn.active .line02 {
    transform: translate(0px, -80%) rotate(0deg);
    opacity: 0;
}
 
.component-con {
    margin-top: 20px;
    padding: 8px 20px 8px;
    border: 3px solid #0b2c80;
    border-radius: 30px;
}

.component-text {
    font-size: 0.85em;
    font-weight: 400;
    line-height: 1.7em;
    margin-top: 15px;
    padding-bottom: 16px;
}

@media screen and (max-width:1350px) { 
    #u-deco03 {
        left: 10px;
    }
    
    #u-deco02 {
        left: 3.3vw;
    }
}

@media screen and (max-width:1199px) { 
    #second-point-out {
        margin-top: 180px;
    }
    
    #second-point-contents-out {
        max-width: 75vw;
    }
    
    .second-point {
        width: 70%;
    }
}

@media screen and (max-width:1000px) { 
    .second-point {
        width: 80%;
    } 
}

@media screen and (max-width:960px) {
    #second-overview-out {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media screen and (max-width:900px) { 
    .second-point {
        width: 90%;
    }
    
    #second-point-title h2 {
        width: 30vw;
        height: 10vw;
    }
}

@media screen and (max-width:767px) {
    #second-overview-out {
        margin-top: 180px;
    }
    
    #overview {
        display: block;
        margin-top: 60px;
    }
    
    #overview-photo {
        width: 100%;
        padding-right: 0px;
        text-align: center;
    }
    
    #overview-setsumei {
        font-size: 1.4em;
        margin-top: 40px;
        margin-left: 20vw;
    }
    
    #overview-setsumei li {
        margin-bottom: 3px;
    }
    
    #second-point-contents-out {
        max-width: none;
        margin-top: 70px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .second-point {
        width: 80%;
        font-size: 110%;
    }
    
    .second-point dd {
        font-size: 1.2em;
    }
    
    #second-point01 img {
        max-width: 14vw;
        top: 0vw;
        right: -55px;
    }
    
    #second-point02 img {
        left: -55px;
        max-width:12vw;
    }
    
    #second-point03 img {
        right: -25px;
        max-width: 13vw;
    }
    
    #second-point05 img {
        right: -25px;
        max-width: 10.5vw;
    }
    
    #second-point04 img {
        top: -18px;
        left: -40px;
        z-index: 3;
        max-width: 12vw;
    }
    
    #second-point-cation {
        padding-top: 30px;
        font-size: 1.1em;
    }
    
    .component-cation-title {
        font-size: 1.4em;
        padding-bottom: 0px;
    }    
    
    #component-con-out .open-close-btn {
        top: -2px;
        right: 3px;
    }    

    #component-con-out .open-close-btn .line01 {
        width: 13px;
        height: 2px;
    }
    
    #component-con-out .component-con {
        margin-top: 20px;
        padding: 8px 8px 8px 15px;
        border-radius: 24px;
    }

    #component-con-out .open-close-btn .line02 {
        width: 13px;
        height: 2px;
    }
    
    #component-con-out .component-text {
        font-size: 1.05em;
        margin-top: 10px;
        padding-bottom: 5px;
        letter-spacing: 0.05em;
    }
    
    #u-deco01,#u-deco03,#u-deco02 {
        display: none;
    }
}

@media screen and (max-width:650px) { 
     .second-point {
        width: 96%;
    } 
    
    #second-point01 img {
        right: -35px;
    }
    
    #second-point02 img {
        left: -35px;
    }
    
    #second-point04 img {
        left: -30px;
    }
    
    #second-overview-title h2 {
        width: 98%;
        height:30vw;
    }
}

@media screen and (max-width:600px) { 
    #overview-setsumei {
        margin-left: 15vw;
    }
}

@media screen and (max-width:480px) {    
    #overview-setsumei {
        font-size: 1.2em;
        margin-left: 0px;
    } 
    
    #overview-setsumei li {
        margin-bottom: 0px;
    }
    
    #second-point-out {
        margin-top: 120px;   
    }
    
    #second-point-contents-out {
        margin-top: 60px;
    }
    
    #second-point-title h2 {
        width: 38vw;
        height: 16vw;
    }
    
    .second-point {
        width: 94%;
        padding: 15px 40px 15px 20px;
        margin-top: 10px;
        border-radius: 14px;
    }
    
    .second-point dt {
        font-size: 1.1em;
    }
    
    .second-point dd {
        font-size: 1.1em;
    } 
    
    #second-point01 img {
        top: 1vw;
        right: -24px;
        max-width: 62px;
    }
    
    #second-point02 img {
        top: -6px;
        left: -38px;
        max-width: 54px;
    }
    
    #second-point03 img {
        top: -10px;
        right: -15px;
        max-width: 62px;
    }
    
    #second-point04 img {
        top: -10px;
        left: -22px;
        max-width: 52px;
    }
    
    #second-point05 img {
        max-width: 46px;
    }
    
    #second-point-cation {
        padding-top: 25px;
    }
}

/*** Q & A ***/
#qa-out {
    max-width: 920px;
    margin: 260px auto 0px;
}

#qa-out.active {
    animation-name: fadeUpScale;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#second-qa-title {
    text-align: center;
}    
    
#second-qa-title h4 {
    display: inline-block;
    width: 183px;
    height: 78px;
    background: url(../images/secondcommon/qa-title.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
} 
    
#qa-inner {
    margin-top: 120px;
}

.q-contents {
    position: relative;
}

.qa-contents-out {
    margin-top: 25px;
    margin-bottom: 20px;
}

.qa-contents-out.active {
    animation-name: fadeUp02;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.qa-contents {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 1.1em;
    border-radius: 40px;
    color: #0b2c80;
    border: 3px solid #0b2c80;
    background-size: 18px auto;
    padding: 16px 15px 16px 20px;
    cursor: pointer;
}

.qa-contents span {
    display: block;
    padding-left:1.5em;
    text-indent:-1.5em;
    line-height: 1.4em;
}

.q-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%) translateX(-50%);
    max-width: 30px;
    vertical-align: middle;
    margin-right: 15px;
}

.a-icon {
    max-width: 30px;
    vertical-align: -2px;
    margin-right: 15px;
}

.a-contents {
    z-index: 2;
    display: none;
    margin-top: 20px;
}

.q-contents-text {
    padding-right: 35px;
    padding-left: 50px !important;
    text-indent: 0em !important;
}

.a-contents-text {
    font-size: 0.9em;
    border-top: none;
    padding-top: 15px;
    padding-bottom:10px;
}

/* プラスマイナスアイコン */ 
.plus-minus-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) translateX(-50%);
}

.plus-minus-icon:before,.plus-minus-icon:after {
    content: "";
    display: block;
}   

.plus-minus-icon:before,
.plus-minus-icon:after {
background-color: #0b2c80;
position: absolute;
width: 21px;
}

.plus-minus-icon:before {
transform: rotate(90deg);
height: 3px;
}
    
.plus-minus-icon:after {
    height: 3px;
}
    
.qa-contents.active .plus-minus-icon:before {
transform: rotate(180deg);
transition: .2s
}

.qa-contents.active .plus-minus-icon:after {
opacity: 0;
transition: .1s
}

#qa-tablet {
    margin-top: 30px;
    margin-left: 15%;
}

#qa-tablet img {
    max-width: 155px;
}

.qa-sub-text01 {
    margin-top: 10px;
    text-indent: 0em !important;
}

@media screen and (max-width:960px) { 
    #qa-out {
        margin: 260px 20px 0px;
    }
}

@media screen and (max-width: 767px) {
    #qa-out {
        margin-top: 160px;
    }  
    
    .qa-contents {
        border-radius: 30px;
    }
    
    #qa {
        margin-top: 0px;
    }
    
    #qa-inner {
        margin-top: 60px;
    }
    
    .q-contents-text {
        font-size: 1.3em;
        padding-left: 45px !important;
    }
    
    .a-contents {
        margin-top: 10px;
        font-size: 1.2em;
        padding: 0px 0px 12px;
    }
}

@media screen and (max-width: 480px) {
    #qa-out {
        margin-top: 150px;
    }
    
    .qa-contents-out {
        margin-top: 0px;
        margin-bottom: 12px;
    }
    
    #qa-inner {
        margin-top: 50px;
    }
    
    .plus-minus-icon:before, .plus-minus-icon:after {
        width: 14px;
    }
    
    .plus-minus-icon:before {
        height: 2px;
    }
    
    .plus-minus-icon:after {
        height: 2px;
    }
    
    .plus-minus-icon {
        right: 10px;
    }
    
    .qa-contents {
        padding: 10px 15px 12px 5px;
    }
    
    .q-contents-text {
        padding-left: 37px !important;
    }
    
    .a-contents-text {
        padding-left: 10px;
    }
    
    .q-icon {
        max-width: 5vw;
    }
}

@media screen and (max-width: 420px) {   
    #second-qa-title h4 {
        width: 46vw;
        height: 24vw;
    }
}

/*** フッター商品写真 ***/
#footer-photo-img-out {
    max-width: 1620px;
    margin: 440px auto;
}

#footer-photo-img-out.active {
    animation-name: fadeUp03;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#footer-photo-img-out img:hover {
    filter: brightness(0.8);
    transition: 0.5s;
}

@media screen and (max-width: 1760px) {
    #footer-photo-img-out {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media screen and (max-width: 1199px) {
    #footer-photo-img-out {
        margin-top: 280px;
        margin-bottom: 25vw;
    }
}

@media screen and (max-width: 767px) {
    #footer-photo-img-out {
        margin-top:40vw;
        margin-bottom: 210px;
    }
}

/*-----------------------------------------------------	*/
/*	FRAGRANCE SHAMPOO					                */
/*-----------------------------------------------------	*/

#shampoo-page {
    background: #00b9da;
}

#shampoo-page #main-img-title h2 {
    display: inline-block;
    width: 325px;
    height: 90px;
    background: url(../images/shampoo/main-img-title.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    /* アニメーション */
    opacity: 0;
    animation-name: fadeUp02;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#shampoo-page #second-product01 .second-product-text-out {
    order: 2;
}

#shampoo-page #second-product01 #second-product-photo {
    order: 1;
}

#shampoo-page #second-product02 .second-product-text-out {
    order: 1;
}

#shampoo-page #second-product02 #second-product-photo {
    order: 2;
}

#shampoo-page #second-product01-img {
    max-width: 526px;
}

#shampoo-page #second-product-title01 h3 {
    display: block;
    background: url(../images/shampoo/second-product-title01.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    width: 383px;
    height: 182px;
}

#shampoo-page #second-product-title02 h3 {
    display: block;
    background: url(../images/deomist/second-product-title02.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    width: 581px;
    height: 260px;
}

#shampoo-page .second-product-text-out {
    position: relative;
}

#shampoo-page #second-product02 .second-product-photo  {
    position: relative;
    top: 7vw;
    right: 10.5vw;
}

#shampoo-page #second-product02-img {
    max-width: 550px;
}

#shampoo-page #flower01 {
    position: absolute;
    top: 19%;
    left: -90px;
    max-width: 200px;
    z-index: 3;
}

#shampoo-page #flower02 {
    position: absolute;
    right: -60px;
    bottom: 180px;
    max-width: 300px;
    z-index: 3;
}

#shampoo-page #nuts01 {
    max-width: 270px;
    position: absolute;
    right: -8vw;
    bottom: 3vw;
    z-index: 3;
}

#shampoo-page #nuts02 {
    max-width: 224px;
    position: absolute;
    left: -2vw;
    bottom: -11vw;
    z-index: 3;
}

#shampoo-page .cation-list01 {
    clear: both;
    color: white;
}

#second-point04 #honey {
    position: absolute;
    max-width: 170px !important;
    top: auto !important;
    left: auto !important;
    right: -25px !important;
    bottom: -53px !important;
}

#shampoo-page .a-contents-text ol li {
    text-indent: -1em;
    padding-left: 1em;
}

@media screen and (min-width: 768px) {
    #shampoo-page #second-product02 .second-product-text {
        padding-left: 1em;
    }
}

@media screen and (max-width: 1400px) {
    #shampoo-page #second-product01-img {
        max-width: 38vw;
        padding-left: 7vw;
    }
    
    #shampoo-page #second-product02-img {
        max-width: 38vw;
    }
    
    #shampoo-page #flower01 {
        left: -2vw;
    }
    
    #shampoo-page #flower02 {
        bottom: 0px;
    }
    
    #shampoo-page #nuts01 {
        bottom: 1vw;
        right: -10vw;
    }
    
    #shampoo-page #nuts02 {
        bottom: -16vw;
        left: 0px;
    }
}

@media screen and (max-width: 1300px) {
    #shampoo-page #flower01 {
        max-width: 12vw;
        left: 0px;
    }
    
    #shampoo-page #flower02 {
        max-width: 18vw;
    } 
    
    #shampoo-page #second-product02 .second-product-photo {
        top: 15vw;
        right: 14vw;
    }
    
    #shampoo-page #nuts01 {
        max-width: 16vw;
        bottom: 5vw;
        right: -7.5vw;
    }
    
    #shampoo-page #nuts02 {
        max-width: 14vw;
        bottom: -24vw;
    }
}

@media screen and (max-width: 1199px) {
    #shampoo-page #second-point-out {
        margin-top: 350px;   
    }
}
    
@media screen and (max-width: 1100px) {
    #shampoo-page #second-product02 .second-product-photo {
        right: 21vw;
    }
    
    #shampoo-page #nuts02 {
        max-width: 14vw;
        left: 1vw;
    }   
}

@media screen and (max-width: 1024px) {
    #shampoo-page #flower02 {
        bottom: -5vw;
        right: 0px;
    }
}

@media screen and (max-width: 1000px) {
    #shampoo-page #second-product-title02 h3 {
        width: 57vw;
        height: 25.5vw;
    }
}

@media screen and (max-width: 900px) {
    #shampoo-page #flower02 {
        bottom: -9vw;
    }   
}

@media screen and (max-width: 767px) {
    #shampoo-page #second-product-title02 h3 {
        width: 90vw;
        height: 44vw;
        background: url(../images/deomist/second-product-title02.png) top center no-repeat;
        background-size: contain;
    }
    
    #shampoo-page #second-product02 .second-product-photo {
        position: static;
        margin-top: 20vw;
    }
    
    #shampoo-page #second-product01-img {
        padding-left: 0px;
        padding: 0px 8vw;
    }
    
    #shampoo-page #second-product02-img {
        max-width: none;
        max-width: 80vw;
        padding: 0px 7vw;
    }
    
    #shampoo-page #flower01-sp {
        max-width: 26vw;
        position: absolute;
        top: 19vw;
        left: 0px;
        z-index: 3;
    }
    
    #shampoo-page #flower02-sp {
        max-width: 36vw;
        position: absolute;
        bottom: -16vw;
        right: 1vw;
        z-index: 3;
    }
    
    #shampoo-page #nuts01-sp {
        max-width: 28vw;
        position: absolute;
        bottom: -12vw;
        right: 3vw;
        z-index: 3;
    }
    
    #shampoo-page #nuts02-sp {
        max-width: 28vw;
        position: absolute;
        top: 90vw;
        left: 3vw;
        z-index: 3;
    }
    
    .second-product-text .second-product-text-inner {
        margin-left: 0px;
    }
    
    #shampoo-page #second-point-out {
        margin-top: 150px;   
    }
    
    #second-point01 ol {
        margin-top: 5px;
    }
    
    #shampoo-page .cation-list01 {
        color: #0b2c80;
    }
    
    #second-point04 #honey {
    position: absolute;
    max-width: 18vw !important;
    right: -6px !important;
    bottom: -30px !important;
    }
}

@media screen and (max-width: 480px) {
    #shampoo-page #second-product-title01 h3 {
        width: 98%;
        height: 40vw;
        background: url(../images/shampoo/second-product-title01-sp.png) top center no-repeat;
        background-size: contain;
    }
    
    #shampoo-page #second-product-title02 h3 {
        width: 98%;
        height: 50vw;
        background: url(../images/deomist/second-product-title02-sp.png) top center no-repeat;
        background-size: contain;
    }
    
    #shampoo-page #second-product01-img {
        position: relative;
        left: 10px;
    }
    
    #shampoo-page #flower01-sp {
        left: -3vw;
    }
    
    #shampoo-page #flower02-sp {
        max-width: 40vw;
        right: -7vw;
        bottom: -20vw;
    }
    
    #shampoo-page .second-product-text {
        margin-top: 10px;
    }
    
    #shampoo-page #second-product-title02 {
        width: 94vw;
    }
    
    #shampoo-page #second-product-title02 h3 {
        background: url(../images/deomist/second-product-title02-sp.png) bottom center no-repeat;
        background-size: contain;
        height: 44vw;
    }
    
    #shampoo-page #second-product02 {
        margin-top: 120px;
    }
    
    #second-point04 #honey {
        position: absolute;
        max-width: 26vw !important;
        right: -4px !important;
        bottom: -25px !important;
    }
    
    #shampoo-page .cation-list01 {
        padding-top: 35px;
    }
}

/*-----------------------------------------------------	*/
/*	FRAGRANCE DEO MIST					                */
/*-----------------------------------------------------	*/

#deomist-page {
    background: #e6d66e;
}

/* メインイメージ */
#second-main-img {
    position: relative;
}

#main-img-title {
    position: absolute;
    top: 75px;
    left: 85px;
    z-index: 2;
}

#main-img-title h2 {
    display: inline-block;
    width: 325px;
    height: 90px;
    background: url(../images/deomist/main-img-title.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    /* アニメーション */
    opacity: 0;
    animation-name: fadeUp02;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#main-img-title p {
    transform: scaleY(0.9);
    font-size: 1.3em;
    line-height: 2em;
    margin-top: 30px;
    letter-spacing: 0.15em;
    color: white;
    /* アニメーション */
    opacity: 0;
    animation-name: fadeUp02;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

#main-img-title p sup {
    font-size: 65%;
}

@media screen and (max-width: 1199px) {
    #main-img-title {
        top: 30px;
        left: 30px;
        z-index: 2;
    }
    
    #main-img-title p {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    #main-img-title {
        top: 75px;
        left: 20px;
    } 
    
    #main-img-title h2 {
        width: 244px;
        height: 68px;
    }
      
    #main-img-title p {
        font-size: 1.15em;
        margin-top: 10px;
        letter-spacing: 0.12em;
    }
    
    #main-img-title p sup {
        position: relative;
        top: 3px;
    }
}

/* 波 */
#main-wave {
position: absolute;
    bottom: -1px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 2;
}

/*** セカンドページ商品紹介 ***/
#second-product-title01 h3 {
    display: block;
    background: url(../images/deomist/second-product-title01.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    width: 383px;
    height: 182px;
}

#second-product-title02 h3 {
    display: block;
    background: url(../images/deomist/second-product-title02.png) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    width: 581px;
    height: 260px;
}

.second-product-title.active {
    animation-name: fadeUp03;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

#second-product-out {
    max-width: 1200px;
    margin: 180px auto 0px;
}

#second-product01,#second-product02 {
    display: flex;
}

#second-product01 {
    max-width: 1070px;
    margin: auto;
}

#second-product02 {
    max-width: 1150px;
    margin: 250px auto 0px;
}

#second-product02 .second-product-text-out {
    margin-top: 100px;
}

.second-product-text {
    margin-top: 30px;
    font-size: 1.3em;
    line-height: 2.2em;
    transform: scaleY(0.9);
    letter-spacing: 0.1em;
}

.second-product-text.active {
    animation-name: zoomInStrong;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

.second-product.active {
    animation-name: stretch01;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}


.second-product-photo {
    position: relative;
}

#second-product01-img {
    position: relative;
    left: -25px;
    max-width: 553px;
}

#second-product01-img.active,#second-product02-img.active {
    animation-name: fadeUpScale;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards; 
}

#deomist-page #flower01 {
    position: absolute;
    left: -25.5vw;
    bottom: -50px;
    z-index: 1;
    max-width: 380px;
}

#deomist-page #flower02 {
    position: absolute;
    top: 30px;
    right: -140px;
    z-index: 1;
    max-width: 350px;
}

#second-product02 .second-product-text-out {
    order: 2;
}

#second-product02 .second-product-photo {
    order: 1;
}

#deomist-page #nuts01 {
    position: absolute;
    max-width: 260px;
    top: -5vw;
    right: -31vw;
}

#deomist-page #nuts02 {
    position: absolute;
    left: -7.5vw;
    bottom: -10vw;
    max-width: 300px;
}

@media screen and (max-width: 1600px) {
    #deomist-page #nuts01 {
        top: -8vw;
        right: -43vw;
    }
    
    #deomist-page #nuts02 {
        left: -5vw;
        bottom: -5vw;
    }
}

@media screen and (max-width: 1450px) {
    #deomist-page #nuts01 {
        max-width: 16vw;
        top: -3vw;
        right: -40vw;
    }

    #deomist-page #nuts02 {
        max-width: 17vw;
        left: 0px;
        bottom: -6vw;
    }
}

@media screen and (max-width: 1400px) {
    #deomist-page #flower01 {
        left: -38vw;
    }
}

@media screen and (max-width: 1300px) {
    #second-product02 {
        margin-top: 100px;
        margin-left: 30px;
        margin-right: 30px;
        align-items: center;
    }
    
    #second-product01-img {
        max-width: 39vw;
    }
    
    #second-product-img {
        width: 42vw;
    }
    
    #deomist-page #flower01 {
        max-width: 24vw;
        right: -9vw;
    }
    
    #deomist-page #flower02 {
        max-width: 23vw;
        right: -7.5vw;
    }
}

@media screen and (max-width: 1250px) {
    #second-product01 {
        margin-left: 30px;
        margin-right: 30px;
    } 
}

@media screen and (max-width: 1199px) {
    #second-product01-img {
        left: -20px;
    }
    
    #deomist-page #flower01 {
        right: auto;
        left: -40vw;
    }
    
    #deomist-page #nuts01 {
        max-width: 15vw;
        top: -4vw;
        right: -45vw;
    }

    #deomist-page #nuts02 {
        max-width: 14vw;
        left: -1vw;
        bottom: -3vw;
    }
    
}

@media screen and (max-width: 1100px) {
    #second-product01-img {
        max-width: 38vw;
        left: 0px;
    }
    
    #second-product-img {
        width: 38vw;
    }
    
    #second-product02 .second-product-text-out {
        position: relative;
        left: -2vw;
    }
    
    #second-product02 .second-product-photo {
        min-width: 42%;
    }
    
    #deomist-page #flower01 {
        max-width: 22vw;
    }
    
    #deomist-page #flower02 {
        max-width: 21vw;
        right: -8.5vw;
    }
}

@media screen and (max-width: 1024px) {
    #deomist-page #flower01 {
        left: -45vw;
        bottom: -120px;
    }   
    /*
    html, body {
      overflow-x: hidden;
    }
    */
    body {
        position: relative;
    }
    
}



@media screen and (max-width: 1000px) {
    #second-product-title02 h3 {
        width: 57vw;
        height: 25.5vw;
    }
}

@media screen and (max-width: 900px) {
     .second-product-text {
         font-size: 1.15em;
     }
    
    #second-product01-img {
        max-width: 38vw;
        left: -3vw;
    }
    
    #deomist-page #flower02 {
        right: -6.5vw;
    }
}

@media screen and (max-width: 767px) {
    #second-product-out {
        margin-top: 80px;
    }
    
    #second-product02 .second-product-photo {
        min-width: auto;
    }
    
    #second-product-out .second-product {
        display: block;
    }
    
    #second-product-out .second-product-title {
        text-align: center;
    }
    
    #second-product-out .second-product-title h3 {
        display: inline-block;
    }
    
    .second-product-text {
        font-size: 1.4em;
        line-height: 1.8em;
        letter-spacing: 0.08em;
    }
    
    .second-product-text .second-product-text-inner {
        display: inline-block;
        text-align: left;
        margin-left: 5vw;
    }
    
    #second-product-title02 h3 {
        width: 90vw;
        height: 44vw;
        background: url(../images/deomist/second-product-title02.png) top center no-repeat;
        background-size: contain;
    }
    
    .second-product-photo {
        text-align: center !important;
        margin-top: 6vw;
    }
    
    .second-product-photo #second-product01-img,.second-product-photo second-product02-img {
        max-width: 80vw !important;
    }
    
    
    #deomist-page #flower01-sp {
        position: absolute;
        max-width: 21vw;
        top: 8vw;
        left: 1.5vw;
    }
    
    #deomist-page #flower02-sp {
        position: absolute;
        max-width: 32vw;
        bottom: -10vw;
        right: 8.5vw;
    }
    
    #deomist-page #nuts01-sp {
        position: absolute;
        max-width: 26vw;
        bottom: 2vw;
        left: 1vw;
    }
    
    #deomist-page #nuts02-sp {
        position: absolute;
        max-width: 29vw;
        top: -9.5vw;
        right: 1vw;
    }
    
}

@media screen and (max-width: 480px) {
    #second-product-title01 h3 {
        width: 98%;
        height: 40vw;
        background: url(../images/deomist/second-product-title01-sp.png) top center no-repeat;
        background-size: contain;
    }
    
    #second-product-title02 h3 {
        width: 98%;
        height: 50vw;
        background: url(../images/deomist/second-product-title02-sp.png) top center no-repeat;
        background-size: contain;
    }
    
    /*
    .second-product-photo #second-product01-img {
        max-width: 260px !important;
    }
    
    .second-product-photo #second-product02-img {
        max-width: 273px !important;
    }
    */
    
    .second-product-photo #second-product01-img {
        max-width: 100% !important;
    }
    
    .second-product-photo second-product02-img {
        max-width: 90vw !important;
    }
    
    .second-product-text .second-product-text-inner {
        margin-left: 0px;
    }
    
    .second-product-text {
        margin-top: 20px;
    }
    
    #deomist-page #flower01-sp {
        max-width: 26vw;
    }
    
    #deomist-page #flower02-sp {
        max-width: 37vw;
    }
}

@media screen and (max-width: 420px) {
    #deomist-page #flower01-sp {
        max-width: 26vw;
    }
    
    #deomist-page #flower02-sp {
        max-width: 40vw;
        bottom: -18vw;
        right: 0px;
    }
    
    #deomist-page #nuts01-sp {
        position: absolute;
        max-width: 28vw;
        bottom: 3vw;
    }
    
    #deomist-page #nuts02-sp {
        position: absolute;
        max-width: 30vw;
    }
}

/*-----------------------------------------------------	*/
/*	TOP					                               */
/*-----------------------------------------------------	*/
#top-page {
    color: white;
     background: #0b2c80;
}

#fv-out {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  z-index: 1;
  overflow: hidden;
}
#top-page #main-contents {
  position: relative;
  z-index: 2;
  margin-top: 100vh; /* ←これが超重要 */
    background: #0b2c80;
}
/*
#top-page {
    color: white;
     background: #0b2c80;
}

#top-page #main-contents {
    position: relative;
    z-index: 2; 

#top-catch-out {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
  background: #fff; 
}
*/

/* TOPのナビのみ */
#nav-link li {
    min-height: 122px;
}

#nav-link li a {
    display: block;
    width: 100%;
    text-indent: -9999px;
}

#nav-link img {
    -webkit-backface-visibility: hidden;
}

#top-nav-out,#second-warpper {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

#side-contents {
    flex: 1;
    order: 1;
}

#pc-side-nav {
    padding-top: 42px;
}

#pc-side-nav.fixed {
    position: fixed;
      top: 0px;
    right: 0px;
    height: 100vh;
    z-index: 998;    
    width: 97px;
}
#nav-link a {
    color: white;
    width: 100%;
}

#nav-link a span {
    display: block;
    transform: rotate(90deg) translateY(-50%);
    white-space: nowrap;
}

#nav-sns {
    flex-direction:column;
    align-items: center;
    padding-top: 100px; /* 一時的に追加 */
}

#nav-sns li {
    text-align: center;
}

#side-product-btn {
    position: relative;
}

#deomist-page #side-product-hover {
    box-shadow: -3px 0px 15px -5px #4d4d4d;
    background: #e6d66e;
}

#side-product-hover {
    display: none;
    position: absolute;
    top: 0px;
    right: 96px;
    background-size: 100% auto;
    border-right: 4px solid #0b2c80;
    z-index: 997;
}

#side-product-hover li {
    min-height: auto;
}

#side-product-hover a {
    display: block;
    background: none !important;
}

#side-product-hover > *:first-child {
    background: url(../images/common/hover-menu01.jpg) no-repeat;
    background-size: 168px auto;
}

#side-product-hover > *:first-child:hover {
    background: url(../images/common/hover-menu01-hover.jpg) no-repeat;
    background-size: 168px auto;
}

#side-product-hover > *:first-child+* {
    background: url(../images/common/hover-menu02.jpg) no-repeat;
    background-size: 168px auto;
}

#side-product-hover > *:first-child+*:hover {
    background: url(../images/common/hover-menu02-hover.jpg) no-repeat;
    background-size: 168px auto;
}

#side-product-hover a:hover {
    opacity: 0.8;
}

#side-product-hover a {
    display: block;
}

#side-product-hover > *:first-child a {
    width: 163px !important;
    height: 62px;
}

#side-product-hover > *:first-child+* a {
    width: 163px !important;
    height: 62px;
}


@media screen and (max-width: 1024px) {
    #nav-out {
        display: none;   
    }
    #second-warpper {
        display: block;
    }
    
    #side-contents {
        width: 100%;
    }
}

/*** 動画部分 ***/
.fv {
  width:100%;
  aspect-ratio:16 / 9;
  position:relative;
  overflow:hidden;
  background: #0b2c80;
    height: 100vh;
}

.fv video {
  position: absolute;
  /*top: -10vh;  縦位置調整 */
  left: 0px;
  right: 0px;
  top: 0px !important;
  bottom: 0px;
  margin: auto;
  width: 100%;
}
    
/* 音ボタン */
#soundsBtn {
  position: absolute;
  bottom: 30px;
  right: 30px;
    background: none;
    border: none;
    z-index: 99;
    cursor: pointer;
}

#soundsBtn img {
    max-width: 166px;
}

/* 音ON状態 */
.sounds-on-btn {
  display: none;
}

.sound-on .sounds-off-btn {
  display: none;
}

.sound-on .sounds-on-btn {
  display: inline;
}


@media screen and (max-width: 1600px) {
    .fv {
        height: 100%;
    }
    
    .fv video {
        top: 0;
        height: auto;
    }   
}
    
@media screen and (max-width: 1024px) {
    .fv {
      aspect-ratio:auto;
        height: 100svh;
    } 
    
    .fv video {
        width: 100%;
        height: 100svh;
        top: 0px;
        bottom: 0px;
        object-fit: cover;
    }
}
    
@media screen and (max-width: 768px) {
    .fv {
      aspect-ratio:auto;
        width: 100%;
        height: 100svh;
        overflow: hidden;
    }
    
    .fv video {
        width: 100%;
        height: 100svh;
        object-fit: cover;
        top: 0px;
        bottom: 0px;
    }
}

/*** キャッチ ***/
#top-catch-out {
    padding-top: 50px;
    margin: 0px auto 0px;
}

#top-catch-out.active {
    animation-name: zoomInStrong;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

#top-catch-inner {
    display: block;
    position: relative;
    max-width: 1630px;
    margin: 22vw auto 200px;
    height: 564px;
    /*
    background: url(../images/top/uuuu-back01.png) center center no-repeat;
    background-size: contain;
    */
    text-align: center;
}

/* 背景だけ別レイヤー */
#top-catch-inner #top-catch-back {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/top/uuuu-back01.png) center center no-repeat;
    background-size: contain;
    will-change: transform;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
}

#top-catch-back {
  opacity: 0;
  transition: opacity 0.8s ease;
}

#top-catch-back.is-visible {
  opacity: 1;
}

#catch-cation {
    position: absolute;
    bottom: -80px;
    right: -10px;
}

/*
#top-catch-inner #top-catch-back {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/top/uuuu-back01.png) center center no-repeat;
    background-size: contain;
    opacity: 0;
    transform: scale(0.8);
    animation: bgZoomFade 1.8s ease forwards;
}
*/

/* 中身は前面に */
#top-catch-inner > * {
    position: relative;
    z-index: 1;
}

@keyframes bgZoomFade {
    0% {
        opacity: 0;
        transform: translateY(var(--parallax-y, 0px)) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(var(--parallax-y, 0px)) scale(1);
    }
}

#top-catch-out #catch-img {
    position: absolute;
    top: -16vw;
    right: 16vw;
    z-index: 6;
    max-width: 539px;
}

/*
#top-catch #catch-img.active {
    animation-name: stretchBounce;
    animation-duration: 1.1s;
    animation-direction: normal;
    animation-delay: 0.9s;
    animation-fill-mode: forwards;
}
*/

#catch-img {
  opacity: 0;
  will-change: transform;
}

#catch-img.is-visible {
  opacity: 1;
}

#top-catch {
    position: relative;
}

#top-catch #bottle01.active {
    animation-name: fadeUp05;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

#top-catch #bottle02.active {
    animation-name: fadeUp05;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;  
}

#top-catch #bottle03.active {
    animation-name: fadeUp05;
    animation-duration: 0.7s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

#top-catch #bottle04.active {
    animation-name: fadeUp05;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;  
}

#top-catch #bottle01 {
    position: relative;
    bottom: 15.2vw;
    left: 5.8vw;
    max-width: 407px;
    z-index: 1;
}

#top-catch #bottle02 {
    position: relative;
    bottom: 27vw;
    left: 0.5vw;
    max-width: 198px;
    z-index: 2;
}

#top-catch #bottle03 {
    position: relative;
    bottom: 8vw;
    left: 4vw;
    max-width: 260px;
    z-index: 3;
}

#top-catch #bottle04 {
    position: relative;
    bottom: 15.5vw;
    left: 2vw;
    max-width: 447px;
    z-index: 4;
}

/*** コンセプト ***/
#concept-out {
    position: relative;
    font-size: 1.8em;
    padding-top: 300px;
    margin-bottom: 300px;
}

/* スクロールジャンプ用 */
#concept {
    position: absolute;
    top: -12vw;
    display: block;
    height: 5px;
}

@media screen and (max-width: 1199px) {
    #concept {
        top: -18vw;
    }
}

@media screen and (max-width: 767px) {
    #concept {
        top: -25vw;
    }
}

@media screen and (max-width: 480px) {
    #concept {
        top: -40vw;
    }
}

#concept-inner.active {
    animation-name: fadeUp01;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;     
}

#concept-parts-head {
    position: absolute;
    top: 120px;
    right: 23.5vw;
    max-width: 320px;
    z-index: 1;
}

#concept-parts-head.active {
    animation-name: fadeUp02;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;     
}

#left-parts {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 30%;
}

#right-parts {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30%;
}

#concept-parts01 {
    position: absolute;
    top: -200px;
    left: -7vw;
    z-index: 1;
    max-width: 8vw;
}

#concept-parts02 {
    position: absolute;
    top: 80px;
    left: -4vw;
    z-index: 1;
    max-width: 6vw;
}

#concept-parts03 {
    max-width: 11.5vw;
    position: absolute;
    top: 220px;
    left: -26vw;
}

#concept-parts04 {
    max-width: 6vw;
    position: absolute;
    top: 370px;
    left: -9vw;
}

#concept-parts05 {
    position: absolute;
    top:520px;
    left: -13vw;
    max-width: 4vw;
}

#concept-parts06 {
    position: absolute;
    top:840px;
    left: -8vw;
    max-width: 8vw;    
}

#concept-parts07 {
    position: absolute;
    top:-140px;
    right: -11vw;
    max-width: 6vw;  
}

#concept-parts08 {
    position: absolute;
    top:80px;
    right: -5vw;
    max-width: 7vw;
}

#concept-parts09 {
    position: absolute;
    top:280px;
    right: -8vw;
    max-width: 8vw;
}

#concept-parts10 {
    position: absolute;
    top:570px;
    right: -11vw;
    max-width: 7vw;
}

#concept-parts11 {
    position: absolute;
    top:790px;
    right: -7.5vw;
    max-width: 6.5vw;
}

#concept-parts-left {
    position: absolute;
    top: -13vw;
    left: -100px;
    max-width: 485px;
    z-index: 1;
}

#concept-parts-left.active {
    animation-name: zoomInStrong;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;     
}

#concept-parts-left-sp.active {
    animation-name: zoomInStrong;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;     
}

#concept-parts-right {
    position: absolute;
    top: -5vw;
    right: 30px;
    max-width: 293px;
    z-index: 1;
}

#concept-parts-right.active {
     animation-name: zoomInStrong;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;   
}

#concept-parts-right-sp.active {
     animation-name: zoomInStrong;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;   
}

#concept-out #concept-inner {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0px auto;
    line-height: 2em;
    text-align: center;
    letter-spacing: 0.1em;
}

#concept-fukidashi {
    position: relative;
    margin-top: 50px;
    text-align: right;
}

#concept-fukidashi.active {
    animation-name: fadeInRotate01;
    animation-duration: 0.8s;
    animation-direction: normal;
    animation-delay: 0.7s;
    animation-fill-mode: forwards; 
}

#concept-fukidashi img {
    position: relative;
    right: 70px;
}

#concept-fukidashi img {
    max-width: 281px;
}

#concept-text {
    position: relative;
    z-index: 2;
}

.u-bar {
  display: inline-block;
  width: 3em;        /* ← 3文字分くらい */
  height: 0.1em;     /* 線の太さ */
  background: currentColor;
  vertical-align: 9px; 
  margin-left: 5px;
  margin-right: 6px;
}

#concept-text.active {
    animation-name: fadeUp02;
    animation-duration: 1.3s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards; 
}

@media screen and (max-width: 1750px) {
    #catch-cation {
        right: 0px;
    }
}

@media screen and (max-width: 1680px) {
    #catch-cation {
        bottom: -20px;
    } 
    
    #top-catch-out {
       margin: 25vw 25px 60px; 
       padding-top: 200px;
    }
    
    #top-catch-inner {
        margin: 10vw auto 60px;
    }
    
    #top-catch {
        position: relative;
    }
    
    #top-catch-out #catch-img {
        max-width: 36vw;
        right: 13vw;
    }
    
    #top-catch #bottle01 {
        left: 3vw;
        max-width: 28vw;
    }

    #top-catch #bottle02 {
        left: 3vw;
        max-width: 13vw;
    }

    #top-catch #bottle03 {
        max-width: 18vw;
        bottom: 12vw;
    }

    #top-catch #bottle04 {
        left: 1vw;
        max-width: 30vw;
    }
    
    #top-catch {
        top: 5vw;   
    }
}

@media screen and (max-width: 1400px) {
    #concept-parts-right {
            right: -2vw;
    }
    
    #concept-parts-left {
        left: -19vw
    }
    
}

@media screen and (max-width: 1300px) {
    #left-parts {
        left: 8vw;
    }

    #right-parts {
        right:8vw;
    }
    
    #catch-cation {
        bottom: 20px;
    } 
}

@media screen and (max-width: 1024px) {
    #top-catch-out {
       padding-top: 150px;
    }
    
    #left-parts {
        left: 12vw;
    }

    #right-parts {
        right: 12vw;
    }    
    
    #top-catch-out {
        margin-top: 300px;
    }
    
    #concept-out {
        padding-top: 50px;
        margin-bottom: 100px;
    }
    
    #concept-parts-left {
        position: absolute;
        top: -6vw;
        left: -100px;
        max-width: 320px;
    }
    
    #concept-parts-head {
        max-width: 240px;
        top: -100px;
    }
    
    #concept-parts-right {
        position: absolute;
        right: 0px;
        max-width: 230px;
    }
    
    #top-catch {
        top: 12vw;   
    }
}

@media screen and (max-width: 1024px) {
    #top-catch-out {
        margin-top: 200px;
    }
    
    #top-catch #bottle03 {
        bottom: 20vw;
    }
    
    #catch-cation {
        bottom: 70px;
    } 
}

@media screen and (max-width: 850px) {
      #catch-cation {
        bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    #top-catch-inner #top-catch-back {
        margin-left: 0px;
        margin-right: 0px;
    }
    
    #top-catch-out {
       padding-top: 120px;
    } 
    
      #catch-cation {
        bottom: 1.5vw;
    }
    
    .u-bar {
      vertical-align: 5px; 
      margin-left: 2px;
      margin-right: 3px;
    }    

    #left-parts img {
        transform: scale(1.5);
    }

    #right-parts img {
        transform: scale(1.5);
    }    
        
    
    #concept-parts01 {
        top: -50px;
    }

    #concept-parts02 {
        top: 100px;
    }

    #concept-parts03 {
        top: 220px;
        left: -18vw;
    }

    #concept-parts04 {
        top: 300px;
    }

    #concept-parts05 {
        top:400px;
        left: -10vw;
    }

    #concept-parts06 {
        top:500px;
        max-width: 8vw;  
        left: 0px;
    }

    #concept-parts07 {
        top:-100px; 
        right: -18vw;
    }

    #concept-parts08 {
        top:50px;
        right: -2vw;
    }

    #concept-parts09 {
        right: -8vw;
        top: 200px;
    }

    #concept-parts10 {
        top:410px;
        right: -6vw;
        max-width: 7vw;
    }

    #concept-parts11 {
        top:580px;
    }    
    
    
    #top-catch-out {
        margin-top: 100px;
    }
    
    #top-catch-inner {
        height: 45vw;
    }    

    #top-catch-out #catch-img {
        max-width: 36vw;
        right: 16vw;
        top: -18.2vw;
    }    
    
    #top-catch #bottle01 {
        max-width: 22vw;
        left: -0.5vw;
    }

    #top-catch #bottle02 {
        max-width: 11vw;
        left: -2vw;
        bottom: 30vw;
    }

    #top-catch #bottle03 {
        max-width: 14vw;
        left: 5.2vw;
        bottom: 22vw;
    }

    #top-catch #bottle04 {
        max-width: 26vw;
        left:4.5vw;
        bottom: 19vw;
    }
    
    #concept-out {
        font-size: 1.4em;
        margin-bottom: 30px;
    }
    
    #concept-text {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    #concept-parts-head {
        max-width: 28vw;
        top: -11.5vw;
        right: 16vw;
    }
    
    #concept-parts-left-sp {
        position: absolute;
        top: -18vw;
        left: -25vw;
        max-width: 49vw;
        z-index: 1;
    }

    #concept-parts-right-sp {
        position: absolute;
        top: -18vw;
        right: -28vw;
        max-width: 46vw;
        z-index: 1;
    }
    
    #concept-fukidashi {
        margin-top: 0px;
    }
    
    #concept-fukidashi img {
        right: 15vw;
        max-width: 43vw;
    }
}


@media screen and (max-width: 550px) {
    #concept-out {
        margin-top: 100px;
    }    
    
    #top-catch-out {
       padding-top: 120px;
    } 
    
    #catch-cation {
        bottom: 0.5vw;
        bottom: -35px;
    }
    
    #top-catch #bottle01 {
        left: 0px;
    }    
    
    #top-catch-out #catch-img {
        right: 13vw;
    }
}

@media screen and (max-width: 480px) {
    #top-catch-out {
        margin-top: 70px;
        margin-bottom: 10px;
    }
    
    #catch-cation {
        bottom: -70px;
    }
    
    #concept-parts06 {
        top:250px;
    }
    
    #concept-parts05 {
        display: none;
    }
    
    #concept-parts10 {
        display: none;
    } 
    
    #top-catch-inner {
        margin-bottom: 0px;
        height: 40vw;
    }
    
    #concept-parts11 {
        display: none;
    } 
    
    #concept {
        font-size: 1.1em;
        padding-top: 100px;
    }
    
    #concept-text {
        font-size: 1em;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    #concept-parts-head {
        max-width: 38vw;
        top: -4vw;
        right: 2vw;
    }
    
    #concept-fukidashi img {
        right: 13.5vw;
    }
    
    #concept-parts-left-sp {
        top: -25vw;
        left: -27vw;
        max-width: 58vw;
    }

    #concept-parts-right-sp {
        top: -17vw;
        max-width: 48.5vw;
        z-index: 1;
    }
    
    #top-catch #bottle03 {
        bottom: 23vw;
    }
}

@media screen and (max-width: 400px) {
    #concept-text {
        font-size: 0.9em;
    }    
}

@media screen and (max-width: 360px) {
    #concept-text {
        letter-spacing: 0em;
    }
}

/*** プロダクト ***/
#product {
    clear: both;
}

#product-section01 {
    max-width: 830px;
    margin: 0px auto;
}

#product-main-title {
    position: relative;
    min-height: 376px;
    z-index: 5;
}

#product-main-title #product-main-title01 {
    position: absolute;
    left: 9.5vw;
    display: block;
    width: 294px;
    height: 60px;
    background: url(../images/top/product-main-title01.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#product-main-title #product-main-title02 {
    position: absolute;
    top: 95px;
    right: 1vw;
    display: block;
    width: 355px;
    height: 93px;
    background: url(../images/top/product-main-title02.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#product-main-title #product-main-title03 {
    position: absolute;
    display: block;
    top: 208px;
    width: 690px;
    height: 158px;
    background: url(../images/top/product-main-title03.png) top center no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

#product-main-title #product-main-title01.active {
    animation-name: fadeUp03;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

#product-main-title #product-main-title02.active {
    animation-name: fadeUp03;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;  
}

#product-main-title #product-main-title03.active {
    animation-name: stretchBounce;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.9s;
    animation-fill-mode: forwards;  
}

#product-link-out {
    padding-top: 90px;
    max-width: 785px;
    margin: 0px auto;
}

#product-link-out.active {
    animation-name: zoomIn01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;      
}

#product-link-inner {
    display: flex;
    align-items: flex-end;
    gap: 0px 22%;
}

.product-link01-img {
    position: relative;
}

#product-link01-parts {
    position: absolute;
    top: -10px;
    left: -10px;
    max-width: 186px;
    z-index: 2;
}

#product-link02-parts {
    position: absolute;
    top: 20px;
    left: 1.8vw;
    max-width: 250px;
    z-index: 2;
}

#product-link-out .product-link {
    width: 40%;
    flex-grow: 1;
}

#product-link-inner > *:first-child.active {
    animation-name: fadeUpScale;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;      
}

#product-link-inner > *:first-child+*.active {
    animation-name: fadeUpScale;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;      
}

#product-link-out a {
    display: block;
}

.product-link-text {
    font-size: 1.2em;
    letter-spacing: 0.2em;
}

.product-link-text dt {
    font-family: "Jost", sans-serif,"Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.8em;
    line-height: 1.5em;
}

#product-link-title01-img {
    max-width: 158px;
}

#product-link-title02-img {
    max-width: 297px;
}

.product-link-text dd {
    margin-top: 30px;
    font-size: 1.1em;
    transform: scaleY(0.9);
}

.product-link-text {
    color: white;
    text-align: center;
}

#product-section02 {
    position: relative;
    max-width: 1639px;
    margin: 220px auto 0px;
}

@media screen and (max-width: 1679px) {
    #product-section02 {
        margin: 200px 10vw 0px;
    }
}

.top-product {
    position: relative;
}

.top-product.fade-out {
  opacity: 0;
}

.top-product:hover {
    cursor: pointer;
}

#top-product02 .top-product-inner {
    position: relative;
    top: 100px;
}

#top-product02 .top-product-photo-text {
    top: 11.5vw;
}


.top-product-inner {
    transition: opacity 1s ease;
}


.top-product-inner.fade-out {
  opacity: 0;
}

.top-product-inner {
    position: relative;
}

.top-product-photo-text {
    position: absolute;
    top: 4vw;
    left: 11vw;
    z-index: 2;
    font-size: 1.3em;
    letter-spacing: 0.2em;
}

.top-product-photo-text dt {
    color: #0b2c80;
    padding: 12px 25px 15px;
    font-size: 1.7em;
}

.top-product-photo-text dd {
    margin-top: 20px;
    line-height: 1.8em;
    margin-left: 57px;
}

#product-section02 {
  position: relative;
}

.more-detail-icon {
    display: none;
    max-width: 130px;
}

.more-detail-icon {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none; /* マウスイベント邪魔しない */
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
  z-index: 9999;
}

/*
#top-product01 .more-detail-icon {
    position: absolute;
    top: 13.2vw;
    left: 45.2vw;
    margin: auto;
}
*/

#top-product01 .top-product-photo-text dt img {
    max-width: 579px;
}

/*
#top-product02 .more-detail-icon {
    position: absolute;
    bottom: 10vw;
    left: 40vw;
    margin: auto;
}
*/

#top-product02 .top-product-photo-text dt img {
    max-width: 564px;
}

.top-product-photo-text-img {
  max-width: 347px;
}

#top-product01.active {
    animation-name: fadeUp02;
    animation-duration: 1.5s;
    animation-direction: normal;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

#top-product02.active {
    animation-name: fadeUp02;
     animation-duration: 1.5s;
    animation-direction: normal;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

/* スクロール重なり */
#top-product01 {
    position: sticky;
    z-index: 1;
    top: 100px; /* 下まで見えるようにずらす */
}

#top-product02 {
    position: sticky;
    z-index: 2;
    top: 200px;
}

#top-product02 .top-product-img {
    top: 100px;
    padding-bottom: 100px;
}

.top-product-img {
    position: relative;
}

#product-section01 {
    max-width: 830px;
    margin: 0px auto;
}

@media screen and (max-width: 1679px) {
    .more-detail-icon {
        max-width: 10.5vw;
    }
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .top-product-photo-text {
        font-size: 90%;
    }
    
    .top-product-photo-text dt {
        padding: 7px 25px 8px;
    }
}

@media screen and (max-width: 767px) {
    #product-section02 {
        margin: 80px 30px 0px 40px;
    }
    
    #top-product02 {
        margin-top: 60px;
    }
    
    .top-product-photo-text dd {
        margin-left: 8.5vw;
    }
    
    .top-product-photo-text-img {
        max-width: 240px;
    }

    #top-product02 .top-product-inner {
        top: 50px;
    }
    
    #product-link01-parts {
        top: 10px;
        left: 3vw;
        max-width: 22vw;
    }

    #product-link02-parts {
        top: 20px;
        left: 6.5vw;
        max-width: 28vw;
    }
    
    #product-link-title02-img {
        max-width: 35vw;
    }
    
    .top-product-photo-text dd {
        margin-top: 0px;
    }
}


@media screen and (max-width: 480px) {
    .top-product-photo-text dt {
        font-size: 1.45em;
        letter-spacing: 0.08em;
        padding: 7px 20px 9px;
    }
    
    #product-link02-parts {
        position: absolute !important;
        left: 4.5vw !important;
        max-width: 24vw;
    }
    
    .top-product-photo-text dd {
        margin-top: 10px;
    }
}

@media screen and (max-width: 359px) {
    .top-product-photo-text dt {
        font-size: 1.3em;
    }  
    
    .top-product-photo-text dd {
        margin-left: 6vw;
    }
}
    
/*** アニメーションライン ***/
.uuuu-animation-line01 {
    display: block;
    width: 100%;
    height: 291px;
    margin-top: 430px;
    background: url(../images/common/animation-line.png) repeat-x;
    background-size: 2528px auto;
    animation: lineFlow 10s linear infinite;
}

@keyframes lineFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2528px 0;
    }
}

@keyframes lineFlowsp {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -800px 0;
    }
}


@media screen and (max-width: 1600px) {
    #product-main-title #product-main-title01 {
        left: 13vw;
    }
}

@media screen and (max-width: 1400px) {
    #product-main-title #product-main-title01 {
        left: 17vw;
    }
}

@media screen and (max-width: 1199px) {
    .uuuu-animation-line01 {
        margin-top: 220px;
    }
}

@media screen and (max-width: 1000px) {
    #product-main-title #product-main-title01 {
        left: 22vw;
    }
}


@media screen and (max-width: 870px) {
    #product-section01 {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    #product-main-title {
        min-height: 50vw;
    }
    
    #product-main-title #product-main-title01 {
        width: 44vw;
        height: 7vw;
        left: 12vw;
    }
    
    #product-main-title #product-main-title02 {
        width: 56vw;
        height: 13vw;
        top: 11vw;
    }
    
    #product-main-title #product-main-title03 {
        width: 72vw;
        height: 18vw;
        top: 30vw;
        left: 0px;
    }
    
    #product-link-inner {
        display: block;
        padding-top: 0px;
        margin: 0px auto;
    }
    
    #product-link-out {
        padding-top: 20px;
    }
    
    #product-link-out .product-link {
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .product-link p {
        width: 45%;
    }
    
    .product-link-text dd {
        margin-top: 10px;
    }
    
    #product-link02 p {
        order: 2;
    }
    
    #product-link02 .product-link-text {
        order: 1;
    }
    
    #product-link01 .product-link-text {
        text-align: left;
    }
    
    #product-link02 .product-link-text {
        text-align: right;
    }
    
    /*
    .top-product-photo-text {
        position: static;
    }*/
    
    #top-product01 .top-product-photo-text {
        top: -1vw;
    }
    
    #top-product02 .top-product-photo-text {
        top: -1vw;
    }
    
    .top-product-photo-text {
        left: 4.5vw;
    }
    
    .top-product-photo-text dt {
        display: inline-block;
    }
    
    .uuuu-animation-line01 {
        display: block;
        width: 100%;
        height: 92px;
        margin-top: 150px;
        background: url(../images/common/animation-line-sp.png) repeat-x;
        background-size: 800px auto;
        animation: lineFlowsp 8s linear infinite;
    }
    
    .more-detail-icon {
        display: none !important;
    }
    
    #product-link02 p {
        flex-grow: 0;
    }
    
    #product-link02 .product-link-text {
        flex-grow: 1;
    }
    
    .product-link-text dt {
        letter-spacing: 0.05em;
    }
    
    #product-link01 dt {
        width: 19vw;
    }
}

@media screen and (max-width: 480px) {
    #product-section01 {
        margin-left: 15px;
        margin-right: 15px;
    } 
    
    #product-link-out {
        padding-top: 0px;
    }
    
    #product-main-title #product-main-title01 {
        width: 30vw;
        height: 10vw;
        left: 16vw;
    }

    #product-main-title #product-main-title02 {
        width: 60vw;
        height: 11vw;
        right: 0px;
    }
    
.top-product-photo-text-img {
        max-width: 180px;
    }

    #product-main-title #product-main-title03 {
        width: 90vw;
        height: 15vw;
        top: 27vw;
        right: 0px;
        background: url(../images/top/product-main-title03.png) top left no-repeat;
        background-size: contain;
    }
    
    .product-link-text dt {
        font-size: 1.6em;
        line-height: 1.3em;
    }
    
    .product-link-text dd {
        margin-top: 5px;
        font-size: 0.85em;
    }
    
    #product-link02 img {
        position: relative;
        left: -3px;
    }
    
    .top-product-photo-text {
        left: 2.5vw;
    }
}

@media screen and (max-width: 420px) {
    .top-product-photo-text {
        left: 0px;
    }
}

@media screen and (max-width: 380px) {
    .top-product-photo-text {
        left: -2.5vw;
    }
}

@media screen and (max-width: 350px) {
    .product-link-text dt {
        font-size: 1.4em;
    }
    
    .product-link-text dd {
        font-size: 0.7em;
    }
}

/* 左右に傾くアニメ */
.swing01 {
  display: inline-block; /* 回転させるために必要 */
  animation: swing01 1.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes swing01 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing02 {
  display: inline-block; /* 回転させるために必要 */
  animation: swing02 1.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes swing02 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing03 {
  display: inline-block; /* 回転させるために必要 */
  animation: swing03 1.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes swing03 {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(-40deg); }
  100% { transform: rotate(0deg); }
}



.swing04 {
  display: inline-block; /* 回転させるために必要 */
  animation: swing04 1.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes swing04 {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(40deg); }
  100% { transform: rotate(0deg); }
}

@media screen and (max-width: 767px) {
    @keyframes swing03 {
      0%   { transform: scale(1.5) rotate(0deg); }
      50%  { transform: scale(1.5) rotate(40deg); }
      100% { transform: scale(1.5) rotate(0deg); }
    }
    
    @keyframes swing04 {
      0%   { transform: scale(1.5) rotate(0deg); }
      50%  { transform: scale(1.5) rotate(-40deg); }
      100% { transform: scale(1.5) rotate(0deg); }
    }
}
