/************************************************************************
** 共通
*************************************************************************/
/*　SP横揺れ防止 */
@media screen and (max-width : 480px) {
  .no-horizontal-scroll {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}

.container-fluid {
  overflow: hidden;
  /* 横スク発生防止 */
}

.navbar .container-fluid {
  overflow: visible;
  /* ヘッダーのカート内アイテム数欠ける問題対応 */
}

/*　背景色 */
.cmn-bg {
  background-color: #f3f3f3;
}

/*　新規会員登録背景色 */
.new-bg {
  background-color: #F3E0DE;
}

/*　商品詳細背景色 */
.product-bg {
  background-color: #e6f2f2;
}

.justify-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 20px 0;
}

.row-form-full {
  margin: 0 15px;
  flex-direction: row;
}

.label-form {
  width: 100px;
}

.col-form {
  width: 100%;
}

.col-form-3 {
  width: 33.33333333%;
}

.top-10 {
  margin-top: 10px;
}

.top-30 {
  margin-top: 30px;
}

.value-form {
  width: 80px;
}

a {
  color: #6c757d;
}

.start-hidden {
  visibility: hidden;
}

.table-left-header {
  min-width: 140px;
}

/*マークの設定*/
mark {
  background: linear-gradient(transparent 60%, #c7dde9 0%);
}

/*商品詳細マークの設定*/
.mark-2 {
  background: linear-gradient(transparent 60%, #ffffff 0%);
}

.mark-3 {
  background: linear-gradient(transparent 60%, #f3e0de 0%);
}

.mark-4 {
  background: linear-gradient(transparent 0%, #f7f4f2 0%);
}

/* ヘッダー背景色 */
.head-bg {
  background-color: #f7f4f2;
}

.sticky-top {
  transition: transform 0.3s ease;
}

/* フッター背景色 */
.foot-bg {
  background-color: #322f35;
}

/* フッターを下部に固定 */
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.content {
  flex: 1;
}

h1.heading {
  font-size: 25px;
  font-weight: 500;
}

/* 第二階層以降h1のサイズ調整
.mp-caption{
  font-size: 25px;
} */
/************************************************************************
** 共通ボタン
*************************************************************************/
/*　キャンセルボタン*/
.btn-attention {
  background-color: #ed5b50;
  color: white;
}

.btn-attention:hover {
  background: #d15656;
  color: white;
}

/*　実行ボタン */
.btn-do {
  background-color: #0080C0;
  color: white;
  letter-spacing: 0.09em;
}

.btn-do:hover {
  background: #006b9f;
  color: white;
}

/*　保存ボタン（濃い色・大きいサイズ） */
.btn-save {
  background-color: #005c88;
  color: white;
  letter-spacing: 0.09em;
  width: 250px;
}

.btn-save:hover {
  background: #004a6f;
  color: white;
}

/*　戻るボタン */
.btn-back {
  background-color: #F8F9FA;
  color: #5b5b5b;
  letter-spacing: 0.09em;
}

.btn-back:hover {
  background-color: #d7d7d7;
  color: #5b5b5b;
}

/*　クリアボタン */
.btn-clear {
  background-color: white;
  border-color: #aea288;
  color: #aea288;
  letter-spacing: 0.09em;
}

.btn-clear:hover {
  background-color: #aea288;
  border-color: #aea288;
  color: white;
}

/* 絞り込みボタン */
.btn-selection {
  background-color: #b6ab94;
  color: white;
}

.btn-selection:hover {
  background-color: #988867;
  color: white;
}

/*　ラジオボタン */
.radio-std {
  float: left;
  width: 100%;
  margin: 0;
}

.radio-std input {
  display: none;
}

.radio-std label {
  display: block;
  float: left;
  cursor: pointer;
  width: 180px;
  margin: 1px 0;
  padding: 1.5% 0;
  border-right: 1px solid #d7d7d7;
  background: #e5e5e5;
  color: #555e64;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  transition: .2s;
}

.radio-std label.hc_c {
  width: 200px;
}

.radio-std input[type="radio"]:checked+label {
  background-color: #0080c0;
  color: #fff;
}

.radio-std input[type="radio"]:disabled+label {
  background-color: #e5e5e5;
  color: #fff;
}

.nav-link {
  padding: 0;
}

/* 商品詳細「カートに入れる」ボタン */
.btn-incart {
  background-color: #554a4a;
  /*background-color: #e64f2f;*/
  color: white;
  letter-spacing: 0.09em;
  width: 85%;
  max-width: 400px;
}

.btn-incart:hover {
  background: #7c5f59;
  color: white;
}

@media screen and (min-width:768px) {
  .btn-incart {
    max-width: none;
    width: 85%;
    /* font-size: 1rem; */
  }
}

/*▼ ND×ONO案件で追加したものここから*/
/*---------------------------------------
  TOPページ（メイン画像）
---------------------------------------*/
.main-img {
  height: 92vh;
  width: 100%;
  position: relative;
}

.handcare-banner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../img/top_hand_illust_w.png)no-repeat right bottom #F4E0DF;
  background-size: 40vw;
  padding: 0;
  text-decoration: none;
  padding: 35px 25px 0 25px;
}

.handcare-banner::after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background: url(../img/hcb_bottom.png)no-repeat center bottom;
  background-size: cover;
  position: absolute;
  bottom: -69px;
  left: 0;
  z-index: 10;
}

.handcare-banner .handcate-txt {
  display: block;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #222222;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.handcare-banner .handcate-txt em {
  display: block;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}

.handcare-banner .handcate-txt em::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  background-color: #C58480;
  margin-left: 7px;
}

.handcare-banner .link-txt {
  font-size: 16px;
  color: #C58480;
  font-weight: 400;
  margin-top: 15px;
  display: inline-block;
}

.right-arrow {
  padding-left: 8px;
  height: 16px;
  width: auto;
}

@media screen and (min-width:768px) {
  .pc-main {
    position: relative;
    height: 92vh;
  }

  .pc-main .handcare-banner {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 70px;
    top: auto;
    left: 30px;
    height: 280px;
    background-size: 200px;
    padding: 0 60px;
  }

  .handcare-banner::after {
    display: none;
  }

  .handcare-banner .handcate-txt {
    text-align: center;
  }

  .handcare-banner .handcate-txt em::after {
    display: none;
  }

  .handcare-banner .link-txt {
    text-align: center;
    display: block;
  }
}

.main-img-container {
  position: relative;
}

.main-img-container h1 {
  position: absolute;
  bottom: 60px;
  left: 40px;
  color: white;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.main-img-container h1 em {
  display: block;
  font-size: 18px;
  font-style: normal;
  padding: 0 0 28px 10px;
  background: url(../img/speech_balloon.png)no-repeat left bottom;
  background-size: 230px;
  /* margin-bottom: 5px; */
}

.main-img-container img {
  height: 92vh;
  width: 100%;
  object-fit: cover;
}

/* 商品一覧cssページが入ってた */

/* 商品詳細cssページが入ってた */

/* 販売価格欄の微調整 */
.flex-center {
  height: 50px;
  display: flex;
  align-items: center;
}

.flex-center-end {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.yen {
  font-size: 16px;
  font-style: normal;
  padding-left: 5px;
  align-self: flex-end;
  padding-bottom: 9px;
}

/* お気に入りボタン周り */
.btn-cart-in {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0;
}

.btn-cart-in .btn-incart {
  margin-left: auto;
}

.btn-cart-in .favorite-container {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-cart-in .favorite-container .favoriteButton,
.btn-cart-in .favorite-container .guestfavoriteButton {
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cart-in .favorite-container .favorite-count {
  /* margin-bottom: 2px; */
  text-align: center;
}

.btn-cart-in .heart-icon {
  width: 30px;
  height: 30px;
}

/* 商品詳細テーブルの修正 */
.pd-table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  border-collapse: collapse;
  border: 1px solid #b3b3b3;
  font-weight: 400;
}

.pd-table th {
  border: 1px solid #b3b3b3;
  padding: 8px;
  text-align: center;
}

.pd-table td {
  border: 1px solid #b3b3b3;
  padding: 15px;
  text-align: justify;
}

@media screen and (max-width:768px) {
  .pd-table {
    border-bottom: none;
    width: 100%;
  }

  .pd-table th {
    display: block;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    width: 100%;
    background-color: #F3F3F3;
  }

  .pd-table td {
    display: block;
    border: none;
    border-bottom: 1px solid #b3b3b3;
  }
}

/*---------------------------------------
  送り先入力ページ
---------------------------------------*/
/* アンケート部分まとめ */
.survey {
  background-color: #f8f1ef;
  padding: 15px 20px;
  border-radius: 6px;
  margin-top: 30px;
}

.survey .sup {
  font-size: 13px;
}

label.heading {
  font-size: 16px;
  font-weight: 500;
  border-left: 5px solid #BD766A;
  padding: 0 0 0 8px;
  margin: 15px 10px 15px 12px;
  line-height: 1;
}

label.heading em {
  display: block;
  font-size: 12px;
  font-style: normal;
  margin-top: 5px;
}

@media screen and (min-width:767px) {
  .survey {
    padding: 30px 40px;
    border-radius: 10px;
  }

  .survey .row {
    display: block;
  }
}

/*---------------------------------------
  フッター（注意書き追加）
---------------------------------------*/
.sp-footer .container {
  margin-left: 0;
  margin-right: 0;
  padding: 40px 0 0 0;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.sp-footer .container .list-unstyled li {
  margin: 2px 0
}

.footer .container {
  max-width: 900px;
}

.footer .container .row {
  width: 90%;
  margin: auto;
}

.notice {
  width: 90%;
  margin: auto;
  border: 1px solid white;
  color: white;
  font-size: 12px;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*▲ ND×ONO案件で追加したものここまで*/

/************************************************************************
** サイドメニュー
*************************************************************************/
/*サイドメニュー幅*/
.nav-side {
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  /*background-color:#F8F9FA0;*/
}

/* メインエリアの左マージン */
.main-content {
  margin-left: 300px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1048px) {
  .nav-side {
    width: 25%;
    min-width: 250px;
  }

  .main-content {
    margin-left: 25%;
  }
}

@media screen and (max-width: 768px) {
  .nav-side {
    width: 120px !important;
    max-width: 120px !important;
    min-width: 120px !important;
    font-size: 0.65rem;
  }

  .nav-side .fs-4 {
    font-size: 0.75rem !important;
  }

  .nav-side .fs-5 {
    font-size: 0.65rem !important;
  }

  .nav-side .nav-item {
    padding: 0.4rem 0.2rem !important;
  }

  .main-content {
    margin-left: 120px !important;
  }
}

@media screen and (max-width:1048px) {
  .nav-side {
    max-width: 300px;
    width: 25%;
  }
}

/*サイドメニューホバー*/
.nav-hover:hover {
  background-color: #ebeef1;
}

/*サイドメニュー選択時の背景色*/
.nav-click {
  background-color: #0080c0;
}

/************************************************************************
** 管理画面＞注文一覧
*************************************************************************/
/*長い文字列を強制折り返し*/
.ol-table .wrap {
  word-break: break-all;
  width: 120px;
}

/*メール送信ボタン共通設定*/
.ol-table .sendmail {
  border-radius: 5px;
  padding: 10px 5px;
  width: 100px;
}

/*送信済みボタン色 */
.ol-table .sent-btn {
  background-color: #91bcd2;
  -webkit-appearance: none;
  color: black !important;
}

.ol-table .sp-style th {
  display: none;
}

.btn-w {
  width: 150px;
}

@media screen and (max-width:1280px) {
  .ol-table thead {
    display: none;
  }

  .ol-table th,
  .ol-table td {
    display: block;
  }

  .ol-table .wrap {
    width: auto;
  }

  .ol-table .sendmail {
    width: 100%;
  }

  .ol-table .sp-style th {
    display: inline-block;
    width: 20%;
    background-color: #f3f3f3;
    border: none;
  }

  .ol-table .sp-style th.bg-dgray {
    background-color: #4a4a4a;
    color: white;
  }

  .ol-table .sp-style td {
    display: inline-block;
    width: 80%;
    border: none;
  }

  .btn-height {
    min-height: 70px;
    vertical-align: middle;
  }
}

@media screen and (max-width:440px) {
  .ol-table .sp-style th {
    display: block;
    width: 100%;
    padding: 3px 0 3px 10px;
  }

  .ol-table .sp-style td {
    display: block;
    width: 100%;
  }

  .btn-height {
    min-height: 0;
  }

  td.btn-height {
    padding-bottom: 70px;
  }
}


/************************************************************************
** 画像ドロップ
*************************************************************************/
/*画像ドロップエリア全体*/
.drop-image-wrap {
  position: relative;
  width: 100%;
  height: 145px;
}

/*ドロップされた画像を受け取るエリア*/
.drop-input-image {
  z-index: 3;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*メッセージ*/
.drop-show-msg {
  z-index: 2;
  position: absolute;
  display: block;
  top: 70%;
  left: 23%;
  object-fit: contain;

}

/*ドロップされた画像を表示するエリア*/
.drop-image {
  z-index: 1;
  position: absolute;
  top: 15%;
  display: block;
  width: 100%;
  height: 85%;
  object-fit: contain;
}

/*保存された画像を表示するエリア*/
.drop-show-db-image {
  z-index: 0;
  position: absolute;
  display: block;
  top: 15%;
  width: 100%;
  height: 85%;
  object-fit: contain;
}

/*ドロップ用ボタンを隠すエリア*/
.drop-hide-file-btn {
  z-index: 4;
  position: absolute;
  display: block;
  width: 100%;
  height: 20%;
  background-color: white;
}

/*画像ファイルを選択するボタン*/
.file-select-label {
  z-index: 4;
  position: absolute;
  display: block;
  object-fit: contain;
  padding: 1px 2px;
  top: 45%;
  left: 35%;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  color: #ffffff;
  transition: 0.3s;
}

/*画像番号1-5*/
.file-select-number {
  z-index: 5;
  position: absolute;
  display: block;
  object-fit: contain;
  padding: 1px 2px;
  top: 0;
  left: 5%;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  color: #212529;
  transition: 0.3s;
  font-size: 17px;
}

/*必須*/
.file-select-must {
  z-index: 4;
  position: absolute;
  display: block;
  object-fit: contain;
  padding: 1.2px 4.5px;
  top: 0%;
  left: 19%;
  background-color: #d96571;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  color: #fff;
  transition: 0.3s;
  font-size: 13px;
}

/*ドラッグまたはドロップ*/
.dd-or-select {
  z-index: 5;
  position: absolute;
  margin: 120px;
  display: block;
  width: 100%;
  height: 20%;
}

/*必須(価格)*/
.file-select-price {
  object-fit: contain;
  padding: 4px;
  background-color: #d96571;
  cursor: pointer;
  border-radius: 5px;
  border: 0;
  color: #fff;
  transition: 0.3s;
  font-size: 10px;
  display: inline-block;
  margin-inline-end: 5px;
  line-height: 1;
}

/************************************************************************
** 検索フォーム
*************************************************************************/
.searchform-title {
  background-color: #F2F3F5;
  border-radius: 1em;
  border: 1px solid #343C83;
}

.searchform-title.is-active {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#searchForm {
  padding-left: 38px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #343C83;
}

.searchform-click {
  position: relative;
}

.searchform-click::before {
  font-family: 'Glyphicons Halflings';
  font-size: 1.5em;
  display: block;
  content: "\002b";
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -15px;
}

.searchform-click.is-active::before {
  content: "\2212";
}

.searchform {
  background-color: #F2F3F5;
  border-right: 1px solid #343C83;
  border-bottom: 1px solid #343C83;
  border-left: 1px solid #343C83;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}

/*----------------------------
  サイズ選択画面
------------------------------*/
/*ステップ１，２の赤字*/
p span {
  color: #ff8080;
}

/*ステップ１，２タイトル色*/
.step-title {
  color: #897a5f;
}

/************************************************************************
	商品絞り込み画面
*************************************************************************/
/*h1の余白等調整*/
.page-title {
  font-size: 25px;
  font-weight: 600;
  padding-top: 20px;
  margin-bottom: 0;
}

/*キャンセルボタンの上部固定*/
.fixed {
  position: fixed;
  top: 140px;
  /*7rem*/
  left: 40px;
  /*right:3rem;*/
  z-index: 2;
  width: 300px;
  /*16rem*/
}

/*選べるチップ～キャンセルボタンまとまり*/
.btn-container {
  max-width: 300px;
  width: 23%;
}

/*「選べるチップは～」文字調整*/
em.sc {
  font-size: 90%;
  padding-top: 0.1em;
  padding-right: 8px;
  font-style: normal;
}

/*絞り込み・キャンセルボタンまとまり*/
.btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*絞り込みボタン微調整*/
.btns button.btn-do {
  width: 100%;
  margin-bottom: 10px;
}

/*キャンセルボタン微調整*/
.btns .link-dark {
  width: 100%;
}

.absolute_button_sp

/*ヘッダーの重なり順*/
.index-2 {
  z-index: 1;
}

/*絞り込み設定画面の重なり順*/
.index-3 {
  z-index: -1;
}

/*チェックボックス,ラジオボタンサイズ*/
.select-check {
  transform: scale(1.5);
  margin-right: 0.6rem;
}

/*各要素のまとまり*/
.bg-palepink {
  background-color: #f7f4f2;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.bg-palepink:first-of-type {
  margin-top: 20px;
}

.bg-palepink:last-child {
  margin-bottom: 50px;
}

/*ヘッダーとの余白*/
.top-p {
  padding-top: 20px;
}

/*「サイズ詳細」ボタン同化背景色*/
.bg-pp {
  background-color: #f7f4f2;
  position: relative;
  margin-top: 0;
}

/*「サイズ詳細」ボタン*/
.size-detail {
  background: url(../img/link_btn_w.png)no-repeat right 10px center black;
  background-size: 6px;
  font-size: 12px;
  padding: 2px 30px 2px 10px;
  border-radius: 3px;
  color: white;
}

/*モーダルウインドウ内フォントサイズ*/
.modal-body table th,
.modal-body table td {
  font-size: 85%;
}

/*「爪サイズをご自身で計測される場合」*/
.curve-measure h4 {
  padding-top: 20px;
  font-size: 17px;
}

.curve-measure-img {
  width: 100%;
}

/*爪の横幅ラジオボタンの横幅調整*/
.table {
  width: 95%;
  margin: 0 auto;
}

.search-btn {
  padding: 50px 0;
  text-align: center;
}

.search-btn .btn {
  width: 80%;
  font-weight: bold;
}

/*サイズを測るボタン(SPのみ)調整*/
.measure-size {
  padding: 3px 12px 10px 12px;
}

.measure-size a,
.measure-size button {
  display: block;
  width: 100%;
  text-decoration: none;
}

/*爪の横幅選択解除ボタン余白調整*/
.select-clear {
  padding-top: 10px;
  padding-bottom: 20px;
}

/*キッズサイズ注意書き*/
.attention {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 0;
  margin-top: 12px;
}

.cm-pd {
  padding: 5px 0 5px 28px;
}

@media screen and (max-width:768px) {
  .fixed {
    background-color: rgba(217, 217, 217, 0.9);
    width: 100%;
    left: 0;
    top: 5rem;
    margin: 0 auto;
    padding: 30px;
  }

  .btn-container {
    max-width: none;
    width: 100%;
  }

  .btns {
    display: flex;
    flex-direction: row;
  }

  .btns button.btn-do {
    width: auto;
    flex-grow: 1;
    margin-bottom: 0px;
    margin-right: 10px;
  }

  .btns .link-dark {
    width: auto;
  }

  .top-p {
    padding-top: 9rem;
  }
}

@media screen and (max-width:480px) {
  .fixed {
    padding: 30px 15px;
  }
}


/*----------------------------
  測定画面重なり順
------------------------------*/
.camera_back {
  z-index: -1;
}

.camera_top {
  z-index: 2;
}

#video {
  width: 100%;
  height: auto;
}

/************************************************************************
	商品一覧画面
*************************************************************************/
/*共通背景画像*/
#home {
  background-image: url(../img/top.jpg);
  background-position: center;
  background-size: cover;
}

/*商品画像ホバー時*/
.item_img img:hover {
  opacity: 0.8;
}

/* ネイルチップ1点無料 */
.slideinLeft {
  animation: slideinLeft 1.5s;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-fill-mode: backwards;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideinLeft {
  0% {
    transform: translateX(-30px);
  }

  100% {
    transform: translateX(0);
  }
}

/* 上下の動き */
/* .fuwafuwa_2 {
  animation: fuwafuwa_2 3.5s ease 2s infinite;
} */

.fuwafuwa_2 a {
  background: url(../img/link_btn_w.png)no-repeat right 18px center #f3e0de;
  background-size: 12px;
  min-width: 420px;
  width: 30%;
  margin: 0 auto 0 0;
  padding: 12px 0 17px 30px;
  display: block;
  border-radius: 10px;
  /* box-shadow: 5px 5px 5px #b5a3a1; */
}

.fuwafuwa_2 p.p-button {
  background-color: #f3e0de;
  min-width: 420px;
  width: 30%;
  margin: 0 auto 0 0;
  padding: 12px 30px 17px 30px;
  display: block;
  border-radius: 10px;
  /* box-shadow: 5px 5px 5px #b5a3a1; */
  text-align: center;
}

.fuwafuwa_2 a:hover {
  background: url(../img/link_btn_w.png)no-repeat right 18px center #d0d0d0;
  background-size: 12px;
  transition: all 0.3s ease-in-out;
}

.fuwafuwa_2 p.p-button:hover {
  background: #d0d0d0;
  transition: all 0.3s ease-in-out;
}

.fuwafuwa_2 .mark-3 {
  background: linear-gradient(transparent 60%, white 100%);
}

@keyframes fuwafuwa_2 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -25%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@media screen and (max-width:480px) {

  .fuwafuwa_2 a,
  .fuwafuwa_2 p.p-button {
    min-width: 0;
    width: auto;
    margin: 0 auto;
  }
}

/* カルーセル矢印カラー変更 */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

/* 矢印飛び出し修正 */
.carousel-inner {
  width: 542px;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width:680px) {
  .carousel-inner {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-control-prev {
    padding-left: 20px;
  }

  .carousel-control-next {
    padding-right: 20px;
  }
}

/* モーダル縦幅の設定 */
.custom-modal-header {
  height: 45px;
  /* 例：50pxの高さに設定 */
  border: none;
}

/* 拡大ボタンの配置(スマホ) */
.absolute_button_sp {
  position: absolute;
  top: 7px;
  right: 7px;
}

/* ボタンの背景を半透明化 */
.bg-white_translucent {
  --bs-bg-opacity: 0.5;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  border-radius: 5px;
}

/* 測定画面用のrow */
.row_measure {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
}

/*aタグ下線なし黒文字 */
.custom_link {
  text-decoration: none;
  color: #000000;
}

/*button_do用aタグ下線なし黒文字 */
.custom_link_do {
  text-decoration: none;
  color: #ffffff;
}

/*ボタンの横幅を固定(測定画面)*/
.button_fixed {
  width: 9em;
  /* 幅を指定 */
  padding: 0.5rem 0.5rem !important;
}

/*iPhone用アイコンの色指定（測定説明画面）*/
.blue-black i {
  -webkit-appearance: none;
  color: black !important;
}

/*STEP横のボタン（測定説明画面）*/
.photo-detail {
  background: url(../img/link_btn_w.png)no-repeat right 10px center black;
  background-size: 6px;
  font-size: 12px;
  padding: 3px 30px 3px 10px;
  border-radius: 3px;
  color: white;
  margin: 0 0 0 7px;
  /*bottomの打消しも含む*/
}

/*ボタンの横幅を固定小(測定説明画面)*/
.button_fixed_mini {
  padding: 0.375rem 0.75rem;
  width: 5em !important;
  /* 幅を指定 */
}

.btn_ok {
  text-decoration: none;
  color: #ffffff;
}

.pagination {
  max-width: 90vw;
  margin: 0 auto;
}

/************************************************************************
	プライバシーポリシー画面
*************************************************************************/
/*リストスタイル削除*/
.privacy_ul {
  list-style: none;
}

/*ページ内リンクズレ解消*/
.contents_innner {
  padding-top: 140px;
  margin-top: -140px;
}

/*店舗名の長さ変更*/
.custom-input {
  width: 18rem;
}

/************************************************************************
	マイページ（ログイン後表示）
*************************************************************************/

/*「一週間以内の商品」コンテナ*/
.size-change {
  padding: 0 15px 10px 15px;
}

.size-change h2 {
  font-size: 20px;
}

.size-change p {
  text-align: justify;
}

/*再注文前にご確認ください*/
.mp-attention {
  background-color: #f0f0f0;
  padding: 20px 15px 5px 8px;
  border-radius: 10px;
}

.mp-attention h3 {
  font-size: 18px;
  padding: 5px 0 5px 10px;
}

/*一週間以内に購入したリスト*/
.chip-list {
  margin: 40px 0;
}

.chip-list h4 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}

.chip-list h4 em {
  font-size: 14px;
  padding: 0 4px;
  color: #b4776f;
}

.chip-list .limit {
  margin-bottom: 10px;
  font-size: 16px;

}

.chip-list .inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.chip-list .inner img {
  width: 25%;
  height: auto;
}

.chip-list .inner table {
  flex: 1;
  margin: 0;
}

.chip-list button {
  display: block;
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width:1400px) {
  .chip-list button {
    width: 400px;
    margin: auto;
    margin-top: 20px;
  }
}

/************************************************************************
	サイト紹介画面
*************************************************************************/
/*----------------------------
  共通背景色
------------------------------*/
/*PCトップタイトル背景色*/
.welcome-bg {
  background-color: #f3e0de;
}

/*PCトップタイトル背景色2*/
.welcome-bg2 {
  background-color: #cacaca;
}

.welcome-bg3 {
  background-color: #322F35;
}

/*----------------------------
  共通フォント
------------------------------*/
/*主題*/
.welcome-title-jptxt {
  color: #4b453f;
  letter-spacing: 0.09em;
  z-index: 3;
  font-family: 'Noto Serif JP', serif;
}

/*主題(英字、数字)*/
.welcome-title-entxt {
  color: #4b453f;
  letter-spacing: 0.15em;
  z-index: 3;
  font-family: 'Lora', serif;
}

/*top説明文(英字)*/
.welcome-main-entxt {
  color: #4b453f;
  letter-spacing: 0.05em;
  z-index: 3;
  font-family: 'Josefin Sans', sans-serif;
}

/*本文*/
.welcome-main-txt {
  color: #4b453f;
  letter-spacing: 0.05em;
  z-index: 3;
  font-family: 'Noto Sans JP', sans-serif;
}

/*PCトップ本文スペーシング*/
.txt-space {
  letter-spacing: 0.1em;
}

/*MENU*/
.welcome-menu-txt {
  color: #4b453f;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  z-index: 3;
  font-family: 'Noto Sans JP', sans-serif;
}

/*----------------------------
  トップタイトル
------------------------------*/
.top_img_pc {
  background-image: url(../img/topimg19.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 92vh;
  position: relative;
}

/*----------------------------
  「ネイルチップを選ぶ」ボタン(PC)
------------------------------*/
#nd-list,
#nd-list-sp {
  display: flex;
  position: fixed;
  z-index: 999;
  bottom: 40px;
  right: 40px;
  background-color: #bd766a;
  text-align: center;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#nd-list a,
#nd-list-sp a {
  display: block;
  text-decoration: none;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.3px;
  padding: 55px 30px;
}

#nd-list a em,
#nd-list-sp a em {
  display: block;
  font-size: 120%;
  font-style: normal;
}

#nd-list:hover,
#nd-list-sp:hover {
  background-color: #e8d2ce;
  transition: all 0.2s ease 0s;
}

#nd-list a:hover,
#nd-list-sp a:hover {
  color: #9b4b3d;
  transition: all 0.2s ease 0s;
}

#nd-list.fade-in,
#nd-list-sp.fade-in {
  opacity: 1 !important;
}

#nd-list.fade-out,
#nd-list-sp.fade-out {
  opacity: 0 !important;
}

#nd-list.visible,
#nd-list-sp.visible {
  visibility: visible;
}

#nd-list-sp {
  bottom: 20px;
  right: 20px;
}

#nd-list-sp a {
  padding: 22px 18px;
  font-size: 12px;
}


/*----------------------------
  初回無料説明文
------------------------------*/
/*行間調整*/
.topbg {
  height: 60em;
}

/*背景画像*/
.topbg2 {
  background-image: url(../img/topimg12.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 50em;
}

/*背景画像*/
.topbg2-sp {
  background-image: url(../img/topimg12-sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 30em;
}

/*1セット無料caption*/
.present-caption {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0;
}

.present-caption em {
  display: block;
  font-style: normal;
  font-size: 13px;
  padding-top: 3px;
}



/*----------------------------
  STORY
------------------------------*/
/*リストスタイル削除*/
.timeline {
  list-style: none;
  padding-left: 0;
}

/*stooryのサークル*/
.timeline li {
  position: relative;
  /* 相対位置指定 */
  padding-left: 20px;
  /* サークルの幅 + サークルとテキストの間隔 */
}

/*stooryのサークル形、位置指定*/
.timeline li::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -1.1%;
  width: 12px;
  height: 12px;
  background: #666;
  border-radius: 50%;
}

/*----------------------------
  ボタン
------------------------------*/
/* サイズ測定ボタン */
.btn-measure {
  background-color: rgba(199, 221, 233, 0.7);
  color: dark;
}

/* サイズ測定ボタンホバー */
.btn-measure:hover {
  background-color: rgba(141, 167, 181, 0.7);
  color: white;
}

/*デザイン一覧 誘導ボタン*/
.btn-mg-1 {
  margin: 40px 0;
}

.btn-mg-2 {
  margin: 50px 0 100px 0;
}

.btn-pd-1 {
  padding: 30px 0 60px 0;
}

.margin {
  height: 100px;
}

.design-btn,
.design-btn-sp,
.measure-btn-sp {
  background: url(../img/w_cursor.png)no-repeat right 55px center #bd766a;
  background-size: 10px;
  display: block;
  width: 400px;
  margin: auto;
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  color: white;
  font-weight: 500;
  padding: 22px 0;
  letter-spacing: 2px;
  border-radius: 46% 83% 63% 54% / 80% 65% 85% 67%;
}

.design-btn-sp,
.measure-btn-sp {
  background-position: right 20px center;
  background-size: 8px;
  width: 250px;
  padding: 28px 0;
  border-radius: 60% 83% 63% 54% / 87% 65% 85% 67%;
}

.design-btn em,
.design-btn-sp em,
.measure-btn-sp em {
  display: block;
  font-style: normal;
  font-size: 13px;
}

.design-btn:hover,
.design-btn-sp:hover,
.measure-btn-sp:hover {
  background-color: #e8d2ce;
  transition: all 0.2s ease 0s;
  color: #bd766a;
}

/*サイズを測る 誘導ボタン*/
.measure-btn-sp {
  background-color: #748aaa;
}

.measure-btn-sp:hover {
  background-color: #cfd9e8;
  color: #748aaa;
}


/*トップボタン*/
.button-top a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 255px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.2em;
  border: thick double #6d6d6d;
  transition: 0.3s;
}

.button-top a::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #4a4a4a;
  transition: 0.3s;
}

.button-top a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #4a4a4a;
  transition: 0.3s;
}

.button-top a:hover {
  text-decoration: none;
  border: thick double #4a4a4a;
}

.button-top a:hover::before,
.button-top a:hover::after {
  right: -2.5em;
}

/*----------------------------
  背景画像
------------------------------*/
.welcome_img_pc {
  background-image: url(../img/topimg.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50rem;
}

.welcome_img_pc2 {
  background-image: url(../img/topimg16.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
  position: relative;
  z-index: 2;
}

.welcome_img_pc2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(201, 210, 217, 0.5);
  z-index: -1;
}

.welcome_img_pc3 {
  background-image: url(../img/topimg15.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.welcome_img_pc4 {
  background-image: url(../img/topimg10.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
  position: relative;
  z-index: 2;
}

.welcome_img_pc4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(201, 210, 217, 0.3);
  z-index: -1;
}

.welcome_img_pc5 {
  background-image: url(../img/topimg11.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
}

.welcome_img_pc6 {
  background-image: url(../img/topimg17.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.welcome_img_sp {
  background-image: url(../img/topimg.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 15rem;
}

.welcome_img_sp2 {
  background-image: url(../img/topimg15.png);
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
}

.welcome_img_sp3 {
  background-image: url(../img/topimg18.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.welcome_img_sp4 {
  background-image: url(../img/topimg21.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 20rem;
}

.welcome_img_sp5 {
  background-image: url(../img/topimg3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 40rem;
  position: relative;
  z-index: 2;
}

.welcome_img_sp5::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 250, 250, 0.7);
  z-index: -1;
}

/*----------------------------
  共通マージン
------------------------------*/
.top-margin {
  margin-top: 13rem;
}

.top-margin-sp {
  margin-top: 3rem;
}

.bottom-margin {
  margin-bottom: 13rem;
}

.bottom-margin-sp {
  margin-bottom: 3rem;
}

/*トップ余白*/
.top-padding {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.top-padding-sp {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/*----------------------------
  リストスタイル削除
------------------------------*/
.style-none {
  list-style: none;
  padding-left: 0;
}

/*----------------------------
  画像切り抜き設定
------------------------------*/
.section1 {
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.section2 {
  clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 92%);
}

.section3 {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 64%);
}

.section5 {
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
}

.section6 {
  clip-path: polygon(0 0, 100% 29%, 100% 100%, 0 81%);
}

/*----------------------------
  ネイルチップお届けの流れ下矢印
------------------------------*/
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.bottom_arrow::before {
  left: 49%;
  width: 3em;
  height: 3em;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

/*----------------------------
 	鍵括弧の設定
------------------------------*/
.topic {
  position: relative;
  text-align: center;
  padding: 1em;
}

.topic::before,
.topic::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
}

.topic::before {
  left: 5%;
  top: 0;
  border-top: #DAA39B solid 2px;
  border-left: #DAA39B solid 2px;
}

.topic::after {
  right: 5%;
  bottom: 0;
  border-right: #DAA39B solid 2px;
  border-bottom: #DAA39B solid 2px;
}

/*スマホ用*/
.topic-sp {
  position: relative;
  text-align: center;
  padding: 1em;
}

.topic-sp::before,
.topic-sp::after {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
}

.topic-sp::before {
  left: 0%;
  top: 0;
  border-top: #DAA39B solid 2px;
  border-left: #DAA39B solid 2px;
}

.topic-sp::after {
  right: 0%;
  bottom: 0;
  border-right: #DAA39B solid 2px;
  border-bottom: #DAA39B solid 2px;
}

/*----------------------------
 	「ネイルチップお届けの流れ」のボックスデザイン
------------------------------*/
.set_content {
  position: relative;
  margin: 2em 0;
  padding: 25px 10px 7px;
  border: solid 1px #64635e;
}

.set_content .box-title {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: -2px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #64635e;
  color: #ffffff;
}

/*----------------------------
 「リメイク・配送梱包作業」仕様画像の傾き調整
------------------------------*/
.imgbox {
  transform: rotate(8deg);
}

.imgbox2 {
  transform: rotate(-8deg);
}

.imgbox3 {
  transform: rotate(-5deg);
}

/*セロテープ風*/
.box76 {
  margin: 2em;
  /* ボックスの余白 */
  background-color: #fefefc;
  /* ボックス背景色 */
  padding: 2em;
  /* ボックス内側余白 */
  position: relative;
  height: 20rem;
  /* 配置(ここを基準に) */
}

.box76 .box-title {
  background-color: rgba(176, 160, 141, 0.7);
  /* テープ背景色と透過*/
  border-left: 2px dotted rgba(0, 0, 0, .1);
  /* テープのギザギザ左*/
  border-right: 2px dotted rgba(0, 0, 0, .1);
  /* テープのギザギザ右*/
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*テープ影*/
  transform: rotate(-2deg);
  /*テープの傾き*/
  font-size: 1em;
  /*タイトル文字の大きさ*/
  color: #666;
  /*タイトル文字色 */
  padding: 10px 20px;
  /*タイトルの余白*/
  line-height: 1;
  /*タイトルの行の高さ*/
  position: absolute;
  /*配置(ここを動かす)*/
  top: -15px;
  /*上から（-10px）移動*/
  left: 20px;
  /*左から(20px)移動*/
}

/*セロテープ風*/
.box76-sp {
  margin-bottom: 3em;
  /* ボックスの余白 */
  background-color: #fefefc;
  /* ボックス背景色 */
  padding: 2em;
  /* ボックス内側余白 */
  position: relative;
  height: 10rem;
  /* 配置(ここを基準に) */
}

.box76-sp .box-title {
  background-color: rgba(176, 160, 141, 0.7);
  /* テープ背景色と透過*/
  border-left: 2px dotted rgba(0, 0, 0, .1);
  /* テープのギザギザ左*/
  border-right: 2px dotted rgba(0, 0, 0, .1);
  /* テープのギザギザ右*/
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  /*テープ影*/
  transform: rotate(-2deg);
  /*テープの傾き*/
  font-size: 1em;
  /*タイトル文字の大きさ*/
  color: #666;
  /*タイトル文字色 */
  padding: 10px 20px;
  /*タイトルの余白*/
  line-height: 1;
  /*タイトルの行の高さ*/
  position: absolute;
  /*配置(ここを動かす)*/
  top: -15px;
  /*上から（-10px）移動*/
  left: 20px;
  /*左から(20px)移動*/
}

/*少しずらしたボックス*/
.box27 {
  margin: 2em auto;
  padding: 2em;
  /*内側の余白*/
  background: none;
  /*元のボックス背景色なし*/
  border: 1px solid #ccc;
  /*線の太さ・種類・色*/
  position: relative;
  /*配置（基準）*/
}

.box27:after {
  background-color: #eee;
  /*ずらしたボックスの背景色*/
  border: none;
  content: '';
  position: absolute;
  /*配置（ここを動かす）*/
  top: 7px;
  /*上から7pxずらす*/
  left: 7px;
  /*左から7pxずらす*/
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*上下に太線*/
.box25 {
  margin: 2em auto;
  padding: 2em;
  border-top: solid 3px #ded1cd;
  border-bottom: solid 3px #ded1cd;
  background-color: #fafafa;
  /*背景色*/
}

/*左上にずらした背景色ありタイトル*/
.box74 {
  margin: 2em auto;
  /* ボックスの余白 */
  background-color: #fafafa;
  /* ボックス背景色 */
  padding: 1e;
  /* ボックス内側余白 */
  position: relative;
  /* 配置(ここを基準に)*/
  border: 1px solid #b0a691;
  /* ボックスの線 (太さ　種類　色)*/
}

.box74 .box-title {
  background-color: #b0a691;
  /* タイトル背景色 */
  font-size: 1em;
  /* タイトル文字の大きさ */
  color: #fff;
  /* タイトル文字色 */
  padding: 7px 10px;
  /*タイトルの余白*/
  line-height: 1;
  /*タイトルの行の高さ*/
  position: absolute;
  /* 配置(ここを動かす) */
  top: -10px;
  /*上から（0px）移動*/
  left: 20px;
  /*左から(0px)移動*/
}

/*タイトル付き（見出しボックス）*/
.box71 {
  margin: 1em auto;
  /* ボックスの余白 */
  background-color: #fff;
  /* ボックス背景色 */
  padding: 5em 2em 2em;
  /* ボックス内側余白 */
  position: relative;
  /*配置(ここを基準に)*/
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  /*ボックス影*/
}

.box71 .box-title {
  background-color: #f3e0de;
  /* タイトル背景色 */
  padding: 10px;
  /*タイトル余白*/
  text-align: center;
  /* タイトル中央寄せ */
  position: absolute;
  /* 配置(ここを動かす) */
  top: 0;
  /*上から(0px)に配置 */
  left: 0;
  /*左から(0px)に配置 */
  width: 100%;
  /*横幅最大幅 */
}

/*----------------------------
	商品詳細本文微調整
------------------------------*/
.finger-size {
  padding-top: 15px;
}

/*----------------------------
	動き
------------------------------*/
/*左からじんわり登場*/
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

/*----------------------------
	スクロールしたら
------------------------------*/
/*下からふんわり登場*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*左からふんわり登場*/
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*右からふんわり登場*/
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*----------------------------
	スクロールしたら順番に表示
------------------------------*/

.box {
  opacity: 0;
}

/*ふんわり登場*/

.fadeUp-2 {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*デモ用（削除予定）*/
#imageContainer img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  /* 画像が指定サイズに収まるように調整 */
}

/*----------------------------
	メンテナンス用表示
------------------------------*/
.mnt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #575048;
  margin: 50px 25px;
  padding: 40px 20px;
  border: 1px solid #dba6a3;
  background-color: #fff6f6;
  border-radius: 10px;
}

.mnt-title {
  font-size: 1.125rem;
  letter-spacing: 1.5px;
  margin: 0;
}

.mnt-period {
  padding: 20px 0;
}

.mnt-period h2 {
  font-size: 1rem;
  padding: 5px 0;
  margin: 0;
}

.mnt-period p {
  font-size: 1rem;
  margin: 10px 0;
}

.mnt-period span {
  display: block;
  color: #c58480;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.comment {
  font-size: 0.875rem;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .mnt-container {
    width: 100%;
    max-width: 600px;
    margin: 10vh auto;
  }
}

/************************************************************************
** 商品登録画面
*************************************************************************/
/* 商品登録画面のフォーム全体の最大幅を660pxに制限 */
.admin-product-form form {
  max-width: 660px;
  margin: 0 auto;
}

/* 画像アップロードエリアのスタイル調整 */
.image-box-wrap {
  width: calc((100% - (25px * 4)) / 5);
  padding-inline: 0;
  margin-right: 25px;
}

.image-box-wrap:last-child {
  margin-right: 0;
}

.drop-input-image {
  max-width: 124px;
}

/* 見出しのスタイル */
h5.section-heading {
  font-weight: bold;
  font-size: 17px;
  border-top: 2px dotted #ccc;
  padding-top: 25px;
  padding-left: 20px;
  margin-bottom: 0;
}

h5.section-heading::before {
  content: "＜";
}

h5.section-heading::after {
  content: "＞";
}

/* 見出し下のコンテンツエリア */
.content-area {
  background-color: #f3f4f6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.care_points_overview {
  margin-inline-start: 15px;
}

/* ケアポイント追加ボタンのスタイル */
.add-care-point-btn {
  font-size: 16px;
  background: none;
  border: none;
  text-align: center;
  display: block;
  margin: 0 auto;
  color: #9095a0;
}

/* サイト表示の切り替えタブスタイル */
.display-toggle {
  display: flex;
  align-items: center;
}

.display-toggle .btn-group {
  display: flex;
}

.display-toggle .btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
}

.display-toggle .btn-check:checked+.btn-outline-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

/* inputとtextareaを右端まで広げる */
.row .col-md-3 .form-control,
.row .col-md-6 .form-control {
  width: 100%;
}



/* 画像アップロードエリアの親要素のpaddingを削除 */
.row.justify-content-center.mb-5 {
  padding-left: 0;
  padding-right: 0;
}

/* labelの左余白分をinput/textareaに割り当て */
.row .offset-md-1 {
  margin-left: 0;
}

.row .col-md-3.col-form-label {
  flex: 0 0 25%;
  max-width: 25%;
}

/* カテゴリのラジオボタンのみ折り返さないように調整 */
.radio-std.category-radio {
  display: flex;
  flex-wrap: nowrap;
}

.radio-std.category-radio label {
  flex-shrink: 0;
}

.col-md-9.row .form-select {
  width: 25%;
}

/* 数値入力フィールドのスタイル */
input[type="number"] {
  width: 30%;
  min-width: 60px;
}

/* 数値入力フィールドの上下矢印を常に表示 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

/* 数値入力フィールドでスピナーを確実に表示 */
input[type="number"].form-control {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

/* 数量入力欄専用のスピナー設定 */
#qty {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

#qty::-webkit-inner-spin-button,
#qty::-webkit-outer-spin-button {
  opacity: 1 !important;
  height: auto !important;
  width: auto !important;
  -webkit-appearance: auto !important;
  appearance: auto !important;
  display: block !important;
  position: relative !important;
  cursor: pointer !important;
}

/* Chrome専用の強制スピナー表示 */
@supports (-webkit-appearance: auto) {
  #qty::-webkit-inner-spin-button {
    -webkit-appearance: auto !important;
    opacity: 1 !important;
    height: 20px !important;
    width: 15px !important;
    margin: 0 !important;
    cursor: pointer !important;
  }
  
  #qty::-webkit-outer-spin-button {
    -webkit-appearance: auto !important;
    opacity: 1 !important;
    height: 20px !important;
    width: 15px !important;
    margin: 0 !important;
    cursor: pointer !important;
  }
}

/* メール注意文のスタイル */
.email-notice {
  line-height: 1.3;
}

/* 注意文のスマホ用上部余白 */
@media screen and (max-width: 767px) {
  .postal-notice, .email-notice {
    margin-top: 8px;
  }
}