@charset "UTF-8";
/* ====================================
	共通スタイル
 ==================================== */
body {
  font-weight: 400;
}

#lpContent {
  font-family: "Noto Sans JP", sans-serif;
}

#breadcrumb, #globalPageTitle {
  visibility: hidden;
  display: none;
}

.font-zen {
  font-family: "Zen Maru Gothic", sans-serif;
}

.bg-beige {
  background-color: #F2EEE6;
}

.bg-beige2 {
  background-color: #FBF7EF;
}

@keyframes scrollAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  95% {
    opacity: 0;
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    @media only screen and (max-width: 767px) {
      -webkit-transform: translateY(5rem);
      transform: translateY(5rem);
    }
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    @media only screen and (max-width: 767px) {
      -webkit-transform: translateY(5rem);
      transform: translateY(5rem);
    }
  }
}
.titleA {
  border-bottom: 2px solid #EF9C9C;
  color: #333;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .titleA {
    border-bottom: 3px solid #EF9C9C;
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.titleB {
  border-left: 4px solid #EF9C9C;
  color: #333;
  line-height: 1.25;
  display: inline-block;
  font-size: 20px;
  padding-left: 14px;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .titleB {
    line-height: 1.5;
  }
}

.btnA {
  background-color: #E6002D;
  border: 2px solid #E6002D;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .btnA {
    border-radius: 20vw;
    height: 60px;
    max-width: 320px;
  }
}
@media print, screen and (min-width: 768px) {
  .btnA {
    border-radius: 5vw;
    height: 80px;
    width: 380px;
  }
}
.btnA::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  transform: translate(-100%, 0);
  transition: all 0.5s;
  width: 100%;
}
.btnA .arrow {
  position: absolute;
  height: 13px;
  top: 50%;
  right: 40px;
  width: 22px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
@media print, screen and (min-width: 768px) {
  .btnA .arrow {
    right: 50px;
  }
}
.btnA .arrow::before, .btnA .arrow::after {
  content: "";
  display: block;
  transition: all 0.3s;
}
.btnA .arrow::before {
  box-sizing: border-box;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  height: 9px;
  position: absolute;
  right: 1px;
  top: 2px;
  transform-origin: center center;
  transform: rotate(45deg);
  width: 9px;
}
.btnA .arrow::after {
  border-radius: 10vw;
  background-color: #fff;
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
}
.btnA > span {
  color: #fff;
  display: block;
  position: absolute;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  top: 50%;
  left: 50%;
  line-height: 1.5;
  padding: 10px 50px;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .btnA > span {
    font-size: 18px;
  }
}
.btnA:hover::before {
  transform: translate(0, 0);
}
.btnA:hover .arrow {
  right: 20px;
}
@media print, screen and (min-width: 768px) {
  .btnA:hover .arrow {
    right: 35px;
  }
}
.btnA:hover .arrow::before {
  border-color: #E6002D;
}
.btnA:hover .arrow::after {
  background-color: #E6002D;
}
.btnA:hover > span {
  color: #E6002D;
}

.slick-vertical .slick-slide {
  border: 0;
  margin: 0;
}

.kv {
  background-color: #FBF7EF;
  overflow: hidden;
}

.scroll-bar {
  background: #555;
  color: #555;
}
.scroll-bar .circle {
  background-color: #555;
  border-radius: 50%;
  display: block;
  position: absolute;
  animation: scrollAnime 2s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}
.scroll-bar .text {
  display: block;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.lp-section {
  color: #333333;
  padding: 40px 5vw;
}
@media print, screen and (min-width: 768px) {
  .lp-section {
    padding: 60px 90px 80px;
  }
}
.lp-section .lp-section__inr {
  margin: 0 auto;
  max-width: 980px;
}

.lp-section .lp-section__hushTitle {
  margin: 0 auto 20px;
  max-width: 328px;
}
@media print, screen and (min-width: 768px) {
  .lp-section .lp-section__hushTitle {
    margin: 0 auto 20px;
    max-width: initial;
    width: 506px;
  }
}
.lp-section .lp-section__cash {
  line-height: 2;
  font-size: 15px;
}
@media print, screen and (min-width: 768px) {
  .lp-section .lp-section__cash {
    text-align: center;
    font-size: 18px;
  }
}
.lp-section .lp-section__cash > span {
  display: inline-block;
}
.card-slide {
    margin-left: -5px;
}
@media print, screen and (max-width: 767px) {
  .card-slide {
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .card-slide {
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide {
    padding-bottom: 0;
  }
}

.card-slide .slick-list {
	/* padding-left:5px; */
	padding-left:10px;
  margin-left:-10px;
}

@media print, screen and (max-width: 767px) {
  .card-slide .slick-track {
    display: flex;
  }
}
@media print, screen and (max-width: 767px) {
  .card-slide .slick-slide {
    height: auto !important;
  }
}
.card-slide .card-slide__item {
  box-sizing: content-box;
  transition: all 0.5s;
  position: relative;
  margin-right: 10px;
  min-height: 500px;
  padding: 0 0 5px 5px;
  width: 270px;
	opacity:1;
}
.card-slide .card-slide__item.hidden {
	opacity:0;
}
@media print, screen and (min-width: 768px) {
  .card-slide .card-slide__item {
    margin-right: 20px;
    padding: 0 10px 10px;
    /* height: 610px; */
    /* height: 760px; */
    height: 860px;
    width: 250px;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .card-slide__item {
    /* height: 760px; */
    /* height: 904px; */
    /* height: 982px; */
    height: 930px;
    /* width: 280px; */
    width: 310px;
  }
}
.card-slide .card-slide__item .card-slide__item__inr {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.16));
  background-color: #fff;
  transition: all 0.5s;
  padding: 30px 18px 90px;
  height: 100%;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .card-slide .card-slide__item .card-slide__item__inr {
    padding: 30px 18px 120px;
    position: absolute;
    height: calc(100% - 10px);
    left: 0;
    z-index: 5;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .card-slide__item .card-slide__item__inr {
    /* left: 120px; */
    /* height: 645px; */
    left: 142px;
    /* height: 720px; */
    /* height: 865px; */
    /* height: 785px; */
    height: 820px;
    padding: 35px 22px 120px;
  	/* top: 10px; */
  	top: 5px;
  }
}
.card-slide .card-slide__item .card-slide__item__label {
  position: absolute;
  top: -2px;
  left: 10px;
  width: 87px;
  z-index: 5;
}
.card-slide .card-slide__item .card-slide__item__thum {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .card-slide .card-slide__item .card-slide__item__thum {
    margin-bottom: 15px;
  }
}
.card-slide .card-slide__item .card-slide__item__thum > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card-slide .card-slide__item .card-slide__item__thum > div:nth-child(1) {
  z-index: 2;
}
.card-slide .card-slide__item .card-slide__item__thum > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left top;
}
.card-slide .card-slide__item .card-slide__item__name {
  font-weight: bold;
  font-size: 16px;
	line-height:1;
}
.card-slide .card-slide__item .card-slide__item__text {
  line-height: 1.5;
  font-size: 15px;
  font-weight:300;
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .card-slide .card-slide__item .card-slide__item__text {
    font-size: 14px;
    margin-top: 1.2em;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .card-slide__item.show.slick-active .card-slide__item__inr {
    width: 472px;
    /* height: 985px; */
    /* height: 900px; */
    height: 925px;
    left: 0;
    top: 5px;
    padding: 40px 30px 135px;
  }
  .card-slide .card-slide__item.show.slick-active .card-slide__item__text {
    font-size: 16px;
  }
}

.card-slide .card-slide__item .card-slide__item__author {
	position:absolute;
	left:18px;
  bottom:30px;
	display:flex;
	transition: all 0.5s;

  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  font-size: 14px;
  line-height:1.6;
  margin:0;
}
@media print, screen and (min-width: 780px) {
  .card-slide .card-slide__item .card-slide__item__author {
    left:18px;
    bottom:30px;
    gap: 15px;
    font-size: 14px;
    margin:0;
  }
  .card-slide .card-slide__item.show.slick-active  .card-slide__item__author {
    left:18px;
    bottom:30px;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .card-slide__item .card-slide__item__author {
    left:30px;
    bottom:30px;
    gap: 20px;
    font-size: 14px;
    margin:0;
  }
  .card-slide .card-slide__item.show.slick-active  .card-slide__item__author {
    left:30px;
    bottom:45px;
  }
}
.card-slide .card-slide__item .card-slide__item__author img {
  height: 40px;
  width: 40px;
}
@media print, screen and (min-width: 768px) {
  .card-slide .card-slide__item .card-slide__item__author img {
    height: 70px;
    width: 70px;
  }
}
/*
@keyframes anime_slider_fade-2 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  8% {
    opacity: 1;
    z-index: 3;
  }
  33% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-3 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  8% {
    opacity: 1;
    z-index: 3;
  }
  33% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
*/
@keyframes anime_slider_fade-4 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  25% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-5 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-6 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-7 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-8 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-9 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
@keyframes anime_slider_fade-10 {
  0% {
    visibility: visible;
    opacity: 0;
  }
  7% {
    z-index: 3;
  }
  15% {
    opacity: 1;
  }
  20% {
    /* opacity: 1; */
    opacity: 0;
  }
  48% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: 1;
  }
}
/*
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--2 > div {
  visibility: hidden;
  animation: anime_slider_fade-2 6s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--2 > div:nth-of-type(2) {
  animation-delay: 3s;
}

.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--3 > div {
  visibility: hidden;
  animation: anime_slider_fade-3 9s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--3 > div:nth-of-type(2) {
  animation-delay: 3s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--3 > div:nth-of-type(3) {
  animation-delay: 6s;
}
*/
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--4 > div {
  visibility: hidden;
  animation: anime_slider_fade-4 8s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--4 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--4 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--4 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--5 > div {
  visibility: hidden;
  animation: anime_slider_fade-5 10s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--5 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--5 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--5 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--5 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div {
  visibility: hidden;
  animation: anime_slider_fade-6 12s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--6 > div:nth-of-type(6) {
  animation-delay: 10s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div {
  visibility: hidden;
  animation: anime_slider_fade-7 14s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(6) {
  animation-delay: 10s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--7 > div:nth-of-type(7) {
  animation-delay: 12s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div {
  visibility: hidden;
  animation: anime_slider_fade-8 16s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(6) {
  animation-delay: 10s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(7) {
  animation-delay: 12s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--8 > div:nth-of-type(8) {
  animation-delay: 14s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div {
  visibility: hidden;
  animation: anime_slider_fade-9 18s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(6) {
  animation-delay: 10s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(7) {
  animation-delay: 12s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(8) {
  animation-delay: 14s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--9 > div:nth-of-type(9) {
  animation-delay: 16s;
}

.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div {
  visibility: hidden;
  animation: anime_slider_fade-10 20s 0s infinite;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(2) {
  animation-delay: 2s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(3) {
  animation-delay: 4s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(4) {
  animation-delay: 6s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(5) {
  animation-delay: 8s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(6) {
  animation-delay: 10s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(7) {
  animation-delay: 12s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(8) {
  animation-delay: 14s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(9) {
  animation-delay: 16s;
}
.card-slide .card-slide__item.show.slick-active .card-slide__item__thum.card-slide__item__thum--10 > div:nth-of-type(10) {
  animation-delay: 18s;
}
.card-slide .slick-arrow {
  background-color: #fff;
  border-radius: 50%;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.16));
  top: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -25px;
  z-index: 2;
  height: 55px;
  width: 55px;
}
@media print, screen and (min-width: 768px) {
  .card-slide .slick-arrow {
    bottom: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .slick-arrow {
    /* bottom: -20px; */
    /* bottom: 60px; */
    bottom: 0;
  }
}
.card-slide .slick-arrow::before {
  border-top: 2px solid #EF9C9C;
  border-right: 2px solid #EF9C9C;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.card-slide .slick-arrow.slick-prev {
  left: 66px;
}
@media print, screen and (min-width: 768px) {
  .card-slide .slick-arrow.slick-prev {
    left: 360px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 959px) {
  .card-slide .slick-arrow.slick-prev {
    left: 50%;
    transform: translate(-50%, 0);
    margin-left: -110px;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .slick-arrow.slick-prev {
    left: initial;
    /* right: 260px; */
    right: 165px;
  }
}
.card-slide .slick-arrow.slick-prev::before {
  margin-right: -4px;
  transform: rotate(-135deg);
}
.card-slide .slick-arrow.slick-next {
  right: 76px;
}
@media print, screen and (min-width: 768px) and (max-width: 959px) {
  .card-slide .slick-arrow.slick-next {
    right: initial;
    transform: translate(-50%, 0);
    /* left: 47%;
    margin-left: 90px; */
    left: 50%;
    margin-left: 70px;

  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .slick-arrow.slick-next {
    /* right: 100px; */
    right: 5px;
  }
}
.card-slide .slick-arrow.slick-next::before {
  margin-left: -4px;
  transform: rotate(45deg);
}
.card-slide .slick-num {
  position: absolute;
  font-size: 15px;
}
@media print, screen and (max-width: 767px) {
  .card-slide .slick-num {
    bottom: 20px;
    left: calc(50% - 2.5vw);
    transform: translate(-50%, 0);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 959px) {
  .card-slide .slick-num {
    bottom: 15px;
    left: calc(50% - 20px);
    transform: translate(-50%, 0);
    margin-left: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .card-slide .slick-num {
    /* bottom: 25px; */
    /* right: 192px; */
    /* bottom: 105px; */
    bottom: 44px;
    right: 97px;
  }
}






















.check-section {
  padding: 30px 0 60px 5vw;
}
@media print, screen and (min-width: 768px) {
  .check-section {
    padding: 40px 0 80px 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .check-section {
    padding: 40px 0 80px 93px;
  }
}
@media print, screen and (min-width: 1360px) {
  .check-section {
    padding: 40px 90px 80px 90px;
  }
}



.check-section .check-section__inr {
  margin: 0 auto;
  max-width: 1180px;
}
.check-section .check-section__title {
  margin-bottom: 33px;
  padding-right:5vw;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__title {
    padding-right:40px;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 960px) {
  .check-section .check-section__title {
    padding-right:93px;
  }
}
@media print, screen and (min-width: 1360px) {
  .check-section .check-section__title {
    padding-right:0;
  }
}
.check-section .check-section__title .check-section__title__top {
  margin: 0 auto 20px;
  max-width: 191px;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__title .check-section__title__top {
    max-width: 216px;
  }
}
.check-section .check-section__info {
  line-height: 2;
  font-size: 15px;
  margin-bottom: 10px;
}
.check-section .check-section__info + .attention{
  margin-top: -10px;
}

@media print, screen and (min-width: 768px) {
  .check-section .check-section__info {
    font-size: 18px;
    margin-bottom: 20px;
  }
	.check-section .check-section__info + .attention{
	  margin-top: -20px;
	}
}
.check-section .check-section__gallery {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__gallery {
    gap: 20px;
  }
}
.check-section .check-section__gallery > li {
  width: 50%;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__gallery > li {
    width: calc(50% - 10px);
  }
}
.check-section .attention {
  line-height: 2;
  font-size: 14px;
}
.check-section .check-section__item + .check-section__item {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__item + .check-section__item {
    margin-top: 60px;
  }
}

.check-section .check-section__title .check-section__title__text {
	margin: 0 auto;
	font-size:34px;
	font-weight:700;
	font-family: 'Zen Maru Gothic', sans-serif;
	text-align:center;
	color: #333333;
	width: 100%;
}
@media print, screen and (max-width: 767px) {
  .check-section .check-section__title .check-section__title__text {
	font-size:28px;
	text-align:center;
  }
}

.check-section .check-section__halfColumn {
  display: flex;
  flex-direction: column;
	flex-wrap:wrap;
  gap: 20px;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__halfColumn {
    gap: 0 60px;
    flex-direction: row;
  }
}
.check-section .check-section__halfColumn .check-section__halfColumn__item {
  flex: 1;
  width: 100%;
}
.check-section .check-section__halfColumn .titleB {
	width:100%;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__halfColumn .titleB {
    margin-bottom: 20px;
  }
}

.check-section--02 .check-section__halfColumn{
    gap:30px 0;
}
.check-section--02 .check-section__halfColumn .text{
	font-size:18px;
	font-weight:500;
	margin-bottom:20px;
}
.check-section--02 .check-section__halfColumn .text + .attention{
	margin-top:-20px;
	margin-bottom:20px;
}
.check-section--02 .check-section__halfColumn .text + .attention span{
  color:#069CD1;
}
.check-section--02 .check-section__halfColumn--bottom{
    margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
	.check-section--02 .check-section__halfColumn{
	    gap:0 60px;
	}
	.check-section--02 .check-section__halfColumn .text + .attention{
		margin-top:-20px;
		margin-bottom:0;
	}
}

.check-section .check-section__btn {
  text-align: center;
  margin-top: 30px;
  padding-right: 5vw;
}
@media print, screen and (min-width: 768px) {
  .check-section .check-section__btn {
    margin-top: 60px;
    padding-right: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .check-section .check-section__btn {
    margin-top: 60px;
    padding-right: 93px;
  }
}
@media print, screen and (min-width: 1360px) {
  .check-section .check-section__btn {
    margin-top: 60px;
    padding-right: 0;
  }
}



/* ====================================
	スマートフォン専用スタイル
===================================== */
@media only screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}
/* ====================================
	PC&タブレット、印刷専用スタイル
===================================== */
@media print, screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
  .pc-none {
    display: none;
  }
}

/* ====================================
	メインビジュアル
 ==================================== */
 @media only screen and (max-width: 767px) {
  .kv .kv__middle {
    padding: 2rem 2rem 1.35rem;
    position: relative;
    background:#ffffff;
  }
  .kv .kv__middle .kv__middle__title {
    font-size: 1.5rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    text-align: center;
  }
  .kv .kv__middle .kv__middle__ribbon {
    margin-bottom: 0;
  }
  .kv .kv__middle .kv__middle__no {
	width:11rem;
    margin: 0 auto 10px;
  }
  .kv .kv__middle .kv__middle__no img{
    width:100%;
  }
  .kv .kv__middle .scroll-bar {
    position: absolute;
    bottom: 0;
    right: 2.7rem;
    width: 2px;
    height: 7rem;
  }
  .kv .kv__middle .scroll-bar .circle {
    height: 0.8rem;
    width: 0.8rem;
    top: 1rem;
    left: 0;
    margin-left: -0.3rem;
  }
  .kv .kv__middle .scroll-bar .text {
    font-size: 1.2rem;
    left: -5px;
    bottom: calc(100% + 1.6rem);
  }
  .kv .kv__product__image {
    width: 12rem;
    margin: 0 auto 5px;
  }
  .kv .kv__product__logo {
    margin: 0 auto;
    width: 11.3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .kv {
    display: flex;
    min-height: 696px;
    height: calc(100vh - 72px);
  }
  .kv .kv__product .kv__product__image {
    margin: 0 auto 2rem;
    width: 20.2rem;
  }
  .kv .kv__product .kv__product__logo {
    margin: 0 auto;
    width: 14.8rem;
  }
  .kv .kv__top {
    height: 100%;
    width: 10%;
  }
  .kv .kv__middle {
    height: 100%;
    text-align: center;
    position: relative;
    padding: 8rem 2.6rem 0;
    width: 40%;
    background:#ffffff;
  }
  .kv .kv__middle .kv__middle__ribbon {
    margin-bottom: 0;
  }
  .kv .kv__middle .kv__middle__no {
    margin-bottom: 2.3rem;
  }
  .kv .kv__middle .kv__middle__no img{
    width: 20.2rem
  }
  .kv .kv__middle .kv__middle__title {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    line-height: 2;
  }
  .kv .kv__middle .scroll-bar {
    position: absolute;
    bottom: 0;
    right: 2.7rem;
    width: 2px;
    height: 8.5rem;
  }
  .kv .kv__middle .scroll-bar .circle {
    height: 1rem;
    width: 1rem;
    top: 1.35rem;
    left: 0;
    margin-left: -0.4rem;
  }
  .kv .kv__middle .scroll-bar .text {
    font-size: 1.4rem;
    left: -5px;
    bottom: calc(100% + 1.6rem);
  }
  .kv .kv__bottom {
    height: 100%;
    width: 50%;
  }
  .kv .kv__bottom .kv__bottom__inr {
    display: flex;
  }
  .kv .kv-slide {
    height: calc(100vh - 72px);
  }
  .kv .js-kv-slide-01 .slick-list {
    height: 100% !important;
  }
  .kv .js-kv-slide-01 .slick-track {
    height: 100% !important;
  }
  .kv .js-kv-slide-01 .slick-slide:nth-child(odd) {
    height: 60%;
  }
  .kv .js-kv-slide-01 .slick-slide:nth-child(even) {
    height: 40%;
  }
  .kv .js-kv-slide-01 .slick-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .kv .js-kv-slide-02 .slick-list {
    height: 100% !important;
  }
  .kv .js-kv-slide-02 .slick-track {
    height: 100% !important;
  }
  .kv .js-kv-slide-02 .slick-slide {
    height: 50%;
  }
  .kv .js-kv-slide-02 .slick-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

/* ====================================
	リンクセクション
 ==================================== */
.link-section__wrap {
	width:100%;
	height:56px;
	position:relative;
	overflow:hidden;
}
@media print, screen and (min-width: 768px) {
	.link-section__wrap {
		width:100%;
		height:67px;
	}
}
.link-section__wrap.is-fixed .link-section {
    position: fixed;
	z-index:3;
}

.link-section {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	padding: 15px 20px;
	background:#ffffff;
}
@media print, screen and (min-width: 768px) {
	.link-section {
		padding: 20px;
	}
}
.link-section .link-section__inr {
	margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
}

.link-list {
	list-style-type: none;
	margin: 0;
	padding: 0 20px;
	text-align:center;
	white-space:nowrap;
	position:relative;
}
.link-list li{
	display:inline-block;
	margin:0 15px 0 0;
}
.link-list li:last-child{
	margin-left:15px;
}
@media print, screen and (min-width: 768px) {
	.link-list li,
	.link-list li:last-child{
		margin:0 15px;
	}
}

.link-list li a{
	font-size:15px;
	font-weight:700;
	color:#B11823;
	transition: all 0.5s;
  display:inline-block
}
.link-list li a:hover{
	opacity:0.8;
	text-decoration:none;
  border-bottom: solid 1px #B11823;
}
.link-list .slick-arrow {
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    height: 10px;
}
.link-list .slick-arrow::before {
	border-top: 2px solid #B11823;
	border-right: 2px solid #B11823;
	content: "";
	display: block;
	height: 10px;
	width: 10px;
}
.link-list .slick-arrow.slick-prev {
	left: 5px;
}
.link-list .slick-arrow.slick-prev::before {
	margin-right: 0;
	transform: rotate(-135deg);
}
.link-list .slick-arrow.slick-next {
	right: -23px;
}
.link-list .slick-arrow.slick-next::before {
	margin-left: 0;
	transform: rotate(45deg);
}

.link-point01,
.link-point02,
.link-point03,
.link-point04{
  padding-top:56px;
	margin-top:-56px;
}
@media print, screen and (min-width: 768px) {
	.link-point01,
	.link-point02,
	.link-point03,
	.link-point04{
    padding-top:67px;
		margin-top:-67px;
	}
}
/* ====================================
	ノートセクション
 ==================================== */
 
.note-section {
  padding: 20px  5vw 20px;
}
@media print, screen and (min-width: 768px) {
  .note-section {
    padding: 20px 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .note-section {
    padding: 20px 93px;
  }
}
.note-section .note-section__inr {
  margin: 0 auto;
  max-width: 1180px;
}
.note-section .note-section__text {
  font-size:14px;
  font-weight:300;
  line-height:1.6;
}

/* ====================================
	POINTセクション
 ==================================== */
.point-section {
  padding: 30px  5vw 60px;
}
@media print, screen and (min-width: 768px) {
  .point-section {
    padding: 52px 40px 80px 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .point-section {
    padding: 52px 93px 80px 93px;
  }
}
.point-section .point-section__inr {
  margin: 0 auto;
  max-width: 1180px;
}
@media print, screen and (max-width: 767px) {
  .point-section .point-section__title__num {
    margin: 0 auto 20px;
  }
}
.point-section .point-section__title__text {
	margin: 0 auto;
	font-size:34px;
	font-weight:700;
	font-family: 'Zen Maru Gothic', sans-serif;
	text-align:left;
	color: #333333;
	width: 100%;
}
@media print, screen and (max-width: 767px) {
  .point-section .point-section__title__text {
	font-size:28px;
	text-align:center;
  }
}
.point-section .point-section__title {
  align-items: center;
  margin-bottom: 30px;
  padding-right: 0;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__title {
    display: flex;
    margin-bottom: 50px;
    gap: 38px;
    padding-right: 0;
  }
}
@media print, screen and (max-width: 767px) {
  .point-section .point-section__title.point-section__title--01 .point-section__title__num {
    width: 135px;
  }
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__title.point-section__title--01 .point-section__title__num {
    width: 164px;
  }
}
.point-section .point-section__title.point-section__title--02 .point-section__title__num {
  width: 142px;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__title.point-section__title--02 .point-section__title__num {
    width: 172px;
  }
}
.point-section .point-section__title.point-section__title--03 .point-section__title__num {
  width: 180px;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__title.point-section__title--03 .point-section__title__num {
    width: 142px;
  }
}
.point-section .point-section__title.point-section__title--04 .point-section__title__num {
  width: 180px;
}
@media print, screen and (max-width: 767px) {
  .point-section .point-section__title.point-section__title--04 .point-section__title__num {
    width: 144px;
  }
}
.point-section .point-section__catch {
  margin: 0 auto 20px;
  font-size: 15px;
  padding-right: 5vw;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__catch {
    padding-right: 0;
    margin: -20px 0 30px;
    font-size: 18px;
  }
}
.point-section .point-section__catch-note {
  margin: 0 auto 30px;
  font-size: 15px;
  padding-right: 5vw;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__catch-note {
    padding-right: 0;
    margin: -20px 0 35px;
    font-size: 14px;
  }
}

.point-section .point-section__btn {
  text-align: center;
  margin-top: 30px;
  padding-right: 5vw;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__btn {
    margin-top: 60px;
    padding-right: 0;
  }
}
.point-section .point-section__note {
  margin-top: 4em;
  text-align: right;
  font-size: 1.1rem;
  padding-right: 5vw;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__note {
    font-size: 1.2rem;
    padding-right: 80px;
  }
}

.point-section .point-section__box{
  padding:30px 25px;
  filter: drop-shadow(0px 2px 18px rgba(0, 0, 0, 0.12));
  background-color: #fff;
  transition: all 0.5s;
}
.point-section .point-section__box + .point-section__box{
  margin-top:20px;
}
.point-section .point-section__box--reverse{
  flex-direction:row-reverse;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__box{
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    padding:40px;
    gap:40px;
  }
  .point-section .point-section__box + .point-section__box{
    margin-top:30px;
  }
  .point-section .point-section__box--reverse{
    padding:40px;
  }
}
@media print, screen and (min-width: 1206px) {
  .point-section .point-section__box{
    padding:45px 65px 40px 90px;
    gap:50px;
  }
  .point-section .point-section__box + .point-section__box{
    margin-top:35px;
  }
  .point-section .point-section__box--reverse{
    padding:45px 90px 40px 65px;
  }
}

@media print, screen and (min-width: 960px) {

}


.point-section .point-section__box__thum{
  width:100%;
  margin-bottom:40px;
}
.point-section .point-section__box__thum .slick-slide{
  width:calc(100vw - 50px - 10vw);
}
.point-section .point-section__box__thum img{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__box__thum{
    width:300px;
  }
  .point-section .point-section__box__thum .slick-slide{
    width:300px;
  }
}

@media print, screen and (min-width: 1206px) {
  .point-section .point-section__box__thum{
    width:420px;
  }
  .point-section .point-section__box__thum .slick-slide{
    width:420px;
  }
}
.point-section .point-section__box__contents{
  width:
}
@media print, screen and (min-width: 768px) {
}
.point-section .point-section__box__text{
  font-size:14px;
  font-weight:300;
  line-height:1.5;
  margin:0 0 20px;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__box__text{
    font-size:16px;
    line-height:1.5;
    /* max-width: 507px; */
    max-width: 480px;
  }
}
@media print, screen and (min-width: 1206px) {
  .point-section .point-section__box__text{
    font-size:16px;
    line-height:1.5;
  }
}
.point-section .point-section__box__author {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 10px;
  font-size: 14px;
  line-height:1.6;
  margin:0;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__box__author {
    gap: 15px;
    font-size: 14px;
    margin:0;
  }
}
@media print, screen and (min-width: 1206px) {
  .point-section .point-section__box__author {
    gap: 20px;
    font-size: 16px;
    margin:0;
  }
}
.point-section .point-section__box__author img {
  height: 40px;
  width: 40px;
}
@media print, screen and (min-width: 768px) {
  .point-section .point-section__box__author img {
    height: 70px;
    width: 70px;
  }
}


.box-slide .slick-arrow {
  background-color: #FBF7EF;
  border-radius: 50%;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.16));
  top: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 16px);
  z-index: 2;
  height: 32px;
  width: 32px;
}
@media print, screen and (min-width: 768px) {
  .box-slide .slick-arrow {
    top: calc(50% - 27px);
    height: 55px;
    width: 55px;
  }
}
@media print, screen and (min-width: 1206px) {
  .box-slide .slick-arrow {
    top: calc(50% - 27px);
    height: 55px;
    width: 55px;
  }
}
.box-slide .slick-arrow::before {
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}
.box-slide .slick-arrow.slick-prev {
  left: 0;
  transform: translate(-50%, 0);
}
@media print, screen and (min-width: 768px) {
}
@media print, screen and (min-width: 1206px) {
}


.box-slide .slick-arrow.slick-prev::before {
  margin-right: -4px;
  transform: rotate(-135deg);
}
.box-slide .slick-arrow.slick-next {
  right: -33px;
  transform: translate(-50%, 0);
}
@media print, screen and (min-width: 768px) {
  .box-slide .slick-arrow.slick-next {
    right: -55px;
  }
}

.box-slide .slick-arrow.slick-next::before {
  margin-left: -4px;
  transform: rotate(45deg);
}
.box-slide .slick-dots{
  bottom: -30px;
}
.box-slide .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.box-slide .slick-dots li button:before{
  font-size: 12px;
}


/* ====================================
	商品セクション
 ==================================== */
 .products-section {
  padding: 40px 5vw 60px;
}
@media print, screen and (min-width: 768px) {
  .products-section {
    padding: 80px 93px 140px;
  }
}
.products-section .products-section__inr {
  margin: 0 auto;
  /* max-width: 1180px; */
  max-width: 900px;
}
.products-section .products-section__title {
  max-width: 337px;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 768px) {
  .products-section .products-section__title {
    margin: 0 auto 60PX;
    max-width: 900px;
  }
}
@media print, screen and (min-width: 768px) {
  .products-section .products-section__info {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
    max-width: 950px;
    margin: auto;
  }
}
.products-section .products-section__info .products-section__info__inr {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .products-section .products-section__info .products-section__info__inr {
    width: 380px;
  }
}
.products-section .products-section__info .products-section__info__title {
  text-align: center;
  line-height: 1.7142857143;
  margin-bottom: 30px;
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .products-section .products-section__info .products-section__info__title {
    font-size: 28px;
  }
}
.products-section .products-section__info .products-section__info__slide {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .products-section .products-section__info .products-section__info__slide {
    display: block;
  }
}
@media print, screen and (max-width: 768px) {
  .products-section .products-section__info .products-section__info__slide__thums {
    margin: 0 auto;
    font-size: 14px;
    padding: 0 0 112px;
  }
}
.products-section .products-section__info .products-section__info__slide__thums img {
  height: auto;
  width: 100%;
}
.products-section .products-section__info .products-section__info__slide__thums .slick-slide {
  text-align: center;
}
.products-section .products-section__info .products-section__info__slide__thums .slick-slide img {
  margin: 0 auto;
  width: 210px;
}
.products-section .products-section__info .products-section__info__slide__thums .slick-dots {
  bottom: 30px;
  width: 100%;
}
.products-section .products-section__info .products-section__info__slide__thums .slick-dots > li {
  box-sizing: content-box;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 5px 9px;
  height: initial;
  width: 58px;
}
.products-section .products-section__info .products-section__info__slide__thums .slick-dots > li.slick-active {
  border-color: #707070;
}
@media print, screen and (max-width: 768px) {
  .products-section .products-section__info .products-section__info__slide__dot {
    margin: 0 auto;
    padding: 0 72px;
  }
}
.products-section .products-section__list {
  display: flex;
  text-align: center;
  gap: 30px;
  font-weight: bold;
  font-size: 14px;
}

.products-section .products-section__list span {
  display: block;
  margin-top: 15px;
}

@media print, screen and (min-width: 768px) {
  .products-section__list__item img{
    max-width:220px;
  }
}

/* ====================================
	RoomClipセクション
 ==================================== */
 .roomclip-section {
  padding: 0 5vw 40px;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section {
    padding: 0 93px 100px;
  }
}
.roomclip-section .roomclip-section__inr {
  margin: 0 auto;
  max-width: 900px;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__row {
    align-items: flex-start;
    justify-content: space-between;
    display: flex;
    gap: 0 50px;
    max-width: 900px;
    margin: auto;
  }  
}
.roomclip-section .roomclip-section__col--banner {
  margin:0 0 30px;
}  
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__col {
  }  
  .roomclip-section .roomclip-section__col--banner {
    width:275px;
    margin:0;
  }  
  .roomclip-section .roomclip-section__col--banner img{
    width:100%;
    height:auto;
  }  
}
.roomclip-section .roomclip-section__title {
  max-width: 337px;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__title {
    margin: 0 0 20px;
    max-width: 630px;
  }
}

.roomclip-section .roomclip-section__text {
  font-size:15px;
  font-weight:500;
  line-height:1.8;
  margin: 0 auto 10px;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__text {
    font-size:20px;
    line-height:1.6;
    margin: 0 auto 20px;
  }
}
.roomclip-section .roomclip-section__link {
  font-size:16px;
  font-weight:700;
  color:#E6002D;
  line-height:1.6;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__link {
    font-size:18px;
  }
}
.roomclip-section .roomclip-section__btn {
  text-align: center;
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .roomclip-section .roomclip-section__btn {
    text-align: right;
    margin-top: 30px;
  }
}
/* ====================================
	モーダル
 ==================================== */
 .js-modal-trg {
  position: relative;
  cursor: pointer;
}
.js-modal-trg::before {
  content: "";
  background: rgba(0,0,0,.2);
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
}
.js-modal-trg::after {
  content: "";
  background: url(../images/icon-play-btn.svg) 0 0/100% 100% no-repeat;
  display: block;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 42px;
}

.modal {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 2000;
  top: 0;
  left: 0;
}
.modal .modal__bg {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.modal .modal__movie {
  border: 1px solid #707070;
  background-color: #fff;
  display: inline-block;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
  z-index: 2;
}
@media print, screen and (max-width: 767px) {
  .modal .modal__movie {
    padding: 50px 20px;
    width: 90%;
  }
}
@media print, screen and (min-width: 768px) {
  .modal .modal__movie {
    top: 15%;
    padding: 50px;
    height: 70%;
  }
}
.modal .modal__movie .modal__close {
  background-color: #fff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
  height: 28px;
  width: 28px;
  border: 2px solid #EF9C9C;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .modal .modal__movie .modal__close {
    height: 38px;
    width: 38px;
  }
}
.modal .modal__movie .modal__close > span {
  height: 15px;
  width: 15px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .modal .modal__movie .modal__close > span {
    height: 20px;
    width: 20px;
  }
}
.modal .modal__movie .modal__close > span::before, .modal .modal__movie .modal__close > span::after {
  content: "";
  display: block;
  background-color: #EF9C9C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal__movie .modal__close > span::before {
  height: 100%;
  width: 2px;
}
.modal .modal__movie .modal__close > span::after {
  height: 2px;
  width: 100%;
}
.modal .modal__movie .modal__movie__inr {
  overflow-y: auto;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .modal .modal__movie .modal__movie__inr {
    height: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .modal .modal__movie .modal__movie__inr video {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .modal .modal__movie .modal__movie__inr video {
    aspect-ratio: 9/16;
    height: 100%;
  }
}
.modal .modal__movie .modal__movie__inr iframe {
  margin-bottom: 50px;
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .modal .modal__movie .modal__movie__inr iframe {
    min-width: 100% !important;
  }
}
