@charset "UTF-8";

/*-----------------------------------------------------	*/
/*	基本設定					                         */
/*-----------------------------------------------------	*/

html {
  -webkit-overflow-scrolling: touch; /* iosバグ回避　スマホスクロールスムーズにする */
  scroll-behavior: smooth; /* スムーススクロール */
    scrollbar-gutter: stable;
      /* 日本語禁則処理 */
  line-break: strict;
  /* 日本語の自然改行 */
  word-break: normal;
  /* はみ出し防止 */
  overflow-wrap: break-word;
}

body {
  background: #cac0b0;
  font-family: "Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;  
  margin: 0px;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8em;
  letter-spacing: 0.25em;
  color: #333333;
  font-feature-settings:"palt";
  background: white;
    overflow-x: hidden;
}

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隙間除去 文字間を通常に戻す */
}

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以下で画像周りの青い線を非表示 */
}

*, *: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;
}

/* 改行 */
.sp-br {
 display: none !important;   
}

.br480 {
    display: none !important;  
}

@media screen and (max-width: 767px) {
    .pc-br {
        display: none !important;   
    }  
    .sp-br {
        display: inline !important;   
    }
}

@media screen and (max-width: 480px) {
    .br480 {
        display: inline !important; 
    }    
}

/* 改行させない */
.nowrap{
  white-space: nowrap;
}

/* 中央揃え */
.text-align-out {
    text-align: center;
}

/* 文字詰め */
.m-tsume01 {
    display: inline-block;
    margin-left: -0.1em;
}

.m-tsume02 {
    display: inline-block;
    margin-left: -0.2em;
}

.m-tsume03 {
    display: inline-block;
    margin-left: -0.3em;
}

/* 表示・非表示 */
.sp-display {
    display: none;
}

@media screen and (max-width: 767px) {
    .sp-hide {
        display: none !important;
    }
    
    .sp-display {
        display: inline !important;
    }
}

/* メニュー */
#side-menu-out {
    text-align: center;
}

#side-menu-out nav ul.main {
    display: block;
}

#side-menu-out nav ul.main li {
    text-align: left;
}

#side-menu-out nav ul.main li .symbol {
    color: white;
    margin-right: 3px;
}

#side-menu-out nav.show ul.main li p {
    text-indent: -1.5em;
    padding-left: 1.5em;
}

#sp-menu-logo {
    position: absolute;
    max-width: 180px;
    top: 43px;
    left: 30px;
    z-index: 99;
}

.menu-btn {
  width: 60px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}
    
#menu-close-text {
    position: absolute;
    left: -125px;
    top: 16px;
    display: none;
    font-family: "Libre Baskerville", "Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.2em;
    color: #4d4d4d;
}

/* 丸 */
.menu-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #4d4d4d;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s;
}

/* 線 */
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 58px;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: 0.4s;
}
    
.menu-btn.active span {
    background: #4d4d4d;
    width: 22px;
}
    
.menu-btn.active #menu-close-text {
    display: block;
    font-size: 1.6em;
}

/* 3本線 */
.menu-btn span:nth-child(1) { top: 12px; }
.menu-btn span:nth-child(2) { top: 29px; }
.menu-btn span:nth-child(3) { top: 46px; }

/* --- アクティブ時 --- */
.menu-btn.active::before {
  opacity: 1;
  transform: scale(1);
}

/* 上の線 → ／ */
.menu-btn.active span:nth-child(1) {
  top: 29px;
  transform: translateX(-50%) rotate(45deg);
}

/* 真ん中消す */
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

/* 下の線 → ＼ */
.menu-btn.active span:nth-child(3) {
  top: 29px;
  transform: translateX(-50%) rotate(-45deg);
}  

@media screen and (max-width: 480px) {
    #sp-menu-logo {
        max-width: 100px;
        top: 25px;
        left: 20px;
    }    
}

/* sns */
#menu-sns-out {
    display: inline-block;
    margin-top: 70px;
}

#menu-sns-out li {
    float: left;
}

/* 個人情報保護方針 */
#menu-copyright {
    position: relative;
    left: -40px;
    font-size: 1.4rem;
    margin-top: 0px;
}

#menu-copyright li {
    margin-bottom: 5px;
}

#menu-copyright li a {
    font-size: 0.8em;
    font-weight: normal;
    line-height: 1.3em;
}

#menu-copyright .sp-link {
    display: none;
}


@media screen and (max-width: 767px) {
    .overlay ul {
        margin-top: 40px;
    }
    
    .overlay #overlay-right {
        padding-right: 30px !important;
    }
    
    .overlay ul li {
        text-align: right;
    }
    
    .overlay ul li a {
        font-size: 0.9em !important;
    }
    
    #menu-copyright {
        font-size: 90% !important;
    }
    
    #menu-copyright a {
        letter-spacing: 0.03em !important;
    }
    
    #menu-copyright .sp-link {
        display: block;
    }
    
    #menu-copyright .pc-link {
        display: none;
    }
    
    #menu-copyright li {
        line-height: 1.2em !important;
    }
    
    .overlay .header-logo {
        background: url(../images/common/header-menu-logo-sp.png) no-repeat top left;
        background-size: contain;
    }
}

@media screen and (max-width: 340px) {
    #menu-copyright .sp-link {
        margin-bottom: 0px;
    }
    
    #menu-copyright li a {
        font-size: 0.7em !important;
    }   
}

/* サイドナビ */
#side-navi-out {
    display: none;
    position: fixed;
    top: 40%;
    left: 30px;
}    
    
.navi_list {
position: relative;
}
.navi_list li {
    position: relative;
    z-index: 99;
    margin-bottom: 18px;
}
    
.navi_list a {
    display: block;
    color: white;
    text-decoration: none;
    width: 11px;
    height: 11px;
    background: #e6f9ff;
    border-radius: 60px;
    border: 1px solid #8de2ff;
}

#back-line {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 5px;
    height: 100%;
    border-left: 1px solid #8de2ff;;
    z-index: 1;
}
    
.navi_item.now {
    transform: scale(1.25);
}
    
.navi_item.now a {
    background: #8de2ff;
}

/* 中見出し */
.middle-title01 {
    font-family: "Libre Baskerville", "Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    text-align: center;
}

.middle-title01 h2 {
    display: inline-block;
    font-size: 1.2em;
    letter-spacing: 0.22em;
}

@media screen and (max-width: 767px) {  
    .middle-title01 h2 {
        font-size: 0.9em;
    }
}

/* 改行 */
.br767 {
    display: none;
}

.br1100sh {
    display: none;
}

.br1024 {
    display: none;
}

.br500 {
    display: none;
}

.br480s {
    display: none;
}

.br370 {
    display: none;
}

.br350h {
    display: inline;
}

@media screen and (max-width: 1199px) {
    .br1199h {
        display: none;
    }      
}

@media screen and (max-width: 1100px) {
    .br1100sh {
        display: inline;
    }    
}

@media screen and (max-width: 1024px) {
    .br1024 {
        display: inline;
    }    
}

@media screen and (max-width: 767px) {      
    .br767 {
        display: inline;
    }  
    
    .br767h {
        display: none;
    } 
}

@media screen and (max-width: 650px) {
    .br1100sh {
        display: none;
    } 
}

@media screen and (max-width: 600px) {
.br600 {
    display: none;
}
}

@media screen and (max-width: 510px) {
    .br510h {
        display: none;
    }    
}

@media screen and (max-width: 500px) {
    .br500 {
        display: inline;
    }    
}

@media screen and (max-width: 480px) {
    .br480s {
        display: inline;
    }    
}

@media screen and (max-width: 460px) {
    .br460h {
        display: none;   
    }
}

@media screen and (max-width: 415px) {
    .br415h {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .br400h {
        display: none;
    }
}

@media screen and (max-width: 389px) {
    .br389h {
        display: none;
    }
}

@media screen and (max-width: 370px) {
    .br370 {
        display: inline;
    }     
}

@media screen and (max-width: 350px) {
    .br350h {
        display: none;
    }    
}

@media screen and (max-width: 350px) {
    .br340h {
        display: none;
    }     
}

/* 字間 小さめ */
.letter-space-s {
   letter-spacing: 0.04em !important; 
}

/*　文字サイズ */
.font-s {
    font-size: 70%;
}

/* マージン設定 */
.mt0 {
    margin-top: 0px !important; 
}

.mb0 {
    margin-bottom: 0px !important; 
}

.mt10 {
   margin-top: 10px !important;  
}

/* ブロックレベル要素 */
.dispaly-block {
    display: block;
}

/* youtubeレスポンシブ */
.youtube-out {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube-out iframe {
  width: 100%;
  height: 100%;
}

.br767sp {
    display: none;
}

.br1100tb {
    display: none;
}

@media screen and (max-width: 1480px) {
    .br1480 {
        display: none;
    }
}

@media screen and (max-width: 1199px) {
    .br1199h {
        display: none;
    }    
}

@media screen and (max-width: 1100px) {
    .br1100tb {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .br767sp {
        display: inline;
    }
    
    .big-title01-out h2 {
        font-size: 130%;
    }
}


/*-----------------------------------------------------	*/
/*	共通					                               */
/*-----------------------------------------------------	*/

.inline-block {
    display: inline-block;
}

/* 基本リスト01 */
.list01 li {
    font-size:105%;
    padding-left: 2.5em;
    text-indent: -2.5em;
    margin-bottom: 8px;
    line-height: 1.3em;
}


/* 基本リスト02 */
.list02 li {
    padding-left: 2.5em;
    text-indent: -2.5em;
    margin-bottom: 10px;
}

/* 中央揃え */
.align-center {
    text-align: center;   
}

/* 下線 */
.underline01 {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #00a1c2;
    text-decoration-thickness: 2px;
}

/* ヘッダー固定用 
.fixed {
    position: fixed;
    top: 26px;
    width: 100%;
    z-index: 999;
}*/

/* 注意書き */
.cation-text01 {
    display: block;
    font-size: 0.9rem;
}

/*** ヘッダー ***/
#menu-btn-out {
    position: fixed;
    z-index: 10001;
    top: 45px;
    right: 30px;
}

/* メニューボタン 
#trigger-overlay {
    position: absolute;
} */

/* 二本線メニューボタン */
.menu_btn {
	position: relative;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	width: 70px;
	height: 21px;
	transition: all 1s;
}
.menu_btn span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: white;
	transition: all .4s;
}
.menu_btn span:nth-of-type(1) {
	top: 0;
}
.menu_btn span:nth-of-type(2) {
	top: 10px;
}
.menu_btn span:nth-of-type(3) {
	bottom: 0;
}

.menu_btn {
	height: 12px;
}
.menu_btn span:nth-of-type(2) {
	bottom: 0;
	top: auto;
}
.menu_btn.active span {
    background: #859a79;
}

.menu_btn.active span:nth-of-type(1) {
	transform: translateY(6px) rotate(25deg);
}
.menu_btn.active span:nth-of-type(2) {
	transform: translateY(-5px) rotate(-25deg);
}


@media screen and (max-width: 1199px) {
    #menu-btn-out {
        right: 25px;
    }    
    
    .overlay #overlay-left {
        width: 40%;
    }
    
    .overlay #overlay-right {
        width: 60%;
        padding-right: 40px;
    }
}

@media screen and (max-width: 900px) {
    .overlay #overlay-right {
        padding-left: 5vw;
    } 
    
    #menu-copyright {
        position: static;
    }
}

@media screen and (max-width: 767px) {
    #menu-btn-out {
        top: 10px;
        right: 5px;
        transform: scale(0.7);
    }  
    
    .menu-btn.active #menu-close-text {
        font-size: 1.1em;
        left: -85px;
        top: 22px;
    }
    
    /* スマホメニュー未確定　一時スタイル ここから */
    #trigger-overlay {
        right: 20px;
    }
    
    .overlay #overlay-left {
        width: 85px;
        flex: 0 0 85px;
        background: url(../images/common/menu-photo.jpg) no-repeat center right -25vw;
        background-size: cover;
    }
    
    .overlay #overlay-right {
        width: auto;
        padding-left: 10px;
        flex: 1;
    }
    
    .overlay ul {
        margin-top: 130px;
    }
    
    .overlay ul li {
        margin-bottom: 20px;
    }
    
    .overlay nav a {
        font-size: 150% !important;
    }
    
    #menu-copyright {
        font-size: 80%;
        margin-top: 6vw;
    }
    
    #menu-sns-out {
        margin-top: 70px;
    }
}

@media screen and (max-width: 550px) {
    .overlay #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center right -35vw;
        background-size: cover;
    }    
}

@media screen and (max-width: 480px) {
    .menu_btn {
        width: 40px;
    }  
    
    .menu_btn span {
        height: 1px;
    }
    
    .overlay #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center right -38vw;
        background-size: cover;
    }
}

@media screen and (max-width: 420px) {
    .overlay #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center right -44vw;
        background-size: cover;
    } 
    
    .overlay ul li a {
        font-size: 0.8em !important;
        letter-spacing: 0.15em;
    }
    
    .overlay ul li {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 400px) {
    .overlay ul li a {
        font-size: 0.8em !important;
    }    
}

@media screen and (max-width: 380px) {
    .overlay #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center right -45vw;
        background-size: cover;
        width: 65px;
        flex: 0 0 65px;
    } 
    
    .menu-btn.active #menu-close-text {
        font-size: 1em !important;
    }
}

@media screen and (max-width: 350px) {
    .overlay #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center right -65vw;
        background-size: cover;
    }      
}

/*** オーバーレイメニュー上書き ***/
.overlay {
    display: flex;
}

#overlay-left {
    display: block;
    width: 45%;
    background: url(../images/common/menu-photo.jpg) no-repeat top -15vw center;
    background-size: cover;
}

#overlay-right {
    width: 55%;
    display: block;
}

@media screen and (max-width: 1800px) {
    #overlay-left {
        background: url(../images/common/menu-photo.jpg) no-repeat center center;
        background-size: cover;
    }  
}

/* ボタン */
.basic-btn01 {
    text-align: center;
}

.basic-btn01 a {
    color: white;
    font-size: 110%;
    padding: 13px 30px;
    line-height: 1.1em;
    border-radius: 60px;
    text-decoration: none;
    background: #5ebcdd;
    display: inline-block;
}

.basic-btn01 a:hover {
    opacity: 0.9;
}

/*** アニメーション ***/
/* アニメーション用 */
.scroll {
    opacity: 0;
}

/* フェードイン */
@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 fadeUp01 {
   0% {
     opacity: 0;
     transform: translate(0px, 18px);
   }
   100% {
     opacity: 1;
     transform: translate(0);
   }
}

@media screen and (max-width: 1199px) {
    #header-link-menu {
        display: none;
    }
    /*
    #side-menu-btn {
        position: fixed;
    }
    */
}

@media screen and (max-width: 1060px) {
    .inner-width {
        margin-left: 10vw;
        margin-right: 10vw;
    }    
}

@media screen and (max-width: 767px) {  
    .inner-width {
        margin-left: 9vw;
        margin-right: 9vw;
    }
    
    #arax-footer-logo {
        float: none;
        margin-top: 25px;
    }

    #copyright {
        float: none;
        margin-top: 40px;
    }
}

@media screen and (max-width: 500px) {
    #header-inner {
        padding-top: 10px;
        padding-bottom: 12px;
    }
    
    .menu-trigger {
        width: 36px;
        height: 28px;
    }
    
    .menu-trigger span:nth-of-type(2) {
        top: 13px;
    }
}

/*-----------------------------------------------------	*/
/*	トップ			                            　　　　   */
/*-----------------------------------------------------	*/

.wrapper {
    position: relative;
}

#main-contents {
    position: relative;
    z-index: 100;
    margin-top: 100lvh;
}

/* スクロール誘導ライン */
#scroll-line {
    display: block;
    position: absolute;
    top: -40px;
    left: 0px;
    right: 0px;
    z-index: 99;
    margin: auto;
    width: 1px;
    height: 75px;
    background: #333333;
    animation: floatLine 2.5s ease-in-out infinite;
}

/* スクロール誘導ラインアニメ */
@keyframes floatLine {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*** SNS ***/
#sns-out {
    color: white;
}

#sns-out a {
    display: inline-block;
    text-decoration: none;
}

#sns {
    display: inline-block;
    text-align: center;
}

#sns p {
    font-size: 1.15rem;
    letter-spacing: 0.15em;
}

#sns img {
    margin: 0px 10px 0px;
}

.overlay #insta-icon {
    max-width: 36px;
    margin-right: 30px;
}

.overlay #x-icon {
    max-width: 35px;
}

.sns-text {
    color: #808895;
    font-size: 200%;
    margin-top: 34px;
    letter-spacing: 0.08em;
}

#snap-sp {
    display: none;
}

#insta {
    margin-top: 40px;
}

#x-out {
    padding-left: 105px;
}

#x-icon-white {
    max-width: 23px;
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 5px;
    margin-left: 10px;
}

#x-share-btn-out .arrow-icon01 {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 25px;
    max-width: 6px;
    margin: auto;
    vertical-align: middle;
}

/*** フッター ***/
#footer-out {
    position: relative;
    padding-bottom: 2px;
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 50px;
    background: #ede9e4;
}

#footer-logo-sns-out {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 68px;
}

#footer-logo {
    order: 1;
}

#sns-out {
    order: 2;
}
        
#footer-link-out {
    padding: 72px 10px 72px;
}

#footer-link {
    text-align: right;
}

#footer-link-out li {
    display: inline-block;
    margin: 0px 40px;
    vertical-align: middle;
}

#footer-link-out li a {
    color: #000000;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

#footer-bottom-link-out {
    border-top: 1px solid #a7a7a7;
}

#arax-footer-logo {
    margin-top: 30px;
}

#arax-footer-logo img {
    max-width: 244px;
}

#insta-icon {
    max-width: 35px;
} 

#x-icon {
    max-width: 35px;
}

#arax-footer-logo {
    float: left;
}

#copyright {
    float: right;
    margin-top: 45px;
    font-size: 70%;
}

#footer-out video { 
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bodymilk-wrapper #arax-logo {
    fill: #818895;
}

.premium-wrapper #arax-logo {
    fill: #80808c;
}

#arax-logo {
    max-width: 100px;
    vertical-align: middle;
    fill: white;
}

#footer-link {
    margin-top: 20px;
}

#footer-link li {
    display: inline-block;
    margin-left: 40px;
}

#footer-link li a {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #333333;
}

.footer-link-page {
    margin-top: 14px;
}

#footer-link .sp-link {
    display: none;
}
      
#shop {
    display: none !important; /* ※非表示中 表示する場合下記フッターのマージン消すこと */
    max-width: 640px;
    margin: 0px auto;
    text-align: center;
}

/* ※ショップバナー一旦非表示用 */
#footer-logo-sns-out {
    margin-top: 20px;
}

#shop.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 1s;
    animation-fill-mode: forwards;     
}

#footer-shop-ban {
    display: flex;
    gap: 0px 20px;
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    #footer-shop-ban {
        margin-top: 15px;   
    }
    
    #footer-shop-ban {
        gap: 0px 15px;
    }
    
    #footer-link {
        line-height: 1.2em;
    }
    
    #footer-link .pc-link {
        display: none;
    }    
    
    #footer-link .sp-link {
        display: block;
    }
    
    #copy-out {
        margin-top: 30px;
    }
}

@media screen and (max-width: 680px) {
    #shop {
        margin: 0px 20px;
    }
}

@media screen and (max-width: 480px) {
    #footer-out .inner-width1400 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    
    #footer-logo-sns-out {
        display: block;
        margin-top: 20px;
    }
    
    #footer-out #sns img {
        margin: 34px 7px 0px;
    }

    #footer-logo {
        margin-top: 40px;
    }
    
    #footer-link {
        font-size: 0.2em !important;
        line-height: 7em;
    }
}

#copy-out {
    text-align: right;
    margin-top:5px;
    padding-bottom: 60px;
    color: #333333;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

#footer-bottom {
    display: block;
    margin-top: 27px;
    background-size: cover;
}

/* フッターロゴ */
#footer-logo {
    text-align: right;
}

@media screen and (max-width: 1100px) {
    #arax-logo {
        max-width: 80px;
    }
}

@media screen and (max-width: 767px) {
    #footer-out #footer-logo {
        text-align: center;
    }
    
    #footer-out #sns-inner {
        text-align: center;
    }
    
    #footer-out #sns p {
        font-size: 1.1rem;
    }
    
    #footer-out #sns #insta-icon {
        max-width: 33px;
    }
    
    #footer-out #sns #x-icon {
        max-width: 32px;
    }
    
    #footer-link {
        text-align: center;
    }
    
    #footer-link li {
        display: block;
        margin-top: 2px;
        margin-left: 0px;
    }
    
    #footer-link li a {
        font-size: 0.8rem;
    }
    
    #copy-out {
        font-size: 0.7rem;
        text-align: center;
        padding-bottom: 3px;
        margin-top: 20px;
    }
}

/*** 共通 ***/
.inner-width1000 {
    max-width: 1400px;
    margin: 0px auto;   
}

.inner-width1200 {
    max-width: 1200px;
    margin: 0px auto;
}

.inner-width1400 {
    max-width: 1400px;
    margin: 0px auto;
}

@media screen and (max-width:1440px) {
     .inner-width1400 {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    /* フッターのみ */
    #footer-out .inner-width1400 {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media screen and (max-width:1240px) {
    .inner-width1200 {
        margin-left: 20px;
        margin-right: 20px;
    }    
}
    
/*** メインイメージ部分 ***/
#main-img-wrapper {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 1;
    /*
    overflow: hidden;
    */
}

#main-img-out {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

#main-img-logo-out { /* スマホ時画面にロゴを収めたいので枠を追加 */
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100svh; /* 初期画面枠サイズを定義 */
}

.header-logo {
    position: absolute;
    top: 33px;
    left: 30px;
    z-index: 98;
    width: 200px;
    height: 15px;
    background: url(../images/common/header-logo.png) no-repeat top left;
    background-size: contain;
    text-indent: -9999px;
}

.header-logo,
#main-img-logo {
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

.fade-in {
  opacity: 1;
}
#main01::before {
    position: absolute;
    background: url(../images/top/main01.jpg) no-repeat bottom center;
    background-size: cover;
    width: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

#main02::before {
    position: absolute;
    top: 0px;
    background: url(../images/top/main02.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
}

#main-img-logo {
    position: absolute;
    bottom: 76px;
    left: 0px;
    right: 0px;
    z-index: 99;
    max-width: 248px;
    margin: auto;
}

@media screen and (max-width:767px) {
    #main01::before {
        background: url(../images/top/main01-sp.jpg) no-repeat bottom center;
        background-size: cover;
    }

    #main02::before {
        background: url(../images/top/main02-sp.jpg) top center no-repeat;
        background-size: cover;
    }
}

@media screen and (max-width:480px) {
    #main01::before {
        background: url(../images/top/main01-sp.jpg) no-repeat bottom center;
        background-size: cover;
    }

    #main02::before {
        background: url(../images/top/main02-sp.jpg) top center no-repeat;
        background-size: cover;
    }
}


/* スライド本体 */
#main-img-out > .main-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

#main-img-out > .main-slide.active {
    opacity: 1;
    z-index: 2;
}

/* 背景レイヤー */
#main-img-out > .main-slide::before {
    content: "";
    position: absolute;

    /* ← ここが重要（少し大きく敷く） */
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.05);        /* 初期少し大きい */
    transform-origin: center;
    transition: transform 4s linear;
}

/* 表示中にゆっくり縮小 */
#main-img-out > .main-slide.active::before {
    transform: scale(1.0);
}

/* メインイメージアニメーション */
.text-anime span {
  display: inline-block;
  opacity: 0;
    animation-delay: 2s;
  animation: fadeIn 0.6s forwards;
}

@media screen and (max-width:767px) {
    #main-img-logo {
        bottom: 40px;
    }
}

/*** CONCEPT ***/
#concept-out {
    background-color: rgba(0,0,0,0.45);
    color: white;
    padding: 140px 20px 20px;
}

.concept-section {
    position: relative;
    text-align: center;
}

.concept-point-text {
    font-size: 1.4em;
    line-height: 1.6em;
}

.concept-point-text sup {
    font-size: 0.5em;
}

.concept-text-out {
    font-size: 1.2em;
    margin-top: 60px;
    line-height: 1.9em;
    letter-spacing: 0.05em;
}

.concept-text-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.75s;
    animation-fill-mode: forwards;  
}

.concept-text {
    margin-top: 40px;
}

.concept-text sup {
    font-size: 60%;
}

.concept-cation-text {
    text-align: right;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    margin-top: 90px;
    padding-right: 20px;
}

#concept-out .middle-title01.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

@media screen and (max-width:850px) {
    .concept-text {
        font-size: 0.9em;
    }
}

@media screen and (max-width:767px) {
    #concept-out {
        padding: 60px 10px 10px;
    }
    
    .concept-point-text {
        font-size: 1.2em;
    }
    
    .concept-text {
        line-height: 2.1em;
        font-size: 0.7em;
    }
    
    .concept-text sup {
        vertical-align: 3px;
    }
    
    .concept-cation-text {
        font-size: 0.5em;
        bottom: 0px;
        right: 10px;
        padding-right: 10px;
        margin-top: 50px;
    }
}

@media screen and (max-width:767px) {
    .concept-text-out {
        margin-top: 40px;
    }
    
    .concept-text {
        line-height: 2.1em;
        font-size: 0.7em;
    }
}

@media screen and (max-width:480px) {
    .header-logo {
        width: 160px;
        height: 12px;
        top: 32px;
        left: 42px;
    }    
}

@media screen and (max-width:420px) {
    .concept-point-text {
        font-size: 1.1em;
    }
    
    .concept-text {
        font-size: 0.6em;
    }
}

@media screen and (max-width: 380px) {
    .header-logo {
        width: 150px;
        height: 11px;
        top: 30px;
        left: 23px;
    }

    .concept-text {
        font-size: 0.55em;
    }
}

/*** PRODUCT ***/
#product {
    position: relative;
    padding: 120px 0px 140px;
    background: #cac0b0;
}

#product-contents {
    margin-top: 50px;
}

#product-section01 {
    margin-top: 60px;
}

.product-section {
    display: flex;
    margin-top: 130px;
    align-items: center;
}

.product-sub-title {
    font-family: "Libre Baskerville", "Noto Sans JP","游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.2em;
}

.product-sub-title span {
    display: inline-block;
    border-bottom: 1px solid black;
}

#product-section02 .product-text-out {
    padding-left: 8vw;
}

.product-text-out {
    width: 50%;
    padding-left: 18vw;
    padding-right: 1vw;
}

.product-text-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

.product-text {
    margin-top: 30px;
    font-size: 1.5em;
    line-height: 1.7em;
}

.product-sub-text {
    font-size: 1.1em;
    line-height: 1.8em;
    margin-top: 20px;
}

.product-text .big-text {
    font-size: 1.35em;
}

.product-text sup {
    font-size: 70%;
    vertical-align: 6px;
}

.product-photo {
    width: 50%;
}

.product-photo.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;      
}

.product-photo-sp {
    display: none;
}

.product-cation {
    margin-top: 30px;
    font-size: 0.8em;
}

#product-section02 {
    margin-top: 180px;
}

#product-section02 .product-photo {
    order: 1;
}

#product-section02 .product-text-out {
    order: 2;
}

#product-point img {
    position: relative;
    right:-7.5vw;
    max-width: 140px;
    margin-top: 20px;
    margin-left: 14vw;
}

#product-point-sp {
    display: none;
    max-width: 99px;
}

#product-point-out {
    padding: 60px 100px;
    max-width: 1220px;
    margin: 105px auto 0px;
    background: #ede9e4;
    border-top-left-radius: 110px;
    border-bottom-right-radius: 110px;
}

#product-point-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 0.5s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;   
}

#product-point-inner {
    display: flex;
    gap: 0px 5vw;
}

#product-point-section01 {
    width: 50%;
    text-align: center;
}

#product-point-section02 {
    width: 50%;
}

#product-point-section01 img {
    max-width: 85%;
}

#product-point-text {
    margin-top: 10px;
    font-size: 1.4em;
    line-height: 1.5em;
}

#product-point-section03 .product-photo {
    position: relative;
}

#product .middle-title01.active {
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

@media screen and (max-width:1600px) {
    #product-point img {
        right:-5vw;
    }    
}

@media screen and (max-width:1300px) {
    .product-text-out {
        padding-left: 12vw;
    }
    
    #product-section02 .product-text-out {
        padding-left: 4vw;
    }
    
    #product-point img {
        right:-8vw;
    }   
}

@media screen and (max-width:1260px) {
    #product-point-out {
        margin: 105px 30px 0px;
    }
}

@media screen and (max-width:1199px) {
    #product-point-out {
        padding: 60px 50px 60px 10px;
    }
    
    #product-point-inner {
        gap: 0px 2vw;
    }
}

@media screen and (max-width:1024px) {
    #product-point img {
        right:-14vw;
    }     
}

@media screen and (max-width:850px) {
    #product-point img {
        right:-12vw;
    }     
}

@media screen and (max-width:850px) {
    #product-point-out {
        padding: 40px 30px 40px 10px;
    }    
    
    #product-point-inner {
        gap: 0px 1vw;
    }
}

@media screen and (max-width:1024px) {
    .product-text-out {
        padding-left: 3vw;
    }
    
    #product-section02 br {
        display: none;
    }
}

@media screen and (max-width:850px) {
    .product-text {
        font-size: 1.4em;
    }  
}

@media screen and (max-width:767px) {
    #product {
        padding-bottom: 100px;
    }
    
    .product-photo-pc {
        display: none;
    }
    
    .product-photo-sp {
        display: inline;
    }
    
    .product-section {
         flex-direction:column;
        margin-top: 70px !important;
    }
    
    .product-text-out,.product-photo {
        width: 100%;
    }
    
    .product-sub-title {
        font-size: 1em;
        letter-spacing: 0.08em;
    }
    
    .product-photo {
        order: 1;
    }
    
    .product-text {
        font-size: 1.1em; 
    }
    
    .product-cation {
        font-size: 0.7em;
        margin-top: 20px;
    }
    
    .product-sub-text {
        font-size: 0.8em;
        letter-spacing: 0.13em;
    }
    
    .product-text-out {
        order: 2;
        margin-top: 60px;
        margin-left: 3vw;
    }
    
    #product-section01 .product-photo,
    #product-section03 .product-photo
    {
        padding-left: 15vw;
    }
    
    #product-section02 .product-photo {
        padding-right: 9vw;
    }
    
    #product-section02 .product-text-out br {
        display: inline;
    }
    
    #product-point {
        display: none;
    }
    
    #product-section03 .product-photo {
        position: relative;
    }
    
    #product-point-sp {
        display: inline;
        position: absolute;
        bottom: -85px;
        right: 10vw;
        z-index: 4;
    }
    
    #product-point-out {
        padding: 60px 8vw 80px;
        border-radius: 0px 100px 0px 100px;
    }
    
    .product-point-section {
        width: 100% !important;
    }
    
    #product-point-section01 {
        position: relative;
    }
    
    #product-point-section01 img {
        max-width: 85%;
    }
    
    #product-point-inner {
         flex-direction:column;
        gap: 100px 0px;
    }
}

@media screen and (max-width:480px) {
    #product-point-out {
        padding: 45px 6vw 70px;
    }
    
    #product-point-inner {
        gap: 80px 0px;
    }
    
    #product-point-text {
        font-size: 1.2em;
    }
}

@media screen and (max-width:400px) {
    #product-point-out {
        padding: 45px 6vw 60px;
    }    
    
    #product-point-inner {
        gap: 60px 0px;
    }
     
    #product-point-text {
        font-size: 1.1em;
    }
}

@media screen and (max-width:420px) {
    .product-text-out {
        margin-left: 0px;
        padding-right: 10px;
    }
}

@media screen and (max-width:350px) {
    #product-point-text {
        font-size: 1em;
        letter-spacing: 0.1em;
    }
    
}

 /**** こんな人におすすめ ***/
#recommend-out {
    position: relative;
    display: block;
    height: 600px;
    background: url(../images/top/recommend-back.jpg) top center no-repeat;
    background-size: cover;
}

#recommend-title {
    position: absolute;
    top: 5vw;
    left: 25vw;
    z-index: 4;
}

#recommend-title.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;   
}

#recommend-title h2 {
    width: 33px;
    height: 231px;
    background: url(../images/top/recommend-title.png) top center no-repeat;
    background-size: cover;
    text-indent: -9999px;
}

#recomend-list-out {
    position: absolute;
    right: 0px;
    bottom: 80px;
    width: 60vw;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 80px 40px 75px 60px; 
    background: rgba(255,255,255,0.86);
}

#recomend-list-out.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.75s;
    animation-fill-mode: forwards; 
}

#recomend-list > *:first-child {
    margin-top: 0px;
}

#recomend-list li {
    font-size: 1.3em;
    margin-top: 25px;
    letter-spacing: 0.3em;
    text-indent: -1.5em;
    padding-left: 1.5em;
}

#recomend-list li br {
    display: none;
}

.recommend-check-icon {
    max-width: 19px;
    vertical-align: middle;
    margin-right: 15px;
}
           
.wave-underline {
    display: inline;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M0 7 C 10 1, 20 1, 30 7 S 50 13, 60 7 S 80 1, 90 7 S 110 13, 120 7' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round'/></svg>");
    background-repeat: repeat-x;
    background-position: 0 100%;
    background-size: 42px 7px;
    padding-bottom: 5px;
}

@media screen and (max-width:1420px) {
    #recommend-title {
        left: 8vw;
    }
    
    #recomend-list-out {
        width: 84vw;
    }
}

@media screen and (max-width:1024px) {
    #recomend-list li br {
        display: inline;
    }

    #recommend-title {
        left: 15vw;
    }
    
    #recomend-list-out {
        width: 70vw;
    }
    
    #recomend-list li {
        text-indent: -1.5em;
        padding-left: 1.5em;
    }
}

@media screen and (max-width:767px) {
    #recommend-out {
        height: 700px;
        background: url(../images/top/recommend-back-sp.jpg) top left no-repeat;
        background-size: cover;
    }
    
    #recommend-title {
        left: auto;
        top: 40px;
        right: 8vw;
    }    
    
    #recommend-title h2 {
        width: 12vw;
        height: 23.5vw;
        background: url(../images/top/recommend-title-sp.png) top center no-repeat;
        background-size: cover;
    }
    
    #recomend-list-out {
        width: 75vw;
        bottom: 60px;
    }
    
    #recomend-list li {
        font-size: 1.1em;
        text-indent: -1.8em;
        padding-left: 1.8em;
    }
}

@media screen and (max-width:650px) {
    #recomend-list-out {
        width: 90vw;
    } 
}

@media screen and (max-width:600px) {
    #recommend-title {
        top: 60px;
        right: 10vw;
    }        
}

@media screen and (max-width:520px) {
    #recomend-list li {
        font-size: 0.9em;
    }
}

@media screen and (max-width:480px) {
    #recommend-title {
        top:37px;
    }        
    
    #recommend-out {
        height: 550px;
    }    
    
    #recomend-list-out {
        width: 90vw;
        padding: 55px 7px 65px 25px;
    }
    
    #recommend-title h2 {
        width: 51px;
        height: 99px;
        background: url(../images/top/recommend-title-sp.png) top right no-repeat;
        background-size: cover;
    }
    
    #recomend-list li {
        line-height: 1.6em;
        text-indent: -1.6em;
        padding-left: 1.6em;
    }
    
    .recommend-check-icon {
        max-width: 14px;
        margin-right: 12px;
    }
}

@media screen and (max-width:359px) {
    #recomend-list li {
        letter-spacing: 0.1em;   
    }
}

/*** HOW TO USE ***/
#howto {
    padding-top: 115px;
    background: #cac0b0;
}

#howto .middle-title01 {
    text-align: left;
}

#howto-inner {
    position: relative;
    background: url(../images/top/howtouse-back.jpg) top center no-repeat;
    background-size: cover;
    height: 800px;
    color: white;
}
           
#how-to-text-out {
    position: absolute;
    top: 40%;
    left: 40vw;
    z-index: 2;
    margin: auto;
    text-shadow: #444444 1px 0 10px;
}

#how-to-text-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
           
#howto-sub-back {
    position: relative;
    background: url(../images/top/howtouse-sub-back.jpg) bottom center no-repeat;
    background-size: cover;
    height: 650px;
}

#how-to-text {
    font-size: 1.3em;
    margin-top: 29px;
    line-height: 2.2em;
}

#howto-photo01 {
    position: absolute;
    bottom: 5vw;
    left: 18vw;
    z-index: 2;
    max-width: 30vw;
    box-shadow: 10px 13px 33px -16px #5c5c5c;
    border-radius: 0px;
}
           
#howto-photo02 {
    position: absolute;
    top: -5vw;
    left: 54vw;
    z-index: 2;
    max-width: 22vw;
    box-shadow: 10px 13px 33px -16px #5c5c5c;
    border-radius: 0px;
}

#howto-photo01.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;  
}

#howto-photo02.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;  
}

#howto-use-text-sp {
    display: none;
    text-align: center;
    padding: 30px 20px 60px;
}

@media screen and (max-width:1400px) {
    #howto-inner {
        background: url(../images/top/howtouse-back.jpg) top left -15vw no-repeat;
        background-size: cover;
    }
    
    #howto-sub-back {
        height: 35vw;
    }
    
    #howto-photo01 {
        bottom:6vw;
    }
}

@media screen and (max-width:1199px) {
    #howto-inner {
        background: url(../images/top/howtouse-back.jpg) top left no-repeat;
        background-size: cover;
        height: 45vw;
    }
    
    #how-to-text-out {
        padding-right: 20px;
        top: 32%;
    }
    
    #how-to-text {
        font-size: 1.2em;
    }
}

@media screen and (max-width:950px) {
    #howto-sub-back {
        height: 42vw;   
    }
    
     #howto-inner {
        background: url(../images/top/howtouse-back.jpg) top left -10vw no-repeat;
        background-size: cover;
    }
    
    #how-to-text-out {
        left: 30vw;
    }
    
    #howto-photo02 {
        top: -2vw;
    }
}

@media screen and (max-width:950px) {
    #how-to-text-out {
        left: 26vw;
    }
}

@media screen and (max-width:850px) {
    #how-to-text {
        font-size: 1.1em;
    }
}

@media screen and (max-width:767px) {
    #howto-sub-back {
        position: relative;
        background: url(../images/top/howtouse-sub-back-sp.jpg) bottom center no-repeat;
        height: 97vw;
        background-size: cover;
    }
    
    #how-to-text-out {
        top: 50%;
        left: 46vw;   
    }
    
     #howto-inner {
         height: 74vw;
        background: url(../images/top/howtouse-back-sp.jpg) top left no-repeat;
        background-size: cover;
    }    
    
    #how-to-text {
        display: none;
    }
    
    #how-to-text-out {
        left: 40vw;
    }
    
    #howto-use-text-sp {
        display: block;
    }
    
    #howto-photo01 {
        max-width: 51vw;
        left:0px;
        bottom: 7vw;
    }
    
    #howto-photo02 {
        max-width: 41vw;
        top: auto;
        left: auto;
        bottom: 25vw;
        right: 0px;
    }
}

@media screen and (max-width:600px) {
    #howto-sub-back {
        height: 106vw;
    } 
}

@media screen and (max-width:480px) {
    #howto-sub-back {
        height: 108vw;
    }     
    
    #howto-use-text-sp {
        font-size: 0.9em;
        line-height: 1.8em;
        letter-spacing: 0.15em;
    }
    
    #howto-photo01 {
        bottom: 10vw;
    }
    
    #howto-photo02 {
        bottom: 28vw;
    }
}

@media screen and (max-width:420px) {
    #howto-sub-back {
        height: 110vw;
    }
    
    #howto-use-text-sp {
        padding: 20px 10px 40px;
    }
    
    #howto-use-text-sp {
        font-size: 0.85em;
    }
}

@media screen and (max-width:365px) {
    #howto-use-text-sp {
        font-size: 0.8em;
    }    
}

@media screen and (max-width:340px) {
    #howto-use-text-sp {
        font-size: 0.75em;
    }    
}

/*** PRODUCT INFORMATION ***/
#info {
    padding-top: 95px;
    padding-bottom: 80px;
    background: #ede9e4;
}

#information-inner {
    max-width: 1100px;
    margin: 0px auto;
}

#info-title-sp {
    display: none;
}

#info-title-sp h2.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;    
}

#information-text-out {
    text-align: left;
    padding-right: 10px;
}

#info-name {
    font-size: 1.3em;
    font-weight: 700;
    margin-left: 0.6em;
}

#information-text-out .middle-title01 {
    display: inline-block;
}

#product-information {
    display: flex;
    align-items: center;
    gap: 0px 4vw;
    margin-left: 40px;
}

#info-photo {
    width: 40%;
}

#info-photo.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;   
}

#information-text-out.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;   
}

#information-text-out {
    width: 60%;
}

#information-text {
    margin-top: 50px;
}

#info-sub-text {
    margin-top: 40px;
    line-height: 1.6em;
}

#information-text p {
    margin-bottom: 20px;
}

#information-text {
    font-size: 140%;
}

#info-seibun-cation-out {
    margin-top: 60px;
}

.info-seibun-cation-section {
    border-top: 1px solid #808080;
    padding: 30px 10px;
}

#info-seibun-cation-out.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

.info-seibun-cation-section h3 {
    text-align: center;
}

#info-seibun-cation-section02 {
    border-bottom: 1px solid #808080;
}

.info-seibun-cation-text {
    margin-top: 20px;
    letter-spacing: 0.01em;
    font-size: 0.9em;
    line-height: 1.8em;
}

@media screen and (max-width:1199px) {
    #product-information {
        gap: 0px 6vw;
    }
    
    #info-photo {
        width: 36%;
    }
    
    #information-text-out {
        width: 64%;
    }
}

@media screen and (max-width:1140px) {
    #information-inner {
        margin-left: 20px;
        margin-right: 20px;
    }    
}

@media screen and (max-width:1024px) {
    #information-text {
        font-size: 120%;
    }    
}

@media screen and (max-width:980px) {
    #product-information {
        gap: 0px 4vw;
    }
    
    #info-photo {
        width: 32%;
    }
    
    #information-text-out {
        width: 68%;
    }
}

@media screen and (max-width:850px) {
    #information-text {
        font-size: 105%;
    }    
}

@media screen and (max-width:767px) {
    #info {
        padding-top: 70px;
    }
    
    #product-information {
        display: block;
        margin-left: 0px;
    }
    
    #info-photo,#information-text-out {
        width: 100%;
    }
    
    #info-photo {
        text-align: center;
        margin-top: 30px;
    }
    
    #info-photo img {
        max-width: 54vw;
    }
    
    #info-title-pc {
        display: none !important;
    }
    
    #info-title-sp {
        display: block;
    }
    
    #information-text p {
        margin-bottom: 10px;
    }
    
    #information-text {
        margin-left: 3vw;
    }
    
    .info-seibun-cation-section {
        padding: 30px 5px;
    }
    
    .info-seibun-cation-text {
        font-size: 0.8em;
        line-height: 1.8em;
    }
}

@media screen and (max-width:500px) {
    #information-text-out {
        padding-right: 0px;
    }    
    
    #information-text {
        margin-top: 40px;
        margin-left: 20px;
        font-size: 100%;
        letter-spacing: 0.05em;
    }
    
    #information-text p {
        margin-bottom: 0px;
    }
    
    #info-name {
        margin-left: 14px;
    }
    
    #info-sub-text {
        margin-top: 20px;
    }
    
    #info-seibun-cation-out {
        margin-top: 40px;
    }
}

@media screen and (max-width:420px) {
    #information-text {
        margin-left: 10px;
    }
}

@media screen and (max-width:400px) {
    #information-text {
        font-size: 90%;
        margin-left: 5px;
    }
}

/*** Q&A ***/
#qa {
    position: relative;
    background: #cac0b0;
    padding-top: 70px;
    padding-bottom: 70px;
}

#qa-title {
    position: absolute;
    top: 0px;
    z-index: 4;
}

#qa-title.active {
    opacity: 0;
    animation-name: fadeIn02;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;    
}

#qa01.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

#qa02.active {
    opacity: 0;
    animation-name: fadeUp01;
    animation-duration: 1s;
    animation-direction: normal;
    animation-delay: 0.75s;
    animation-fill-mode: forwards;
}

#qa-title h2 {
    width: 27px;
    height: 101px;
    background: url(../images/top/qa-title.png) top center no-repeat;
    background-size: cover;
    text-indent: -9999px;
}

#qa-inner {
    max-width: 1100px;
    margin: 0px auto;
}

#qa-con-out {
    position: relative;
}

.qa-con {
    border-top: 1px solid #808080;
    padding-top: 35px;
    padding-bottom: 35px;
    margin-top: 0px;
    margin-bottom: 0px;
}

#qa02 {
    border-bottom: 1px solid #808080;
}

#qa-con-inner {
    margin-left: 5vw;
}

.qa-con dt {
    font-size: 1.1em;
}

.qa-con dt img {
    vertical-align: middle;
    max-width: 24px;
    margin-right: 20px;
}

.qa-con dd {
    margin-left: 0px;
    font-size: 0.9em;
    margin-left: 43px;
}

.qa-con dd {
    letter-spacing: 0.1em;
}

@media screen and (max-width:1400px) {
    #qa-con-inner {
        margin-left: 8vw;
    }
}

@media screen and (max-width:1199px) {
    #qa-title {
        left: 10px;
    }
    
    #qa-con-inner {
        margin-left: 10vw;
    }
}

@media screen and (max-width:1160px) {
    #qa-inner {
        margin: 0px 20px 0px 30px;
    }
}

@media screen and (max-width:767px) {
    #qa {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    #qa-title {
        top: -100px;
        right: 0px;
        left: auto;
        background: #cac0b0;
        padding: 5px 15px 10px 30px;
    }
    
    #qa-con-inner {
        margin-left: 0px;
    } 
    
    .qa-con {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .qa-con dd {
        font-size: 0.8em;
        line-height: 1.6em;
        margin-top: 5px;
        padding-right: 40px;
    }
}

@media screen and (max-width:480px) {
    #qa {
        padding-top: 130px;
    }    
    
    .qa-con dt {
        font-size: 0.9em;
        letter-spacing: 0.05em;
    }
    
    .qa-con dd {
        font-size: 0.75em;
        margin-left: 35px;
    }
    
    .qa-con dt img {
        max-width: 20px;
        margin-right: 15px;
    }
}
           