@charset "UTF-8";
/*——————————————————————————————————————————————
変数
——————————————————————————————————————————————*/
/*——————————————————————————————————————————————
mixin
——————————————————————————————————————————————*/
/*——————————————————————————————————————————————
フォント指定
——————————————————————————————————————————————*/
@font-face {
  font-family: "NotoSans";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP_Regular_subset.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold_subset.woff") format("woff");
  font-display: swap;
}
html {
  font-family: "Poppins", "NotoSans", sans-serif;
  letter-spacing: 2px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.item_sns_list_insta,
.item_sns_list_youtube {
  font-family: "Font Awesome 5 Brands";
}
.item_sns_list_insta i,
.item_sns_list_youtube i {
  font-style: normal;
  color: #fff;
  font-size: 3em;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

small,
.small {
  font-size: 11px;
}

.rounded {
  border-radius: 3px !important;
}

.fs-7 {
  font-size: 0.86rem !important;
}

/*——————————————————————————————————————————————
本文
——————————————————————————————————————————————*/
@media screen and (max-width: 991px) {
  .wrapper {
    display: block;
  }
}
.wrapper .i2 {
  position: relative;
  z-index: 99;
  background: #fff;
}
@media screen and (max-width: 991px) {
  .wrapper .i2 {
    max-width: 992px;
    width: 100%;
  }
}
.wrapper .wrap-bg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .wrapper .wrap-bg {
    display: none;
  }
  .wrapper .wrap-bg .side-menu {
    display: none;
  }
}

.bg_mint {
  background: #BDD1D5;
}
.bg_green {
  background: #BCCFB8;
}
.bg_cream {
  background: #f9f6f0;
}

.text-blue {
  color: #378ea0;
}
.text-green {
  color: #6b8a64;
}

hr.white {
  width: 90%;
  display: block;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

.title_underline {
  text-align: center;
  position: relative;
  padding-bottom: 50px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 3px;
  font-weight: bold;
}
.title_underline::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background-color: #36B0C9;
}

.title_sideline {
  position: relative;
  padding-left: 24px;
}
.title_sideline:after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #36b0c9;
  /* 線色 */
  border-radius: 5px;
  /* 線幅の半分 */
  content: "";
  display: block;
  height: 100%;
  /* 線幅 */
  width: 6px;
}

.underline {
  background: linear-gradient(transparent 70%, #c3e7ef 30%);
}

/*——————————————————————————————————————————————
ハンバーガーメニュー
——————————————————————————————————————————————*/
header {
  display: block;
  position: fixed;
  /* headerを追従にする */
  height: 50px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}

.header_inner {
  position: relative;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #58acba;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer__nav {
  position: fixed;
  /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem 0 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateY(0);
}

.drawer__nav__menu {
  width: 80%;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  text-align: center;
}
.drawer__nav__menu img {
  width: 200px;
}

.drawer__nav__item .sns_list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer__nav__item .sns_list a {
  margin: 10px 20px 0;
}
.drawer__nav__item .sns_list i {
  color: #58acba;
}

.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
}
.drawer__nav__link::after {
  content: "";
  display: block;
  width: 40%;
  margin: 0 auto;
  border-bottom: solid 1px #58acba;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/*——————————————————————————————————————————————
// ボタン
——————————————————————————————————————————————*/
.button-contents {
  box-sizing: border-box;
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 20px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 16px;
  font-weight: bold;
}
.button-contents .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: rotate(45deg);
}
.button-contents:hover {
  box-sizing: border-box;
}
.button-contents:hover .arrow {
  right: 0.8rem;
}
.button-contents:hover .button_mint,
.button-contents:hover .button_green {
  background: #fff;
}
.button_mint {
  font-weight: normal;
  padding: 25px 0;
  font-size: 19px;
  color: #fff;
  background: #378ea0;
}
.button_mint:hover {
  background: #fff;
  color: #378ea0;
  border: 1px solid #378ea0;
}
.button_green {
  font-weight: normal;
  padding: 25px 0;
  font-size: 19px;
  color: #fff;
  background: #6b8a64;
}
.button_green:hover {
  background: #fff;
  color: #6b8a64;
  border: 1px solid #6b8a64;
}

.bg_mint .button-contents.button_white {
  font-size: 13px !important;
}
.bg_mint .button-contents.button_white:hover {
  background: #BDD1D5;
  border: 1px solid #fff;
  color: #fff;
}

.bg_green .button-contents.button_white {
  font-size: 13px !important;
}
.bg_green .button-contents.button_white:hover {
  background: #BCCFB8;
  border: 1px solid #fff;
  color: #fff;
}

/*——————————————————————————————————————————————
//アコーディオン
——————————————————————————————————————————————*/
.accordion {
  padding: 0;
  margin: 0;
}
.accordion ul {
  padding: 0;
  margin: 0;
}
.accordion-body {
  padding: 0;
}
.accordion-item {
  margin-bottom: 5px;
  border: none;
}
.accordion-button {
  position: relative;
  background: #e8f1f4;
  display: flex;
  justify-content: center;
}
.accordion-button::after {
  position: absolute;
  right: 10px;
}
.accordion-button:not(.collapsed) {
  background: #e8f1f4;
  color: #000;
  box-shadow: none;
}

#container_shopList .container #menu {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  #container_shopList .container #menu {
    justify-content: center;
  }
}
#container_shopList .container #menu button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin-bottom: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #36b0c9;
  font-weight: bold;
  background: transparent;
  width: auto;
  text-align: center;
  border: 1px solid #36b0c9;
  border-radius: 10px;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  #container_shopList .container #menu button {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  #container_shopList .container #menu button {
    width: 33.3333333333%;
  }
}
#container_shopList .container #menu button::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #36b0c9;
  transform: translateX(-100%);
  transition: transform ease 0.3s;
}
#container_shopList .container #menu button:hover, #container_shopList .container #menu button.active {
  color: #fff;
}
#container_shopList .container #menu button:hover::before, #container_shopList .container #menu button.active::before {
  transform: translateX(10%);
}

.link_shopList {
  padding: 0;
}
.link_shopList a {
  text-decoration: none;
  color: #000;
}
.link_shopList_item:first-child {
  margin-top: 4px;
}
.link_shopList_item {
  width: 100%;
  padding: 15px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 4px 0;
}
.link_shopList_item > a {
  display: block;
}
.link_shopList_item:hover .link_shopTitle {
  transition: 0.6s;
  color: #36B0C9;
}

.link_shopList,
.accordion,
.side-menu-list {
  list-style: none;
}
.link_shopList a,
.accordion a,
.side-menu-list a {
  text-decoration: none;
  color: #000;
}

.side-menu {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 30%;
  transform: translateY(-30%);
  margin: 0 auto;
  z-index: 98;
  max-width: 230px;
}

.side-menu-inner .side-menu-logo {
  width: 170px;
  margin: 0 auto;
}
.side-menu-inner .menu-smalltext {
  font-size: 11px;
}
.side-menu-inner .accordion-button,
.side-menu-inner .accordion-header,
.side-menu-inner .accordion-item,
.side-menu-inner .list-unstyled,
.side-menu-inner .side-menu-list {
  background: transparent;
  text-align: left;
  padding: 0;
}
.side-menu-inner .accordion-menu-item {
  text-align: left;
  padding-bottom: 30px;
}
.side-menu-inner .accordion-menu-item:first-child {
  margin-top: 50px;
}
.side-menu-inner .accordion-menu-item a {
  color: black;
}
.side-menu-inner li.side-menu-list_item {
  margin-bottom: 20px;
}
.side-menu-inner li.side-menu-list_item:first-child {
  margin-top: 20px;
}
.side-menu-inner li.side-menu-list_item::before {
  content: "├";
  display: inline-flex;
  color: #cccccc;
  width: 1em;
  height: 6px;
}
.side-menu-inner .accordion-button {
  display: block;
}
.side-menu-inner .accordion-button::after {
  display: none;
}

/*——————————————————————————————————————————————
// モーダル
——————————————————————————————————————————————*/
section.info h3 {
  text-align: center;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  padding-bottom: 20px;
}
section.info li {
  width: 100%;
  padding-bottom: 10px;
}

.embedsocial-hashtag {
  max-width: 1025px;
  margin: 0 auto;
}

.modal-info {
  padding-left: 0;
  max-width: 750px;
  margin: 0 auto;
}

.modal-1__wrap {
  display: inline-block;
}
.modal-1__wrap input {
  display: none;
}

.modal-1__open-label,
.modal-1__close-label {
  cursor: pointer;
}

.modal-1__open-label {
  color: #000000;
  font-size: 0.95em;
}
.modal-1__open-label:hover {
  text-decoration: underline;
  cursor: pointer;
}

.modal-1 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.modal-1__open-input:checked + label + input + .modal-1 {
  display: block;
  -webkit-animation: modal-1-animation 0.6s;
          animation: modal-1-animation 0.6s;
}
.modal-1__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 650px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}
.modal-1__close-label {
  color: #58acba;
  width: 36px;
  height: 36px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  font-size: 3em;
}
.modal-1__content {
  max-height: 50vh;
  overflow-y: auto;
  padding: 39px 45px 40px;
}
.modal-1__content a {
  color: #58acba;
  word-wrap: break-word;
}
.modal-1__content a:hover {
  border-bottom: 1px solid #58acba;
}
.modal-1__content hr {
  margin-top: 10px;
  margin-bottom: 10px;
  background: #58acba;
  width: 100%;
  height: 2px;
}
.modal-1__content > label.modal-1__close-label {
  position: static;
  font-size: 16px;
  line-height: 2.2;
  display: block;
  width: 100%;
  border: 1px solid #58acba;
  color: #000;
  background-color: #fff;
  border-radius: 0;
  margin: 20px 0 10px;
}
.modal-1__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

@-webkit-keyframes modal-1-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modal-1-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*——————————————————————————————————————————————
// CSS
——————————————————————————————————————————————*/
.video-content {
  aspect-ratio: 16/9;
}
.video-content iframe {
  width: 100%;
  height: 100%;
}

section {
  margin-top: 92px;
  margin-bottom: 92px;
}
section.fv, section.product-menu {
  margin-top: 0;
}
section#container-snsvoice, section.cart {
  margin-bottom: 0;
}
section#container_insta {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 92px;
  padding-bottom: 92px;
  background: #e7efef;
}
section.bg_cream {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 92px;
  padding-bottom: 92px;
}
section.accessory-link {
  margin-bottom: 20px;
}
section.banner {
  margin-top: 20px;
}
section .container {
  max-width: 800px;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  section .container {
    width: 95%;
    margin: 0 auto;
  }
}

/*——————————————————————————————————————————————
footer
——————————————————————————————————————————————*/
a.PageTop {
  transform: translateZ(0);
  opacity: 0;
  z-index: 999;
  display: block;
  text-align: center;
}
a.PageTop > p.sp {
  margin-bottom: 20px;
}

.PageTop_circle {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 1px solid #fff;
  background: transparent;
  bottom: 35px;
  right: 35px;
  position: static;
  margin: 5px auto 0;
}

.fa-angle-up {
  position: absolute;
  font-size: 1.5em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.pagetop_anime_in {
  -webkit-animation: pagetop_in 0.5s ease-out 0s 1 normal forwards;
  animation: pagetop_in 0.5s ease-out 0s 1 normal forwards;
}

.pagetop_anime_out {
  -webkit-animation: pagetop_out 0.5s ease-in 0s 1 normal forwards;
  animation: pagetop_out 0.5s ease-in 0s 1 normal forwards;
}

@-webkit-keyframes pagetop_in {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pagetop_in {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pagetop_out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}
@keyframes pagetop_out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}
footer {
  padding: 70px 0;
  width: 100%;
  background: #378ea0;
}
footer .footer_petico {
  max-width: 230px;
  margin: 0 auto;
}
footer .footer_petico .logo_petico img {
  max-width: 224px;
}
footer .footer_petico .sns_list {
  padding: 37px 0;
}
footer .footer_inner_bottom {
  margin: 0 auto;
}
footer .footer_inner_bottom .copy,
footer .footer_inner_bottom .attention {
  font-size: 11px;
  color: #fff;
}
footer .footer_inner_bottom .copy {
  display: block;
  text-align: center;
  padding: 37px 0;
}
footer .footer_inner_bottom .attention {
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 3px;
}

.floating-button {
  z-index: 99;
  position: fixed;
  bottom: 20px;
  right: 10px;
}
@media screen and (min-width: 992px) {
  .floating-button {
    left: calc(50% + 420px);
    transform: translateX(-50%);
  }
}
.floating-button.ico-button {
  background: #378ea0;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  text-align: center;
}
.floating-button.ico-button img {
  width: 100%;
  padding: 15px 20px 20px;
}
.floating-button.hug-button {
  background: #6b8a64;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  text-align: center;
}
.floating-button.hug-button img {
  width: 100%;
  padding: 15px 20px 20px;
}

.fv-bottom-catch {
  font-size: 19px;
  padding: 25px 0;
  background: #e7edef;
}

.top .fv-petico-info,
.top .fv-hug-info {
  padding-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .top .fv-petico-info,
.top .fv-hug-info {
    width: 50%;
  }
}
.top .fv-petico-info .btn-wrap,
.top .fv-hug-info .btn-wrap {
  max-width: 225px;
}
@media screen and (max-width: 767px) {
  .top .fv-petico-info .btn-wrap,
.top .fv-hug-info .btn-wrap {
    max-width: 175px;
    width: 100%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .top .fv-petico-info .btn-wrap,
.top .fv-hug-info .btn-wrap {
    max-width: 180px;
    width: 100%;
    white-space: nowrap;
  }
}
.top .fv .fv-petico-image img,
.top .fv .fv-hug-image img {
  width: 100%;
  height: 100%;
  -o-object-position: top left;
     object-position: top left;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .top .fv .fv-petico-image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top .fv .parent {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .top .fv .fv-hug-image {
    display: none;
  }
  .top .fv .fv-petico-info img {
    padding: 40px 12px 20px;
  }
  .top .fv .fv-hug-info img {
    padding: 40px 11px 20px !important;
  }
}
@media screen and (min-width: 992px) {
  .top .fv .fv-petico-info img,
.top .fv .fv-hug-info img {
    width: 80%;
    padding: 25% 30px 20px;
  }
  .top .fv .fv-petico-image {
    grid-area: 1/1/3/2;
  }
  .top .fv .fv-petico-info {
    grid-area: 1/2/2/3;
  }
  .top .fv .fv-hug-info {
    grid-area: 2/2/3/3;
  }
  .top .fv .fv-hug-image {
    grid-area: 1/3/3/4;
  }
}
@media screen and (min-width: 1200px) {
  .top .fv .parent {
    display: grid;
    grid-template-columns: 1fr minmax(285px, 23.75%) 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .top .fv .parent {
    display: grid;
    grid-template-columns: 1fr 285px 1fr;
    grid-template-rows: repeat(2, 383px);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .top .fv .parent {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .top .fv .fv-petico-image {
    grid-area: 1/1/3/2;
  }
  .top .fv .fv-petico-info {
    grid-area: 1/2/2/3;
  }
  .top .fv .fv-hug-info {
    grid-area: 2/2/3/3;
  }
  .top .fv .fv-hug-image {
    display: none;
  }
  .top .fv .fv-petico-info img,
.top .fv .fv-hug-info img {
    padding: 60px 30px 20px;
  }
}
.top .product-menu {
  width: 100%;
}
.top .product-menu .product-menu-item {
  display: flex;
}
@media screen and (max-width: 991px) {
  .top .product-menu .product-menu-item {
    display: block;
  }
}
.top .product-menu .product-menu-item .w-max-box {
  max-width: 50%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .top .product-menu .product-menu-item .w-max-box {
    max-width: 100%;
  }
}
.top .product-menu .product-menu-item .w-max-right,
.top .product-menu .product-menu-item .w-max-left {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .top .product-menu .product-menu-item .w-max-right,
.top .product-menu .product-menu-item .w-max-left {
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .top .product-menu .product-menu-item .w-max-right,
.top .product-menu .product-menu-item .w-max-left {
    max-width: 95%;
  }
}
.top .product-menu .product-menu-item .w-max-right {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .top .product-menu .product-menu-item .w-max-right {
    margin-right: auto;
  }
}
.top .product-menu .product-menu-item .w-max-left {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 991px) {
  .top .product-menu .product-menu-item .w-max-left {
    margin-left: auto;
  }
}

#container-snsvoice.bg_mint {
  background: #E7EFEE;
}
#container-snsvoice .inner_snsvoice {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hug .size-info > div {
  border: 3px solid #378f75;
}
.hug .title_underline:after {
  background: #378f75;
}
.hug .ico-point-list_top .ico-point-list_item {
  counter-increment: mycounter;
  margin-bottom: 40px;
}
.hug .ico-point-list_item {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hug .ico-point-list_item .num {
  font-weight: bold;
  padding: 4.5px 9px;
  margin-right: 20px;
  letter-spacing: 0px;
  font-size: 30px;
  border-radius: 3px;
  border: 1px solid #378f75;
  color: #378f75;
}
.hug .ico-point-list_item .num::before {
  content: counter(mycounter, decimal-leading-zero);
}
.hug .ico-point-list_item .text {
  font-weight: bold;
  font-size: 18px;
}
.hug .ico-point-list_item > p:nth-child(2) {
  flex: 1;
}
.hug footer {
  background: #6b8a64;
}
.hug .size-button.selected {
  background-color: #fff;
  border: 3px solid #6b8a64;
  color: black;
}
.hug .color-button.selected .color-circle {
  border: 3px solid #6b8a64;
}
.hug .swiper-button-next,
.hug .swiper-button-prev {
  color: #6b8a64;
}
.hug .swiper-pagination-bullet-active {
  background-color: #6b8a64;
}
.hug .parent .swiper-pagination-bullet-active {
  background: #6b8a64;
}

.ico .ico-point-list_top .ico-point-list_item {
  counter-increment: mycounter;
  margin-bottom: 40px;
}
.ico .ico-point-list_bottom {
  margin-top: 60px;
  counter-reset: mycounter 4;
}
.ico .ico-point-list_bottom .ico-point-list_item {
  counter-increment: mycounter;
}
.ico .ico-point-list_bottom .ico-point-list_item .text {
  font-size: 13px;
}
.ico .ico-point-list_item {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ico .ico-point-list_item .num {
  font-weight: bold;
  padding: 4.5px 9px;
  margin-right: 20px;
  letter-spacing: 0px;
  font-size: 30px;
  border-radius: 3px;
  border: 1px solid #36b0c9;
  color: #36b0c9;
}
.ico .ico-point-list_item .num::before {
  content: counter(mycounter, decimal-leading-zero);
}
.ico .ico-point-list_item .text {
  font-weight: bold;
  font-size: 18px;
}
.ico .ico-point-list_item > p:nth-child(2) {
  flex: 1;
}

.color_icon {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
}
.color_icon.bw_color {
  background: rgb(169, 210, 232);
  background: linear-gradient(360deg, rgb(169, 210, 232) 50%, rgb(255, 255, 255) 50%);
}
.color_icon.gw_color {
  background: rgb(198, 195, 189);
  background: linear-gradient(360deg, rgb(198, 195, 189) 50%, rgb(255, 255, 255) 50%);
}
.color_icon.pw_color {
  background: rgb(232, 197, 197);
  background: linear-gradient(360deg, rgb(232, 197, 197) 50%, rgb(255, 255, 255) 50%);
}
.color_icon.sb_color {
  background: rgb(169, 210, 232);
}
.color_icon.sg_color {
  background: rgb(198, 195, 189);
}
.color_icon.be_color {
  background: #d7c8a7;
}
.color_icon.kh_color {
  background: #7a8f75;
}
.color_icon.nv_color {
  background: #516f9b;
}

/* サイズ選択ボタン */
.size-button {
  border-radius: 0.5rem;
  transition: all 0.3s;
  border: 1px solid #dee2e6;
  color: #000;
  padding: 1rem;
  display: block;
  width: 100%;
  text-align: left;
  background: none;
}

.size-button.selected {
  background-color: #fff;
  border: 3px solid #36b0c9;
  color: black;
}

.size-name {
  font-size: 1.2rem;
}

/* カラー選択ボタン */
.color-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.color-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  transition: all 0.3s;
}

.color-button.selected .color-circle {
  border: 3px solid #36b0c9;
}

.color-name {
  font-size: 0.58rem;
}
@media screen and (max-width: 991px) {
  .color-name {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .color-name {
    font-size: 0.5rem;
  }
}

/* スライダー */
.swiper {
  width: 100%;
  margin-bottom: 2rem;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* スライダーナビゲーションのスタイル */
.swiper-button-next,
.swiper-button-prev {
  color: #36b0c9;
}

.swiper-pagination-bullet-active {
  background-color: #36b0c9;
}

/* ページネーションのスタイル */
.parent {
  text-align: center;
  margin-top: 1rem;
}

.parent .swiper-pagination {
  position: static;
  width: auto;
  display: inline-block;
}

.parent .swiper-pagination-bullet {
  margin: 0 4px;
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.parent .swiper-pagination-bullet-active {
  background: #36b0c9;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.product-info .table th {
  background: #f7f7f7;
}
.product-info .table th,
.product-info .table td {
  width: 50%;
  font-size: 13px;
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
}

.qa-1 {
  max-width: 100%;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 5px;
}
.qa-1 summary {
  display: block;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  font-weight: 600;
  cursor: pointer;
}
.qa-1 summary::-webkit-details-marker {
  display: none;
}
.qa-1 summary::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
.qa-1 summary::before {
  content: "Q";
}
.qa-1 summary::after {
  margin-left: 10px;
  color: #58acba;
  content: "＋";
  transition: transform 0.5s;
}
.qa-1[open] summary::after {
  content: "ー";
  color: #58acba;
}
.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}
.qa-1[open] p {
  transform: none;
  opacity: 1;
}
.qa-1[open] p a {
  color: #58acba;
}
.qa-1[open] p a:hover {
  border-bottom: 1px solid #58acba;
}
.qa-1 p::before {
  line-height: 1.2;
  content: "A";
}

/* 商品選択コンポーネントのスタイル */
/* カラーボタンのスタイル */
.color-option {
  cursor: pointer;
  position: relative;
  text-align: center;
  display: inline-block;
}

.color-option.active {
  border: 2px solid #36b0c9;
}

/* サイズ選択のスタイル */
.size-option {
  border: 1px solid #dee2e6;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.size-option.active {
  border-color: #36b0c9;
  background-color: #f8f9fa;
}

.size-option .price {
  font-weight: bold;
  margin-top: 5px;
}

/* スライダーのスタイル */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #36b0c9;
}

/* カートボタン */
.cart-button:hover .color-name {
  background: #36b0c9;
}

/* 商品画像 */
.product-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#text-wrap {
  display: block;
  margin: 0 auto;
}

.hide-text {
  display: none;
}

button.readmore {
  position: relative;
  padding: 15px;
  text-align: center;
  width: 100%;
  margin: 40px auto;
  display: block;
  background-color: transparent;
  color: #36b0c9;
  border: 1px solid #cccccc;
  outline: 0;
  transition: 0.5s;
  -erbkit-transition: 0.5s;
}

.on-click {
  color: transparent !important;
}

.parent .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
}

.product-container .parent {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  top: -450%;
}

.ico-accessory .swiper-button-next,
.ico-accessory .swiper-button-prev,
.hug .swiper-button-next,
.hug .swiper-button-prev {
  top: -850%;
}
@media screen and (max-width: 767px) {
  .ico-accessory .swiper-button-next,
.ico-accessory .swiper-button-prev,
.hug .swiper-button-next,
.hug .swiper-button-prev {
    top: -1100%;
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -13px);
}
.swiper-button-next:after {
  content: "\f0da";
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -13px);
}
.swiper-button-prev:after {
  content: "\f0d9";
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "FontAwesome";
  font-size: 37px;
}

#content > div {
  display: none;
}