@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap");
.wrapper {
  max-width: 1140px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #222;
}

img {
  width: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  background-color: #2fa0f6;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}
.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.button span {
  display: none;
}
@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}

.button--icon {
  min-width: initial;
  padding: 0.5rem;
}

/*
** The Header Media Queries **
** Tweak as per your needs **
*/
.brand {
  font-weight: bold;
  font-size: 20px;
}

.site-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
}

.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 660px) {
  .site-header__wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 659px) {
  .site-header__end {
    padding-right: 3.5rem;
  }
}

@media (min-width: 660px) {
  #nav__wrapper {
    display: flex;
  }
}
@media (max-width: 659px) {
  #nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  #nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
    padding: 0 0 1rem;
  }
}

.menu-item a {
  display: block;
  padding: 1.5rem 1rem;
}

.nav__toggle {
  display: none;
}
@media (max-width: 659px) {
  .nav__toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.6rem;
    background: none;
    border: none;
  }
}

.entry {
  padding: 130px 0;
}
.entry .entryContainer {
  max-width: 980px;
  margin: 0 auto;
}
.entry .entryContainer .entryContents p:first-child {
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.08rem;
  line-height: 130%;
  font-weight: bold;
}
@media (max-width: 659px) {
  .entry .entryContainer .entryContents p:first-child {
    font-size: 16px;
  }
}
.entry .entryContainer .entryContents p:last-child {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 130%;
}
@media (max-width: 659px) {
  .entry .entryContainer .entryContents p:last-child {
    font-size: 14px;
    font-weight: normal;
    color: #787878;
  }
}
.entry .entryContainer h1 {
  font-size: 64px;
  margin-top: 20px;
  margin-left: -10px;
  font-weight: bold;
}
@media (max-width: 659px) {
  .entry .entryContainer h1 {
    font-size: 34px;
    margin-left: -5px;
    margin-top: 10px;
  }
}
@media (max-width: 659px) {
  .entry .entryContainer {
    width: calc(100% - 2rem);
  }
}
@media (max-width: 659px) {
  .entry {
    padding: 40px 0;
  }
}

.mainVisualContainer img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 659px) {
  .mainVisualContainer {
    height: 300px;
  }
}

.sectionTitle {
  text-align: center;
  margin-bottom: 100px;
}
.sectionTitle .englishTitle {
  font-size: 64px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 659px) {
  .sectionTitle .englishTitle {
    font-size: 48px;
  }
}
.sectionTitle p {
  font-size: 18px;
  font-weight: bold;
  margin: 1rem 0;
}
@media (max-width: 659px) {
  .sectionTitle p {
    margin-bottom: 50px;
    font-size: 16px;
  }
}

.featureContainer {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 2rem);
}
.featureContainer .featureText {
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
  letter-spacing: 0.05rem;
}
@media (max-width: 659px) {
  .featureContainer .featureText {
    font-size: 16px;
  }
}
.featureContainer .featureContents {
  margin-top: 30px;
}
.featureContainer .featureContents .itemsList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.featureContainer .featureContents .itemsList .item img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 225px;
}
@media (max-width: 659px) {
  .featureContainer .featureContents .itemsList .item img {
    max-height: 150px;
  }
}
.featureContainer .featureContents .itemsList .item p {
  text-align: center;
  margin-top: 30px;
  line-height: 160%;
}
@media (max-width: 659px) {
  .featureContainer .featureContents .itemsList {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 659px) {
  .featureContainer {
    padding: 50px 0;
  }
}

.flowContainer {
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 2rem);
}
.flowContainer .flowContents .itemsList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.flowContainer .flowContents .itemsList .item {
  height: 330px;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 40px;
  box-shadow: 0px 0px 2px 0px #6e6e6e;
}
.flowContainer .flowContents .itemsList .item h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
.flowContainer .flowContents .itemsList .item p {
  line-height: 150%;
}
@media (max-width: 659px) {
  .flowContainer .flowContents .itemsList .item {
    height: 270px;
    gap: 30px;
    padding: 30px 20px;
  }
}
@media (max-width: 659px) {
  .flowContainer .flowContents .itemsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 659px) {
  .flowContainer {
    padding: 50px 0 0;
  }
}

.bannerSection {
  text-align: center;
  padding: 30px 0;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.bannerSection a {
  display: inline-block;
  height: 100%;
}
.bannerSection a img {
  display: flex;
  width: 100%;
  max-width: 700px;
}

.productContainer {
  padding: 100px 0 40px;
}
.productContainer .productContents .cardLists {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.productContainer .productContents .cardLists .product_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 5px;
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  height: 330px;
}
.productContainer .productContents .cardLists .product_card > div {
  width: 50%;
}
.productContainer .productContents .cardLists .product_card .product_item_inner {
  text-align: center;
  max-width: 330px;
  margin: 0 auto;
}
.productContainer .productContents .cardLists .product_card .product_item_inner .item-title {
  font-size: 24px;
  font-weight: bold;
  margin: 1rem;
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card .product_item_inner .item-title {
    font-size: 22px;
  }
}
.productContainer .productContents .cardLists .product_card .product_item_inner .linkButton {
  margin-top: 40px;
  width: 100%;
  max-width: 200px;
  display: inline-block;
  border-radius: 5px;
  background: #000;
  padding: 18px;
  color: #fff;
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card .product_item_inner .linkButton {
    margin-top: 20px;
  }
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card .product_item_inner {
    max-width: unset;
    width: calc(100% - 2rem);
    padding: 0 0 1rem;
  }
}
.productContainer .productContents .cardLists .product_card .card_img {
  height: 100%;
}
.productContainer .productContents .cardLists .product_card .card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card .card_img {
    width: 100%;
  }
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card {
    flex-direction: column-reverse;
    gap: 1rem;
    height: auto;
  }
}
.productContainer .productContents .cardLists .product_card:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists .product_card:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
@media (max-width: 659px) {
  .productContainer .productContents .cardLists {
    gap: 1rem;
  }
}
@media (max-width: 659px) {
  .productContainer {
    padding: 30px 0;
  }
}

.youtube .youtubeContainer {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: 0 auto;
}
.youtube .youtubeContainer .iframeWrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube .youtubeContainer .iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  margin-top: 100px;
}
.footer .footerContainer {
  border-top: 1px solid #cfcccc;
}
.footer .footerContainer .footerContents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}
.footer .footerContainer .footerContents .footerContent .footerTitle {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 659px) {
  .footer .footerContainer .footerContents .footerContent .footerTitle {
    padding: 1rem 0;
  }
}
.footer .footerContainer .footerContents .footerContent #footerLists {
  display: flex;
}
.footer .footerContainer .footerContents .footerContent #footerLists a {
  padding: 10px;
}
@media (max-width: 659px) {
  .footer .footerContainer .footerContents .footerContent #footerLists a {
    padding: 10px;
  }
}
@media (max-width: 659px) {
  .footer .footerContainer .footerContents .footerContent #footerLists {
    flex-direction: inherit;
    flex-wrap: wrap;
  }
}
@media (max-width: 659px) {
  .footer .footerContainer .footerContents {
    flex-direction: column;
    align-items: inherit;
  }
}

@media (max-width: 659px) {
  .footer {
    margin-top: 50px;
  }
}

.pageContainer {
  padding: 100px 0 0;
}
.pageContainer .pageContents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  width: calc(100% - 2rem);
  margin: 0 auto;
  max-width: 1200px;
  gap: 30px;
}
.pageContainer .pageContents .imageGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  max-width: 705px;
}
.pageContainer .pageContents .imageGallery .bigImage {
  grid-area: 1/1/4/4;
}
.pageContainer .pageContents .imageGallery .bigImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer .pageContents .imageGallery .image1 {
  height: 160px;
  grid-area: 4/1/6/2;
}
.pageContainer .pageContents .imageGallery .image1 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer .pageContents .imageGallery .image2 {
  height: 160px;
  grid-area: 4/2/6/3;
}
.pageContainer .pageContents .imageGallery .image2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer .pageContents .imageGallery .image3 {
  height: 160px;
  grid-area: 4/3/6/4;
}
.pageContainer .pageContents .imageGallery .image3 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageContainer .pageContents .productDetails .description {
  margin-bottom: 50px;
}
.pageContainer .pageContents .productDetails .description .productTitle {
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pageContainer .pageContents .productDetails .description .productTitle .title {
  font-size: 32px;
  font-weight: bold;
}
.pageContainer .pageContents .productDetails .description .productTitle .englishSubtitle {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}
.pageContainer .pageContents .productDetails .priceBox {
  padding: 20px 30px;
  background: #e9e9e9;
}
.pageContainer .pageContents .productDetails .priceBox .size,
.pageContainer .pageContents .productDetails .priceBox .price,
.pageContainer .pageContents .productDetails .priceBox .tax,
.pageContainer .pageContents .productDetails .priceBox .total {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #bababa;
}
.pageContainer .pageContents .productDetails .priceBox .size select,
.pageContainer .pageContents .productDetails .priceBox .price select,
.pageContainer .pageContents .productDetails .priceBox .tax select,
.pageContainer .pageContents .productDetails .priceBox .total select {
  width: 100%;
  height: 45px;
}
.pageContainer .pageContents .productDetails .priceBox .size .productPrice,
.pageContainer .pageContents .productDetails .priceBox .size .taxTotal,
.pageContainer .pageContents .productDetails .priceBox .size .totalPrice,
.pageContainer .pageContents .productDetails .priceBox .price .productPrice,
.pageContainer .pageContents .productDetails .priceBox .price .taxTotal,
.pageContainer .pageContents .productDetails .priceBox .price .totalPrice,
.pageContainer .pageContents .productDetails .priceBox .tax .productPrice,
.pageContainer .pageContents .productDetails .priceBox .tax .taxTotal,
.pageContainer .pageContents .productDetails .priceBox .tax .totalPrice,
.pageContainer .pageContents .productDetails .priceBox .total .productPrice,
.pageContainer .pageContents .productDetails .priceBox .total .taxTotal,
.pageContainer .pageContents .productDetails .priceBox .total .totalPrice {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
}
.pageContainer .pageContents .productDetails .priceBox .cartButton {
  margin-top: 40px;
}
.pageContainer .pageContents .productDetails .priceBox .cartButton .addCartButton {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 20px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.single_post_container {
  width: calc(100% - 2rem);
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 96px 60px;
    min-height: 50vh;
}
.single_post_container .post_meta .post_time {
  font-weight: bold;
}
.single_post_container .single_ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 1rem 0;
}
.single_post_container .detail_text .post_body {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 160%;
}/*# sourceMappingURL=style.css.map */