@charset "utf-8";


/*------------------------------------
リセット
------------------------------------*/
/* すべての要素の余白をリセット */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,figure{
  margin:0;
  padding:0;
  box-sizing: border-box; /*幅の計算を「borderもpaddingも入れてちょうど」にする*/
}

/* リストのスタイルを消す */
ul, ol {
  list-style: none;
}

/* リンクの下線を消す */
a {
  text-decoration: none;
  color: inherit; /* 親の色を引き継ぐ */
}

a:visited, a:hover{
  text-decoration: none;
}

/* 見出しや段落の余白を消す */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-size:100%;
  font-weight:normal;
  line-height: 1.7;
}

/* 罫線をくっつけてセルの隙間をなくす */
table{
    border-collapse:collapse;
    border-spacing:0
}


/*------------------------------------
ヘッダーの大きさを本番環境と合わせるため指定
------------------------------------*/
body{
  font-size: 90%;
}




/*------------------------------------
他ページと共通（※クルクリンから転記）
------------------------------------*/
section#contents {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    margin-top: 5.5rem;
}
.topicpath {
    padding: 5px 0;
    z-index: 80;
    position: relative;
    background: #fff;
    width: 100%;
}
#contents-footer {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 100% !important;
    margin: 0 !important;
}
footer {
    background: #EDE9E4;
    padding-top: 10px;
    position: relative;
    z-index: 20;
}


@media screen and (max-width: 577px)  {
    section#contents {
        width: 100% !important;
        margin-right: auto;
        margin-left: auto;
        padding: 10px 0 0 0;
        margin-top: 3rem;
    }
}



/*------------------------------------
サラヤスマイルズベース
------------------------------------*/

/*フォント
------------------------------------*/
#smiles {
  width: 100%;
  color: #174556;
  background-color: #fff;

  font-family:
  "秀英丸ゴシック B", "Shuei MaruGo B", /* モリサワ */
  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", /* macOS/iOS対応 */
  "メイリオ", "Meiryo",  /* Windows対応 */ 
  "Osaka",  /* 古いMac用 レガシー対応 */
  "ＭＳ Ｐゴシック", "MS PGothic", /* 古いWindows対応（半角スペース注意） */
  sans-serif; /* 最終手段：汎用ゴシック体 */

  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  line-break: strict;
}


/* UD新ゴ */
.font-shingo{ font-family: "UD新ゴ R", "UD Shin Go Regular"; }


/* フォントサイズ */
.font-50{ font-size: 50px; }
.font-40{ font-size: 40px; }
.font-30{ font-size: 30px; }
.font-24{ font-size: 24px; }
.font-20{ font-size: 20px; }
.font-18{ font-size: 18px; }
.font-16{ font-size: 16px; }
.font-14{ font-size: 14px; }


/* カラー */
.font-wh{ color: #fff; }
.font-pink{ color: #E95471; }
.font-brown{ color: #B24A2B; }


/* 行間 */
.line-12{ line-height: 1.2; }
.line-15{ line-height: 1.5; }
.line-19{ line-height: 1.9; }


/* インデント */
.indent{
  text-indent: -1em;
  padding-left: 1em;
}



@media screen and (max-width: 810px) {
  #smiles{
    font-size: 16px;
  }

  /* フォントサイズ */
  .font-50{ font-size: 35px; }
  .font-40{ font-size: 28px; }
  .font-30{ font-size: 24px; }
  .font-24{ font-size: 20px; }
  .font-20{ font-size: 18px; }
  .font-18{ font-size: 16px; }
}



/*画像
-----------------------------------*/
#smiles img{
  max-width: 100%;
  height: auto;
}


/*PCとスマホでの表示・非表示
-----------------------------------*/
.pc-only{ display: block; }
.pc-1400-onwards{ display: none; }
.pc-1280-onwards{ display: none; }
.pc-1280-previous{ display: block; }
.sp-only{ display: none; }
.sp-415-onwards{ display: none; }
.sp-375-onwards{ display: none; }
.sp-360-more{ display: block; }
.sp-810-360{ display: none; }
.sp-320-onwards{ display: none; }

@media (max-width: 1400px){
  .pc-1400-onwards{ display: block; }
}

@media (max-width: 1280px){
  .pc-1280-onwards{ display: block; }
  .pc-1280-previous{ display: none; }
}

@media (max-width: 810px){
  .pc-only{ display: none; }
  .sp-only{ display: block; }
}

@media (max-width: 415px){
  .sp-415-onwards{ display: block; }
}

@media (max-width: 375px){
  .sp-375-onwards{ display: block; }
}

@media (max-width: 360px){
  .sp-360-more{ display: none; }
  .sp-810-360{ display: none; }
}

@media (min-width: 361px) and (max-width: 810px){
  .sp-810-360{ display: block; }
}

@media (max-width: 320px){
  .sp-320-onwards{ display: block; }
}



/* 背景色 
------------------------------------*/
.inner{
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}

/* 背景色 */
.pink-bk .inner{ background: #FFEAED; }
.white-bk .inner{ background: #fff; }

/* 上のセクションのカラー */
.pink-top{ background: #FFEAED; }
.blue-top{ background: #EAF3FB; }
.green-top{ background: #DEEFDE; }

/* 製品紹介の中の背景色 */
.inner-blue-bk{ background: #EAF3FB; }
.inner-green-bk{ background: #DEEFDE; }
.inner-orange-bk{ background: #FFE8D6; }
.inner-pink-bk{ background: #FFEAED; }


@media screen and (max-width: 810px){
  .inner{
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}



/*レイアウト
------------------------------------*/
/* コンテナ */
.smiles-container{
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}


/* PC横並び→スマホ縦並び */
.flex{
  display: flex;
  justify-content: space-between;
}


/* ページ内リンクの遷移先位置調整 */
#shop{
  scroll-margin-top: 50px;
}


@media screen and (max-width: 810px){
  /* PC横並び→スマホ縦並び */
  .flex{
    display: block;
  }
}



/*リンク　デフォルト
------------------------------------*/
#smiles a{
  display: inline-block;
  text-decoration: none;
  color: #174556;
}

/* ホバー */
#smiles a:hover{
  opacity: 0.8;
  color: inherit;
}

#smiles a{
  transition: all .3s;
}

/* ページ内リンクのスクロールを滑らかに */
html{
  scroll-behavior: smooth;
}



/*ピンクボタン
-----------------------------------*/
/* ベース */
.link-btn{
  position: relative;
  top: 0;
  display: block;
  background-color: #fff;
  box-shadow: 0 10px #E95471;
  border: #E95471 3px solid;
  border-radius: 50px;
  text-align: center;
}

.link-btn:active {
  top: 10px; /* 元の位置から10px分下げる */
  box-shadow: 0 0 #E95471; /* 影を0pxにする */
}


/* トップカテゴリ　ボタン */
#brand .link-btn{
  width: 48%;
  padding: 26px 0;
}

#brand .link-btn-icon{
  position: absolute;
  width: 80px;
  top: 50%;
  left: 50px;
  transform: translate(-50%, -50%);
}


/* 製品ラインナップ　ボタン */
.line-up .link-btn{
  width: 100%;
  padding: 20px 30px;
  position: relative;
}

.line-up .link-btn .link-btn-arrow{
  position: absolute;
  width: 15px;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
}


/* ご購入はこちら */
#shop .link-btn{
  width: 100%;
  height: 100px;
  box-shadow: 0 10px #FFE2E6;
  border: #fff 3px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

#shop .link-btn:active {
  top: 10px; /* 元の位置から10px分下げる */
  box-shadow: 0 0 #FFE2E6; /* 影を0pxにする */
}


@media screen and (max-width: 810px){
  /* トップカテゴリ　ボタン */
  #brand .link-btn{
    width: 100%;
    padding: 20px 0 20px 20px;
  }

  #brand .link-btn-icon {
    width: 55px;
    left: 40px;
  }

  #brand .link-btn.font-30{
    font-size: 20px;
  }

  /* 製品ラインナップ　ボタン */
  .line-up .link-btn {
    padding: 15px 30px;
  }
}




/* テキストリンク
-----------------------------------*/
.txt-link{
  border-bottom: #174556 2px solid;
  padding-bottom: 3px;
}




/*------------------------------------
mv
------------------------------------*/
#mv{
  position: relative;
  width: 100%;
  height: 750px;
  background-image: url(/themes/family/smiles/images/smiles-top/mv-bk-pc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-x: clip;
}


/*画像エリア
------------------------------------*/
#mv .mv-img{ 
  position: absolute;
  z-index: 1; 
}

/* ベース（2199px ~ 1801pxのとき）対象：PC1920x1080 */
#mv .mv-img-01{ width: 480px; top: -50px; left: 150px; }
#mv .mv-img-02{ width: 300px; top: 100px; left: 480px; }
#mv .mv-img-03{ width: 650px; bottom: -130px; left: -70px; }
#mv .mv-img-04{ width: 400px; bottom: -150px; left: 400px; }
#mv .mv-img-05{ width: 700px; top: -100px; right: -120px; }
#mv .mv-img-06{ width: 400px; top: 95px; right: 380px; }
#mv .mv-img-07{ width: 450px; bottom: -180px; right: 350px; }
#mv .mv-img-08{ width: 360px; bottom: -60px; right: 150px; }


/* 2200px以上のとき 対象：PC2560x1440　*/
@media screen and (min-width: 2200px){
  #mv .mv-img-01{ width: 550px; top: -70px; left: 14%; }
  #mv .mv-img-02{ width: 350px; top: 15%; left: 30%; }
  #mv .mv-img-03{ width: 600px; left: 12%; bottom: -15%; }
  #mv .mv-img-04{ width: 400px; left: 30%; bottom: -20%;; }
  #mv .mv-img-05{ width: 600px; top: -100px; right: 12%; }
  #mv .mv-img-06{ width: 400px; top: 95px; right: 28%; }
  #mv .mv-img-07{ width: 450px; right: 25%; bottom: -20%; }
  #mv .mv-img-08{ width: 350px; right: 20%; bottom: 3%; }
}

/* 1800px以下のとき */
@media screen and (max-width: 1800px){
  #mv .mv-img-01{ width: 470px; top: -50px; left: 110px; }
  #mv .mv-img-02{ width: 270px; top: 80px; left: 430px; }
  #mv .mv-img-03{ width: 570px; left: -100px; bottom: -130px; }
  #mv .mv-img-04{ width: 350px; left: 330px; bottom: -130px; }
  #mv .mv-img-05{ width: 600px; top: -90px; right: -80px; }
  #mv .mv-img-06{ width: 340px; top: 95px; right: 380px; }
  #mv .mv-img-07{ width: 400px; right: 280px; bottom: -150px; }
  #mv .mv-img-08{ width: 320px; right: 100px; bottom: -30px; }
}

/* 1600px以下のとき 対象：PC1536x864 */
@media screen and (max-width: 1600px){
  #mv{ height: 650px; }
  #mv .mv-img-01{ width: 470px; top: -50px; left: 0; }
  #mv .mv-img-02{ width: 250px; top: 80px; left: 350px; }
  #mv .mv-img-03{ width: 570px; left: -120px; bottom: -130px; }
  #mv .mv-img-04{ width: 320px; left: 320px; bottom: -130px; }
  #mv .mv-img-05{ width: 550px; top: -90px; right: -100px; }
  #mv .mv-img-06{ width: 325px; top: 95px; right: 320px; }
  #mv .mv-img-07{ width: 370px; right: 200px; bottom: -150px;  }
  #mv .mv-img-08{ width: 320px; right: 80px; bottom: -30px; }
}

/* 1480px以下のとき 対象：PC1440x900 */
@media screen and (max-width: 1480px){
  #mv .mv-img-01{ width: 450px; top: -50px; left: 0; }
  #mv .mv-img-02{ width: 280px; top: 80px; left: 290px; }
  #mv .mv-img-03{ width: 500px; left: -100px; bottom: -100px; }
  #mv .mv-img-04{ width: 300px; left: 250px; bottom: -130px; }
  #mv .mv-img-05{ width: 550px; top: -70px; right: -120px; }
  #mv .mv-img-06{ width: 300px; top: 95px; right: 270px; }
  #mv .mv-img-07{ width: 350px; right: 200px; bottom: -130px; }
  #mv .mv-img-08{ width: 300px; right: 80px; bottom: 0; }
}

/* 1400px以下のとき 対象：PC1366x768 */
@media screen and (max-width: 1400px){
  #mv { height: 580px; }
  #mv .mv-img-01{ width: 400px; top: -50px; left: 0; }
  #mv .mv-img-02{ width: 250px; top: 80px; left: 270px; }
  #mv .mv-img-03{ width: 450px; left: -100px; bottom: -100px; }
  #mv .mv-img-04{ width: 270px; left: 230px; bottom: -130px; }
  #mv .mv-img-05{ width: 500px; top: -70px; right: -120px; }
  #mv .mv-img-06{ width: 300px; top: 60px; right: 240px; }
  #mv .mv-img-07{ width: 310px; right: 200px; bottom: -130px; }
  #mv .mv-img-08{ width: 270px; right: 80px; bottom: 0; }
}

/* 1300px以下のとき 対象：PC1280x720 */
@media screen and (max-width: 1300px){
  #mv { height: 550px; }
  #mv .mv-img-01{ width: 360px; top: -50px; left: 0; }
  #mv .mv-img-02{ width: 230px; top: 60px; left: 250px; }
  #mv .mv-img-03{ width: 470px; left: -160px; bottom: -80px; }
  #mv .mv-img-04{ width: 300px; left: 120px; bottom: -130px; }
  #mv .mv-img-05{ width: 480px; top: -70px; right: -120px;}
  #mv .mv-img-06{ width: 280px; top: 60px; right: 220px; }
  #mv .mv-img-07{ width: 300px; right: 140px; bottom: -130px; }
  #mv .mv-img-08{ width: 260px; right: 50px; bottom: 0;}
}

/* 1200px以下のとき 対象：TB1180x820, 1194x834, 1133x744 */
@media screen and (max-width: 1200px){
  #mv .mv-img-01{ width: 320px; top: -5%; left: 0; }
  #mv .mv-img-02{ width: 220px; top: 60px; left: 19%; }
  #mv .mv-img-03{ width: 400px; left: -130px; bottom: -80px; }
  #mv .mv-img-04{ width: 250px; left: 12%; bottom: -20%; }
  #mv .mv-img-05{ width: 450px; top: -8%; right: -10%; }
  #mv .mv-img-06{ width: 280px; top: 15%; right: 15%; }
  #mv .mv-img-07{ width: 300px; right: 7%; bottom: -130px; }
  #mv .mv-img-08{ width: 260px; right: 2%; bottom: 0;}
}

/* 1100px以下のとき 対象：TB1024x768, 1080x810 */
@media screen and (max-width: 1100px){
  #mv .mv-img-01{ width: 300px; top: -5%; left: -2%; }
  #mv .mv-img-02{ width: 200px; top: 60px; left: 18%; }
  #mv .mv-img-03{ width: 400px; left: -160px; bottom: -140px; }
  #mv .mv-img-04{ width: 250px; left: 13%; bottom: -160px; }
  #mv .mv-img-05{ width: 400px; top: -10%; right: -10%; }
  #mv .mv-img-06{ width: 250px; top: 10%; right: 15%; }
  #mv .mv-img-07{ width: 300px; right: 10%; bottom: -160px; }
  #mv .mv-img-08{ width: 260px; right: -2%; bottom: -50px;}
}

/* 950px以下のとき */
@media screen and (max-width: 950px){
  #mv .mv-img-01{ width: 300px; top: -30px; left: -6%; }
  #mv .mv-img-02{ width: 200px; top: 60px; left: 15%; }
  #mv .mv-img-03{ width: 350px; left: -140px; bottom: -120px; }
  #mv .mv-img-04{ width: 250px; left: 13%; bottom: -130px; }
  #mv .mv-img-05{ width: 350px; top: -50px; right: -10%; }
  #mv .mv-img-06{ width: 250px; top: 60px; right: 13%; }
  #mv .mv-img-07{ width: 280px; right: 10%; bottom: -130px; }
  #mv .mv-img-08{ width: 250px; right: -3%; bottom: -50px; }
}

/* 810px以下のとき 対象：TB768x1024, 810x1080 */
@media screen and (max-width: 810px){
  #mv{ 
    height: 550px; 
    background-image: url(/themes/family/smiles/images/smiles-top/mv-bk-tb.svg);
  }
  #mv .mv-img-01 { width: 250px; top: 10px; left: -6%; }
  #mv .mv-img-02{ width: 160px; top: 100px; left: 15%; }
  #mv .mv-img-03{ width: 320px; left: -100px; bottom: -30px; }
  #mv .mv-img-04{ width: 220px; left: 18%; bottom: -60px; }
  #mv .mv-img-05{ width: 350px; top: -50px; right: -10%; }
  #mv .mv-img-06{ width: 220px; top: 120px; right: 5%; }
  #mv .mv-img-07{ width: 250px; right: 10%; bottom: -80px; }
  #mv .mv-img-08 { width: 220px; right: 0; bottom: 20px ;}
}

/* 650px以下のとき */
@media screen and (max-width: 650px){
  #mv .mv-img-01 { width: 200px; top: 10px; left: -6%; }
  #mv .mv-img-02{ width: 130px; top: 100px; left: 8%; }
  #mv .mv-img-03{ width: 280px; left: -120px; bottom: -30px; }
  #mv .mv-img-04{ width: 200px; left: 12%; bottom: -60px; }
  #mv .mv-img-05{ width: 280px; top: -30px; right: -10%; }
  #mv .mv-img-06{ width: 180px; top: 120px; right: 0; }
  #mv .mv-img-07{ width: 200px; right: 10%; bottom: -50px; }
  #mv .mv-img-08 { width: 180px; right: -10px; bottom: 40px ;}
}

/* 500px以下のとき 対象：SP430x932, 412x915 */
@media screen and (max-width: 500px){
  #mv{
    height: 600px;
    background-image: url(/themes/family/smiles/images/smiles-top/mv-bk-sp.svg);
    background-position: bottom;
  }
  #mv .mv-img-01{ width: 170px; top: 80px; left: -9%; }
  #mv .mv-img-02{ width: 135px; top: 10px; left: 10%; }
  #mv .mv-img-03{ width: 250px; left: -100px; bottom: -20px; }
  #mv .mv-img-04{ width: 160px; left: 15%; bottom: -50px; }
  #mv .mv-img-05{ width: 240px; top: -30px; right: -10%; }
  #mv .mv-img-06{ width: 160px; top: 100px; right: -30px; }
  #mv .mv-img-07{ width: 180px; right: -30px; bottom: -50px; }
  #mv .mv-img-08{ width: 150px; right: 10px; bottom: 30px; }
}

/* 400px以下のとき 対象：SP390x844, 393x852 */
@media screen and (max-width: 400px){
  #mv{ height: 600px; }
  #mv .mv-img-01{ width: 170px; top: 80px; left: -9%; }
  #mv .mv-img-02{ width: 135px; top: 10px; left: 10%; }
  #mv .mv-img-03{ width: 250px; left: -100px; bottom: -20px; }
  #mv .mv-img-04{ width: 160px; left: 15%; bottom: -50px; }
  #mv .mv-img-05{ width: 240px; top: -30px; right: -10%; }
  #mv .mv-img-06{ width: 160px; top: 100px; right: -30px; }
  #mv .mv-img-07{ width: 180px; right: -30px; bottom: -50px; }
  #mv .mv-img-08{ width: 150px; right: 10px; bottom: 30px; }
}

/* 375px以下のとき 対象：SP375x667 */
@media screen and (max-width: 375px){
  #mv{ 
    height: 500px; 
    background-image: url(/themes/family/smiles/images/smiles-top/mv-bk-sp-375.svg);
  }
  #mv .txt-area { top: 54%; }
  #mv .txt-area .mv-logo { width: 180px; }
  #mv .mv-img-01{ width: 140px; top: 70px; left: -9%;}
  #mv .mv-img-02{ width: 110px; top: 10px; left: 10%; }
  #mv .mv-img-03{ width: 210px; left: -80px; bottom: -50px; }
  #mv .mv-img-04{ width: 140px; left: 15%; bottom: -70px; }
  #mv .mv-img-05{ width: 210px; top: -20px; right: -15%; }
  #mv .mv-img-06{ width: 130px; top: 100px; right: -10px; }
  #mv .mv-img-07{ width: 140px; right: 10px; bottom: -60px; }
  #mv .mv-img-08{ width: 140px; right: -20px; bottom: 0; }
}

/* 320px以下のとき 対象：SP320x568 */
@media screen and (max-width: 320px){
  #mv .txt-area .mv-logo { width: 180px; }
  #mv .mv-img-01{ width: 120px; top: 50px; left: -7%;}
  #mv .mv-img-02{ width: 90px; top: 10px; left: 10%; }
  #mv .mv-img-03{ width: 180px; left: -80px; bottom: -50px; }
  #mv .mv-img-04{ width: 120px; left: 15%; bottom: -70px; }
  #mv .mv-img-05{ width: 170px; top: -20px; right: -15%; }
  #mv .mv-img-06{ width: 110px; top: 80px; right: -10px; }
  #mv .mv-img-07{ width: 120px; right: 30px; bottom: -60px; }
  #mv .mv-img-08{ width: 120px; right: -10px; bottom: 0; }
}


/*テキストエリア
------------------------------------*/
#mv .txt-area{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中心点を自身の真ん中に指定 */
  width: 100%;
  height: auto;
  text-align: center;
}

#mv .txt-area .mv-logo{
  width: 330px;
  margin-bottom: 40px;
}

#mv .txt-area .catchcopy{
  font-size: 30px;
}

/* h1のテキスト（キャッチコピー）を隠す */
#mv .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 810px){
   #mv .txt-area .mv-logo {
    width: 210px;
    margin-bottom: 30px;
  }

  #mv .txt-area .catchcopy {
    font-size: 20px;
  }
}

@media screen and (max-width: 400px){
  #mv .txt-area{
    top: 52%;
  }
}

@media screen and (max-width: 810px){
  #mv .txt-area .mv-logo {
    width: 180px;
    margin-bottom: 20px;
  }
}


/*メインビジュアル　アニメーション
------------------------------------*/
#mv .mv-img{
  animation: zoomIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* アニメーション開始時間 */
#mv .mv-img-03,
#mv .mv-img-05{
  animation-delay: 0.5s;
}

#mv .mv-img-01,
#mv .mv-img-07{
  animation-delay: 1s;
}

#mv .mv-img-04,
#mv .mv-img-06{
  animation-delay: 1.5s;
}

#mv .mv-img-02,
#mv .mv-img-08{
  animation-delay: 2s;
}


#mv .txt-area{
  animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*------------------------------------
コンセプト
------------------------------------*/
#concept{
  margin: 200px auto 150px;
  text-align: center;
}

#concept .txt-area{
  margin-bottom: 100px;
}

#concept .concept-head{
  margin-bottom: 50px;
}




@media screen and (max-width: 1300px){
  #concept { margin: 180px auto 150px; }
}

@media screen and (max-width: 1100px){
   #concept { margin: 220px auto 150px; }
}

@media screen and (max-width: 810px){
  #concept {
    margin: 90px auto 70px;
  }

  #concept .txt-area {
    margin-bottom: 50px;
  }

  #concept .concept-head{
    letter-spacing: 0;
    margin-bottom: 30px;
    font-size: 30px;
  }

  #concept .concept-cont{
    text-align: left;
    font-size: 20px;
  }
}

@media screen and (max-width: 375px){
  #concept{
    margin: 100px auto 70px;
  }

  #concept .concept-head {
    font-size: 28px;
  }
}



/*製品画像　流れるアニメーション
------------------------------------*/
.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

.marquee-content img {
  width: 300px;
  margin-right: 50px;
  flex-shrink: 0;
}

/* アニメーション定義 */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


@media screen and (max-width: 810px){
  .marquee-content img {
    width: 180px;
    margin-right: 30px;
  }
}



/*------------------------------------
ブランド紹介
------------------------------------*/
#brand .inner{
  padding: 120px 0;
}

#brand .brand-cont{
  background: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 100px 60px;
}

#brand .smiles-logo{
  width: 500px;
}

#brand .bland-txt{
  margin-top: 40px;
}

#brand .korekarada{
  margin-top: 80px;
}

#brand .smiles .bland-txt{
  padding-bottom: 70px;
}

#brand .korekarada .bland-txt{
  margin-bottom: 50px;
}

#brand .dashed{
  margin-bottom: 70px;
}

#brand .link-area{
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 810px){
  #brand .inner{
    padding: 60px 0;
  }

  #brand .brand-cont {
    border-radius: 50px;
    padding: 50px 35px;
  }

  #brand .smiles-logo {
    width: 100%;
    max-width: 400px;
  }

   #brand .smiles .bland-txt,
  #brand .korekarada .bland-txt{
    text-align: left;
  }

  #brand .smiles .bland-txt {
    padding-bottom: 40px;
  }

  #brand .bland-txt {
    margin-top: 30px;
  }

  #brand .dashed{
    margin-bottom: 40px;
  }

  #brand .link-area {
    margin-top: 20px;
    display: block;
  }

  #brand .link-btn:first-child{
    margin-bottom: 30px;
  }

  #brand .korekarada {
    margin-top: 30px;
  }

  #brand .brand-cont .korekarada-logo{
    width: 80%;
    max-width: 300px;
  }

  #brand .korekarada .bland-txt {
    margin-bottom: 30px;
  }
}


@media screen and (max-width: 320px){
  #brand .link-btn-icon {
    width: 45px;
    left: 35px;
  }

  #brand .link-btn.font-30{
    font-size: 18px;
  }
}



/*------------------------------------
カテゴリーページ　トップ
------------------------------------*/
/* カテゴリーページ　タイトル */
.category-title{
  text-align: center;
  margin-bottom: 50px;
  margin-top: -70px;
}

.category-title img{
  width: 120px;
  margin: 0 auto 10px auto;
  display: block;
}

.category-top-txt{
  text-align: center;
  margin-bottom: 100px;
}

.category-top-txt .top{
  padding-bottom: 30px;
  display: inline-block;
}


@media screen and (max-width: 810px){
  .category-title{
    margin-bottom: 20px;
    margin-top: -40px;
  }

  .category-title img {
    width: 90px;
  }

  .category-top-txt {
    text-align: left;
    margin-bottom: 40px;
    font-size: 20px;
  }

  .category-top-txt .top{
    padding-bottom: 20px;
  }
}




/*スキンケア　手順
------------------------------------*/
.skin-order{
  margin: 80px auto 120px;
}

.skin-order li{
  width: 30%;
  padding: 40px;
  text-align: center;
  background: #E6EBED;
  border-radius: 30px;
}

.skin-order li img{
  margin-bottom: 15px;
}


@media screen and (max-width: 810px){
  .skin-order{
    margin: 50px auto 60px;
  }

  .skin-order li{
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
  }

  .skin-order li:last-child{
    margin-bottom: 0;
  }

  .skin-order li img {
    margin: 0 25px 0 0;
    width: 30%;
    max-width: 100px !important;
  }
}



/*------------------------------------
ケアマネジャー
------------------------------------*/
#caremanager{
  margin-bottom: 120px;
}

#caremanager .txt-top{
  margin-bottom: 30px;
}

.caremanager-top{
  margin: 100px 0 50px;
}

.caremanager-top .img-area{
  width: 20%;
}

.caremanager-top .txt-area{
  width: 75%;
}


/* ケアマネジャーの声　見出し */
.caremanager-head-area{
  text-align: center;
  margin-bottom: 30px;
}

.caremanager-head{
  display: inline-block;
  position: relative;
}

.caremanager-head:before, .caremanager-head:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 80px;
  height: 2px;
  background-color: #174556;
}

.caremanager-head:before {
  left: -100px;
}

.caremanager-head:after {
  right: -100px;
}

/* ケアマネジャーの声　吹き出し */
.speechBubble-area ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.speechBubble {
  position: relative;
  display: inline-block;
  margin: 20px;
  padding: 20px 25px;
  border-radius: 20px;
  background-color: #ffeaed;
}

.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffeaed transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}



@media screen and (max-width: 810px){
  #caremanager{
    margin-bottom: 60px;
  }

  .caremanager-top {
    margin: 50px 0;
  }

  .caremanager-top .img-area,
  .caremanager-top .txt-area{
    width: 100%;
  }

  .caremanager-top .img-area{
    margin-bottom: 30px;
  }

  .caremanager-top .img-area img{
    width: 70%;
    max-width: 300px !important;
    margin: 0 auto;
    display: block;
  }

  #caremanager .txt-top {
    margin-bottom: 20px;
  }

  .caremanager-head:before, .caremanager-head:after{
    width: 30%;
  }

  .caremanager-head:before {
    left: -40%;
  }

  .caremanager-head:after {
    right: -40%;
  }

  .caremanager-head-area {
    margin-bottom: 10px;
  }

  /* ケアマネジャーの声　吹き出し */
  .speechBubble{
    margin: 20px 0;
  }
}





/*------------------------------------
製品ラインナップ
------------------------------------*/
/* コンテンツ　見出し */
.cont-head{
  margin-bottom: 40px;
  text-align: center;
}

/* 製品詳細　見出し */
.product .cont-head{
  margin-bottom: 20px;
}

.line-up .inner{
  padding: 120px 0;
}

.line-up ul{
  display: flex;
  justify-content: center;
}

.line-up ul li{
  width: 30%;
  margin: 0 40px;
}

.line-up ul li img{
  margin-bottom: 15px;
}


@media screen and (max-width: 810px) {
  /* コンテンツ　見出し */
  .cont-head{
    margin-bottom: 20px;
  }

  .line-up .inner{
    padding: 60px 0;
  }

  .line-up ul{
    display: block;
  }

  .line-up ul li{
    width: 100%;
    margin: 0 0 50px 0;
  }

  .line-up ul li:last-child{
    margin: 0;
  }

  .line-up ul li img{
    display: block;
    width: 80%;
    max-width: 300px !important;
    margin: 0 auto 15px;
  }
}



/*------------------------------------
製品詳細（共通）
------------------------------------*/
.product .inner{
  padding-top: 120px;
}

@media screen and (max-width: 810px) {
  .product .inner{
    padding-top: 60px;
  }
}


/*見出し〜画像
------------------------------------*/
.products-top-txt{
  margin-bottom: 70px;
  text-align: center;
}

.top-img-area{
  text-align: center;
}

.sales-name{
  text-align: center;
  margin-bottom: 20px;
}

.sales-name span{
  display: inline-block;
  border: #174556 1.5px solid;
  padding: 3px 15px;
  border-radius: 5px;
  margin-right: 12px;
}


/* トイレの消臭液　限定 */
#toilet .top-img-area ul{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#toilet .top-img-area ul li{
  max-width: 450px;
  width: 40%;
  margin: 0 10px;
  text-align: center;
}

#toilet .top-img-area ul li img{
  width: 350px;
  margin-bottom: 40px;
}

#toilet .top-img-area{
  position: relative;
}

#toilet .top-img-area .product-img-bk{
  position: absolute;
  width: 100%;
  bottom: 30px;
}


@media screen and (max-width: 1200px){
  /* トイレの消臭液　限定 */
  #toilet .top-img-area .product-img-bk{
    bottom: 60px;
  }
}


@media screen and (max-width: 810px){
  .products-top-txt{
    margin-bottom: 40px;
  }

  .sales-name span{
    margin: 0 0 5px 0;
  }

  .top-img-area img{
    width: 100%;
    max-width: 400px !important;
    margin: 0 auto;
  }

  /* トイレの消臭液　限定 */
  #toilet .top-img-area ul{
    display: block;
  }

  #toilet .top-img-area ul li{
    width: 100%;
    max-width: 1200px;
    margin: 0;
  }

  #toilet .top-img-area ul li:first-child{
    margin-bottom: 40px;
  }

  #toilet .top-img-area ul li img{
    width: 100%;
    margin: 0 auto;
    max-width: 400px !important;
  }
}



/*こんな方・こんなときに
------------------------------------*/
.target{
  padding: 70px 60px 40px 60px;
  margin: 120px 0 100px;
  border-radius: 30px;
  position: relative;
}

.target h3{
  position: absolute;
  background: #174556;
  padding: 20px 40px;
  border-radius: 30px 30px 30px 0;
  left: 0;
  top: -45px;
}

.target .person{
  text-align: center;
}

.target .dashed{
  margin: 20px 0 30px;
}

.target .flex{
  flex-wrap: wrap;
}

.target li{
  width: 48%;
  display: flex;
  align-items: center;
}

.target li:nth-child(3){
  margin-top: 30px;
}

.target li img{
  margin-right: 30px;
}


@media screen and (max-width: 810px){
  .target {
    padding: 50px 30px 40px 30px;
    margin: 100px 0 60px;
  }

  .target h3{
    padding: 15px 20px;
  }

  .target li{
    width: 100%;
    margin-bottom: 20px;
    align-items: flex-start;
  }

  .target li:last-child{
    margin-bottom: 0;
  }

  .target li img{
    margin-right: 20px;
    width: 35%;
    max-width: 150px !important;
  }

  .target li:nth-child(3) {
    margin-top: 20px;
  }

  .target .person {
    text-align: left;
  }
}

@media screen and (max-width: 360px) {
    .target h3.font-30{
      font-size: 22px;
    }
}

@media screen and (max-width: 320px) {
    .target h3.font-30 {
        font-size: 20px;
    }
}



/*特徴
------------------------------------*/
.color-bk{
  padding: 100px 0 120px;
  position: relative;
}

/* 三角 */
.triangle{
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 60px solid #fff;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}

#toilet .triangle, #soap .triangle{ border-top: 60px solid #47aee4; }
#diapers .triangle{ border-top: 60px solid #65BB79; }
#mist .triangle{ border-top: 60px solid #F18D66; }
#cream .triangle{ border-top: 60px solid #E95471; }

.features{
  margin-bottom: 80px;
}

#soap .features, #cream .features{
  margin-bottom: 0;
}

.features-top{
  margin-bottom: 40px;
  text-align: center;
}

.features-cont{
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.features-cont img{
  width: 35px;
  margin-right: 20px;
  margin-top: 7px;
}

.features .flex{
  margin-top: 35px;
}

.features .flex .features-cont{
  width: 48%;
}

.features-cont .note{
  margin-top: 10px;
}

.features .scene{
    width: 30%;
    margin: 0 auto 50px;
    display: block;
}



@media screen and (max-width: 810px){
  .color-bk{
    padding: 60px 0;
  }

  /* 三角 */
  .triangle {
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    border-top: 30px solid #fff;
    top: -15px;
  }

  #toilet .triangle, #soap .triangle{ border-top: 30px solid #47aee4; }
  #diapers .triangle{ border-top: 30px solid #65BB79; }
  #mist .triangle{ border-top: 30px solid #F18D66; }
  #cream .triangle{ border-top: 30px solid #E95471; }

  .features {
    margin-bottom: 60px;
  }

  .features-top{
    text-align: left;
    margin-bottom: 30px;
  }

  .features-cont{
    padding: 30px;
  }

  .features-cont img {
    width: 25px;
    margin-right: 15px;
  }

  .features .flex .features-cont {
    width: 100%;
    margin-bottom: 20px;
  }

  .features .flex .features-cont:last-child{
    margin-bottom: 0;
  }

  .features .flex {
    margin-top: 20px;
  }

  .features .scene {
    width: 70%;
    margin: 0 auto 30px;
    max-width: 300px !important;
  }
}





/*トイレの消臭液　種類
------------------------------------*/
.toilet-type{
  margin-bottom: 80px;
}

.toilet-type-head-area{
  text-align: center;
  margin-bottom: 30px;
}

.toilet-type-head{
  display: inline;
  border-bottom: 5px solid #47AEE4;
  padding-bottom: 8px;
}

.toilet-type-name{
  margin-bottom: 30px;
}

.toilet-type-name span{
  background: #174556;
  color: #fff;
  padding: 5px 15px;
  margin-left: 5px;
  border-radius: 10px;
  display: inline-block;
}

.toilet-type-name span.white{
  background: #fff;
  color: #174556;
}

.toilet-type .flex{
  align-items: center;
}

.toilet-type .img-area{
  width: 25%;
}

.toilet-type .txt-area{
  width: 70%;
}

.toilet-type .note{
  margin-top: 20px;
}

.toilet-type .dashed{
  margin: 50px 0;
}


@media screen and (max-width: 810px){
  .toilet-type {
    margin-bottom: 60px;
  }

  .toilet-type .img-area, .toilet-type .txt-area{
    width: 100%;
  }

  .toilet-type .img-area{
    margin-bottom: 30px;
  }

  .toilet-type .img-area img{
    width: 80%;
    margin: 0 auto;
    display: block;
    max-width: 400px !important;
  }

  .toilet-type-name{
    text-align: center;
  }

  .toilet-type-head{
    border-bottom: 3px solid #47AEE4;
  }
}



/*グラフ
------------------------------------*/
.graph-area{
  padding: 70px;
  border-radius: 50px;
}

/* 背景色 */
#toilet .graph-area{ background: #47AEE4; }
#diapers .graph-area{ background: #65BB79; }
#mist .graph-area{ background: #F18D66; }

.graph-area h3{
  text-align: center;
  margin-bottom: 40px;
}

.graph-area .smell{
  width: 30%;
}

.graph-area .smell li{
  margin-bottom: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
}

.graph-area .smell li:first-child{
  background: #174556;
}

.graph-area .graph{
  width: 65%;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
}

.graph-bottom{
  margin-top: 35px;
}

.graph-bottom .graph{
  width: 48%;
}

.graph-area .graph h4{
  margin-bottom: 40px;
  display: inline;
  border-bottom: 3px solid #47AEE4;
  padding-bottom: 6px;
}

/* ボーダー色 */
#diapers .graph-area .graph h4{ border-bottom: 3px solid #65BB79; }
#mist .graph-area .graph h4{ border-bottom: 3px solid #F18D66;}

.graph-area .graph .graph-img{
  margin: 30px auto 0;
}


@media screen and (max-width: 810px){
  .graph-area {
    padding: 40px 30px;
  }

  .graph-area h3 {
    margin-bottom: 20px;
  }

  .graph-area .smell {
    width: 100%;
  }

  .graph-area .smell li{
    margin-bottom: 10px;
    padding: 20px 0px;
  }

  .graph-area .smell li:last-child{
    margin-bottom: 30px;
  }

  .graph-area .graph {
    width: 100%;
    padding: 30px;
  }

  .graph-bottom {
    margin-top: 20px;
  }

  .graph-bottom .graph {
    width: 100%;
    margin-bottom: 20px;
  }

  .graph-bottom .graph:last-child{
    margin-bottom: 0;
  }

  .graph-area .graph h4{
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 360px){
  .graph-area .graph h4 .pc-1280-onwards{
    display: none;
  }

  .graph-area .graph h4 .pc-1400-onwards{
    display: none;
  }
}
    




/*------------------------------------
ご購入はこちら
------------------------------------*/
#shop{
  background: #E95471;
  padding: 100px 0;
}

#shop li{
  width: 30%;
}

#shop li img{
  width: 45%;
}


@media screen and (max-width: 810px){
  #shop {
    padding: 60px 0;
  }

  #shop li{
    width: 100%;
    margin-bottom: 30px;
  }

  #shop li:last-child{
    margin-bottom: 0;
  }

  #shop li img {
    max-width: 180px !important;
  }
}






/*------------------------------------
関連バナー
------------------------------------*/
ul.kanren-banner{
  max-width: 90%;
  display: flex;
  justify-content: center;
  margin: 70px auto 30px;
}

ul.kanren-banner li{
  width: calc(33.3333% - 20px);
  margin: 0 20px;
}

@media screen and (max-width: 810px){
  ul.kanren-banner{
    max-width: 85%;
    display: block;
    margin: 50px auto 10px;
  }

  ul.kanren-banner li{
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    max-width: 500px !important;
  }

  ul.kanren-banner li:last-child{
    padding-bottom: 40px;
  }
}




/*------------------------------------
メニュー
------------------------------------*/
/* メニュー全体を囲むナビゲーションエリア */
.custom-nav {
  position: relative;
}

/* 「メニュー」ボタン */
.menu-toggle-btn {
  position: fixed;
  top: 118px;
  right: 0;
  background: #fff;
  color: #174556;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 90;
  writing-mode: vertical-rl;
  width: 50px;
  height: 110px;
  align-items: center;
  border-radius: 10px 0 0 10px;  

  /* UAスタイル上書きのため */
  font-family:
  "秀英丸ゴシック B", "Shuei MaruGo B", /* モリサワ */
  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", /* macOS/iOS対応 */
  "メイリオ", "Meiryo",  /* Windows対応 */ 
  "Osaka",  /* 古いMac用 レガシー対応 */
  "ＭＳ Ｐゴシック", "MS PGothic", /* 古いWindows対応（半角スペース注意） */
  sans-serif; /* 最終手段：汎用ゴシック体 */

  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  padding: 0;
}

.menu-toggle-btn, 
.menu-close-btn{
  transition: all .3s;
}

.menu-toggle-btn:hover, 
.menu-close-btn:hover{
  opacity: 0.8;
}

/* 開閉メニューのパネル */
.menu-panel {
  position: fixed;
  top: 87px;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 0;           
  overflow: hidden;    
  transition: height 0.3s ease;
  z-index: 89;       
}

/* メニューが開いた状態（クラス「open」が付いたとき） */
.menu-panel.open {
  height: 200px; 
  border-top: 1px solid #ccc;
}

/* メニュー上部：右上の「✕」ボタンを配置するエリア */
.menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 20px 50px;            
}

/* 「✕」ボタン */
.menu-close-btn {  
  cursor: pointer;   
  background: none;
  border: none;  
  color: #174556;
}

/* メニューリスト */
.menu-list {
  display: flex;
  justify-content: space-between;    
}

/* 各メニュー項目 */
.menu-list li {
  width: 30%;  
  padding-bottom: 3px;
  border-bottom: 1.5px solid #ccc;                  
}

.menu-list li a{
  display: block !important;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #174556;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 88; /* menu-panelより下、メインコンテンツより上に調整 */
}

.overlay.active {
  opacity: 0.7; 
  visibility: visible;
}

/* トップページのみ少しスクロールした後に表示 */
.nav-top{
  opacity: 0;
}

.nav-top.visible{
  opacity: 1;
}


@media screen and (max-width: 810px){
  /* 「メニュー」ボタン */
  .menu-toggle-btn {
    position: fixed;
    top: 80px;
    width: 35px;
    height: 95px;
    font-size: 16px;
  }

  /* 開閉メニューのパネル */
  .menu-panel{
    top: 55px;
  }

  /* メニューリスト */
  .menu-list {
    display: block;
  }

  /* 各メニュー項目 */
  .menu-list li {
    width: 100%;
    margin-bottom: 25px;
    font-size: 18px;
  }

  /* メニューが開いた状態（クラス「open」が付いたとき） */
  .menu-panel.open {
    height: 300px;
  }

  /* メニュー上部：右上の「✕」ボタンを配置するエリア */
  .menu-header {
    padding: 20px;
  }
}





/*------------------------------------
ご購入はこちらボタン
------------------------------------*/
.floating-btn{
  position: fixed;
  top: 250px;
  left: auto;
  right: 0;
  z-index: 30;
}

.floating-btn a{
  background: #E95471;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  writing-mode: vertical-rl;
  width: 50px;
  height: 160px;
  border-radius: 10px 0 0 10px; 
  display: flex !important;
  justify-content: center;
  align-items: center;
}


@media screen and (max-width: 810px){
  .floating-btn {
    top: 190px;
  }

  .floating-btn a{
    width: 35px;
    height: 140px;
  }
}