@charset "UTF-8";
/* css_name constants */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&family=Noto+Serif+JP:wght@400;600&family=Zen+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");
@import url("https://use.typekit.net/oxp1uhm.css");
* {
  padding: 0;
  margin: 0;
  min-height: inherit;
  min-width: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

[type="hidden"]:focus,
[type="text"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="email"]:focus,
[type="password"]:focus,
[type="datetime"]:focus,
[type="date"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="time"]:focus,
[type="datetime-local"]:focus,
[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: inherit;
  box-shadow: none;
  outline: none;
}

p {
  margin: 0;
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
a:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
a img {
  transition: 0.3s;
  cursor: pointer;
}
a img:hover {
  opacity: 0.8;
}

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

ol,
ul,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.center {
  text-align: center;
}

.text01 {
  padding: 40px 10px;
  color: #000;
}

picture {
  text-align: center;
}

.makeshop-modal-window {
  display: none;
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/* ---sp--- */
/* ---percent--- */
/* css_name constants */
/* color constants */
/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * other
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*========= レイアウトのためのCSS ===============*/
.wrapper {
  overflow: hidden;
}

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

.box {
  width: 220px;
  padding: 20px;
  margin: 0 20px 20px 20px;
  background: #666;
  color: #fff;
  box-sizing: border-box;
}

.bgextend,
.lineTrigger {
  width: 220px;
  padding: 20px;
  margin: 0 20px 20px 20px;
  box-sizing: border-box;
}

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.pc {
  display: block !important;
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .sp {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
}

@media screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}

@media screen and (max-width: 1080px) {
  .only-pc {
    display: none !important;
  }
}

.only-sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .only-sp {
    display: flex !important;
  }
}

.both-sp-tablet {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .both-sp-tablet {
    display: flex !important;
  }
}

@media screen and (max-width: 1000px) {
  .both-pc-tablet {
    display: none !important;
  }
}

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

section {
  margin: 0 auto;
}

.contents {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1160px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 90px 0;
}
@media screen and (max-width: 640px) {
  .contents {
    padding: 35px 0 97px;
  }
}

.contents_2 {
  max-width: 760px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.contents-3 {
  max-width: 850px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 0 0 30px;
}
@media screen and (max-width: 1000px) {
  .contents-3 {
    padding: 34px 0 25px;
  }
}

.contents-4 {
  max-width: 639px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.grid__container {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 34px;
}
.grid__center {
  display: grid;
  place-content: center;
  place-items: center;
}
.grid__col2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1000px) {
  .grid__col2 {
    gap: 25px;
    grid-template-columns: 1fr;
  }
}
.grid__col2-2 {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(117px, 1fr) 2fr;
}
@media screen and (max-width: 1000px) {
  .grid__col2-2 {
    gap: 25px;
    grid-template-columns: 1fr;
  }
}
.grid__col2-3 {
  display: grid;
  gap: 0 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1000px) {
  .grid__col2-3 {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.grid__col3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1000px) {
  .grid__col3 {
    gap: 20px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.main__content {
  display: grid;
  place-content: center;
  place-items: center;
}
.main__title_sub {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
}
.main__title {
  font-weight: bold;
  font-size: 50px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #50b1d2;
  margin-top: 11px;
  margin-bottom: 11px;
}
@media screen and (max-width: 1000px) {
  .main__title {
    line-height: 70px;
    margin-top: 12px;
    margin-bottom: 27px;
  }
}
.main__img {
  width: 80%;
}
.main__text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 24px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1000px) {
  .main__text {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
  }
}

.productCWrap_1 {
  position: relative;
  width: 100%;
  padding-top: 0;
}
@media screen and (max-width: 1000px) {
  .productCWrap_1 {
    padding-top: 50px;
  }
}

.fv_img {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.fv_img > div {
  padding: 10px;
}

/*========= TOP ===============*/
.top_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 1000px) {
  .top_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

.top_box {
  border-radius: 10px;
  background: #fff;
}
.top_box a img {
  transform: scale(1);
}
.top_box img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  object-fit: cover;
}
.top_box__primary {
  position: relative;
}
.top_box__primary h3 {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #000;
  margin: 16px 0;
}
@media screen and (max-width: 1000px) {
  .top_box__primary h3 {
    font-size: 18px;
    margin: 17px 0 5px;
  }
}
.top_box__primary p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 24px;
  text-align: center;
  color: #000;
  margin-top: 5px;
  padding-bottom: 35px;
}
@media screen and (max-width: 1000px) {
  .top_box__primary p {
    font-size: 12px;
    padding: 0 17px 56px;
  }
}
.top_box__primary::after {
  content: "";
  position: absolute;
  top: 4em;
  left: 50%;
  display: block;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media screen and (max-width: 1000px) {
  .top_box__primary::after {
    top: 10em;
    left: 48%;
  }
}
@media screen and (max-width: 640px) {
  .top_box__primary::after {
    top: 8em;
  }
}

/*========= コンテンツ ===============*/
.item__wrap {
  padding: 0 38px;
  counter-reset: itemCounter;
}
@media screen and (max-width: 1000px) {
  .item__wrap {
    padding: 0;
  }
}
.item__box2 + .item__box2 {
  margin-top: 73px;
}
@media screen and (max-width: 1000px) {
  .item__box2 + .item__box2 {
    margin-top: 52px;
  }
}
.item__box2:nth-child(2n + 1) .item__inner2 {
  grid-template-columns: 0.9fr 1fr;
}
.item__box2:nth-child(2n + 1) .item__inner2 .item__box2__img {
  order: 2;
  overflow: hidden;
}
.item__box2:nth-child(2n + 1) .item__inner2__text {
  order: 1;
}
@media screen and (max-width: 1000px) {
  .item__box2:nth-child(2n + 1) .item__inner2 {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
  .item__box2:nth-child(2n + 1) .item__inner2 img {
    order: 0;
  }
  .item__box2:nth-child(2n + 1) .item__inner2__text {
    order: 2;
  }
}
.item__box2:nth-child(1) .item__inner2__ranking::after {
  color: #dcb800;
}
.item__box2:nth-child(2) .item__inner2__ranking::after {
  color: #b7b7b7;
}
.item__box2:nth-child(3) .item__inner2__ranking::after {
  color: #ab7f4d;
}
.item__box2__img {
  overflow: hidden;
}
.item__box2__img img {
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
}
.item__inner2 {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 0 30px;
}
@media screen and (max-width: 1000px) {
  .item__inner2 {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.item__inner2__ranking {
  display: flex;
  align-items: center;
}
.item__inner2__ranking::after {
  content: "NO." counter(itemCounter);
  counter-increment: itemCounter;
  font-weight: bold;
  font-size: 21px;
  text-align: left;
  color: #000;
  margin-top: 6px;
  margin-left: 9px;
}
.item__inner2__ranking img {
  width: 27px;
  height: 22px;
}
.item__inner2__text {
  align-self: center;
}
.item__inner2__text .top_subTitle {
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  line-height: 10px;
  text-align: left;
  color: #000;
  background: #fff;
  padding: 9px 24px;
}
.item__inner2__text h2 {
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.06em;
  line-height: 32px;
  text-align: left;
  color: #000;
  margin: 15px 0;
}
.item__inner2__text .bottom_subTitle {
  display: block;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
  line-height: 1.5;
  margin-top: 10px;
}
.item__inner2__text p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 24px;
  text-align: left;
  color: #000;
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  .item__inner2__text p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 18px;
  }
}
.item__inner2__price {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
}
.item__inner2__price .yen::after {
  content: "(税込) + 送料無料";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
}
.item__2parts {
  display: grid;
  gap: 35px 22px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 738px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .item__2parts {
    gap: 20px 0;
    grid-template-columns: 1fr;
  }
}
.item__2parts-2 {
  max-width: 738px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.item__2parts-3 {
  display: grid;
  gap: 35px 22px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 738px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .item__2parts-3 {
    gap: 20px 0;
    grid-template-columns: 1fr;
  }
}

.genre__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
@media screen and (max-width: 1000px) {
  .genre__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 5px;
  }
}
.genre__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
@media screen and (max-width: 1000px) {
  .genre__flex {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px 5px;
  }
}
.genre__wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 46px;
}
@media screen and (max-width: 1000px) {
  .genre__wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 10px;
    margin-bottom: 30px;
  }
}
.genre__box {
  position: relative;
  width: calc(100% - 50px);
}
@media screen and (max-width: 1000px) {
  .genre__box {
    width: calc((100% - 20px) / 2);
  }
}
.genre__box a {
  display: block;
  border-radius: 6px;
  padding: 21px;
  background: #fff;
  border: 1px solid #707070;
  color: #363636;
}
.genre__box a::after {
  content: "";
  position: absolute;
  top: 2em;
  right: 1em;
  display: block;
  color: #333;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1000px) {
  .genre__box a::after {
    right: 0.8em;
  }
}
.genre__box a:hover {
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  opacity: 1;
  color: #363636;
}
.genre__box a:hover::after {
  border: 2px solid #363636;
  border-left: 0;
  border-bottom: 0;
}
.genre__box h3 {
  position: relative;
  font-weight: bold;
  font-size: clamp(11px, 2.6vw, 16px);
  letter-spacing: 0.15em;
  line-height: 23px;
  text-align: left;
  color: #363636;
}
@media screen and (max-width: 1000px) {
  .genre__box h3 {
    line-height: 16px;
  }
}
.genre__mbox {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .genre__mbox:nth-of-type(5) {
    display: none;
  }
}
.genre__mbox img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.genre__primary h3 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 25px;
  text-align: left;
  color: #333;
  margin-top: 17px;
}
.genre__price {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
}
.genre__price--yen {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
}
.genre__price--yen::after {
  content: "(税込)";
}

.information {
  padding: 98px 0 91px;
}
.information__text {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #3d828e;
  margin-bottom: 45px;
}
@media screen and (max-width: 1000px) {
  .information__text {
    font-size: 26px;
    line-height: 37px;
  }
}
.information__text--sub {
  display: block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 24px;
  text-align: center;
  color: #000;
  margin-top: 21px;
}
@media screen and (max-width: 1000px) {
  .information__text--sub {
    font-size: 14px;
    margin-top: 22px;
  }
}
@media screen and (max-width: 640px) {
  .information__text--sub {
    text-align: left;
  }
}
.information__box {
  padding: 45px 60px 70px;
  background: #fff;
}
.information__box h2 {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .information__box h2 {
    line-height: 1.5;
    margin-bottom: 22px;
  }
}
.information__inbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.information__inbox p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 24px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1000px) {
  .information__inbox img {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .information__inbox img {
    width: 80%;
  }
}

/*========= タイトル ===============*/
.obi__title {
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #363636;
  margin-bottom: 20px;
  padding-top: 75px;
}
@media screen and (max-width: 1000px) {
  .obi__title {
    padding-top: 48px;
  }
}

.all__title-3 {
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: #000;
  margin-bottom: 46px;
}
@media screen and (max-width: 1000px) {
  .all__title-3 {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}

.linkobi__content {
  display: grid;
  place-content: center;
  place-items: center;
  padding: 20px;
}
.linkobi__title {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .linkobi__title {
    font-size: 20px;
  }
}

.minititle {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: clamp(30px, 2.6vw, 45px);
  letter-spacing: 0.02em;
  text-align: left;
  color: #363636;
  margin-top: 120px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .minititle {
    margin-top: 60px;
  }
}
.minititle__sub {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(11px, 2.6vw, 16px);
  letter-spacing: 0.1em;
  text-align: left;
  color: #363636;
  text-transform: uppercase;
  margin-left: 22px;
}
@media screen and (max-width: 1000px) {
  .minititle__sub {
    display: block;
  }
}

.s_dTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  font-size: clamp(30px, 2.6vw, 45px);
  letter-spacing: 0.02em;
  text-align: left;
  color: #000;
  margin-top: 3em;
  margin-bottom: 3em;
  scroll-margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .s_dTitle {
    margin-bottom: 32px;
  }
}
.s_dTitle__sub {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: bold;
  font-size: clamp(13px, 2.6vw, 16px);
  letter-spacing: 0.1em;
  text-align: left;
  color: #000;
  margin-top: 0.5em;
}
@media screen and (max-width: 1000px) {
  .s_dTitle__sub {
    display: block;
  }
}

.bottom__box {
  display: grid;
  place-content: center;
  place-items: center;
}
.bottom__box a img {
  overflow: hidden;
}
.bottom__box--primary {
  margin-top: 17px;
}
.bottom__box--primary h3 {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1000px) {
  .bottom__box--primary h3 {
    font-size: 12px;
  }
}

/*========= 検索 ===============*/
.search_component {
  width: 100%;
  height: 57px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  margin-top: 10px;
}
.search_component > input[type="text"] {
  outline: none;
  border: none;
  border: 1px solid #707070;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.9px;
}
.search_component > input[type="text"][type="text"] {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 2.1px;
  width: 100%;
  height: 57px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-radius: 28.5px;
  padding: 0 30px;
}
.search_component > input[type="text"][type="text"]::placeholder {
  color: #707070;
}
.search_component button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  font-size: 17px;
  cursor: pointer;
  padding: 10px;
}
.search_component__warp {
  width: 100%;
  margin: 0 auto;
  padding: 37px 25px 0;
}

.search__selector {
  width: 100%;
  height: 57px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.9px;
  background-color: #fff;
  border: 1px solid #707070;
}
.search__selector .custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.search__selector .custom-select-wrapper select {
  width: 100%;
  max-width: 100%;
  height: 57px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.9px;
  padding: 0 30px;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #707070;
}
.search__selector .custom-select-wrapper select:focus {
  outline: none;
  width: 50%;
}
.search__selector .custom-select-wrapper select option {
  font-size: 15px;
  color: #000000;
  width: 100%;
  box-sizing: border-box;
}
.search__selector .custom-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 3em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #333;
}
.search__keyword {
  display: flex;
  width: 80%;
  margin-top: 24px;
}
@media screen and (max-width: 1000px) {
  .search__keyword {
    flex-wrap: wrap;
    width: 100%;
  }
}
.search__box:nth-child(1) {
  width: 20%;
  margin-top: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .search__box:nth-child(1) {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.search__box ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 11px;
}
@media screen and (max-width: 1000px) {
  .search__box ul {
    gap: 7px;
  }
}
.search__box ul li {
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  color: #000;
  background: #fff;
  border-radius: 50px;
}
.search__box ul li a {
  display: block;
  padding: 10px 18px;
}
@media screen and (max-width: 1000px) {
  .search__box ul li a {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1000px) {
  .search__box ul li {
    font-size: 11px;
  }
}

.link__btn {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 2.6vw, 19px);
  letter-spacing: 0.15em;
  line-height: 26px;
  text-align: center;
  color: #363636 !important;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #707070;
  margin: auto;
  padding: 20px 50px;
  width: 50%;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .link__btn {
    line-height: 17px;
    width: 90%;
    padding: 15px 52px;
  }
}
.link__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8em;
  display: block;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #363636;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 1000px) {
  .link__btn::after {
    right: 2em;
  }
}
.link__btn:hover::after {
  right: 1em;
}
@media screen and (max-width: 1000px) {
  .link__btn:hover::after {
    right: 2em;
  }
}

.js-btn-more {
  margin-bottom: 6em;
}
.js-btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8em;
  display: block;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #363636;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (max-width: 1000px) {
  .js-btn-more::after {
    right: 2em;
  }
}
.js-btn-more:hover::after {
  right: 1.8em;
}
@media screen and (max-width: 1000px) {
  .js-btn-more:hover::after {
    right: 2em;
  }
}

.js-btn-close {
  margin-bottom: 6em;
}
.js-btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8em;
  display: block;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid #363636;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(315deg);
}
@media screen and (max-width: 1000px) {
  .js-btn-close::after {
    right: 2em;
  }
}
.js-btn-close:hover::after {
  right: 1.8em;
}
@media screen and (max-width: 1000px) {
  .js-btn-close:hover::after {
    right: 2em;
  }
}

.btn {
  text-align: center;
}

.btn100 {
  display: block;
  border-radius: 8px;
  background: #2c2d2d;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #fff !important;
  padding: 15px;
  margin: 20px auto 0;
  width: 100%;
}
.btn100:hover {
  color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 1000px) {
  .btn100 {
    margin: 15px 0 0;
  }
}

/*========= トップへ戻る===============*/
#page-top {
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 5;
  width: 50px;
  height: 50px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  border: 1px solid #bcbcbc;
  opacity: 0.9;
  color: #bcbcbc;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#page-top a.active {
  opacity: 1;
  z-index: 1000;
}
#page-top a:before {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 0.1em;
  color: #bcbcbc;
  display: block;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#page-top a:hover {
  opacity: 1;
}
#page-top a:hover:before {
  transform: translateY(-4px);
} /*# sourceMappingURL=lp-main.css.map */
