/** Shopify CDN: Minification failed

Line 29:0 Unexpected "@"
Line 3403:0 Unexpected "}"

**/
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
span,
ul,
li,
a,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 144px;
}
@ screen and (max-width: 767px) {
  html{
    scroll-padding-top: 100px;
  } 
}

body {
  font-size: 1.4rem;
  color: #707070;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .page-width{
    padding:0 20px;
  }
}

.inner {
  width: 100%;
  max-width: calc(1200px + 50px*2);
  padding: 0 50px;
  margin: 0 auto;
}


@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.button.--custom {
  background: transparent;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  text-align: left;
  /* margin: 64px auto 0; */
  margin: 34px 105px 0 20px;/* ======== 修正 ======== */
  position: relative;
  padding-left: 40px;

  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-align: right;
  color: #3f858e;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .button.--custom {
    font-size: 1.4rem;
    margin: 32px auto 0;
    padding-right: 56px;
  }
}

.button.--custom::before,
.button.--custom::after {
  content: none;
}

.button.--custom .button__text {
  position: relative;
}

.button.--custom .button__text::after {
  background: url("./button-arrow.svg") no-repeat center center / contain;
  position: absolute;
  content: '';
  right: -104px;
  left: auto;
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .button.--custom .button__text::after {
    width: 40px;
    height: 40px;
    right: -56px;
  }
}

.button.--custom:hover {
  background-position: left;
  background-size: 0 100%, 100% 100%;
}



/* ================================================================================ */
/* 告知バー */
/* ================================================================================ */
.announcement-bar {
  border-bottom: 1px solid #fff;
  max-height:42px;
}

@media screen and (max-width: 767px) {
  .announcement-bar {
    border-bottom: 1px solid #fff;
  }
}

.announcement-bar .text {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-right:20px;
  display:inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;/* ======== 修正 ======== */
  font-weight: bold;/* ======== 修正 ======== */
}

@media screen and (max-width: 767px) {
  .announcement-bar .text {
    font-size: 14px;
    margin-right:8px;
  }
}

.announcement-bar .num {
 font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .announcement-bar .num {
    font-size: 20px;
  }
}

.announcement-bar .date {
  font-size: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif!important;/* ======== 修正 ======== */
  font-weight: bold!important;/* ======== 修正 ======== */
}

@media screen and (max-width: 767px) {
  .announcement-bar .date {
    font-size: 12px;
  }
}

.announcement-bar__message{
  display:flex;
  align-items:center;
  padding:3px;
}

/* ================================================================================ */
/* ヘッダー */
/* ================================================================================ */

/* 追従ヘッダー */
sticky-header{
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.08); 
}
@media screen and (max-width: 749px) {
  sticky-header{
    top:-1px;
  }
}

.header.drawer-menu {
  max-width: 1300px;
  padding:20px 50px;
  max-height:96px;
}

@media screen and (max-width: 749px) {
  .header.drawer-menu {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 749px) {
  .header__heading-logo-wrapper{
    max-width:120px;  
  }
}

.header-menu .header__menu-item.--custom {
  padding-bottom: 16px;
  text-decoration: none;
}

.header__menu-item.--custom:hover span {
  opacity: 0.7;
}

.header__menu-item.--custom span {
  color: #333;
  transition: opacity 0.5s;
  text-decoration: none;
}


.header__submenu.--custom {
  border-top: 2px solid #0A2878;
  transition: all 0.5s;
}

.header__submenu.--custom a {
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: opacity 0.5s;
}

.header__submenu.--custom a:hover {
  opacity: 0.7;
}

details[open]>.header__submenu.--custom {
  animation: animateMenuOpenCustom 0.5s ease;
  animation-fill-mode: forwards;
}

@keyframes animateMenuOpenCustom {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.header-search--pc{
  display: inline-flex;
  display:none;
}

.header-search--sp{
  display:none;
}
@media screen and (max-width: 749px) {
  .header-search--sp{
    display: none;
    /* position:absolute; 
    left: 48px; */
    display: inline-flex;
    align-items: center;
    /* top:21px; */
    /* transform:translatey(-50%); */
  }
  .header__search details{
    position: absolute;
    left: 48px;
    /* display: inline-flex;
    align-items: center; */
    top: 21px;
  }
  .header__search details[open] {
    position:static;
  }
}

.header__icons {
  align-items: center;
}
.menu-open .header__icons{
  opacity:.2;
  pointer-events:none;
}

@media screen and (min-width: 990px) {
  .header__search-custom {
    display: block;
  }

  .header__inline-menu {
    display: flex;
    justify-content: center;
  }
}

.header__search-custom .search__input.field__input {
  font-size: 12px;
  border: 1px solid #cccccc;
  border-radius: 50vh 0 0 50vh;
}

.header__search-custom .field__label {
  font-size: 1.2rem;
  color: #ccc;
  top: calc(1.5rem + var(--inputs-border-width));
}

.header__search-custom .search__button.field__button {
  /* width: 65px; */
  width: 86px;
  position: inherit;
  background-color: #0a2878 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 0 50vh 50vh 0;
  padding-right: 8px;
}

.header__search-custom .search__button.field__button img {
  display: block;
  width: 13px;
  height: 13px;
}

.header__search-custom .search__button.field__button span {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.header__icon {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  margin-left: 21px;
  text-decoration: none;
  transition: 0.5s;
  align-items:center;
}

.header__icon:hover {
  /* opacity: 0.7; */
}

.header__icon:hover .icon {
  transform: none;
}

.header__icon-favorite {
  margin-left: 33px;
}
.icon-hamburger:hover{
  opacity:.7;
}
.icon-hamburger{
  transform: none;
}

.header__icon--search:hover{
  opacity:.7;
}

.header-wrapper .header__icon-text {
  height: auto;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: #0a2878;
  text-decoration: none;
}

.cart-count-bubble {
  background-color: #fff;
  bottom: inherit;
  top: 24px;
  left: inherit;
  right: -8px;
}

.header.header__icon span {
  line-height: 0;
}

.header__icon--cart .icon{
  max-width:19px;
}
.header__icon--cart{
  max-width: 19px;
  width:100%;
}


.header__icon--menu .icon{
  width:4.8rem;
}
@media screen and (max-width: 749px) {
  .header__icon--menu .icon{
    width:2.8rem;
  }
}

.menu-opening .header__icon--menu .icon {
  position:fixed;
  left: 490px;
  top: 32px;
  max-width:33px;
  height:auto;
  z-index: 3;
}


@media screen and (max-width: 749px) {
  .menu-opening .header__icon--menu .icon {
    left: auto;
    right: 20px;
    max-width:28px;
  }
}

.js #menu-drawer {
  height: 100vh !important;
  top: 0;
  top: 0px;
  position: fixed;
  width:460px;
}

@media screen and (max-width: 749px) {
  .js #menu-drawer {
    width: 82.05%;
  }
}

#Details-menu-drawer-container .header__icon--menu[aria-expanded=true]:before {
  background: #132026;
  top: -60px;
  height: calc(100vh + 60px);
  opacity:.6;
  z-index: 2;
}
#Details-menu-drawer-container .header__icon--menu:before{
  background: #132026!important;
  opacity:.6!important;
}

.shopify-section-group-header-group {
  z-index: 1;
}

.header--has-social .menu-drawer__utility-links {
  background-color: #263843;
}

.menu-drawer__navigation-container .menu-drawer__navigation{
  padding:8rem 10rem;
}
@media screen and (max-width: 749px) {
  .menu-drawer__navigation-container .menu-drawer__navigation{
    padding:3.6rem 2rem;
  }  
}
.menu-drawer__account {
  padding: 2rem 0.8rem !important;
  width: 100%;
  border-top:1px solid #fff;
}

.menu-drawer__account .icon-account {
  margin-left: auto;
  margin-right: 0;
}

.js #menu-drawer .menu-drawer__menu-item>.icon-arrow {
  right: 20px;
}

.js #menu-drawer .menu-drawer__menu-item {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 2rem 0.8rem !important;
}
@media screen and (max-width: 749px) {
   .js #menu-drawer .menu-drawer__menu-item {
    padding: 1.6rem 0.8rem !important;
  } 
}
.js .menu-drawer__menu li{
  border-top: 1px solid #FFFFFF;
}

.js .menu-drawer__menu li:last-child {
  border-bottom: 1px solid #FFFFFF;
}

.js #menu-drawer .menu-drawer__menu-item a:last-child {
  border-bottom: none;
}
.menu-drawer__menu-item--active, .menu-drawer__menu-item:focus, .menu-drawer__close-button:focus, .menu-drawer__menu-item:hover, .menu-drawer__close-button:hover{
  color:#CBCBCB!important;
  background-color:inherit!important;
}

.js #menu-drawer .has-submenup .menu-drawer__close-button {
  display: none !important;
}


.js #menu-drawer .menu-drawer__inner-submenup .list-menu{
  padding:0 10px;
}
.js #menu-drawer .menu-drawer__inner-submenup li{
  border:none;
}

.js #menu-drawer .menu-drawer__inner-submenup li a {
  padding: 12px 16px 12px!important;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.menu-drawer .list-social__link{
  margin-left: 0.8rem;
  text-decoration:none;
}
.menu-drawer .list-social__link span{
  display:inline-block;
  margin-left:8px;
}

.menu-drawer__menu li:has(#HeaderDrawer-プライバシーポリシー) {
    border:none;
}
.js #menu-drawer .menu-drawer__menu li #HeaderDrawer-プライバシーポリシー {
    padding-top:8px!important;
    padding-bottom:10px!important;
}


/* ================================================================================ */
/* ======== cupsMenuメニュー ======== */
/* ================================================================================ */

.cupsMenu {
  background:#FFFFFF;
}

.cupsMenu__list {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  max-width: 1200px;
  max-height: 48px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .cupsMenu__list {
    justify-content: space-between;
  }
}

.cupsMenu__item {
  position: relative;
  list-style: none;
  padding: 15px;
  line-height: 1;
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .cupsMenu__item {
    padding: 13px 0;
    width: auto;
  }
}

.cupsMenu__item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background: #cbcbcb;
  top: 50%;
  transform: translateY(-50%) rotate(27deg);
  left: 0px;
}

@media screen and (max-width: 767px) {
  .cupsMenu__item::before {
    /* left: -72px; */
    left: -12.82vw;
  }
}

@media screen and (max-width: 767px) {
  .cupsMenu__item:first-child::before {
    content: none;
  }
}



.cupsMenu__item:last-child::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background: #cbcbcb;
  top: 50%;
  transform: translateY(-50%) rotate(27deg);
  right: 0px;
}

@media screen and (max-width: 767px) {
  .cupsMenu__item:last-child::after {
    content: none;
  }
}

.cupsMenu__link {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cupsMenu__link {
    font-size: 15px;
  }
}

.cupsMenu__item .cupsMenu__link::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .cupsMenu__item .cupsMenu__link::before {
    content: none;
  }
}

.cupsMenu__item:nth-child(1) .cupsMenu__link::before {
  background: url("./cupsMenu-6.svg") no-repeat center center / contain;
  width: 16px;
  height: 10px;
}

.cupsMenu__item:nth-child(2) .cupsMenu__link::before {
  background: url("./cupsMenu-12.svg") no-repeat center center / contain;
  width: 22px;
  height: 16px;
}

.cupsMenu__item:nth-child(3) .cupsMenu__link::before {
  background: url("./18CUPS.svg") no-repeat center center / contain;
  width: 28px;
  height: 22px;
  left:-40px;
}

.cupsMenu__item .cupsMenu__link::after {
  background: url("./cupsMenu-triangle.svg") no-repeat center center / contain;
  content: '';
  position: absolute;
  width: 8px;
  height: 7px;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .cupsMenu__item .cupsMenu__link::after {
    content: none;
  }
}

.cupsMenu_text {
  margin: 0;
}



/* ================================================================================ */
/* ======== メインビュー ======== */
/* ================================================================================ */

.top-mv .splide__slide {
  width: 100vw;
  max-height: 800px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top-mv .splide__slide {
    max-height: 100vh;
  }
}

.top-mv .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* aspect-ratio: 980 / 490; */
}

/* ページネーション */
.top-mv .splide__pagination {
  bottom: 82px;
  right: 80px;
  left: auto;
  gap: 20px;
  counter-reset: pagination-num;
  padding:0;
}

@media screen and (max-width: 1920px) {
  .top-mv .splide__pagination {
    bottom: 4.27vw;
    right: 4.16vw;
  }
}

@media screen and (max-width: 767px) {
  .top-mv .splide__pagination {
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
  }
}


.top-mv li {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 767px) {
  .top-mv li {
    width: 8px;
    height: 8px;
  }
}

.top-mv li .splide__pagination__page {
  width: 24px;
  height: 24px;
  background-color: transparent;
  margin: 0;
  transform: scale(1);
  border: 1px solid #CBCBCB;
  color: #CBCBCB;
}

@media screen and (max-width: 767px) {
  .top-mv li .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}

.top-mv li .splide__pagination__page.is-active {
  background-color: #fff;
  color: #015E6A;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .top-mv li .splide__pagination__page.is-active {
    background-color: #015E6A;
    border: 1px solid #015E6A;
  }
}

@media screen and (min-width: 768px) {
  .splide__pagination__page:before {
    content: counter(pagination-num);
    counter-increment: pagination-num;
  }
}

/* アロー */
.top-mv .splide__arrow {
  width: 60px;
  height: 60px;
  /* box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25); */
  position: absolute;
  top: 50%;
  z-index: 1;
  opacity: 1;
  border: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.08);

}

.top-mv .splide__arrow--prev {
  background: url("./slider-arrow-left.png") no-repeat center center / contain;
  left: 0;
}

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

  .top-mv .splide__arrow--prev,
  .top-mv .splide__arrow--next {
    display: none;
  }
}

.top-mv .splide__arrow--next {
  background: url("./slider-arrow-right.png") no-repeat center center / contain;
  right: 0;
}

.top-mv__slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 20px auto 0;
}

.top-mv__slide-dots li {
  height: fit-content;
}

.top-mv__slide-dots li button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: 0;
  width: 11px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  background-color: #cccccc;
}

.top-mv__slide-dots .slick-active button {
  background-color: #555555;
}

@media screen and (max-width: 767px) {
  .top-mv .splide__slide {
    margin: 0px;
    border-radius: 0px;
  }

  .top-mv .splide__slide img {
    aspect-ratio: 390 / 390;
  }
}

.totop{
  position:absolute;
  bottom:-32px;
  right:29px;
  width: 23px;
  height: 82px;
  color:#3F858E;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-decoration:none;
  z-index:9999;
}
@media screen and (max-width: 767px) {
  .totop{
    position:fixed;
    bottom:16px;
  }
}

.totop span{
  font-family: "Poppins", sans-serif;
  position:relative;
}
.totop span::before{
  content:'';
  position:absolute;
   background: url("./totop-arrow.svg") no-repeat center center / contain;
  left:50%;
  transform:translatex(-50%);
  width:7px;
  height:65px;
  top:-80px;
}
.totop.fixed{
  position:fixed;
  bottom:88px;
}
@media screen and (max-width: 767px) {
  .totop.fixed{
     bottom:16px; 
  }
}
/* ============================================= */
/* ======== Pick up item ======== */
/* ============================================= */

  .section__head {
    text-align: center;
  }


.section__head-main {
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  color: #3f858e;
  margin-bottom: 0;
  text-align: center;
  margin-top: 60px;
}
@media  screen and (max-width:767px){
  .section__head-main{
    margin-top: 0px;
  }
}

.section__head-sub {
  display: inline-flex;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0 40px;
  color:#707070;
}
@media screen and (max-width: 767px) {
  .section__head-sub {
    margin-top:8px;
  }
}

.section__head-sub::before,
.section__head-sub::after {
  display: none;
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background: #cbcbcb;
  top: 50%;
  transform: translateY(-50%) rotate(27deg);
  left: 16px;
}

.section__head-sub::after {
  right: 8px;
  left: auto;
}


@media screen and (max-width: 767px) {
  .section__head-main {
    font-size: 2.8rem;
    text-align: center;
  }

  .section__head-sub {
    font-size: 1.6rem;
    text-align: center;
  }
}


.pickUp {
  padding-top: 30px;
  padding-bottom: 160px;
  /* margin-left: -300px; */
}

@media screen and (max-width: 767px) {
  .pickUp {
    padding-top: 84px;
    padding-bottom: 64px;
    /* margin-left: -300px; */
  }
}

.pickUp__inner {
  width: 100%;
  max-width: 1200px;
  /* padding: 0 50px 0 0; */
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap:160px;
  gap:13.33%;
  padding-top: 40px;
}

@media screen and (max-width: 1400px) {
  .pickUp__inner {
    gap:8%;
    padding-right:50px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp__inner {
    padding-right: 0;
    flex-direction: column;
  }
}


.pickUp__left {
  /* width: 45%; */
  /* max-width: 720px; */
  margin-left:-200px;
  width: calc(100% - 39.9166667%);
}
@media screen and (max-width: 1440px) {
  .pickUp__left {
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .pickUp__left {
    width: 100%;
  }
}


.pickUp__left img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  aspect-ratio: 720 / 720;
  max-width: 720px;
  /* margin-left: -150px; */
}

@media screen and (max-width: 767px) {
  .pickUp__left img {
    /* margin-left: -8.82vw;
    max-width: 42.35vw; */
    aspect-ratio: 390 / 390;
    max-width: 100%;
  }
}

.pickUp__right {
  /* width: 43.33%; */
  /* width: 32.5%; */
  width:43.3333333%;
}

@media screen and (max-width: 1650px) {
  .pickUp__right {
    /* margin-right: 12.12vw; */
  }
}

@media screen and (max-width: 1400px) {
  .pickUp__right {
    /* margin-right: 12.12vw; */
  }
}

@media screen and (max-width: 767px) {
  .pickUp__right {
    /* margin-right: 12.12vw; */
    width: 100%;
    margin-right: 0;
    padding: 0 20px;
  }
}

.pickUp__right .section__head-main {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .pickUp__right .section__head-main {
    margin: 32px auto 0;
  }
}

.pickUp__title {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  color: #3F858E;
  /* margin-top: 88px; */
  margin-bottom:0;
  padding-bottom: 14px;
  border-bottom: 1px solid #CBCBCB;
}

@media screen and (max-width: 1650px) {
  .pickUp__title {
    margin-top: 5.33vw;
    padding-bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp__title {
    margin-top: 32px;
    font-size: 2rem;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}

.pickUp__detail {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
 .pickUp__detail {
    margin-top: 16px;
  } 
}

.pickUp__detail p {
  letter-spacing: 0.04em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .pickUp__detail p {
    margin-top: 16px;
  }
}

.pickUp__price {
  letter-spacing: 0.04em;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .pickUp__price {
    margin-top:16px;
    line-height:1.3;
  }
}

.pickUp__price span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.pickUp__message {
  display: flex;
  margin-top: 32px;
  /* flex-wrap: wrap; */
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pickUp__message {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .pickUp__message {
    margin-top: 24px;
  }
}

.pickUp__message__img {
  display: flex;
  gap: 4px;
}

.pickUp__message__img img {
  object-fit: cover;
  aspect-ratio: 128/128;
  max-width:128px;
}

@media screen and (max-width: 767px) {
  .pickUp__message__img img {
    max-width: 77px;
    max-height: 77px;
  }
}

.pickUp__message__text {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-left: 21px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .pickUp__message__text {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .pickUp__message__text {
    font-size: 10px;
    letter-spacing: -0.04em;
    line-height: 18px;
    text-align: center;
    padding: 0 5px;
    margin-left: 8px;
  }
}

.pickUp__message__text::before,
.pickUp__message__text::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 57px;
}

.pickUp__message__text::before {
  background: url("./pickUp-message-left.svg") no-repeat center center / contain;
  left: 0;
}

.pickUp__message__text::after {
  background: url("./pickUp-message-right.svg") no-repeat center center / contain;
  right: 0;
}

.pickUp__message__detail {
  font-size: 12px;
  letter-spacing: -0.04em;
  line-height: 18px;
}

@media screen and (max-width: 767px) {
  .pickUp__message__detail {
    font-size: 10px;
  }
}

.pickUp__btn {
  margin-top: 8px;
  text-align: right;/* ======== 修正 ======== */
}

@media screen and (max-width: 767px) {
  .pickUp__btn {
    margin-top: 0px;
    text-align: center;
  }
}


/* ================================================================================ */
/* ======== cups set ======== */
/* ================================================================================ */
.cups-set {
  overflow: hidden;
  padding-bottom:96px;
}

@media screen and (max-width: 767px) {
  .cups-set {
    padding: 0px 0 64px;
  }
}

.cups-set .collection__title.title-wrapper {
  padding: 0px 50px 0;
  text-align: center;
  max-width:1300px;
}
@media screen and (max-width: 767px) {
  .cups-set .collection__title.title-wrapper {
    padding: 0px 15px 0;
  }
}

.cups-set .collection__title.title-wrapper .custom-h1.--custom{ 
  padding: 80px 0px 0;
  border-top: 1px solid #CBCBCB;
}
@media screen and (max-width: 767px) {
  .cups-set .collection__title.title-wrapper .custom-h1.--custom{ 
    padding: 64px 0px 0;
  }
}

.cups-set .pickUp__btn {
  text-align: right;
}


/* == スライダー==============================================*/
.outer {
  /* max-width: 1000px; */
  padding: 0 50px;
  margin: 40px auto 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .outer {
    padding: 0 20px;
     margin: 32px auto 0;
  }
}

.sliders {
  position: relative;
  max-width: 1200px;
  margin: 0px auto;
}

.cups__slider,
.flavor__slider {
  width: 100%;
}

.cups__slider .splide__track,
.flavor__slider .splide__track{
  overflow: visible;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cups__slider .splide__track,
  .flavor__slider .splide__track{
    padding-bottom:24px;
    padding-top:0px;
  }
}

@media screen and (max-width: 767px) {
  .my-carousel-progress {
    background: #CBCBCB;
  }
  .my-carousel-progress-bar {
    background: #015E6A;
    height: 2px;
    transition: width 400ms ease;
    width: 16%;
  }
}

.cups__slider .splide__slide {
  max-width: 282px;
}

.outer .splide__arrow {
  width: 56px;
  height: 56px;
  position: absolute;
  border-radius: 0;
  top: 128px;
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 1;
  box-shadow: 4px 6px 16px #00000014;
}

.outer .splide__arrow--prev {
  background: url("./slider-arrow-left.png") no-repeat center center / contain;
  left: -28px;
}
@media screen and (max-width: 767px) {
  .outer .splide__arrow--prev {
     left:0; 
  }
}

.outer .splide__arrow--next {
  background: url("./slider-arrow-right.png") no-repeat center center / contain;
  right: -28px;
}
@media screen and (max-width: 767px) {
  .outer .splide__arrow--next {
     right:0; 
  }
}

.outer .splide__arrow:disabled {
  opacity: 0;
  visibility: hidden;
}


.cups__slider .card--media .card__inner .card__content{
  display:none;
}

.cups__slider .card__newsrmation {
  padding-left: 0;
  padding-right: 0;
}


.fade-in {
  /* opacity: 1;
  visibility: visible; */
  animation: fadeInUp 0.3s ease-out forwards;
}

.fade-out {
  /* opacity: 0;
  visibility: hidden; */
  animation: fadeOutDown 0.5s ease forwards;
}

.cups__slider.additional-class {
  position: absolute;
  top: 0;
  left: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
  }

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

/* フェードアウトアニメーション */
@keyframes fadeOutDown {
  from {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
  }
}

@media screen and (max-width: 767px) {
  .cups__slider .slick-slide {
    width: calc(138 / 375 * 100vw);
    max-width: inherit;
    margin-right: 10px;
  }
}


.cups__slider .card--standard.card--media .card__inner .card__information,
.cups__slider .card--standard.card--text:not(.card--horizontal)>.card__content .card__heading:not(.card__heading--placeholder),
.cups__slider .card--standard:not(.card--horizontal)>.card__content .card__badge,
.cups__slider .card--standard.card--text.article-card>.card__content .card__information,
.cups__slider .card--standard>.card__content .card__caption {
  display: block;
}

.card--card.gradient,
.card__inner.gradient .card__information {
  display: none;
}

.cups__slider .card:not(.card--horizontal)>.card__content>.card__badge {
  margin: 0;
      position: absolute;
    top: 10px;
    left: 5px;
}

.cups__slider .card__badge {
  display: none;
  margin: 0;
}

.cups__slider .card__information {
  padding: 16px 0 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cups__slider .card__information {
    padding: 8px 0 0;
  }  
}

.cups-set__btn {
  text-align: right;
  /* margin-right: 104px; */
}
@media screen and (max-width: 767px) {
  .cups-set__btn {
    text-align: center;
    margin-right: 0;
  } 
}

.card__information{
  display:flex;
  flex-direction:column;
}
.card-information{
  margin-top:0;
}

@media screen and (max-width: 767px) {
  .card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note){
     margin-top:0; 
  }
}


/* ================================================================================ */
/* ======== NEW ITEM ======== */
/* ================================================================================ */
.custom-h1.--custom {
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  margin: 0;
  color: #3f858e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-h1.--custom span {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 64px;
  letter-spacing: 0.04em;
  color: #3f858e;
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .custom-h1.--custom span {
    font-size: 5.2rem;
  }
}

@media screen and (max-width: 767px) {
  .custom-h1.--custom {
    font-size: 2.8rem;
  }
}

/* .custom-body {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .custom-body {
    font-size: 1.2rem;
  }
}
 */
.collection__title.title-wrapper.--custom {
  margin-bottom: 40px;
}

@media screen and (max-width: 749px) {
  .collection__title.title-wrapper.--custom {
    margin-bottom: 20px;
  }
}

.collection__title.title-wrapper.--custom.mb20 {
  margin-bottom: 20px;
}

slider-component .grid.--custom {
  margin: 0;
  column-gap: 20px;
  row-gap: 20px;
}

/* @media screen and (min-width: 990px) { */
@media screen and (min-width: 768px) {
  .collection .grid--4-col-desktop .grid__item.--custom {
    width: calc(25% - 20px * 3 / 4);
    max-width: calc(25% - 20px * 3 / 4);
  }
}

@media screen and (max-width: 767px) {
  .collection .grid__item.--custom {
    width: calc(50% - 12px / 2);
    max-width: calc(50% - 6px / 2);
  }
}

@media screen and (max-width: 749px) {
  slider-component .grid.--custom {
    column-gap: 10px;
    row-gap: 10px;
  }

  .grid--2-col-tablet-down .grid__item.--custom {
    width: calc(50% - 10px / 2);
  }
}

.card__image {
  width: 100%;
  position: relative;
}

.card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.card__labels {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card__labels span {
  font-size: 1.2rem;
  font-weight: 500;
  /* color: #236274; */
  padding: 4px 8px;
  /* border: 1px solid #236274; */
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .card__labels {
    gap: 6px;
  }

  .card__labels span {
    font-size: 1rem;
  }

}

.card--standard>.card__content .card__newsrmation {
  padding: 12px 0;
}

.card .card__inner .card__media.--custom {
  z-index: 1;
}

.grid__item .card__content {
  text-decoration: none;
}

/* 
.card__colors {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

@media screen and (max-width: 767px) {
  .card__colors {
    gap: 8px;
  }
} */

.card__colors li {
  /* width: 24px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  overflow: hidden; */
}

.card__color {
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
}

@media screen and (max-width: 767px) {
  .card__color {
    width: 17px;
  }
}

.card__content .card__heading {
  font-size: 16px;
  font-weight: 700;
  /* margin-top: 12px; */
}

.full-unstyled-link.--custom {
  font-family: "Noto Sans JP", sans-serif;
}

.full-unstyled-link.--custom:after {
  display: none;
}

.grid__item.--custom .underline-links-hover:hover a {
  text-decoration: none;
}

.card__content .card__heading p {
  margin: 0;
}

.card-newsrmation {
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

.card__content .card-newsrmation>*:not(.visually-hidden:first-child)+*:not(.rating) {
  margin: 0;
}

/* .price__container .price-item.--custom {
  display: block;
  font-size: 14px;
  font-weight: 400;
} */

.full-unstyled-link {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-align: left;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .full-unstyled-link {
    font-size:12px;
  }
}

.price .price-item.--custom {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .price .price-item.--custom {
    font-size:16px;
  }
}

.yen-mark {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #707070;
  margin-right:4px;
}
@media screen and (max-width: 767px) {
  .yen-mark {
    font-size:10px;
  }  
}

.price__tax {
  font-size: 10px;
  margin-left:4px;
}

.card__content .card-newsrmation>.rating {
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .card__content .card-newsrmation>.rating {
    margin-top: 8px;
  }
}

.card-wrapper .rating-star {
  font-size: 2.3rem;
  letter-spacing: 0.3em;
}

.card-wrapper .rating-star:before {
  /* background: linear-gradient(90deg,#D0953D var(--percent),rgba(208, 149, 61,.15) var(--percent)); */
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .card-wrapper .rating-star:before {
    letter-spacing: -0.1em;
  }
}

/* .card__evaluation {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 12px;
} */

@media screen and (max-width: 767px) {
  .product-cards {
    column-gap: 10px;
    row-gap: 25px;
    margin-top: 20px;
  }

  .product-cards>li {
    width: calc(50% - 10px * 1 / 2);
  }
}


/* ======================================== */
/*  News  */
/* ======================================== */

.news .inner {
}

@media screen and (max-width: 767px) {
  .news .inner {
    padding-bottom: 64px;
  }
}

.news__box{
  padding-top: 160px;
  border-top: 1px solid #CBCBCB;
  display: flex;
  /* gap:11.4166667%;
  justify-content: space-between; */
   gap: 2.416667%;/* ======== 修正 ======== */
  justify-content:center;/* ======== 修正======== */
}
@media screen and (max-width: 820px) {
  .news__box{
    padding-top: 64px;
    flex-direction:column;
  }
}
.news__left {
  width: 16%;
}

@media screen and (max-width: 767px) {
  .news__left {
    width: 100%;
    text-align: center;
  }

  .news__left .news__btn {
    display: none;
  }
}

.news__left .section__head-main {
  margin: 0;
}

.news__right {
  width: 72.58%;
}

@media screen and (max-width: 1200px) {
  .news__right {
    width: 100%;
    margin-top: 32px;
  }
}

.news__items {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news__items>li>a {
  display: flex;
  align-items: center;
  gap: 54px;
  text-decoration: none;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .news__items>li>a {
    gap: 16px;
    display: flex;
    padding: 0;
    align-items: flex-start;
  }

}

.news__items li+li {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .news__items li+li {
    margin-top: 24px;
  }
}

.news__time {
  font-size: 16px;
  letter-spacing: 0.12em;
  margin: 0;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .news__time {
    font-size:12px;
  }
}

.news__title {
  font-size: 14px;
  letter-spacing: 0.12em;
  /* color: #707070; */
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size:12px;
    letter-spacing:0;
  }
}

.news__title:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

.news .button.--custom {
  margin-top: 44px;
  text-align:left;
  justify-content:flex-start;
}
@media screen and (max-width: 767px) {
  .news .button.--custom {
    margin-top:32px;
  }
}

.news .news__btn.--sp {
  display: none;
}

/* ============================================= */
/* ======== ニュースボタン修正 ======== */
/* ============================================= */

@media screen and (max-width: 767px){
  .news__btn{
    display:none;
  }
}

.news__btn{
  text-align: right;
}


@media screen and (max-width: 768px) {
  .news .news__btn.--sp {
    display: block;
    text-align: center;
  }
}

/* ============================================= */
/* ======== Gelateria SINCERITA ======== */
/* ============================================= */

.about {
  padding: 200px 0;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 0px 0 64px;
  }
}

.about__inner {
  width: 100%;
  max-width: 1200px;
  /* padding: 0 50px 0 0; */
  margin: 0 auto;
  display: flex;
  gap:165px;
  gap:11.3125%;
  justify-content: flex-end;
}
@media screen and (max-width: 1400px) {
  .about__inner {
    gap:8%;
  }
}
@media screen and (max-width: 1024px) {
  .about__inner {
    flex-direction: column;
    padding: 0;
  }
}

.about__left {
  /* width: 47%; */
  /* margin-right: 165px; */
  margin-left: calc(50% - 50vw);
	/* width: 100vw; */
      /* margin-left: -360px; */
}

@media screen and (max-width: 1400px) {
  .about__left {
  /* width:calc(100% - 45.9166667%); */
    /* margin-right: 8.59vw; */
  }
}

@media screen and (max-width: 767px) {
  .about__left {
    width: 100%;
  }
}

.about__left img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  aspect-ratio: 880 / 578;
  /* margin-left: -165px; */
}

.about__right {
  margin-top: 27px;/* ======== 修正 ======== */
  /* margin-right: 280px; */
  width: 44.9166667%;
}

@media screen and (max-width: 1400px) {
  .about__right {
    /* margin-right: 14.583vw; */
    margin-top:3.75%;
    padding-right:50px;
  }
}

@media screen and (max-width: 1024px) {
  .about__right {
    width: 100%;
    margin-right: 0;
    margin-top: 32px;
    padding: 0 20px;
  }
}

.about__right .section__head-main {
  margin: 0;
}

.about__detail {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .about__detail {
    margin-top: 32px;
  }
}

.about__detail p {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2.85;
}

@media screen and (max-width: 767px) {
  .about__detail p {
    font-size: 12px;
    line-height: 2.33;
    margin: 0;
  }
}
@media screen and (max-width: 1024px){
  .about__detail p{
    font-size: 14px;
    letter-spacing: 0;
    line-height: 2.85;
    display: flex;
    justify-content: center;
  }
}


.about__btn {
  /* margin-top: 64px; */
  text-align: right;/* ======== 修正 ======== */
}

@media screen and (max-width: 767px) {
  .about__btn {
    margin-top: 0px;
    text-align: center;
  }
}


/* ================================================================================ */
/*======== Footer ========*/
/* ================================================================================ */
.footer {
  /* background: #015E6A; */
  background:#263843;/* ======== 修正 ======== */
  padding: 120px 0 0;
}
@media screen and (max-width: 989px) {
  .footer {
    padding: 56px 0 0!important;
  }
}
@media screen and (max-width: 989px) {
  .footer__content-top.inner {
    padding: 0 15px;
  }
}

.footer .grid.--custom {
  flex-wrap: nowrap;
  column-gap: calc(169 / 1200 * 100%);
}
@media screen and (max-width: 1300px) {
  .footer .grid.--custom {
    column-gap: calc(50 / 1200 * 100%);
    justify-content:space-between;
  }
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 17%;
  width: 100%;
  flex: 1;
  max-width:720px;
}
@media screen and (max-width: 1300px) {
  .footer__wrap {
    column-gap: 10%;
  }
}

.footer-block--newsletter.--custom {
  max-width: 384px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 56px;
  margin-top: 0;
}

@media screen and (max-width: 989px) {
  .footer-block--newsletter.--custom {
    width: 100%;
    gap: 16px;
  }
}

.footer-block--newsletter .footer-block__heading.--custom {
  text-align: center;
  margin-bottom: 0;
}

.footer-block--newsletter.--custom strong {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: calc(2.16 / 14 * 1em);
}

.footer .header__heading-link {
  padding: 0;
  display: none;
}

@media screen and (max-width: 989px) {
  .footer .header__heading-link {
    padding: 0;
    display: block;
  }
}

@media screen and (max-width: 989px) {
  .footer .header__heading-link .header__heading-logo-wrapper{
    max-width:160px;
  }
}



.newsletter__detail {
  font-size: 1.4rem;
  text-align: left;
  margin-top: 0px;
  margin-bottom: 24px;
  /* line-height: 1.17; */
}

@media screen and (max-width: 989px) {
  .newsletter__detail {
    font-size: 12px;
  }
}

@media screen and (max-width: 989px) {
  .footer .header__heading-logo {
    max-width: 160px;
  }
}

/* 検索フィールド */
.footer-block__newsletter .newsletter-form__field-wrapper .field__input {
  font-size: 1.2rem;
  color: #fff;
  background: transparent;
  border-radius: 0 !important;
  border-bottom: 1px solid #fff;
  border-radius: 50vh 0 0 50vh;
  padding: 9px 0 5px 7px;
  height: auto;
  margin-right: 24px;
}



.footer-block__newsletter .field__label {
  font-size: 1.2rem;
  padding-left: 0;
  left: 0;
  top: 5px;
  color: #fff;
}

.footer-block__newsletter .field__button {
  width: 80px;
  position: inherit;
  background-color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* border-radius: 0 50vh 50vh 0; */
  padding: 7px 16px;
  top: 1px;
}

.footer-block__newsletter .field__button span {
  display: block;
  font-size: 1.2rem;
  color: #015E6A;
}

@media screen and (min-width: 989px) {
  .footer-block--newsletter.--custom .header__heading-link {
    display: block;
  }
}

@media screen and (max-width: 989px) {
  .footer-block--newsletter.--custom .header__heading-link {
    display: none;
  }
}

.footer-block__newsletter :after {
  display: none;
}

.footer__list-social .icon.icon-twitter {
  width: 2.4rem;
  height: 2.5rem;
}

.footer__list-social .icon.icon-youtube {
  width: 3rem;
  height: 3rem;
}

.footer__list-social .icon.icon-instagram {
  width: 2.5rem;
  height: 2.5rem;
  
}

@media screen and (max-width: 989px) {
  .footer__list-social {
    text-decoration: none;
    width: 100%;
    margin-top: 40px;
    justify-content: center !important;
  }
}

.footer__list-social .list-social__link {
  text-decoration: none;
  padding:0;
}
.footer__list-social .list-social__link span{ 
  display:inline-block;
  margin-left:8px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-block--menu.--custom {
  width: fit-content;
  flex-grow: inherit;
}

.footer-block--menu .footer-block__heading.--custom {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 24px;
  color: #fff;
  margin-bottom: 32px;
}


.list-unstyled.--custom li {
  margin-right: 0;
}

.footer-block__details-content .list-menu__item--link {
  text-decoration: none;
}

.footer__content-bottom.--custom {
  border: none;
  padding-top: 0;
  /* background-color: #015E6A; */
  background-color: #263843;/* ======== 修正 ======== */
  opacity: 1;
  /* margin-top: 40px; */
  padding: 10px 0;
  border-top: 1px solid #fff;

}

@media screen and (max-width: 989px) {
  .footer__content-bottom.--custom {
    margin-top: 56px;
  }
}

.footer__content-bottom-wrapper.--custom {
  justify-content: center;
}

.footer__copyright.--custom {
  color: #fff;
  margin-top: 0;
}

.copyright__content {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
}
.footer-block__newsletter.--custom {
  flex-grow: 0;
  width: 100%;
}
.footer-block__newsletter.--custom .newsletter-form__field-wrapper {
  max-width: 100%;
}
@media screen and (max-width: 989px) {
  .footer__wrap {
    display: block;
    /* width: 50%; */
    margin: 0 auto;
    flex: 1;
  }

  .footer .grid.--custom .footer-block--menu.--custom {
    margin: 0;
  }

  .footer .grid.--custom .footer-block--menu.--custom:last-child {
    border-bottom: 1px solid #CBCBCB;
  }

  .footer-block--menu .footer-block__heading.--custom {
    position: relative;
    cursor: pointer;
    margin-bottom: 0px;
    font-size: 16px;
    padding: 20px 10px;
  }


  .footer-block--menu .footer-block__heading.--custom.is-open:after {
    opacity: 0;
  }

  .list-unstyled.--custom {
    margin-bottom: 20px;
  }

  .list-unstyled.--custom a {
    padding: 0px 20px;
    margin-bottom: 24px;
    text-decoration: none;
    font-size: 12px;
  }
  .footer-block__details-content li:last-child a{
    margin-bottom: 0;
  }

  .footer-block__newsletter.--custom {
    flex-grow: 0;
    width: 100%;
  }

  .footer-block__newsletter.--custom .newsletter-form__field-wrapper {
    max-width: 100%;
  }

  .footer-block__newsletter.--custom .newsletter-form {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block--menu .footer-block__heading.--custom:before {
    content: "";
    display: block;
    width: 8px;
    height: 4px;
    /* background-color: #333; */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url("./footer-menu-arrow.svg") no-repeat center center / contain;
  }

  /* .footer-block--menu .footer-block__heading.--custom:after {
    content: "";
    display: block;
    width: 2px;
    height: 12px;
    background-color: #333;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
  } */
}

@media screen and (max-width: 989px) {
  .footer .grid.--custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-block--menu.--custom {
    width: 100%;
  }

  .footer-block--newsletter {
    order: 1;
  }

  .footer-block--menu .footer-block__heading.--custom {
    /* margin-bottom: 20px; */
    border-top: 1px solid #CBCBCB;
  }
}

@media screen and (max-width: 560px) {
  .footer__wrap {
    width: 100%;
  }
}


/* @media screen and (max-width: 767px) { */
@media screen and (max-width: 749px) {

  .facets.inner-lg {
    display: block !important;
  }

  .facets-vertical.inner-lg {
    margin-top: -32px;
  }

  .mobile-facets__wrapper {
    display: none !important;
  }

  .product-count {
    display: none;
  }

  .filter__wrap {
    display: flex;
    justify-content: flex-end;
    margin-right: 185px
  }

  .filter__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(calc(162 / 375 * 100vw), 162px);
  }

  .filter__menu span {
    font-size: 14px;
    font-weight: 600;
  }

  .filter__icon-filter {
    display: block;
    width: 18px;
    height: 14px;
  }

  .filter__icon-filter svg {
    vertical-align: top;
  }

  .facet-filters__sort.--custom {
    font-size: 14px;
  }

  .facets-vertical-form .facet-filters__field .select {
    width: 140px;
  }

  .facets-vertical .active-facets__button {
    padding: 4px 0;
  }



  .small-hide.--custom {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;

    padding: 24px 15px 60px;
    overflow-y: scroll;
  }

  .small-hide.--custom.is-active {
    height: 100%;
    opacity: 1;
    visibility: visible;
  }


  .drawer__close {
    content: "";
    display: block;
    position: fixed;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 14px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }

  .drawer__close.is-active {
    opacity: 1;
    visibility: visible;
  }

  .drawer__close span:first-child {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer__close span:last-child {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .drawer__layer {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.45);
    /* transform: translateX(-100%); */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
  }

  .drawer__layer.is-active {
    opacity: 1;
    visibility: visible;
  }

  /* =================== */
  /* ドロワ内部の調整 */
  /* =================== */
  .facets__form-vertical.--custom {
    width: min(calc(295 / 375 * 100vw), 325px);
  }

  .active-facets.active-facets-desktop.--custom {
    margin: 0;
  }

  .facets__head--custom {
    padding-top: 16px;
    margin-bottom: 16px;
  }

  .active-facets facet-remove {
    display: block;
  }

  .facets__display-vertical .facets__price {
    padding: 16px 0 0px;
  }

  .field .field__input.--custom {
    padding-right: 8px;
  }

  fieldset {
    border: none;
  }

  .facets__summary.--custom {
    margin-bottom: 8px;
  }

  details.facets__disclosure-vertical {
    margin-top: 36px;
  }

}

/*ここから追記（渡邉）*/
/*共通*/
.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  text-decoration-thickness: unset;
}

.c-common-title,
.c-common-subtitle {
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: left;
}

.c-common-subtitle {
  font-size: 1.6rem;
}

@media screen and (min-width: 750px) {
  .c-common-title {
    font-size: 2.8rem;
  }

  .c-common-subtitle {
    font-size: 2rem;
  }
}

a.c-colored-link,
.c-login-text a,
.cf-field a,
.c-page-content a,
#cf-edit-account-back-link,
.cart__login-paragraph a {
  color: #3f858e;
  font-weight:700;
  transition: 0.5s;
}

a.c-colored-link:hover,
.c-login-text a:hover,
.cf-field a:hover,
.c-page-content a:hover,
#cf-edit-account-back-link:hover,
.cart__login-paragraph a:hover {
  color: #D0953D;
  opacity: 0.7;
}

.c-button-bg-blue {
  background-color: #0a2878 !important;
  transition: opacity 0.5s !important;
}

.c-button-bg-blue:hover {
  opacity: 0.7 !important;
}

.c-button-bg-blue:before,
.c-button-bg-blue:after,
.c-button-bg-blue:hover:before,
.c-button-bg-blue:hover:after {
  border: none !important;
  box-shadow: none !important;
}

.customer button.c-address-button {
  padding: 0;
  min-width: unset;
  text-decoration: underline;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.c-address-modal {
  position: fixed;
  /* border: solid 1px #ccc; */
  top: 50%;
  left: 50%;
  width: 480px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  z-index: 20;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  padding: 35px 20px 20px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.2);
}

button.c-button-border {
  border: solid 1px #121212;
}

.customer button {
  font-size: 1.4rem;
}

@media screen and (min-width: 750px) {
  .c-address-modal {
    padding: 35px 40px 40px;
  }
}




/* ================================================================================ */
/* ======== ここから商品詳細ページ追加 ======== */
/* ================================================================================ */
#MainContent .product{
  margin-top:40px;
}
@media screen and (min-width: 768px) {
  #MainContent .product{
    justify-content: space-between;
    gap:6.66%;
  }
}
@media screen and (max-width: 767px) {
  #MainContent .product {
    margin-top:0px;
    flex-direction:column;
  } 
  /* #MainContent .product .page-width:first-of-type {
    padding-top:0px;
  }  */
}

@media screen and (min-width: 768px) {
  .product .product__media-wrapper{
    width:46.666%!important;
    max-width:46.666%!important;
  }
  product-media-container{
    width:100%!important;
    max-width:100%!important;
  }
  .product .product__info-wrapper{
    width:46.666%!important;
    max-width:46.666%!important;
    padding-left:0;
  }
}
@media screen and (max-width: 767px) {
  .product .product__media-wrapper{
    width:100%!important;
    max-width:100%!important;
    margin-bottom:32px;
  }
  .product .product__info-wrapper{
    width:100%!important;
    max-width:100%!important;
    padding-left:0;
  }
}

/* ======================================== */
/*  パンくずリスト  */
/* ======================================== */
  .breadcrumb.--custom {
    padding-top:40px;
  }
@media screen and (max-width: 767px) {
  .breadcrumb.--custom {
    overflow:auto;
    white-space:nowrap;
    padding-top:10px;
    padding-bottom:10px;
  }
}
.breadcrumb.--custom a, .breadcrumb.--custom span {
    font-size: 14px;
    color: #707070;
    text-decoration:none;
}
@media screen and (max-width: 767px) {
  .breadcrumb.--custom a, .breadcrumb.--custom span {
    font-size:12px;
  }
}
.bredcrumb__arrow {
    display: inline-block;
    width: 34px;
    height: 20px;
    position: relative;
}
.bredcrumb__arrow:before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: solid 1px #015E6A;
    border-right: solid 1px #015E6A;
    position: absolute;
    left: 10px;
    top: 12px;
    transform: rotate(45deg);
}

/* ======================================== */
/*  商品部分  */
/* ======================================== */

/* スライダー画像 */
.product-media-slider-area{
  position:relative;
}

@media screen and (max-width: 767px) {
  .product-media-slider-area{
     width: 100vw;
     margin: 0 calc(50% - 50vw);
  }
  .product-media-slider-area .product-media-container{
    width: 100%!important;
  }
}
@media screen and (max-width: 767px) {
  .product .product-media-container.constrain-height .media{
    padding-top:100%;
  }
}
.product .swiper-button-next:after, .product .swiper-button-prev:after{
  content:none;
}
.swiper-button-next img, .swiper-button-prev img{
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .swiper-button-next img, .swiper-button-prev img{
    max-width:40px;
    max-height:40px;
  } 
}
.product .swiper-button-next{
  right:-12px;
  z-index:1;
}
.product .swiper-button-prev{
  left:-12px;
  z-index:1;
}
@media screen and (max-width: 767px) {
  .product .swiper-button-next{
    right:7px;
    top:58%;
  }
  .product .swiper-button-prev{
    left:7px;
    top:58%;
  }
}

/* サムネイル */
.product-slider-thumbnail {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product-slider-thumbnail {
      margin-top: 16px;
      margin-bottom:0;
  }
}

.product-thumbnail-slider-area .product-media-container{
    width:100%!important;
    max-width:100%!important;
  border:none;
}

@media screen and (max-width: 767px) {
  .product-thumbnail-slider-area{
    overflow:auto;  
  }
  .product-thumbnail-slider-area .product__media {
    width:100%;
  }
}
.product-thumbnail-slider-area .swiper-slide{
    max-width:134px;
    cursor:pointer;
}
@media screen and (max-width: 767px) {
  .product-thumbnail-slider-area .swiper-slide{
      max-width:80px;
  }
}
.product-thumbnail-slider-area .swiper-slide.swiper-slide-thumb-active{
  border: 1.5px solid #015E6A;
  box-sizing:border-box;
}
@media screen and (max-width: 767px) {
  .product-thumbnail-slider-area  .swiper-slide.swiper-slide-thumb-active{
      border: 1.5px solid #015E6A;
  } 
}

/* NEW */
.product .new__tag{
  width: 74px;
  height: 21px;
  font-family: Poppins,sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  background:#263843;
}
@media screen and (max-width: 767px) {
  .product .new__tag{
    margin-top:0px;
  }
}
.product__title>*{
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #015e6a;
}
@media screen and (max-width: 767px) {
  .product__title>*{
    font-size:20px;
  }
}
.product .product__info-container .product__description{
  letter-spacing: 0.04em;
  line-height:1.714;
  margin-top:20px;
  margin-bottom:0;
}

@media screen and (max-width: 767px) {
  .product .product__info-container .product__description{
    font-size:14px;
    margin-bottom:0;
  }
}
.product__description p+p{
  margin-top:20px;
}

/* 特定原材料 */
.product__info-container .material__text{
  margin-top:0px;
  margin-bottom:0;
}
@media screen and (max-width: 767px) {
  .product__info-container .material__text{
    font-size:14px;
  }
}

/* 含まれているフレーバーはこちら */
.button.--custom.--anchor{
  border:1px solid #CBCBCB;
  color:#015E6A;
  font-size:14px;
  text-align:center;
  padding:14px 38px 14px 16px;
  position:relative;
  margin-top:24px;
}
.button.--custom.--anchor::after{
    background: url(./button-arrow-green.svg) no-repeat center center / contain;
    position: absolute;
    content: "";
    right: 16px;
    left: auto;
    width: 10px;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none;
}
/* 税込表示*/
.product .price .price-item.--custom{
  font-size:28px;
  margin-top:20px;
  color:#707070;
}
@media screen and (max-width: 767px) {
  .product .price .price-item.--custom{
    margin-top:12px;
  }
}
.product .price .price-item.--custom .yen-mark{
  font-size:18px;
}
.product .price .price-item.--custom .price__tax{
  font-size:18px;
}
/* 数量 */
.product-form__input{
  display:flex;
  align-items:center;
  gap:24px;
}
.product-form__quantity .form__label{
  font-size:14px;
}
.quantity{
  color:#707070;
  border:1px solid #CBCBCB;
  width:200px;
}
.quantity::after{
  box-shadow:none;
}
.quantity__button{
  color:#015E6A;
}
.quantity__input{
  border-left:1px solid #CBCBCB;
  border-right:1px solid #CBCBCB;
  font-size:20px;
  border-radius:0;
}

/* カートに追加するボタン */
.product-form__submit{
  background:#015E6A;
  height:64px;
}
@media screen and (max-width: 767px) {
  .product-form__submit{
    height:56px;
  }
}
@media (hover: hover) {
  .product-form__submit:hover{
    opacity:.7;
  }
}
.product .button:after, .product .shopify-challenge__button:after, .product .customer button:after, .product .shopify-payment-button__button--unbranded:after{
  content:none;
}
.product .product-form__buttons{
  max-width:100%;
  position:relative;
}
.product-form__buttons::after{
    background: url(./cart-add-icon.svg) no-repeat center center / contain;
    position: absolute;
    content: "";
    right: 40px;
    left: auto;
    width: 24px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: none;
    pointer-events:none;
}
@media screen and (max-width: 767px) {
  .product-form__buttons::after{
    width:20px;
    height:21px;
    right:26px;
  }
}
/* メッセージ画像、テキスト */
.product .pickUp__message{
  gap:5.35%;
}
@media screen and (max-width: 767px) {
  .product .pickUp__message{
    gap:2%;
  }
}
@media screen and (max-width: 389px) {
  .product .pickUp__message{
    flex-direction:column;
    align-items: center;
  }
}

.product .pickUp__message__img{
    width:51.96%;
}
@media screen and (max-width: 767px) {
   .product .pickUp__message__img{
      width:auto;
  } 
}
.product .pickUp__message__img img{
    width:100%;
    max-width:144px;
}
@media screen and (max-width: 767px) {
  .product .pickUp__message__img img{
      max-width:77px;
  } 
}
.product .pickUp__message__text{
  width:240px;
  margin-left:0;
  padding:0 14px;
}
@media screen and (max-width: 767px) {
  .product .pickUp__message__text{
    width:190px;
    padding:0 5px;
  } 
}
@media screen and (max-width: 389px) {
  .product .pickUp__message__text{
    margin-top:5px;
  }
}

.product .pickUp__message__detail{
  width:100%;
  text-align:center;
}

/* アコーディオン */
.product__accordion.accordion summary{
  padding:0;
}
.product__accordion .summary__title{
  padding:0;
  width:100%;
}
.product__accordion .accordion__title{
  padding:20px;
  font-family: Noto Sans JP, sans-serif;
  font-size:16px;
  font-weight:500;
  color:#707070;
  width:100%;
  max-width:100%;
}
@media screen and (max-width: 767px) { 
  .product__accordion .accordion__title{
    padding:16px;
    font-size:14px;
  }
}
.product__accordion.accordion .summary__title+.icon-caret{
   color:#015E6A;
}
.product__accordion.product__accordion .accordion__content{
  font-size:14px;
  padding:0 20px 20px;
}
@media screen and (max-width: 767px) {
  .product__accordion.product__accordion .accordion__content{
    font-size:12px;
    padding:0 16px 16px;
  } 
}

/* ======================================== */
/*  含まれているフレーバー  */
/* ======================================== */
.include__flavor{
  background:#F6F6F6;
  padding:64px 0;
  margin-top:40px;
  overflow:hidden;
}
@media screen and (max-width: 767px) {
  .include__flavor{
    padding:40px 0;
    margin-top:32px;
  }
}
.include__flavor .inner{
  max-width:1200px;
}
.include__flavor .title-wrapper{
  text-align:center;
}
.include__flavor .section__head-main{
  margin:0 auto;
}

.include__flavor__description{
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: center;
  color: #3f858e;
  padding:0 50px;
}
@media screen and (max-width: 767px) {
  .include__flavor__description{
     font-size:12px; 
      padding:0 20px;
  }
}

@media screen and (max-width: 767px) {
  .include__flavor .outer{
     margin-top:24px;
  }
  .flavor__slider .splide__track{
    padding-bottom:10px;
  }
}

.flavor__list{
  /* margin-top:40px; */
}
@media screen and (max-width: 767px) {
  .flavor__list{
    /* margin-top:24px; */
    padding: 0;
  } 
}

.flavor__item{
  background:#fff;
  /* border:1px solid #CBCBCB; */
  border-radius:8px;
  position:relative; 
  padding:20px;
  min-width:288px;
}
@media screen and (max-width: 767px) {
  .flavor__item{
    min-width:initial;
    max-width:240px;
    padding: 20px 8px 5px 8px;
    }
  }
}

.flavor__item .body__label{
  position:absolute;
  left:0;
  top:0;
  margin:0;
  color:#fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 16px;
  width:88px;
  height:88px;
  border-radius:8px 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.body__label{
  display: none;
  position:absolute;
  left:0;
  top:0;
  margin:0;
  color:#fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 16px;
  width:88px;
  height:88px;
  border-radius:8px 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.flavor__item .body__label__text{
    margin: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flavor__item__image{
  text-align:center;
      padding: 54px;
}
@media screen and (max-width: 767px) {
  .flavor__item__image{
    padding:24px;
  }
}

.flavor__item__image img{
  width:100%;
  max-width:200px;
  height:auto;
}
@media screen and (max-width: 767px) {
  .flavor__item__image img{
    max-width:120px;
    padding-top: 20px;
  }
}

.flavor__item__body{
  margin-top:12px;
}
@media screen and (max-width: 767px) {
  .flavor__item__body{
    margin-top:4px;
  }
}
.flavor__item__body p{
  margin:0;
}

.flavor__item__body .body__title{
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #015e6a;
  margin:0 auto;
}
@media screen and (max-width: 767px) {
  .flavor__item__body .body__title{
    font-size:16px;
  }
}
.flavor__item__body .body__english{
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #3F858E;
  margin-top:4px;
}
@media screen and (max-width: 767px) {
  .flavor__item__body .body__english{
    font-size: 12px;   
  }
}

.flavor__item__body .body__description{
  font-size: 13px;
  margin-top:6px;
}
@media screen and (max-width: 767px) {
  .flavor__item__body .body__description,
  .flavor__item__body .body__material{
    font-size:10px;
    line-height: 16px;
    margin-top:8px;
  }
}

.flavor__item__body .body__material{
  margin-top:4px;
}

.include__flavor .outer .splide__arrow{
  top:50%;
}
/* ======================================== */
/*  最近チェックした商品  */
/* ======================================== */
.recently{
  padding-top:160px;
  padding-bottom:160px;
}
@media screen and (max-width: 767px) {
  .recently{
    padding-top:64px;
    padding-bottom:64px;
  } 
}

.recently .title-wrapper{
  text-align:center;
}
.recently .section__head-sub{
  margin-top:0;
}

.recently__list{
  display:flex;
  gap:2%;
  margin-top:40px;
}
@media screen and (max-width: 767px) {
  .recently__list{
    gap:3.42%;
    flex-wrap:wrap;
  }
}
.recently__item{
  width:23.5%;
}
@media screen and (max-width: 767px) {
  .recently__item{
    width:48.25%;
  }
  .recently__item:nth-child(n + 3){
    margin-top:6.85%;
  } 
}
.recently__item .card__media{
  position:relative;
}
.recently__item img{
  width:100%;
}
.recently__item .full-unstyled-link a{
  text-decoration:none;
  color:#707070;
}

/* ======================================== */



/* ページ
カスタムリッチテキスト */
.custom p{
  color:rgb(112, 112, 112);
}
.custom .rich-text__heading{
  color: rgb(63, 133, 142);
  align-items: center;
    display: flex;
    font-family: var(--font-family-eng);
    font-size: 36px;
    font-weight: 200;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 0;
}

.custom .rich-text__caption span{
  /* border-left: 1px solid #cfd0d0;
    border-right: 1px solid #cfd0d0; */
    padding: 5px 24px;
  font-size:16px;
}

.custom .rich-text__text{
  text-align:center;
  font-size:15px;
}
@media screen and (max-width: 767px) {
  .custom .rich-text__text{
  text-align:left;
  font-size:13px;
  }
}

.table-left{
      padding:0px,10px; 
  margin-right: 2rem;
      text-align: left;
  width:21%;
}
.table-right{
  text-align:left;
  border-left: 1px solid #cfd0d0;
  padding: 0px 0 0 15px;
}

/* 配送日時指定.amp */
.shopify-app-block .delivery-container {
  max-width: 100%;
}


/* ======================================== */

/* カート
ラジオボタン */
label{
  display: block;
  cursor: pointer;
  font-size: 14px;
}
[type="radio"] {
  cursor: pointer;
}

.field_title {
  background-color:#f2f2f2;
  padding: 10px;
}
/* @media screen and (min-width: 750px) {
  .field_title{
    width: 40%;
  }
} */
.textarea_name{
  resize: none;
  width: 100%;
}
.textarea_name-sub{
  resize: none;
  width: 100%;
}
.message_textarea{
  resize: none;
  width: 100%;
}

/* アコーディオンメニュー */
.faq .accordion__title.inline-richtext.h4{
    color: rgb(63, 133, 142);
    font-size: 16px;
    font-weight: 700;
    padding-left: 20px;
  font-family: Noto Sans JP, sans-serif;
}
@media screen and (max-width: 767px) {
  .faq .accordion__title.inline-richtext.h4{
    font-size: 12px;
  }
}

.faq .accordion__content.rte{
  font-size: 14px;
  color: #707070;
  padding: 5px 25px 25px!important;
}
@media screen and (max-width: 767px) {
 .faq .accordion__content.rte{
    font-size: 12px;
  }
}
.faq .accordion.content-container.color-background-1.gradient{
    border: 1px solid rgb(63, 133, 142);
    border-radius: 15px;
    overflow: hidden;
}
.faq #Summary-collapsible_row_LbUcbJ-template--17791117328603__qa_etBiGg{
      background-color: #fff;
}
/*  */

/* ページフォント調整 */
.title--primary.scroll-trigger.animate--fade-in{
  color: #3f858e;
    align-items: center;
    display: flex;
    font-family: var(--font-family-eng);
    font-size: 36px;
    font-weight: 200;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 0;
}

.main-page-title.page-title.h0.scroll-trigger.animate--fade-in{
    color: #3f858e;
    align-items: center;
    display: flex;
    font-family: var(--font-family-eng);
    font-size: 36px;
    font-weight: 200;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 0;
}

@media screen and (max-width: 767px){
  .main-page-title.page-title.h0.scroll-trigger.animate--fade-in{
    font-size: 28px;
  }
}
/*  */
/*　ブログ  */
.main-blog.page-width .card--card.gradient, .card__inner.gradient .card__information{
  display:block;
}
.blog-articles{
grid-template-columns: 1fr!important;
}
.blog-articles .card__content{
  border-bottom: 1px solid;
}
.card__information{
  /* padding: 30px 0 !important; */
}

.article-card__info.caption-with-letter-spacing{
  color: #b5b5b5 !important;
    font-size: 12px;
    margin-bottom: 8px;
}

.card__heading {
      
  color:rgb(112, 112, 112);
}

.faq-container u{
  text-decoration:none;
}
 .accordion__title.inline-richtext.h4{
  text-decoration:none!important;
}
.faq .collapsible-content summary:hover .accordion__title{
  text-decoration:none;
}

/* 問い合わせ */
.form-announce{
      margin-bottom: 30px;
  color: #707070;
}
.contact__fields{
      grid-template-columns: auto!important;
}

.textarea_name{
  margin: 8px 0 0;
}
.textarea_name-sub{
  margin: 8px 0 0;
}
.message_textarea{
  margin: 8px 0 0;
  height:150px;
}



/*外部リンクアイコン*/
@media screen and (max-width: 749px) {
.external-link_icons{
  margin-left: 5px;
 }
}

.list-social__link:hover .icon{
  transform:scale(1.0)!important;
}

.badge--bottom-left{
  padding: .5rem 1.3rem .6rem;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    border-radius: var(--badge-corner-radius);
}

.icon.icon-close{
  width:48px;
  higher:20px;
}

a.header__heading-link.link.link--text.focus-inset:hover{
  opacity:1;
}


.im{
  color:#777777!important;
}

 td{color: #707070;}

.delivery-sub-text{
  color: #3f858e;
  text-align: center;
    font-family: var(--font-family-eng);
}
.bundle-builder-app--product-modal--content .bundle-builder-app--product-image-slider--button {
  align-items:center;
}