@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
  scroll-padding-top: 60px;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

html {
  overflow-y: scroll;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #4F9970;
  background: linear-gradient(0deg, #4F9970, #40E2A0);
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.js-no_scroll {
  overflow: hidden;
}
body.js-no_scroll:before {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
body::before, body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body::before {
  background: url(../img/bg-star.png) center;
}
@media screen and (max-width: 767px) {
  body::before {
    background-size: 250px;
  }
}
body::after {
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) 1em, transparent 1em, transparent 3em);
}

body {
  position: relative;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden; /* モーダル表示時のスクロール無効化 */
}

main {
  background: #fff;
  width: 96%;
  max-width: 1300px;
  margin: 0 auto;
  border-style: solid;
  border-width: 0 10px;
  border-color: #2C5646;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 0;
    border-width: 0 3px;
  }
}

p {
  line-height: 1.6;
}

:focus,
button:focus {
  outline: none;
}

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

.section-info {
  padding: 40px clamp(20px, 6.667px + 1.736vw, 40px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-info {
    margin: 0 auto 32px;
    padding: 20px 12px 0;
  }
}

.section-sort {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 40px 32px 20px;
  margin: 32px auto 60px;
  border-radius: 12px;
  width: 92%;
}
@media (max-width: 767px) {
  .section-sort {
    padding: 24px 12px 8px;
  }
}
.section-sort h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .section-sort h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.section-sort h2:before {
  content: "\f002";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 8px;
}
.section-sort .dropdown-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 44px 0 32px;
}
@media (max-width: 991px) {
  .section-sort .dropdown-wrap {
    margin: 25px 0;
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap {
    position: relative;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before, .section-sort .dropdown-wrap:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    line-height: 1;
    color: #010101;
    z-index: 1;
    position: absolute;
    right: 35px;
    transform: translateY(-50%);
    pointer-events: none;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before, .section-sort .dropdown-wrap:after {
    right: 15px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:before {
    top: 22px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap:after {
    bottom: 8px;
  }
}
.section-sort .dropdown-wrap select {
  width: calc((100% - 24px) / 2);
  max-width: 480px;
  padding: 12px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 991px) {
  .section-sort .dropdown-wrap select {
    width: 100%;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .section-sort .dropdown-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}
.section-sort .js-sort-clear {
  padding: 8px 12px;
  color: #fff;
  background: #ccc;
  font-size: 18px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .section-sort .js-sort-clear {
    font-size: 14px;
  }
}

.hdg-sort {
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  .hdg-sort {
    font-size: 24px;
  }
}

.form-wrap {
  padding: 60px clamp(20px, 6.667px + 1.736vw, 40px);
  background-color: #3DBBF1;
}
@media screen and (max-width: 767px) {
  .form-wrap {
    padding: 32px 8px 72px;
  }
}
.form-wrap form {
  padding: 0;
}

.section-item {
  background-color: #fff;
  margin: 40px 0;
  padding: 40px 20px;
  border: none;
}
@media (max-width: 767px) {
  .section-item {
    padding: 20px 12px;
    margin: 12px 0;
  }
}
.section-item .limit-item {
  color: #0244a7;
  border: 1px solid #0244a7;
  background: rgba(61, 187, 241, 0.1);
  padding: 0.2em 0.8em;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .limit-item {
    margin: 12px 0;
  }
}
.section-item .js-sold + span + .soldTxt {
  background-color: #999;
  color: #fff;
  display: block;
  width: 100%;
  padding: 0.4em 0.6em;
  margin: 0.8em auto;
  letter-spacing: 0.2em;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-item .js-sold + span + .soldTxt {
    width: 100%;
    margin: 0.5em auto;
    padding: 0.2em 0.6em;
  }
}
.section-item select {
  margin-right: 8px;
  padding: 2px 8px;
  color: #333;
}
@media (max-width: 767px) {
  .section-item select {
    margin-left: 8px;
  }
}
.section-item select.js-sold {
  color: #999;
  background: #eee;
}

#anchor-cart {
  color: #fff;
  background: none;
  border: double 4px rgba(255, 255, 255, 0.5);
  padding: 40px;
}
@media (max-width: 767px) {
  #anchor-cart {
    padding: 20px 12px;
  }
}
#anchor-cart .list-icon > li span {
  color: #fff;
}

:root {
  scroll-behavior: auto !important;
}

@media (width < 768px) {
  select {
    font-size: 1rem;
  }
}
header {
  display: none;
}
header .img-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 30vw;
  max-height: 45px;
  object-fit: contain;
}

nav.navbar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 8px 0;
  max-height: 100vh;
  border-bottom: 2px solid #eee;
  background-color: #fff;
}
@media (max-width: 767px) {
  nav.navbar .container {
    padding: 0 8px;
  }
}
nav.navbar button.btn.btn-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #333;
  border: none;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 575px) {
  nav.navbar button.btn.btn-link {
    margin-right: 0;
  }
}
nav.navbar button.btn.btn-link::before {
  content: "MENU";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: black;
}
nav.navbar button.btn.btn-link:focus {
  outline: none;
  box-shadow: none;
}
nav.navbar button.btn.btn-link .navbar-toggler-icon {
  width: 35px;
  height: 35px;
  margin-top: 10px;
}
nav.navbar .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: #fff;
}
nav.navbar .modal-header {
  border-bottom: none;
  justify-content: flex-end;
  padding: 40px 20px 0;
}
@media (max-width: 575px) {
  nav.navbar .modal-header {
    padding: 35px 18px 0;
  }
}
nav.navbar .modal-header .btn-close {
  position: relative;
  border: none;
  font-size: 20px;
}
@media (max-width: 575px) {
  nav.navbar .modal-header .btn-close {
    margin-right: 0;
    font-size: 18px;
  }
}
nav.navbar .modal-header .btn-close::before {
  display: block;
  content: "CLOSE";
  font-size: 12px;
  line-height: 1;
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
}
nav.navbar .modal-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}
nav.navbar .btn-anchor a {
  padding: 12px 32px;
  background-color: #ccc;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
}
@media (max-width: 767px) {
  nav.navbar .btn-anchor a {
    padding: 10px;
    line-height: 1;
  }
}
nav.navbar .btn-anchor a:before {
  content: "\f002";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 8px;
}
nav.navbar .modal-body {
  padding: 20px 0;
  list-style-type: none;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 96%;
  margin: 0 auto;
}
nav.navbar .modal-body .nav-item {
  width: 50%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  nav.navbar .modal-body .nav-item {
    width: 100%;
  }
}
nav.navbar .modal-body .nav-link {
  border-bottom: 1px solid #ccc;
  padding: 12px;
  text-decoration: none;
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
}

.modal-backdrop {
  z-index: 1;
}

footer {
  width: 96%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #2C5646;
  padding: 40px 12px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 28px 12px;
  }
}
footer .link-pageup {
  position: fixed;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2C5646;
  width: 55px;
  height: 55px;
  right: 40px;
  bottom: 20px;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(44, 86, 70, 0.05);
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 8px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}
@media (hover) {
  footer .link-pageup:hover {
    color: #fff;
    opacity: 0.7;
  }
}
footer .link-pageup i {
  display: block;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 575px) {
  footer .copyright {
    font-size: 12px;
  }
}

h1.hdg-title {
  margin: 0 auto;
  padding: clamp(30px, 10px + 2.604vw, 60px) 12px;
}
@media screen and (max-width: 767px) {
  h1.hdg-title {
    margin-top: 0;
    margin-bottom: 28px;
    padding: 8px;
  }
}
h1.hdg-title img {
  display: block;
  margin: 0 auto;
}

.section-info .hdg-info {
  color: #fff;
  background-color: #4F9970;
  margin-bottom: 32px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  padding: 0.5em 1.2em;
  border-radius: 50vw;
}
@media (max-width: 767px) {
  .section-info .hdg-info {
    font-size: 18px;
    padding: 0.5em 1em;
  }
}

.section-item .hdg-item {
  font-size: 22px;
  border-bottom: 1px solid rgba(2, 68, 167, 0.5);
  padding-bottom: 0.6em;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .section-item .hdg-item {
    font-size: 17px;
    margin-bottom: 18px;
  }
}

#anchor-cart .hdg-cart {
  text-align: center;
  font-weight: bold;
  border-bottom: 4px dotted rgba(255, 255, 255, 0.5);
  padding: 12px 8px;
  font-size: 28px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #anchor-cart .hdg-cart {
    font-size: 24px;
  }
}

.list-icon {
  list-style-type: none;
  padding-left: 0;
}
.list-icon > li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 8px;
}
.list-icon > li span {
  color: #40E2A0;
  position: absolute;
  left: 0;
}

.section-info .list-info {
  margin: 32px 0;
}
.section-info .list-info dt {
  position: relative;
  color: #2C5646;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50vw;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .section-info .list-info dt {
    font-size: 16px;
    padding-left: 25px;
  }
}
.section-info .list-info dt::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  background: url(../img/icon-dt.png) center/contain;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section-info .list-info dt::before {
    width: 21px;
    height: 21px;
  }
}
.section-info .list-info dd {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-info .list-info dd {
    font-size: 14px;
  }
}
.section-info .list-info dd .list-icon {
  margin: 12px 0 0;
}
.section-info .list-info .list-info__img {
  display: block;
  margin: 1.5em 0;
}

.section-item .list-item dt {
  margin-bottom: 4px;
  font-size: 18px;
  color: #0244a7;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-item .list-item dt {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.section-item .list-item dd {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-item .list-item dd {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.section-item .list-item .txt-description {
  margin-bottom: 12px;
}
.section-item .list-item .txt-catchphrase {
  font-size: 14px;
  margin: 20px 0 32px;
}
.section-item .list-item .txt-note-comment03 {
  margin: 32px 0 0;
}
.section-item .list-item .txt-note-comment01 {
  margin: 8px 0 20px;
}

.list-select {
  margin: 4px 4px 20px;
}
.list-select dt,
.list-select dd {
  font-size: 14px;
  text-align: center;
}
.list-select dt {
  margin-bottom: 4px;
}

a {
  text-decoration: underline;
  color: #2C5646;
  word-break: break-all;
}
@media (hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
    color: #2C5646;
  }
}
a.btn {
  text-decoration: none;
}

.btn-item {
  background-color: #0244a7;
  color: #fef605;
  display: block;
  text-decoration: none;
  padding: 8px;
  text-align: center;
  margin: 40px auto 0;
  border: none;
  border-radius: 10px;
  width: 480px;
  max-width: 92%;
}
@media (max-width: 767px) {
  .btn-item {
    margin: 20px auto 0;
  }
}
.btn-item:after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-left: 8px;
  font-size: 20px;
}
.btn-item:hover {
  color: #fff;
  text-decoration: none;
}
@media (hover) {
  .btn-item:hover {
    opacity: 0.7;
  }
}

.btn-cart {
  background-image: linear-gradient(0deg, #fef605, #ffb845);
  color: #0244a7;
  display: block;
  text-decoration: none;
  padding: 12px 8px;
  width: 800px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 20px auto 0;
  border: 2px solid #fff;
  border-radius: 50vw;
}
@media (max-width: 575px) {
  .btn-cart {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.btn-cart:before {
  content: "\f07a";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 8px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .btn-cart:before {
    font-size: 4vw;
  }
}
@media (hover) {
  .btn-cart:hover {
    color: #ff0000;
  }
}