@charset "UTF-8";

/*---------------------------------------------------------
base
--------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
}


main {
  padding-top: min(18.6666666667vw, 140px);
}

@media screen and (min-width: 769px) {
  main {
    padding-top: 80px;
  }
}

ul {
  list-style-type: none;
  padding: 0;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

/*---------------------------------------------------------
header
--------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3d5069;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: min(18.6666666667vw, 140px);
  padding: 0 min(5.3333333333vw, 40px);
  z-index: 1000;
}

@media screen and (min-width: 769px) {
  .l-header {
    height: 80px;
    padding: 0 min(5.2083333333vw, 100px);
  }
}

@media screen and (min-width: 769px) {
  .l-header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: min(2.5vw, 48px);
  }
}

.l-header-logo img {
  display: block;
  width: min(34.6666666667vw, 260px);
  height: min(10.6666666667vw, 80px);
}

@media screen and (min-width: 769px) {
  .l-header-logo img {
    width: min(11.1458333333vw, 214px);
    height: min(3.3854166667vw, 55px);
  }
}

.l-header-nav {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-header-nav {
    display: block;
  }
}

.l-header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(0.9375vw, 18px);
}

.l-header-item>a,
.l-header-item>span {
  position: relative;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  font-size: clamp(0.75rem, 0.8333333333vw, 1rem);
  cursor: pointer;
  text-decoration: none !important;
}

.l-header-item>a::after,
.l-header-item>span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.l-header-item:hover>a::after,
.l-header-item:focus-within>a::after,
.l-header-item:hover>span::after,
.l-header-item:focus-within>span::after {
  width: min(1.5625vw, 30px);
}

.l-header-item:hover .l-header-menu__mega {
  opacity: 1;
  visibility: visible;
}

.l-header-menu__mega {
  background-color: #3d5069;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 2;
}

.l-header-menu__mega--inner {
  width: min(62.5vw, 1200px);
  margin: 0 auto;
  padding: min(1.5625vw, 20px) 0;
  overflow-x: auto;
  max-height: calc(100vh - 80px);
}

.l-header-menu__mega--inner.item .wb-cart-categ-title {
  display: none;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: min(1.0416666667vw, 20px);
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(1) {
  display: none;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(2) {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(3) {
  grid-column: 2;
  grid-row: 1;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(4) {
  grid-column: 3;
  grid-row: 1;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(5) {
  grid-column: 4;
  grid-row: 1;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(6) {
  grid-column: 2;
  grid-row: 2;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(7) {
  grid-column: 3;
  grid-row: 2;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(8) {
  grid-column: 4;
  grid-row: 2;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(9) {
  grid-column: 2;
  grid-row: 3;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(10) {
  grid-column: 3;
  grid-row: 3;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li:nth-of-type(11) {
  grid-column: 4;
  grid-row: 3;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul li .wb-cart-categ-content-img a {
  background: #fff;
  color: #3d5069;
  font-size: 12px;
  font-weight: 500;
  padding: min(0.4166666667vw, 8px) min(0.5208333333vw, 10px) min(0.5208333333vw, 10px);
  border-radius: min(0.2604166667vw, 5px) min(0.2604166667vw, 5px) 0 0;
  margin-bottom: min(0.4166666667vw, 8px);
  margin: 0;
  text-align: left;
  width: 100%;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li>ul>li {
  position: relative;
  margin: 0 min(0.5208333333vw, 10px);
  text-align: left;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li>ul>li::before {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: 1px;
  background: #fff;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li>ul>li:nth-of-type(n+1) a {
  display: block;
  padding: min(0.625vw, 12px) min(0.2083333333vw, 4px);
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.625rem, 0.7291666667vw, 0.875rem);
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-menu__mega--inner.item .wb-cart-categ-content>ul>li>ul>li:nth-of-type(n+1) a:hover {
  background: #fff;
  color: #3d5069;
  border-radius: 5px;
  opacity: 1;
}

.l-header-menu__list--guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 min(1.3020833333vw, 25px);
}

.l-header-menu__list--guide * {
  color: #fff;
}

.l-header-menu__list--guide li {
  position: relative;
  width: min(14.5833333333vw, 280px);
  text-align: left;
}

.l-header-menu__list--guide li::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(-10px, -0.5208333333vw);
  width: calc(100% + min(0.78125vw, 15px));
  height: 100%;
  border-radius: min(0.2604166667vw, 5px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-menu__list--guide li:hover::before {
  background: #fff;
}

.l-header-menu__list--guide li:hover a {
  color: #333;
}

.l-header-menu__list--guide li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  font-size: clamp(0.625rem, 0.7291666667vw, 0.875rem);
  padding: min(0.625vw, 12px) 0 min(0.625vw, 12px) min(1.5625vw, 30px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: #fff 1px solid;
  color: #fff;
}

.l-header-menu__list--guide li a::before {
  content: "";
  background: url(/img/common/icon_guide_deco.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(0.9375vw, 18px);
  height: min(0.9375vw, 18px);
  aspect-ratio: 1/1;
}

.l-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(0.625vw, 12px);
}

.l-header-search {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-header-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-header-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: clamp(100px, 9.5833333333vw, 184px);
  height: min(2.5vw, 48px);
}

.l-header-search .seach-input {
  width: 100%;
  height: 100%;
  padding: min(0.625vw, 12px) min(2.03125vw, 39px) min(0.625vw, 12px) min(0.78125vw, 15px);
  border: none;
  border-radius: min(0.2604166667vw, 5px);
  background: #fff;
  font-size: clamp(0.75rem, 0.8333333333vw, 1rem);
  color: #222;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-search .seach-input::-webkit-input-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.l-header-search .seach-input::-moz-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.l-header-search .seach-input:-ms-input-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.l-header-search .seach-input::-ms-input-placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.l-header-search .seach-input::placeholder {
  color: #ccc;
  letter-spacing: 0.05em;
}

.l-header-search .seach-btn {
  position: absolute;
  top: 50%;
  right: min(0.7291666667vw, 14px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(1.25vw, 24px);
  height: min(1.25vw, 24px);
  border: none;
  background: url("/img/common/icon_search.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header-search .seach-btn[value] {
  font-size: 0;
}

.l-header-list__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(2.1333333333vw, 16px);
  margin-right: min(15.2vw, 114px);
}

@media screen and (min-width: 769px) {
  .l-header-list__icon {
    gap: min(0.4166666667vw, 8px);
    margin-right: 0;
  }
}

.l-header-list__icon li {
  width: min(12.8vw, 96px);
  height: min(12.8vw, 96px);
}

@media screen and (min-width: 769px) {
  .l-header-list__icon li {
    width: min(2.5vw, 48px);
    height: min(2.5vw, 48px);
  }
}

.l-header-list__icon li.nice {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-header-list__icon li.nice {
    display: block;
  }
}

.l-header-list__icon li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  height: min(12.8vw, 96px);
  border-radius: min(1.3333333333vw, 10px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 769px) {
  .l-header-list__icon li a {
    height: min(2.5vw, 48px);
    border-radius: min(0.2604166667vw, 5px);
  }
}

.l-header-list__icon li a img {
  aspect-ratio: 1/1;
  width: min(6.4vw, 48px);
  height: min(6.4vw, 48px);
}

@media screen and (min-width: 769px) {
  .l-header-list__icon li a img {
    width: min(1.25vw, 24px);
    height: min(1.25vw, 24px);
  }
}

@media screen and (min-width: 769px) {
  .l-header-list__icon li a:hover {
    background: #fcf7eb;
  }
}

#menu-button {
  position: absolute;
  right: min(5.3333333333vw, 40px);
  display: -ms-grid;
  display: grid;
  place-items: center;
  place-content: center;
  width: min(12.8vw, 96px);
  height: min(12.8vw, 96px);
  background: #fff;
  border-radius: min(1.3333333333vw, 10px);
  border: none;
  cursor: pointer;
  z-index: 999;
}

@media screen and (min-width: 769px) {
  #menu-button {
    display: none;
  }
}

.bar,
.bar::before,
.bar::after {
  width: min(4.2666666667vw, 32px);
  height: min(0.5333333333vw, 4px);
  border-radius: min(0.5333333333vw, 4px);
  background-color: #3d5069;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bar {
  display: -ms-grid;
  display: grid;
}

.bar::before,
.bar::after {
  content: "";
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  width: min(4.2666666667vw, 32px);
  height: min(0.5333333333vw, 4px);
  background-color: #3d5069;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bar::before {
  -webkit-transform: translateY(max(-10px, -1.3333333333vw));
  transform: translateY(max(-10px, -1.3333333333vw));
}

.bar::after {
  -webkit-transform: translateY(min(1.3333333333vw, 10px));
  transform: translateY(min(1.3333333333vw, 10px));
}

[data-drawer-open=true] .bar {
  background-color: transparent;
}

[data-drawer-open=true] .bar::before {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

[data-drawer-open=true] .bar::after {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

#overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  -webkit-transition: visibility 0.3s, opacity 0.3s;
  transition: visibility 0.3s, opacity 0.3s;
  margin-top: min(18.6666666667vw, 140px);
}

[data-drawer-open=true] #overlay {
  visibility: visible;
  opacity: 1;
}

#menu {
  position: fixed;
  height: calc(100% - min(18.6666666667vw, 140px));
  width: 100%;
  background-color: #fff;
  right: 0;
  top: min(18.6666666667vw, 140px);
  z-index: 998;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  padding: min(4.5333333333vw, 34px) min(5.3333333333vw, 40px) min(17.0666666667vw, 128px);
}

[data-drawer-open=true] #menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

html[data-drawer-open=true] {
  overflow: hidden;
}

.l-header-sp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(5.3333333333vw, 40px);
  margin-bottom: min(4vw, 30px);
}

.l-header-sp__list--guide a {
  position: relative;
  font-size: min(4.2666666667vw, 2rem);
  text-decoration: none;
  color: #222;
  padding-left: min(7.7333333333vw, 58px);
}

.l-header-sp__list--guide a::before {
  content: "";
  background: url(/img/common/icon_menu_guide.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(6.4vw, 48px);
  height: min(6.4vw, 48px);
}

.l-header-sp__list--login a {
  display: block;
  width: min(50.6666666667vw, 380px);
  background: #3d5069;
  color: #fff;
  font-size: min(4.2666666667vw, 2rem);
  text-decoration: none;
  text-align: center;
  border-radius: min(1.3333333333vw, 10px);
  padding: min(2.6666666667vw, 20px) 0;
}

.l-header-sp__search {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-sp__search form {
  position: relative;
  width: 100%;
  margin-bottom: min(4vw, 30px);
}

.l-header-sp__search .seach-input {
  width: 100%;
  height: min(11.7333333333vw, 88px);
  padding: min(2.6666666667vw, 20px) min(13.3333333333vw, 100px) min(2.6666666667vw, 20px) min(4vw, 30px);
  border-radius: 12px;
  border: #dedede 2px solid;
  background: #fff;
  font-size: min(3.7333333333vw, 28px);
  color: #333;
  outline: none;
}

.l-header-sp__search .seach-input::-webkit-input-placeholder {
  color: #c2c2c2;
}

.l-header-sp__search .seach-input::-moz-placeholder {
  color: #c2c2c2;
}

.l-header-sp__search .seach-input:-ms-input-placeholder {
  color: #c2c2c2;
}

.l-header-sp__search .seach-input::-ms-input-placeholder {
  color: #c2c2c2;
}

.l-header-sp__search .seach-input::placeholder {
  color: #c2c2c2;
}

.l-header-sp__search .seach-btn {
  position: absolute;
  top: 50%;
  right: min(4vw, 30px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(6.4vw, 48px);
  height: min(6.4vw, 48px);
  background: url("/img/common/icon_search.svg") no-repeat center center;
  background-size: contain;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
}

.l-header-sp__banner {
  margin: min(4vw, 30px) 0 min(3.2vw, 24px);
}

.l-header-sp__list--item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header-sp__list--item>li {
  border-bottom: #ededed 1px solid;
  background: #fff;
}

.l-header-sp__list--item>li>span,
.l-header-sp__list--item>li>a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: min(3.2vw, 24px) min(13.8666666667vw, 104px) min(3.2vw, 24px) min(5.3333333333vw, 40px);
  font-size: min(4.2666666667vw, 2rem);
  line-height: 1.4;
  text-decoration: none;
  color: #333;
}

.l-header-sp__list--item>li>span::after {
  content: "";
  background: url(/img/common/icon_menu_plus.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  right: min(5.3333333333vw, 40px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(6.4vw, 48px);
  height: min(6.4vw, 48px);
}

.l-header-sp__list--item>li>a::after {
  content: "";
  background: url(/img/common/icon_guide_deco.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  right: min(5.3333333333vw, 40px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(6.4vw, 48px);
  height: min(6.4vw, 48px);
}

.l-header-sp__list--item>li>ul,
.l-header-sp__list--item>li .wb-cart-categ {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #fdf9f3;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-title {
  display: none;
}

.l-header-sp__list--item>li>ul>li>a,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li>a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: min(6.4vw, 48px) min(2.66666667vw, 20px);
  font-size: min(3.7333333333vw, 28px);
  color: #333;
  text-decoration: none;
  width: calc(100% - min(5.33333333vw, 40px));
  margin-inline: auto;
  border-bottom: #fff 1px solid;
}

.l-header-sp__list--item>li>ul>li>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li>a::after {
  content: "";
  background: url(/img/common/icon_guide_deco.svg) 0 0/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(4.8vw, 36px);
  height: min(4.8vw, 36px);
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(1) {
  display: none;
}
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(2)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(3)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(4)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(5)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(6)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(7)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(8)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(9)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(10)>a::after,
.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(11)>a::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: min(12vw, 90px);
  height: min(12vw, 90px);
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(2)>a::after {
  background: url(/img/common/menu_item_icon02.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(3)>a::after {
  background: url(/img/common/menu_item_icon03.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(4)>a::after {
  background: url(/img/common/menu_item_icon04.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(5)>a::after {
  background: url(/img/common/menu_item_icon05.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(6)>a::after {
  background: url(/img/common/menu_item_icon06.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(7)>a::after {
  background: url(/img/common/menu_item_icon07.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(8)>a::after {
  background: url(/img/common/menu_item_icon08.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(9)>a::after {
  background: url(/img/common/menu_item_icon09.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(10)>a::after {
  background: url(/img/common/menu_item_icon10.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li>.wb-cart-categ>.wb-cart-categ-content>ul>li:nth-of-type(11)>a::after {
  background: url(/img/common/menu_item_icon11.png) 0 0/cover no-repeat;
}

.l-header-sp__list--item>li.is-open>ul,
.l-header-sp__list--item>li.is-open>.wb-cart-categ {
  max-height: 2000px;
}

.l-header-sp__list--item>li.is-open>span::after {
  background: url(/img/common/icon_menu_minus.svg) 0 0/cover no-repeat;
}

/*---------------------------------------------------------
footer
--------------------------------------------------------- */
.l-footer {
  background: #3d5069;
  padding: min(9.6vw, 72px) 0 min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .l-footer {
    padding: min(5.2027027027vw, 77px) 0 min(4.527027027vw, 67px);
  }
}

.l-footer-logo {
  width: min(56vw, 420px);
  margin: auto;
}

@media screen and (min-width: 769px) {
  .l-footer-logo {
    width: min(14.4594594595vw, 214px);
  }
}

.l-footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(4.8vw, 36px);
  margin: min(5.3333333333vw, 40px) 0 0;
}

@media screen and (min-width: 769px) {
  .l-footer-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: min(1.2162162162vw, 18px);
    margin: min(2.7027027027vw, 40px) 0 0;
  }
}

.l-footer-list a {
  position: relative;
  color: #fff !important;
  text-decoration: none !important;
}

@media screen and (min-width: 769px) {
  .l-footer-list a {
    font-size: clamp(0.625rem, 0.9459459459vw, 0.875rem);
  }
}

.l-footer-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 27px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

@media screen and (min-width: 769px) {
  .l-footer-list a:hover:after {
    width: 90%;
  }
}

.l-footer-list .current a:after {
  width: 90%;
}

.l-footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(4vw, 30px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .l-footer-icons {
    gap: min(1.0135135135vw, 15px);
  }
}

.l-footer-icons li a {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  width: min(14.9333333333vw, 112px);
  height: min(14.9333333333vw, 112px);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 769px) {
  .l-footer-icons li a {
    width: min(3.7837837838vw, 56px);
    height: min(3.7837837838vw, 56px);
  }
}

.l-footer-icons li img {
  width: min(7.4666666667vw, 56px);
}

@media screen and (min-width: 769px) {
  .l-footer-icons li img {
    width: min(1.8918918919vw, 28px);
  }
}

@media screen and (min-width: 769px) {
  .l-footer-icons li a:hover {
    background-color: #fcf7eb;
  }
}

/*---------------------------------------------------------
l-shipping
--------------------------------------------------------- */
.l-shipping--pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .l-shipping--pc {
    display: block;
    width: min(21.3762811127vw, 292px);
  }
}

.l-shipping__wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #3d5069;
}

.l-shipping__title {
  padding: min(2.6666666667vw, 20px);
  background-color: #2e3e53;
  color: #fff;
  font-size: min(4vw, 30px);
  font-weight: 500;
  text-align: center;
  line-height: 2;
  -webkit-transform: rotateZ(0.03deg);
  transform: rotateZ(0.03deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media screen and (min-width: 769px) {
  .l-shipping__title {
    padding: min(0.8163265306vw, 8px) min(1.1224489796vw, 11px) min(1.5306122449vw, 15px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: clamp(0.75rem, 1.4285714286vw, 0.875rem);
  }
}

.l-shipping__title span.current-time {
  font-size: min(3.2vw, 1.5rem);
  font-weight: normal;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .l-shipping__title span.current-time {
    display: block;
    font-size: clamp(0.625rem, 1.2244897959vw, 0.75rem);
    margin-top: min(0.4081632653vw, 4px);
  }
}

.l-shipping__inner {
  padding: 10px 10px 15px;
  background-color: #fff;
}

.l-shipping__table {
  width: 100%;
}

.l-shipping__table th {
  position: relative;
  font-size: min(3.7333333333vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #707070;
  padding: min(1.3333333333vw, 10px) 0 min(1.3333333333vw, 10px) 1.5em;
  width: 68%;
  vertical-align: baseline;
  border-bottom: 1px solid #f2f2f2 !important;
}

@media screen and (min-width: 769px) {
  .l-shipping__table th {
    padding: min(0.8163265306vw, 8px) 0 0 1.5em;
    font-size: clamp(0.75rem, 1.4285714286vw, 0.875rem);
  }
}

.l-shipping__table th::before {
  content: "・";
  color: #3d5069;
  position: absolute;
  left: 0.4em;
  top: 0.4em;
  line-height: inherit;
}

@media screen and (min-width: 769px) {
  .l-shipping__table th::before {
    top: 0.6em;
  }
}

.l-shipping__table td {
  font-size: min(3.7333333333vw, 1.75rem);
  font-weight: 500;
  color: #3d5069;
  vertical-align: baseline;
  border-bottom: 1px solid #f2f2f2 !important;
}

@media screen and (min-width: 769px) {
  .l-shipping__table td {
    font-size: clamp(0.75rem, 1.4285714286vw, 0.875rem);
    padding-left: min(1.8367346939vw, 18px);
    white-space: nowrap;
  }
}

.l-shipping__banner {
  display: block;
  -webkit-box-shadow: 4px 4px 10px rgba(34, 34, 34, 0.1);
  box-shadow: 4px 4px 10px rgba(34, 34, 34, 0.1);
}

@media screen and (min-width: 769px) {
  .l-shipping__banner {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    margin-top: min(2.5510204082vw, 25px);
  }
}

@media screen and (min-width: 769px) {
  .l-shipping__banner:hover {
    opacity: 0.7;
  }
}

.l-shipping__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: min(8vw, 60px);
  gap: min(4vw, 30px);
}

@media screen and (min-width: 769px) {
  .l-shipping__icons {
    margin-top: min(2.5510204082vw, 25px);
    gap: min(1.5306122449vw, 15px);
  }
}

.l-shipping__icons li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border: min(0.5333333333vw, 4px) solid #3d5069;
  border-radius: min(2.6666666667vw, 20px);
  width: min(14.9333333333vw, 112px);
  height: min(14.9333333333vw, 112px);
}

@media screen and (min-width: 769px) {
  .l-shipping__icons li a {
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border: 2px solid #3d5069;
    width: min(5.7142857143vw, 56px);
    height: min(5.7142857143vw, 56px);
    border-radius: 10px;
  }
}

@media screen and (min-width: 769px) {
  .l-shipping__icons li a:hover {
    background-color: #fcf7eb;
  }
}

.l-shipping__icons li a img {
  width: min(7.4666666667vw, 56px);
}

@media screen and (min-width: 769px) {
  .l-shipping__icons li a img {
    width: min(2.8571428571vw, 28px);
  }
}

/*---------------------------------------------------------
 p-top
--------------------------------------------------------- */
.p-top-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 350;
  font-size: min(6.9333333333vw, 3.25rem);
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-top-title {
    font-size: clamp(0.875rem, 2.0497803807vw, 1.75rem);
  }
}

.p-top-title::before {
  content: "";
  position: absolute;
  width: 31px;
  height: 4px;
  background: url(/img/common/title_line_sp.svg) no-repeat 0 0/cover;
  top: 50%;
  right: calc(100% + 6px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .p-top-title::before {
    background: url(/img/common/title_line_pc.svg) no-repeat 0 0/cover;
    width: min(3.0014641288vw, 41px);
    height: min(0.2928257687vw, 4px);
    right: calc(100% + min(0.5856515373vw, 8px));
  }
}

.p-top-title::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 4px;
  background: url(/img/common/title_line_sp.svg) no-repeat 0 0/cover;
  top: 50%;
  left: calc(100% + 6px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .p-top-title::after {
    background: url(/img/common/title_line_pc.svg) no-repeat 0 0/cover;
    width: min(3.0014641288vw, 41px);
    height: min(0.2928257687vw, 4px);
    left: calc(100% + min(0.5856515373vw, 8px));
  }
}

.p-top-head {
  padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) 0;
}

@media screen and (min-width: 769px) {
  .p-top-head {
    margin: min(6.588579795vw, 90px) auto 0;
    max-width: 1920px;
    padding: 0 min(1.756954612vw, 24px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: min(2.4890190337vw, 34px);
  }
}

.p-top-swiper {
  margin: 0;
  border-radius: 10px;
  -webkit-box-shadow: 12px 12px 10px rgba(34, 34, 34, 0.1);
  box-shadow: 12px 12px 10px rgba(34, 34, 34, 0.1);
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-top-swiper {
    width: min(71.4285714286vw, 1200px);
    -webkit-box-shadow: 10px 10px 10px rgba(34, 34, 34, 0.1);
    box-shadow: 10px 10px 10px rgba(34, 34, 34, 0.1);
  }
}

.p-top-swiper .swiper-slide-active .p-top-swiper__image img,
.p-top-swiper .swiper-slide-duplicate-active .p-top-swiper__image img,
.p-top-swiper .swiper-slide-prev .p-top-swiper__image img {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center/cover;
  -webkit-animation: mvZoom 5s ease-out forwards;
  animation: mvZoom 5s ease-out forwards;
}

/* ズームアウト */
@-webkit-keyframes mvZoom {
  0% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes mvZoom {
  0% {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.p-top-swiper__container {
  position: relative;
  padding: 0 0 min(9.0666666667vw, 68px) 0;
}

@media screen and (min-width: 769px) {
  .p-top-swiper__container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 0 min(4.0476190476vw, 68px);
  }
}

.p-top-swiper__container .swiper-pagination {
  top: auto !important;
  bottom: 0 !important;
  z-index: 0;
}

.p-top-swiper__container .swiper-pagination-bullet {
  background: #979797 !important;
  opacity: 1 !important;
  margin: 0 min(2vw, 15px) !important;
  width: 6px !important;
  height: 6px !important;
}

@media screen and (min-width: 769px) {
  .p-top-swiper__container .swiper-pagination-bullet {
    margin: 0 min(1.0714285714vw, 18px) !important;
    width: 8px !important;
    height: 8px !important;
  }
}

.p-top-swiper__container .swiper-pagination-bullet-active {
  background: #3d5069 !important;
  position: relative;
}

.p-top-swiper__container .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #3d5069;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .p-top-swiper__container .swiper-pagination-bullet-active::before {
    width: 16px;
    height: 16px;
  }
}

.p-top-swiper__container .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #3d5069;
  bottom: 9px;
  left: 3px;
  -webkit-animation: line_animation 1s forwards;
  animation: line_animation 1s forwards;
}

@media screen and (min-width: 769px) {
  .p-top-swiper__container .swiper-pagination-bullet-active::after {
    bottom: 12px;
    left: 4px;
  }
}

/* 線が伸びるアニメーション */
@-webkit-keyframes line_animation {
  0% {
    height: 0;
  }

  100% {
    height: 26px;
  }
}

@keyframes line_animation {
  0% {
    height: 0;
  }

  100% {
    height: 26px;
  }
}

@media screen and (min-width: 769px) {
  @-webkit-keyframes line_animation {
    0% {
      height: 0;
    }

    100% {
      height: 52px;
    }
  }

  @keyframes line_animation {
    0% {
      height: 0;
    }

    100% {
      height: 52px;
    }
  }
}

.p-top-swiper__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #3c5069;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(13.3333333333vw, 100px);
  height: min(13.3333333333vw, 100px);
  border-radius: 10px 0 0;
  border-top: 2px solid #3d5069;
  border-left: 2px solid #3d5069;
}

@media screen and (min-width: 769px) {
  .p-top-swiper__arrow {
    width: min(5.8565153734vw, 80px);
    height: min(5.8565153734vw, 80px);
  }
}

.p-top-swiper__arrow img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* 白に変換 */
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: min(8.2666666667vw, 62px) !important;
}

@media screen and (min-width: 769px) {
  .p-top-swiper__arrow img {
    width: min(2.2693997072vw, 31px) !important;
  }
}

.p-top-swiper__text {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 0;
  width: min(62vw, 465px);
  height: min(22.2666666667vw, 167px);
}

/* about */
.p-top-about {
  margin: min(9.3333333333vw, 70px) 0 0;
  padding: 0 min(5.3333333333vw, 40px) 0;
}

@media screen and (min-width: 769px) {
  .p-top-about {
    padding: 0;
  }
}

.p-top-about__wrapper {
  border-radius: 5px;
  border: 1px solid #3d5069;
}

@media screen and (min-width: 769px) {
  .p-top-about__wrapper {
    width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
  }
}

.p-top-about__inner {
  background: #2e3e53;
  color: #fff;
  padding: min(1.3333333333vw, 10px);
  border-radius: 0 0 5px 5px;
}

@media screen and (min-width: 769px) {
  .p-top-about__inner {
    width: min(80.8931185944vw, 1105px);
    margin: -3px auto 0;
    padding: min(0.439238653vw, 6px);
  }
}

.p-top-about__border {
  border: 1px solid #fff;
  text-align: center;
  border-radius: 0 0 5px 5px;
  padding: min(4.2666666667vw, 32px) 0;
}

@media screen and (min-width: 769px) {
  .p-top-about__border {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: min(2.196193265vw, 30px);
    padding: min(1.0248901903vw, 14px) 0;
  }
}

.p-top-about__border img {
  display: block;
  width: min(38.1333333333vw, 286px);
  margin: min(2.6666666667vw, 20px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-top-about__border img {
    margin: 0;
    width: min(11.9326500732vw, 163px);
  }
}

.p-top-about__title {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .p-top-about__title {
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
  }
}

.p-top-about__text {
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  padding: min(6.1333333333vw, 46px) min(10.6666666667vw, 80px) min(8vw, 60px);
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-top-about__text {
    font-size: clamp(0.75rem, 1.317715959vw, 1.125rem);
    padding: min(1.8301610542vw, 25px) 0;
  }
}

/* category */
.p-top-category {
  background: #fdf9f3;
  margin: min(12vw, 90px) 0 0;
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) min(16vw, 120px);
}

.p-top-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: min(2.6666666667vw, 20px);
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-category__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: min(73.2064421669vw, 1000px);
    gap: min(2.196193265vw, 30px) min(1.756954612vw, 24px);
    margin: min(2.9282576867vw, 40px) auto 0;
  }
}

.p-top-category__list a {
  text-decoration: none;
  display: block;
  width: min(20.2666666667vw, 152px);
}

@media screen and (min-width: 769px) {
  .p-top-category__list a {
    width: min(13.17715959vw, 180px);
  }
}

.p-top-category__list a span:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #fff;
  border: 1px solid #bdad94;
  border-radius: 5px;
  width: min(20.2666666667vw, 152px);
  height: min(20.2666666667vw, 152px);
  -webkit-box-shadow: 6px 6px 10px rgba(242, 216, 181, 0.2);
  box-shadow: 6px 6px 10px rgba(242, 216, 181, 0.2);
}

@media screen and (min-width: 769px) {
  .p-top-category__list a span:first-of-type {
    width: min(13.17715959vw, 180px);
    height: min(13.17715959vw, 180px);
  }
}

@media screen and (min-width: 769px) {
  .p-top-category__list a:hover span:first-of-type {
    background-color: #fcf7eb;
  }
}

.p-top-category__list a img {
  width: min(13.3333333333vw, 100px);
}

.p-top-category__list a span:last-of-type {
  text-align: center;
  display: block;
  font-size: min(3.2vw, 1.5rem);
  color: #333333;
  margin: min(1.6vw, 12px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-category__list a span:last-of-type {
    font-size: clamp(0.75rem, 1.6326530612vw, 1rem);
  }
}

/* recommend */
.p-top-recommend {
  padding: min(16vw, 120px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-top-recommend {
    padding: min(7.3206442167vw, 100px) 0;
  }
}

.p-top-recommend__title {
  margin: min(4.2666666667vw, 32px) auto 0;
  width: min(47.4666666667vw, 356px);
}

@media screen and (min-width: 769px) {
  .p-top-recommend__title {
    width: min(20.0585651537vw, 274px);
    margin: 0 auto;
  }
}

.p-top-recommend__movie {
  margin: min(5.3333333333vw, 40px) 0 0;
  width: 100%;
  height: min(144vw, 1080px);
  display: block;
}

@media screen and (min-width: 769px) {
  .p-top-recommend__movie {
    width: min(83.0612244898vw, 814px);
    height: min(46.9387755102vw, 460px);
    margin: min(4.39238653vw, 60px) auto 0;
  }
}

/* use */
.p-top-use {
  background: #fdf9f3;
  margin: min(12vw, 90px) 0 0;
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-top-use {
    margin: 0;
    padding: min(7.3206442167vw, 100px) 0;
  }
}

.p-top-use__wrapper {
  margin: min(8vw, 60px) 0 min(16vw, 120px);
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-top-use__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(2.196193265vw, 30px);
    width: min(87.8477306003vw, 1200px);
    margin: min(3.074670571vw, 42px) auto min(7.1742313324vw, 98px);
  }
}

.p-top-use__wrapper::after {
  content: "";
  position: absolute;
  width: min(36vw, 270px);
  height: min(13.0666666667vw, 98px);
  background: url(/img/top/use_arrow02.svg) no-repeat 0 0/cover;
  top: calc(100% - 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (min-width: 769px) {
  .p-top-use__wrapper::after {
    width: min(9.8828696925vw, 135px);
    height: min(3.5871156662vw, 49px);
    top: calc(100% + min(2.6666666667vw, 20px));
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-top-use__step {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #3d5069;
  overflow: hidden;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-top-use__step {
    height: 100%;
    width: min(27.8184480234vw, 380px);
  }
}

.p-top-use__inner {
  position: relative;
}

.p-top-use__inner::after {
  content: "";
  position: absolute;
  width: min(13.0666666667vw, 98px);
  height: min(11.4666666667vw, 86px);
  background: url(/img/top/use_arrow01_sp.svg) no-repeat 0 0/cover;
  top: calc(100% - 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p-top-use__inner::after {
    background: url(/img/top/use_arrow01_pc.svg) no-repeat 0 0/cover;
    width: min(3.513909224vw, 48px);
    height: min(3.2942898975vw, 45px);
    top: 50%;
    left: calc(100% - min(0.439238653vw, 6px));
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-top-use__inner:last-of-type::after {
  display: none;
}

.p-top-use__inner+.p-top-use__inner {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-use__inner+.p-top-use__inner {
    margin: 0;
  }
}

.p-top-use__step h3 {
  background-color: #3d5069;
  color: #fff;
  text-align: center;
  padding: min(1.3333333333vw, 10px);
  font-weight: 500;
  font-size: min(4.8vw, 2.25rem);
}

@media screen and (min-width: 769px) {
  .p-top-use__step h3 {
    font-size: clamp(0.75rem, 1.317715959vw, 1.125rem);
    padding: min(0.3660322108vw, 5px);
  }
}

.p-top-use__step p {
  color: #3d5069;
  text-align: center;
  margin: min(3.2vw, 24px) 0 0;
  font-weight: 900;
  font-size: min(5.3333333333vw, 2.5rem);
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .p-top-use__step p {
    font-size: clamp(0.78125rem, 1.8301610542vw, 1.5625rem);
    margin: min(1.1713030747vw, 16px) 0 0;
  }
}

.p-top-use__inner img {
  display: block;
  margin: min(3.2vw, 24px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-top-use__inner img {
    margin: min(1.756954612vw, 24px) auto 0;
  }
}

.p-top-use__inner:nth-of-type(1) img {
  width: min(59.2vw, 444px);
}

@media screen and (min-width: 769px) {
  .p-top-use__inner:nth-of-type(1) img {
    width: min(19.6925329429vw, 269px);
  }
}

.p-top-use__inner:nth-of-type(2) img {
  width: min(50.6666666667vw, 380px);
  margin-bottom: min(6.1333333333vw, 46px);
}

@media screen and (min-width: 769px) {
  .p-top-use__inner:nth-of-type(2) img {
    width: min(17.4231332357vw, 238px);
    margin: min(1.756954612vw, 24px) auto 0;
  }
}

.p-top-use__inner:nth-of-type(3) img {
  width: min(65.6vw, 492px);
  margin-bottom: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-top-use__inner:nth-of-type(3) img {
    width: min(23.9385065886vw, 327px);
    margin: min(1.4641288433vw, 20px) auto 0;
  }
}

.p-top-choice__sub {
  text-align: center;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(5.8666666667vw, 2.75rem);
  margin: auto;
  color: #3d5069;
  font-weight: 500;
  margin: min(1.3333333333vw, 10px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-top-choice__sub {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    margin: min(0.7320644217vw, 10px) auto 0;
  }
}

.p-top-choice__sub span {
  position: relative;
  z-index: 1;
}

.p-top-choice__sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  /* 下線の位置調整 */
  width: 100%;
  height: min(1.6vw, 12px);
  /* 線の太さ */
  background: #f7e2b7;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  .p-top-choice__sub::after {
    height: min(0.439238653vw, 6px);
    /* 線の太さ */
  }
}

.p-top-choice__wrapper {
  margin: min(8vw, 60px) 0 0;
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-top-choice__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: min(2.196193265vw, 30px);
    width: min(87.8477306003vw, 1200px);
    margin: min(3.074670571vw, 42px) auto min(3.074670571vw, 42px);
  }
}

.p-top-choice__contents {
  text-decoration: none;
  text-align: center;
  position: relative;
  display: block;
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: min(42.6061493411vw, 582px);
  }
}

.p-top-choice__contents+.p-top-choice__contents {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents+.p-top-choice__contents {
    margin: 0;
  }
}

.p-top-choice__inner {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #3d5069;
  position: relative;
  background-color: #f5f5f5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  padding: min(6.9333333333vw, 52px) 0 0;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 10px rgba(34, 34, 34, 0.1);
  box-shadow: 2px 2px 10px rgba(34, 34, 34, 0.1);
}

@media screen and (min-width: 769px) {
  .p-top-choice__inner {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: min(1.1713030747vw, 16px) 0 0;
    border: 2px solid #3d5069;
  }
}

.p-top-choice__contents:hover .p-top-choice__inner {
  background-color: #fcf7eb;
}

.p-top-choice__inner::before {
  content: "";
  position: absolute;
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  background-color: #fff;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

@media screen and (min-width: 769px) {
  .p-top-choice__inner::before {
    width: min(40.6295754026vw, 555px);
    height: min(35.2855051245vw, 482px);
  }
}

.p-top-choice__more {
  position: relative;
  background-color: #d06114;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: min(4vw, 30px) 0 0;
  padding: min(4.2666666667vw, 32px) 0;
  border-radius: 5px;
  font-size: min(4.8vw, 2.25rem);
}

@media screen and (min-width: 769px) {
  .p-top-choice__more {
    margin: min(1.4641288433vw, 20px) 0 0;
    padding: min(0.7320644217vw, 10px) 0;
    font-size: clamp(0.8125rem, 1.9033674963vw, 1.625rem);
  }
}

.p-top-choice__more::after {
  content: "";
  position: absolute;
  background-image: url(/img/top/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* 白に変換 */
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: min(7.4666666667vw, 56px);
  height: min(2.6666666667vw, 20px);
  top: 50%;
  right: min(4vw, 30px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .p-top-choice__more::after {
    width: min(2.2693997072vw, 31px);
    height: min(0.8052708638vw, 11px);
    right: min(2.196193265vw, 30px);
  }
}

.p-top-choice__contents:nth-of-type(1) .p-top-choice__inner {
  padding: min(6.9333333333vw, 52px) 0 min(6.9333333333vw, 52px);
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents:nth-of-type(1) .p-top-choice__inner {
    padding: min(2.9282576867vw, 40px) 0 0;
  }
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents:nth-of-type(2) .p-top-choice__inner {
    padding-top: min(5.4904831625vw, 75px);
  }
}

.p-top-choice__img {
  display: block;
  position: relative;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .p-top-choice__img {
    margin: 0 auto auto;
  }
}

.p-top-choice__contents:nth-of-type(1) .p-top-choice__img {
  width: min(80vw, 600px);
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents:nth-of-type(1) .p-top-choice__img {
    width: min(35.7979502196vw, 489px);
  }
}

.p-top-choice__contents:nth-of-type(2) .p-top-choice__img {
  width: min(81.3333333333vw, 610px);
}

@media screen and (min-width: 769px) {
  .p-top-choice__contents:nth-of-type(2) .p-top-choice__img {
    width: min(35.5783308931vw, 486px);
  }
}

/* ランキング */
.p-top-ranking {
  padding: min(16vw, 120px) 0;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .p-top-ranking {
    padding: min(10.2489019034vw, 140px) 0 min(8.78477306vw, 120px);
  }
}

.p-top-ranking__swiper {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-ranking__swiper {
    margin: min(2.9282576867vw, 40px) 0 0;
  }
}

.p-top-ranking__item {
  position: relative;
  text-decoration: none;
  color: #333333;
}

.p-top-ranking__rank {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(/img/top/rank_00.svg) no-repeat 0 0/100% auto;
  color: #3d5069;
  z-index: 1;
  width: min(9.0666666667vw, 68px);
  height: min(11.7333333333vw, 88px);
  padding: min(4vw, 30px) 0 0;
  font-size: min(4.2666666667vw, 2rem);
}

@media screen and (min-width: 769px) {
  .p-top-ranking__rank {
    width: min(2.4890190337vw, 34px);
    height: min(2.3426061493vw, 32px);
    padding: min(0.878477306vw, 12px) 0 0;
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
  }
}

.p-top-ranking__list {
  margin: min(5.3333333333vw, 40px);
  text-decoration: none;
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-top-ranking__list {
    margin: min(1.4641288433vw, 20px) 0 0;
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
  }
}

.p-top-ranking__list dt {
  line-height: 1.8;
  padding: 0 0 min(2.4vw, 18px);
}

@media screen and (min-width: 769px) {
  .p-top-ranking__list dt {
    padding: 0 0 min(0.5856515373vw, 8px);
  }
}

.p-top-ranking__list dd {
  padding: min(2.4vw, 18px) 0 min(2.4vw, 18px);
  border-top: 1px solid #dedede;
}

@media screen and (min-width: 769px) {
  .p-top-ranking__list dd {
    padding: min(0.5856515373vw, 8px) 0 min(0.5856515373vw, 8px);
  }
}

.p-top-ranking__rank.rank01 {
  background: url(/img/top/rank_01.svg) no-repeat 0 0/100% auto;
  color: #887618;
}

.p-top-ranking__rank.rank02 {
  background: url(/img/top/rank_02.svg) no-repeat 0 0/100% auto;
  color: #6f6f6f;
}

.p-top-ranking__rank.rank03 {
  background: url(/img/top/rank_03.svg) no-repeat 0 0/100% auto;
  color: #da7819;
}

.ranking-pagination {
  text-align: center;
  font-size: min(6.9333333333vw, 3.25rem);
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .ranking-pagination {
    font-size: clamp(0.9375rem, 2.196193265vw, 1.875rem);
  }
}

.p-top-ranking__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  gap: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-top-ranking__bottom {
    margin: min(2.9282576867vw, 40px) 0 0;
    gap: min(2.196193265vw, 30px);
  }
}

.ranking-button-prev,
.ranking-button-next {
  width: min(26.6666666667vw, 200px);
  height: min(10.6666666667vw, 80px);
  background-color: #3d5069;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #2e3e53;
}

@media screen and (min-width: 769px) {

  .ranking-button-prev,
  .ranking-button-next {
    width: min(8.78477306vw, 120px);
    height: min(3.513909224vw, 48px);
  }
}

.ranking-button-prev::after,
.ranking-button-next::after {
  content: "";
  position: absolute;
  background-image: url(/img/top/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* 白に変換 */
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: min(7.4666666667vw, 56px);
  height: min(2.6666666667vw, 20px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {

  .ranking-button-prev::after,
  .ranking-button-next::after {
    width: min(2.2693997072vw, 31px);
    height: min(0.8052708638vw, 11px);
  }
}

.ranking-button-prev::after {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
  transform: translate(-50%, -50%) scale(-1, 1);
}

@media screen and (min-width: 769px) {

  .ranking-button-prev:hover,
  .ranking-button-next:hover {
    background-color: #fff;
  }
}

@media screen and (min-width: 769px) {

  .ranking-button-prev:hover:after,
  .ranking-button-next:hover:after {
    -webkit-filter: none;
    filter: none;
  }
}

.p-top-ranking__image {
  position: relative;
  -webkit-box-shadow: 4px 4px 10px rgba(34, 34, 34, 0.1);
  box-shadow: 4px 4px 10px rgba(34, 34, 34, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.p-top-ranking__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fcf7eb;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  .p-top-ranking__item:hover .p-top-ranking__image::before {
    opacity: 0.7;
  }
}

.p-top-ranking__swiper+.p-top-title {
  margin: min(16vw, 120px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-top-ranking__swiper+.p-top-title {
    margin: min(10.2489019034vw, 140px) auto 0;
  }
}

/* おすすめ特集 */
.p-top-banners {
  background: #2e3e53;
  padding: min(16vw, 120px) min(5.3333333333vw, 40px);
}

.p-top-banners .p-top-title {
  color: #ffffff;
}

.p-top-banners .p-top-title::before,
.p-top-banners .p-top-title::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* 白に変換 */
}

.p-top-banners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: min(4vw, 30px);
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-banners__list {
    width: min(87.8477306003vw, 1200px);
    margin: min(2.9282576867vw, 40px) auto 0;
    gap: min(1.756954612vw, 24px);
  }
}

.p-top-banners__list li {
  width: min(42.6666666667vw, 320px);
}

@media screen and (min-width: 769px) {
  .p-top-banners__list li {
    width: min(43.0453879941vw, 588px);
  }
}

.p-top-banners__list li img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 5px;
}

@media screen and (min-width: 769px) {
  .p-top-banners__list a:hover img {
    opacity: 0.8;
  }
}

.p-top-banners__more {
  position: relative;
  display: block;
  background-color: #fff;
  border: #fff 1px solid;
  color: #3d5069;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  margin: min(10.1333333333vw, 76px) 0 0;
  padding: min(4.8vw, 36px) 0;
  font-size: min(4.2666666667vw, 2rem);
}

@media screen and (min-width: 769px) {
  .p-top-banners__more {
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: min(23.4260614934vw, 320px);
    margin: min(3.6603221083vw, 50px) auto 0;
    padding: min(1.317715959vw, 18px) 0;
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
  }
}

.p-top-banners__more::after {
  position: absolute;
  content: "";
  background-image: url(/img/top/arrow.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: min(7.4666666667vw, 56px);
  height: min(2.6666666667vw, 20px);
  top: 50%;
  right: min(4vw, 30px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .p-top-banners__more::after {
    width: min(2.2693997072vw, 31px);
    height: min(0.8052708638vw, 11px);
    right: min(2.196193265vw, 30px);
  }
}

@media screen and (min-width: 769px) {
  .p-top-banners__more:hover {
    background: #2e3e53;
    color: #fff;
  }
}

@media screen and (min-width: 769px) {
  .p-top-banners__more:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

/* お知らせ */
.p-top-news {
  padding: min(16vw, 120px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-top-news {
    padding: min(8.78477306vw, 120px) 0 min(10.2489019034vw, 140px);
  }
}

.p-top-news__wrapper {
  border-top: 1px solid #dedede;
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-news__wrapper {
    width: min(87.8477306003vw, 1200px);
    margin: min(2.9282576867vw, 40px) auto 0;
  }
}

.p-top-news__list {
  display: block;
  border-bottom: 1px solid #dedede;
  padding: min(2.6666666667vw, 20px) min(2.6666666667vw, 20px);
  text-decoration: none;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 769px) {
  .p-top-news__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(1.317715959vw, 18px);
    padding: min(1.756954612vw, 24px) min(12.4450951684vw, 170px);
  }
}

@media screen and (min-width: 769px) {
  .p-top-news__list:hover {
    background-color: #fcf7eb;
  }
}

.p-top-news__list div {
  color: #979797;
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-top-news__list div {
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
  }
}

.p-top-news__list p {
  font-size: min(3.7333333333vw, 1.75rem);
  margin: min(2.6666666667vw, 20px) 0 0;
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-top-news__list p {
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
    margin: 0;
  }
}

.p-top-news__more {
  position: relative;
  display: block;
  background-color: #3d5069;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #2e3e53;
  margin: min(10.1333333333vw, 76px) 0 0;
  padding: min(4.8vw, 36px) 0;
  font-size: min(4.2666666667vw, 2rem);
}

@media screen and (min-width: 769px) {
  .p-top-news__more {
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: min(23.4260614934vw, 320px);
    margin: min(3.6603221083vw, 50px) auto 0;
    padding: min(1.317715959vw, 18px) 0;
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
  }
}

.p-top-news__more::after {
  position: absolute;
  content: "";
  background-image: url(/img/top/arrow.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  /* 白に変換 */
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  width: min(7.4666666667vw, 56px);
  height: min(2.6666666667vw, 20px);
  top: 50%;
  right: min(4vw, 30px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
  .p-top-news__more::after {
    width: min(2.2693997072vw, 31px);
    height: min(0.8052708638vw, 11px);
    right: min(2.196193265vw, 30px);
  }
}

@media screen and (min-width: 769px) {
  .p-top-news__more:hover {
    background-color: #fff;
    color: #3d5069;
  }
}

@media screen and (min-width: 769px) {
  .p-top-news__more:hover:after {
    -webkit-filter: none;
    filter: none;
  }
}

/* 名入れスルーご利用方法 */
.p-top-step {
  padding: 0 min(5.3333333333vw, 40px);
}

.p-top-step__wrapper {
  margin: min(5.8666666667vw, 44px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-step__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: min(2.5622254758vw, 35px);
    margin: min(2.9282576867vw, 40px) 0 0;
  }
}

.p-top-step__contents {
  border-radius: 5px;
  border: 1px solid #3d5069;
  overflow: hidden;
  padding: 0 min(5.3333333333vw, 40px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: min(15.5197657394vw, 212px);
    padding: 0 min(1.1713030747vw, 16px) min(2.4890190337vw, 34px);
  }
}

.p-top-step__contents+.p-top-step__contents {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-step__contents+.p-top-step__contents {
    margin: 0;
  }
}

.p-top-step__num {
  position: relative;
  text-align: center;
}

.p-top-step__num::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #fcf7eb;
  top: max(-80px, -10.6666666667vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: min(28.8vw, 216px);
  height: min(23.4666666667vw, 176px);
}

@media screen and (min-width: 769px) {
  .p-top-step__num::before {
    top: -88%;
    width: min(7.906295754vw, 108px);
    height: min(6.4421669107vw, 88px);
  }
}

.p-top-step__num span {
  position: relative;
  line-height: 1;
  font-size: min(4vw, 1.875rem);
}

@media screen and (min-width: 769px) {
  .p-top-step__num span {
    font-size: clamp(0.75rem, 1.0980966325vw, 0.9375rem);
  }
}

.p-top-step__title {
  margin: min(5.3333333333vw, 40px) 0 0;
  font-size: min(4.8vw, 2.25rem);
  text-align: center;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .p-top-step__title {
    margin: min(1.6105417277vw, 22px) 0 0;
    font-size: clamp(0.75rem, 1.317715959vw, 1.125rem);
    letter-spacing: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.p-top-step__image {
  margin: min(4vw, 30px) 0 0;
  background-color: #fcf7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: min(32vw, 240px);
}

@media screen and (min-width: 769px) {
  .p-top-step__image {
    width: min(12.4450951684vw, 170px);
    margin: min(1.0248901903vw, 14px) auto 0;
    height: min(8.78477306vw, 120px);
  }
}

.p-top-step__contents:nth-of-type(1) img {
  width: min(22.6666666667vw, 170px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents:nth-of-type(1) img {
    width: min(6.2225475842vw, 85px);
  }
}

.p-top-step__contents:nth-of-type(2) img {
  width: min(19.4666666667vw, 146px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents:nth-of-type(2) img {
    width: min(5.3440702782vw, 73px);
  }
}

.p-top-step__contents:nth-of-type(3) img {
  width: min(18.9333333333vw, 142px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents:nth-of-type(3) img {
    width: min(5.1976573939vw, 71px);
  }
}

.p-top-step__contents:nth-of-type(4) img {
  width: min(29.0666666667vw, 218px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents:nth-of-type(4) img {
    width: min(7.9795021962vw, 109px);
  }
}

.p-top-step__contents:nth-of-type(5) img {
  width: min(29.3333333333vw, 220px);
}

@media screen and (min-width: 769px) {
  .p-top-step__contents:nth-of-type(5) img {
    width: min(8.0527086384vw, 110px);
  }
}

.p-top-step__sub {
  text-align: right;
  font-size: min(3.2vw, 1.5rem);
  margin: min(2.6666666667vw, 20px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-step__sub {
    font-size: clamp(0.75rem, 0.878477306vw, 0.75rem);
    position: absolute;
    bottom: min(0.3660322108vw, 5px);
    right: min(1.4641288433vw, 20px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-top-step__banner {
  margin: min(4vw, 30px) 0 0;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  .p-top-step__banner {
    width: min(87.8477306003vw, 1200px);
    margin: min(4.39238653vw, 60px) auto 0;
  }
}

@media screen and (min-width: 769px) {
  .p-top-step__banner:hover {
    opacity: 0.7;
  }
}

/* 各種情報 */
.p-top-info__wrapper {
  padding: min(8vw, 60px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-top-info__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: min(2.5622254758vw, 35px);
    padding: min(4.39238653vw, 60px) 0 min(6.7349926794vw, 92px);
  }
}

@media screen and (min-width: 769px) {
  .p-top-info__contents {
    width: min(25.1098096633vw, 343px);
  }
}

.p-top-info__contents+.p-top-info__contents {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-info__contents+.p-top-info__contents {
    margin: 0;
  }
}

.p-top-info__list+.p-top-info__list {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-top-info__list+.p-top-info__list {
    margin: min(2.196193265vw, 30px) 0 0;
  }
}

.p-top-info__list dt {
  color: #fff;
  font-size: min(4vw, 1.875rem);
  font-weight: 400;
  background-color: #3d5069;
  border-radius: 5px;
  text-align: center;
  padding: min(2.4vw, 18px) 0;
}

@media screen and (min-width: 769px) {
  .p-top-info__list dt {
    font-size: clamp(0.75rem, 1.0980966325vw, 0.9375rem);
    padding: min(0.5856515373vw, 8px) 0;
  }
}

.p-top-info__list dd {
  font-weight: 400;
  margin: min(4vw, 30px) 0 0;
  color: #333333;
  line-height: 1.8;
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-top-info__list dd {
    margin: min(1.0980966325vw, 15px) 0 0;
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
  }
}

.p-top-info__list dd span {
  font-weight: 700;
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-top-info__list dd span {
    font-weight: 500;
  }
}

.p-logoreco-fv {
  margin: 0;
  padding-bottom: 0;
}

.p-logoreco-fv figure {
  -webkit-filter: drop-shadow(6px 6px 15px rgba(242, 216, 181, 0.2));
  filter: drop-shadow(6px 6px 15px rgba(242, 216, 181, 0.2));
  margin: 0 0 min(8vw, 60px);
}

.p-logoreco-fv figure img {
  display: block;
}

@media screen and (min-width: 769px) {
  .p-logoreco-fv figure {
    margin: 0 0 min(4.5387994143vw, 62px);
  }
}

.p-logoreco-intro {
  padding: 0 min(5.3333333333vw, 40px) min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-intro {
    padding: 0 min(1.4641288433vw, 20px) min(7.3206442167vw, 100px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-intro__wrapper {
    max-width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
  }
}

.p-logoreco-btn {
  border-radius: min(1.3333333333vw, 10px);
  overflow: hidden;
  margin-bottom: min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-btn {
    max-width: min(36.7496339678vw, 502px);
    margin: 0 auto min(5.1244509517vw, 70px);
  }
}

.p-logoreco-btn a {
  display: block;
  background: #3d5069;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  padding: min(4vw, 30px) min(4.8vw, 36px);
  font-size: min(4.8vw, 2.25rem);
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-logoreco-btn a {
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
  }
}

.p-logoreco-btn a span {
  display: block;
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-btn a span {
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
  }
}

.p-logoreco-btn a::after {
  content: "";
  display: block;
  width: min(10.6666666667vw, 80px);
  height: min(10.6666666667vw, 80px);
  background: #fff url("../img/top/arrow.svg") no-repeat center center;
  background-size: min(6.4vw, 48px) min(2.1333333333vw, 16px);
  border-radius: min(1.3333333333vw, 10px) 0 min(1.3333333333vw, 10px) 0;
  position: absolute;
  right: 1px;
  bottom: 1px;
}

@media screen and (min-width: 769px) {
  .p-logoreco-btn a::after {
    width: min(2.9282576867vw, 40px);
    height: min(2.9282576867vw, 40px);
    background-size: min(1.756954612vw, 24px) min(0.5856515373vw, 8px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: min(2.196193265vw, 30px);
    -moz-column-gap: min(2.196193265vw, 30px);
    column-gap: min(2.196193265vw, 30px);
  }
}

.p-logoreco-point__item {
  border: 1px solid #3d5069;
  border-radius: min(2.6666666667vw, 20px);
  overflow: hidden;
  position: relative;
  padding: min(6.4vw, 48px) 0 min(5.0666666667vw, 38px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item {
    width: calc((100% - min(4.39238653vw, 60px)) / 3);
  }
}

.p-logoreco-point__item:not(:first-child) {
  margin-top: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item {
    border-radius: min(0.7320644217vw, 10px);
    padding: min(2.1229868228vw, 29px) 0 min(1.6837481698vw, 23px);
  }
}

.p-logoreco-point__item:nth-child(1) figure {
  max-width: min(71.4666666667vw, 536px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item:nth-child(1) figure {
    width: min(19.6193265007vw, 268px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item:nth-child(2) h3 {
    margin-bottom: min(4.0263543192vw, 55px);
  }
}

.p-logoreco-point__item:nth-child(2) figure {
  max-width: min(78.4vw, 588px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item:nth-child(2) figure {
    width: min(24.0117130307vw, 328px);
  }
}

.p-logoreco-point__item:nth-child(3) figure {
  max-width: min(41.3333333333vw, 310px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item:nth-child(3) figure {
    width: min(11.3469985359vw, 155px);
  }
}

.p-logoreco-point__item h3 {
  padding-left: min(22.9333333333vw, 172px);
  color: #3d5069;
  font-size: min(5.3333333333vw, 2.5rem);
  font-weight: bold;
  margin-bottom: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item h3 {
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
    padding-left: min(6.2957540264vw, 86px);
    margin-bottom: min(1.4641288433vw, 20px);
  }
}

.p-logoreco-point__item h3::after {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: min(2.6666666667vw, 20px);
  margin-left: min(2.6666666667vw, 20px);
  height: min(6.6666666667vw, 50px);
  background: url("../logoreco/img/point_title_after.svg") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__item h3::after {
    width: min(0.7320644217vw, 10px);
    height: min(1.8301610542vw, 25px);
    margin-left: min(0.7320644217vw, 10px);
  }
}

.p-logoreco-point__item figure {
  margin: 0 auto;
}

.p-logoreco-point__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: min(14.9333333333vw, 112px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: min(14.9333333333vw, 112px);
  background: #f2d8b5;
  border-right: 1px solid #3d5069;
  border-bottom: 1px solid #3d5069;
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__icon {
    width: min(5.1244509517vw, 70px);
    height: min(5.1244509517vw, 70px);
  }
}

.p-logoreco-point__icon img {
  width: min(7.4666666667vw, 56px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-point__icon img {
    width: min(2.635431918vw, 36px);
  }
}

.p-logoreco-about {
  background: #fdf9f3;
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-about {
    padding: min(7.3206442167vw, 100px) min(1.4641288433vw, 20px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__wrapper {
    max-width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__block {
    max-width: min(59.5900439239vw, 814px);
    margin: 0 auto;
  }
}

.p-logoreco-about h2 {
  margin-bottom: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-about h2 {
    margin-bottom: min(1.4641288433vw, 20px);
  }
}

.p-logoreco-about__text {
  text-align: center;
  font-size: min(3.7333333333vw, 1.75rem);
  margin-bottom: min(4.5333333333vw, 34px);
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__text {
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
    margin-bottom: min(1.317715959vw, 18px);
  }
}

.p-logoreco-about__text--logo {
  text-align: center;
  font-size: min(3.7333333333vw, 1.75rem);
  font-weight: 500;
  margin-bottom: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__text--logo {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    margin-bottom: min(2.9282576867vw, 40px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: min(0.7320644217vw, 10px);
    -moz-column-gap: min(0.7320644217vw, 10px);
    column-gap: min(0.7320644217vw, 10px);
  }
}

.p-logoreco-about__text--logo span {
  display: block;
  border: 1px solid #3d5069;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(4.2666666667vw, 2rem);
  font-weight: 600;
  color: #3d5069;
  background: #fff;
  border-radius: min(1.3333333333vw, 10px);
  margin: min(2.6666666667vw, 20px) auto 0;
  padding: min(1.3333333333vw, 10px) min(4vw, 30px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__text--logo span {
    margin: 0;
    border-radius: min(0.3660322108vw, 5px);
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    padding: min(0.3660322108vw, 5px) min(1.0980966325vw, 15px);
    border-width: 2px;
  }
}

.p-logoreco-about__image {
  background: #fff;
  padding: min(6.9333333333vw, 52px) 0;
  margin-bottom: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__image {
    margin-bottom: min(2.196193265vw, 30px);
    padding: min(2.196193265vw, 30px) 0;
  }
}

.p-logoreco-about__image img {
  width: min(42.6666666667vw, 320px);
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .p-logoreco-about__image img {
    width: min(20.0585651537vw, 274px);
  }
}

.p-logoreco-about__movie {
  aspect-ratio: 335/189;
  margin-bottom: min(7.4666666667vw, 56px);
}

.p-logoreco-about__movie iframe {
  width: 100%;
  height: 100%;
}

.p-logoreco-about__banner {
  padding: 8px;
  position: relative;
}

.p-logoreco-about__banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0px;
  right: 0px;
  border: 1px solid #3d5069;
  border-radius: 10px;
  pointer-events: none;
}

.p-logoreco-about__banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 8px;
  right: 8px;
  border: 1px solid #3d5069;
  border-radius: 10px;
  pointer-events: none;
}

.p-logoreco-problem {
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem {
    padding: min(7.3206442167vw, 100px) min(1.4641288433vw, 20px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__wrapper {
    max-width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
  }
}

.p-logoreco-problem .p-top-title {
  text-align: center;
  margin-bottom: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem .p-top-title {
    text-align: left;
    margin-bottom: min(2.196193265vw, 30px);
  }

  .p-logoreco-problem .p-top-title br {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: min(2.196193265vw, 30px);
    -moz-column-gap: min(2.196193265vw, 30px);
    column-gap: min(2.196193265vw, 30px);
  }
}

.p-logoreco-problem__list--item {
  border: 1px solid #3d5069;
  border-radius: min(2.6666666667vw, 20px);
  overflow: hidden;
  position: relative;
  padding: min(6.4vw, 3rem) 0 min(5.3333333333vw, 2.5rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item {
    width: calc((100% - min(4.39238653vw, 60px)) / 3);
  }
}

.p-logoreco-problem__list--item:not(:first-child) {
  margin-top: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item {
    border-radius: min(0.7320644217vw, 10px);
    padding: min(1.9033674963vw, 26px) 0 min(2.196193265vw, 30px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:nth-child(1) h3 {
    margin-bottom: min(2.9282576867vw, 40px);
  }
}

.p-logoreco-problem__list--item:nth-child(1) figure {
  max-width: min(80vw, 600px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:nth-child(1) figure {
    width: min(22.4011713031vw, 306px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:nth-child(2) h3 {
    margin-bottom: min(2.9282576867vw, 40px);
  }
}

.p-logoreco-problem__list--item:nth-child(2) figure {
  max-width: min(65.6vw, 492px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:nth-child(2) figure {
    width: min(18.0087847731vw, 246px);
  }
}

.p-logoreco-problem__list--item:nth-child(3) figure {
  max-width: min(64.2666666667vw, 482px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item:nth-child(3) figure {
    width: min(17.6427525622vw, 241px);
  }
}

.p-logoreco-problem__list--item h3 {
  padding-left: min(22.9333333333vw, 172px);
  color: #3d5069;
  font-size: min(5.3333333333vw, 2.5rem);
  font-weight: bold;
  margin-bottom: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item h3 {
    font-size: clamp(0.75rem, 1.756954612vw, 1.5rem);
    padding-left: min(6.2957540264vw, 86px);
    margin-bottom: min(1.4641288433vw, 20px);
  }
}

.p-logoreco-problem__list--item h3::after {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: min(4vw, 30px);
  margin-left: min(2.6666666667vw, 20px);
  height: min(6.6666666667vw, 50px);
  background: url("../logoreco/img/problem_title_after.svg") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--item h3::after {
    width: min(0.7320644217vw, 10px);
    height: min(1.8301610542vw, 25px);
    margin-left: min(0.7320644217vw, 10px);
  }
}

.p-logoreco-problem__list--item figure {
  margin: 0 auto;
}

.p-logoreco-problem__list--icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 56px;
  background: #f2f3f4;
  border-right: 1px solid #3d5069;
  border-bottom: 1px solid #3d5069;
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--icon {
    width: min(5.1244509517vw, 70px);
    height: min(5.1244509517vw, 70px);
  }
}

.p-logoreco-problem__list--icon img {
  width: 40px;
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__list--icon img {
    width: min(3.8067349927vw, 52px);
  }
}

.p-logoreco-problem__text--logo {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
  padding-top: 78px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-logoreco-problem__text--logo::before {
  content: "";
  display: block;
  background: #edbe7f;
  width: 58px;
  height: 28px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__text--logo::before {
    width: min(4.2459736457vw, 58px);
    height: min(2.0497803807vw, 28px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__text--logo {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    margin-bottom: min(2.196193265vw, 30px);
    -webkit-column-gap: min(0.7320644217vw, 10px);
    -moz-column-gap: min(0.7320644217vw, 10px);
    column-gap: min(0.7320644217vw, 10px);
    padding-top: min(6.4421669107vw, 88px);
  }
}

.p-logoreco-problem__text--logo span {
  display: block;
  border: 1px solid #3d5069;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  color: #3d5069;
  background: #fff;
  border-radius: 5px;
  padding: 5px 15px;
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem__text--logo span {
    margin: 0;
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    padding: min(0.3660322108vw, 5px) min(1.0980966325vw, 15px);
    border-width: 2px;
  }
}

.p-logoreco-problem .p-logoreco-btn {
  margin-bottom: 60px;
}

@media screen and (min-width: 769px) {
  .p-logoreco-problem .p-logoreco-btn {
    margin-bottom: min(8.78477306vw, 120px);
  }
}

.p-logoreco-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

@media screen and (min-width: 769px) {
  .p-logoreco-example {
    gap: min(1.4641288433vw, 20px);
  }
}

.p-logoreco-example li {
  width: calc((100% - 15px) / 2);
}

@media screen and (min-width: 769px) {
  .p-logoreco-example li {
    width: calc((100% - min(4.39238653vw, 60px)) / 4);
  }
}

.p-logoreco-use {
  background: #fdf9f3;
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use {
    margin: 0;
    padding: min(7.3206442167vw, 100px) 0;
  }
}

.p-logoreco-use__wrapper {
  margin: min(8vw, 60px) 0 min(16vw, 120px);
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: min(2.196193265vw, 30px);
    width: min(87.8477306003vw, 1200px);
    margin: min(3.074670571vw, 42px) auto min(3.3674963397vw, 46px);
  }
}

.p-logoreco-use__step {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #3d5069;
  overflow: hidden;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__step {
    height: 100%;
    width: min(27.8184480234vw, 380px);
  }
}

.p-logoreco-use__inner {
  position: relative;
}

.p-logoreco-use__inner::after {
  content: "";
  position: absolute;
  width: min(13.0666666667vw, 98px);
  height: min(11.4666666667vw, 86px);
  background: url(/img/top/use_arrow01_sp.svg) no-repeat 0 0/cover;
  top: calc(100% - 12px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner::after {
    background: url(/img/top/use_arrow01_pc.svg) no-repeat 0 0/cover;
    width: min(3.513909224vw, 48px);
    height: min(3.2942898975vw, 45px);
    top: 50%;
    left: calc(100% - min(0.439238653vw, 6px));
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-logoreco-use__inner:last-of-type::after {
  display: none;
}

.p-logoreco-use__inner+.p-logoreco-use__inner {
  margin: min(8vw, 60px) 0 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner+.p-logoreco-use__inner {
    margin: 0;
  }
}

.p-logoreco-use__step h3 {
  background-color: #3d5069;
  color: #fff;
  text-align: center;
  padding: min(1.3333333333vw, 10px);
  font-weight: 500;
  font-size: min(4.8vw, 2.25rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__step h3 {
    font-size: clamp(0.75rem, 1.317715959vw, 1.125rem);
    padding: min(0.3660322108vw, 5px);
  }
}

.p-logoreco-use__step p {
  color: #3d5069;
  text-align: center;
  margin: min(3.2vw, 24px) 0 0;
  font-weight: 900;
  font-size: min(5.3333333333vw, 2.5rem);
  letter-spacing: 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__step p {
    font-size: clamp(0.75rem, 1.756954612vw, 1.5rem);
    margin: min(1.1713030747vw, 16px) 0 0;
  }
}

.p-logoreco-use__inner img {
  display: block;
  margin: min(3.2vw, 24px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner img {
    margin: min(1.756954612vw, 24px) auto 0;
  }
}

.p-logoreco-use__inner:nth-of-type(1) img {
  width: min(59.2vw, 444px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner:nth-of-type(1) img {
    width: min(19.6925329429vw, 269px);
  }
}

.p-logoreco-use__inner:nth-of-type(2) img {
  width: min(50.6666666667vw, 380px);
  margin-bottom: min(6.1333333333vw, 46px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner:nth-of-type(2) img {
    width: min(17.4231332357vw, 238px);
    margin: min(1.756954612vw, 24px) auto 0;
  }
}

.p-logoreco-use__inner:nth-of-type(3) img {
  width: min(65.6vw, 492px);
  margin-bottom: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__inner:nth-of-type(3) img {
    width: min(23.9385065886vw, 327px);
    margin: min(1.4641288433vw, 20px) auto 0;
  }
}

.p-logoreco-use__box {
  padding: 8px;
  position: relative;
}

.p-logoreco-use__box::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0px;
  right: 0px;
  border: 1px solid #3d5069;
  border-radius: 10px;
  pointer-events: none;
}

.p-logoreco-use__box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 8px;
  right: 8px;
  border: 1px solid #3d5069;
  border-radius: 10px;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--wrapper {
    max-width: min(87.8477306003vw, 1200px);
    margin: 0 auto;
  }
}

.p-logoreco-use__box--inner {
  background: #fff;
  padding: min(10.6666666667vw, 80px) min(2.6666666667vw, 20px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--inner {
    padding: min(5.8565153734vw, 80px);
  }
}

.p-logoreco-use__box--note2 {
  background: #fcf7eb;
  border-radius: min(2.6666666667vw, 20px);
  padding: min(8vw, 60px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--note2 {
    border-radius: min(0.7320644217vw, 10px);
    padding: min(3.6603221083vw, 50px);
  }
}

.p-logoreco-use__box--note2 h3 {
  font-weight: 500;
  font-size: min(3.7333333333vw, 1.75rem);
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--note2 h3 {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
  }
}

.p-logoreco-use__box--note2 h3+ul {
  font-size: min(3.7333333333vw, 1.75rem);
  color: #333333;
  margin-top: min(4vw, 30px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--note2 h3+ul {
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
    margin-top: min(1.4641288433vw, 20px);
  }
}

.p-logoreco-use__box--circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 min(4vw, 30px);
  margin-top: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--circle {
    margin-top: min(2.9282576867vw, 40px);
    -webkit-column-gap: min(1.8301610542vw, 25px);
    -moz-column-gap: min(1.8301610542vw, 25px);
    column-gap: min(1.8301610542vw, 25px);
  }
}

.p-logoreco-use__box--circle li {
  width: min(32vw, 240px);
  height: min(32vw, 240px);
  background: #fff;
  border: 2px solid #3d5069;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: min(3.7333333333vw, 1.75rem);
  font-weight: 500;
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--circle li {
    width: min(11.7130307467vw, 160px);
    height: min(11.7130307467vw, 160px);
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
  }
}

.p-logoreco-use__box--circle li span span {
  font-weight: bold;
  font-size: min(5.6vw, 2.625rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--circle li span span {
    font-size: clamp(0.75rem, 1.756954612vw, 1.5rem);
  }
}

.p-logoreco-use__box--circle li span span.f2 {
  font-size: min(3.7333333333vw, 1.75rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__box--circle li span span.f2 {
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
  }
}

.p-logoreco-use__list {
  margin: 0 min(6.6666666667vw, 50px) min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list {
    margin: 0 min(3.6603221083vw, 50px) min(5.8565153734vw, 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: min(5.4904831625vw, 75px);
    -moz-column-gap: min(5.4904831625vw, 75px);
    column-gap: min(5.4904831625vw, 75px);
  }
}

.p-logoreco-use__list--item {
  position: relative;
}

.p-logoreco-use__list--item:not(:last-child) {
  margin-bottom: min(13.0666666667vw, 98px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item:not(:last-child) {
    margin-bottom: 0;
  }
}

.p-logoreco-use__list--item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background: #edbe7f;
  width: min(10.6666666667vw, 80px);
  bottom: min(-5.3333333333vw, -40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: min(5.3333333333vw, 40px);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item:not(:last-child)::after {
    width: min(2.0497803807vw, 28px);
    height: min(4.2459736457vw, 58px);
    bottom: min(-1.4641288433vw, -20px);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    top: min(9.0043923865vw, 123px);
    left: auto;
    right: min(-3.6603221083vw, -50px);
    -webkit-transform: none;
    transform: none;
  }
}

.p-logoreco-use__list--item dl dt {
  background: #edbe7f;
  border-radius: min(1.3333333333vw, 10px) min(1.3333333333vw, 10px) 0 0;
  padding: min(3.2vw, 24px) 0;
  text-align: center;
  color: #3d5069;
  font-weight: 500;
  font-size: min(5.3333333333vw, 2.5rem);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item dl dt {
    border-radius: min(0.7320644217vw, 10px) min(0.7320644217vw, 10px) 0 0;
    font-size: clamp(0.75rem, 1.4641288433vw, 1.25rem);
    padding: min(0.878477306vw, 12px) 0;
  }
}

.p-logoreco-use__list--item dl dd {
  border: 1px solid #cbcbcb;
  border-radius: 0 0 min(1.3333333333vw, 10px) min(1.3333333333vw, 10px);
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item dl dd {
    border-radius: 0 0 min(0.7320644217vw, 10px) min(0.7320644217vw, 10px);
  }
}

.p-logoreco-use__list--item ul {
  margin-top: min(4vw, 30px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item ul {
    margin-top: min(1.8301610542vw, 25px);
  }
}

.p-logoreco-use__list--item ul li {
  font-size: min(3.7333333333vw, 1.75rem);
  font-weight: 500;
  color: #3d5069;
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item ul li {
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
  }
}

.p-logoreco-use__list--item ul li:not(:last-child) {
  margin-bottom: min(2.1333333333vw, 16px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--item ul li:not(:last-child) {
    margin-bottom: min(0.3660322108vw, 5px);
  }
}

.p-logoreco-use__list--item ul li span {
  text-decoration: underline;
}

.p-logoreco-use__list--note {
  margin-top: min(2.1333333333vw, 16px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-use__list--note {
    position: absolute;
    right: min(-16.8374816984vw, -230px);
    bottom: min(-4.39238653vw, -60px);
  }
}

.p-logoreco-faq {
  background: #fff;
  padding: min(15.4666666667vw, 116px) min(5.3333333333vw, 40px) 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq {
    margin: 0;
    padding: min(7.3206442167vw, 100px) 0 0;
  }
}

.p-logoreco-faq__wrapper {
  margin: min(8vw, 60px) 0 min(16vw, 120px);
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__wrapper {
    width: min(87.8477306003vw, 1200px);
    margin: 0 auto min(9.3704245974vw, 128px);
  }
}

.p-logoreco-faq__title {
  background: #2e3e53;
  border-radius: min(1.3333333333vw, 10px);
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: min(4vw, 30px) 0;
  font-size: min(5.3333333333vw, 2.5rem);
  margin-bottom: min(8vw, 60px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__title {
    font-size: clamp(0.875rem, 2.0497803807vw, 1.75rem);
    padding: min(1.4641288433vw, 20px) 0;
    border-radius: min(0.7320644217vw, 10px);
    margin-bottom: min(2.9282576867vw, 40px);
  }
}

.p-logoreco-faq__list {
  margin-bottom: min(16vw, 120px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list {
    margin-bottom: min(5.8565153734vw, 80px);
  }
}

.p-logoreco-faq__list li {
  border-bottom: 1px solid #3d5069;
  position: relative;
}

.p-logoreco-faq__list li::before {
  content: "";
  display: block;
  width: min(8vw, 60px);
  height: min(8vw, 60px);
  border: 1px solid #3d5069;
  background: #fcf7eb;
  border-radius: 50%;
  position: absolute;
  right: min(5.3333333333vw, 40px);
  top: min(4.8vw, 36px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li::before {
    width: min(2.196193265vw, 30px);
    height: min(2.196193265vw, 30px);
    right: min(2.196193265vw, 30px);
    top: min(1.9765739385vw, 27px);
  }
}

.p-logoreco-faq__list li dl.is-open::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.p-logoreco-faq__list li dl::before {
  content: "";
  display: block;
  position: absolute;
  width: min(2.6666666667vw, 20px);
  height: 1px;
  background: #3d5069;
  position: absolute;
  right: min(8vw, 60px);
  top: min(8.5333333333vw, 64px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl::before {
    right: min(2.9282576867vw, 40px);
    top: min(3.074670571vw, 42px);
    width: min(0.7320644217vw, 10px);
  }
}

.p-logoreco-faq__list li dl::after {
  content: "";
  display: block;
  position: absolute;
  width: min(2.6666666667vw, 20px);
  height: 1px;
  background: #3d5069;
  position: absolute;
  right: min(8vw, 60px);
  top: min(8.5333333333vw, 64px);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 200ms -webkit-transform;
  transition: 200ms -webkit-transform;
  transition: 200ms transform;
  transition: 200ms transform, 200ms -webkit-transform;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl::after {
    right: min(2.9282576867vw, 40px);
    top: min(3.074670571vw, 42px);
    width: min(0.7320644217vw, 10px);
  }
}

.p-logoreco-faq__list li dl dt {
  font-weight: 500;
  font-size: min(4vw, 1.875rem);
  padding: min(5.3333333333vw, 40px) min(16vw, 120px) min(5.3333333333vw, 40px) min(22.4vw, 168px);
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl dt {
    font-size: clamp(0.75rem, 1.1713030747vw, 1rem);
    padding: min(2.196193265vw, 30px) min(5.8565153734vw, 80px) min(1.4641288433vw, 20px) min(6.588579795vw, 90px);
  }
}

.p-logoreco-faq__list li dl dt::before {
  content: "Q";
  font-size: min(5.8666666667vw, 2.75rem);
  font-weight: 50;
  width: min(17.0666666667vw, 128px);
  height: min(17.0666666667vw, 128px);
  background: #fff;
  border: 1px solid #3d5069;
  position: absolute;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl dt::before {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    width: min(4.6852122987vw, 64px);
    height: min(4.6852122987vw, 64px);
    top: auto;
    bottom: 0;
    left: 0;
  }
}

.p-logoreco-faq__list li dl dd {
  border-top: 1px solid #3d5069;
  padding: min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) min(5.3333333333vw, 40px) min(22.4vw, 168px);
  background: #fdf9f3;
  font-size: min(3.7333333333vw, 1.75rem);
  position: relative;
  display: none;
}

.p-logoreco-faq__list li dl dd p+p {
  margin-top: min(5.3333333333vw, 40px);
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl dd p+p {
    margin-top: min(1.4641288433vw, 20px);
  }
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl dd {
    padding: min(1.4641288433vw, 20px) min(2.9282576867vw, 40px) min(1.4641288433vw, 20px) min(6.588579795vw, 90px);
    font-size: clamp(0.75rem, 1.0248901903vw, 0.875rem);
  }
}

.p-logoreco-faq__list li dl dd::before {
  content: "A";
  font-size: min(5.8666666667vw, 2.75rem);
  font-weight: 50;
  width: min(17.0666666667vw, 128px);
  height: min(17.0666666667vw, 128px);
  background: #fff;
  border: 1px solid #3d5069;
  position: absolute;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: min(2.6666666667vw, 20px);
  left: 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__list li dl dd::before {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    width: min(4.6852122987vw, 64px);
    height: min(4.6852122987vw, 64px);
    top: min(1.4641288433vw, 20px);
    left: 0;
  }
}

.p-logoreco-faq__text--logo {
  text-align: center;
  font-size: min(4.8vw, 2.25rem);
  font-weight: 300;
  margin-bottom: min(4vw, 30px);
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__text--logo {
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    margin-bottom: min(2.196193265vw, 30px);
    -webkit-column-gap: min(0.7320644217vw, 10px);
    -moz-column-gap: min(0.7320644217vw, 10px);
    column-gap: min(0.7320644217vw, 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-logoreco-faq__text--logo span {
  display: block;
  border: 1px solid #3d5069;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(4.8vw, 2.25rem);
  font-weight: 600;
  color: #3d5069;
  background: #fff;
  border-radius: min(1.3333333333vw, 10px);
  padding: min(1.3333333333vw, 10px) min(4vw, 30px);
  margin: min(2.6666666667vw, 20px) auto 0;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__text--logo span {
    margin: 0;
    font-size: clamp(0.75rem, 1.6105417277vw, 1.375rem);
    padding: min(0.3660322108vw, 5px) min(1.0980966325vw, 15px);
    border-width: 2px;
  }
}

.p-logoreco-faq__image {
  width: min(42.6666666667vw, 320px);
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .p-logoreco-faq__image {
    width: min(20.0585651537vw, 274px);
  }
}