@charset "UTF-8";
/* CSS Document */
@font-face {
  src: url("../fonts/NotoSansJP-Black.woff2") format("woff2");
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-display: swap;
  @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
}
/* タイトル・フォント */
.mainvisual {
  display: -ms-flexbox;
  /* prefix -> -webkit- */
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: darkgray;
  height: 24em;
  max-height: 395px;
  padding: 1em;
}
@media (max-width: 750px) {
  .mainvisual {
    height: 40vw;
    max-height: 40vw;
  }
}

.h1default {
  color: white;
  font-size: 2em;
  text-align: center;
}

.postshosai h1 {
  font-size: 2em;
}

.h2default, .h3default, .h4default, .postshosai h2, .postshosai h3, .postshosai h4 {
  margin-bottom: 1em;
}

.h2default, .postshosai h2 {
  font-size: 2.1875em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media (max-width: 750px) {
  .h2default, .postshosai h2 {
    font-size: 1.25em;
  }
}

.h3default, .postshosai h3 {
  font-size: 1.25em;
  text-align: center;
}
@media (max-width: 750px) {
  .h3default, .postshosai h3 {
    font-size: 1.07em;
  }
}

.h4default, .postshosai h4 {
  font-size: 1.1em;
}

.postshosai h2 {
  margin-top: 2em;
}

.postshosai h3, .postshosai h4 {
  margin-top: 1.5em;
}

.marker_yellow {
  background: linear-gradient(transparent 60%, yellow 60%);
}

.postshosai ul {
  padding-left: 1.5em;
}
.postshosai ul > li {
  list-style-type: disc;
}
.postshosai ul > li > ul {
  padding-left: 1.5em;
}
.postshosai ol {
  padding-left: 1.5em;
}
.postshosai ol > li {
  list-style-type: decimal;
}

.how-items {
  display: grid;
  column-gap: 5em;
  row-gap: 3.125em;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 750px) {
  .how-items {
    column-gap: 1.25em;
    row-gap: 2.5em;
  }
}
.how-items .title {
  font-size: 1.25em;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  .how-items .title {
    font-size: 0.86em;
  }
}
.how-items p, .how-items .disc li {
  font-size: 0.79em;
}

.product-box {
  position: relative;
  display: -ms-flexbox;
  /* prefix -> -webkit- */
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  /* no prefix */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4.375em;
  padding-top: 9.375em;
  z-index: 1;
}
@media (max-width: 750px) {
  .product-box {
    padding-bottom: 2.14em;
    overflow: hidden;
  }
}
.product-box .bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 42.8125em;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 750px) {
  .product-box .bg {
    width: 102vw;
  }
}
.product-box .bg img {
  width: 100%;
}
.product-box .imgbox {
  flex: 0 0 9.375em;
  margin-right: 3.125em;
}
@media (max-width: 750px) {
  .product-box .imgbox {
    flex: 0 0 28vw;
    margin-right: 1.5em;
  }
}
.product-box .title {
  font-size: 1.375em;
  font-weight: bold;
}
@media (max-width: 750px) {
  .product-box .title {
    font-size: 1.14em;
    margin-top: 1.5em;
  }
}
.product-box .title span {
  font-size: 0.8em;
}
@media (max-width: 750px) {
  .product-box .title span {
    font-size: 0.8125em;
  }
}
.product-box .price {
  margin-top: 1em;
}
@media (max-width: 750px) {
  .product-box .price {
    font-size: 0.93em;
    margin-top: 0.5em;
  }
}
.product-box .price span {
  font-size: 0.875em;
}
@media (max-width: 750px) {
  .product-box .price span {
    font-size: 0.92em;
  }
}
.product-box .linkbox {
  margin-top: 2em;
}
@media (max-width: 750px) {
  .product-box .linkbox {
    margin-right: auto;
    margin-left: auto;
    margin-top: 1em;
  }
}

/* コンテンツ */
#breadcrumb {
  font-size: 0.8em;
  margin-top: 1em;
}
#breadcrumb li {
  position: relative;
  display: inline;
  padding-right: 1.5em;
}
#breadcrumb li:not(:last-child):after {
  position: absolute;
  top: 0.5em;
  right: 0.6em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
  margin: auto;
}
#breadcrumb a {
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
}
#breadcrumb a:hover {
  opacity: 0.8;
}

.pagelink {
  display: -ms-flexbox;
  /* prefix -> -webkit- */
  display: -webkit-flex;
  -webkit-align-items: center;
  /* no prefix */
  display: flex;
  align-items: center;
  margin-top: 7.5em;
}
@media (max-width: 750px) {
  .pagelink {
    margin-top: 2.5em;
  }
}
.pagelink .pagelink-item {
  position: relative;
  text-decoration: none;
  color: black;
  text-align: center;
  padding-bottom: 5em;
}
@media (max-width: 750px) {
  .pagelink .pagelink-item {
    padding-bottom: 2.85em;
  }
}
.pagelink .pagelink-item::before {
  content: "";
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  border-width: 1em 1em 0 1em;
}
@media (max-width: 750px) {
  .pagelink .pagelink-item::before {
    bottom: 1.2em;
    border-width: 0.785em 0.785em 0 0.785em;
  }
}
.pagelink .pagelink-item:nth-of-type(1) {
  background: rgba(158, 179, 128, 0.4);
}
.pagelink .pagelink-item:nth-of-type(1)::before {
  border-color: #647f42 transparent transparent transparent;
}
.pagelink .pagelink-item:nth-of-type(2) {
  background: rgba(223, 183, 181, 0.4);
}
.pagelink .pagelink-item:nth-of-type(2)::before {
  border-color: #c38380 transparent transparent transparent;
}
.pagelink .pagelink-item:nth-of-type(3) {
  background: rgba(188, 168, 133, 0.4);
}
.pagelink .pagelink-item:nth-of-type(3)::before {
  border-color: #8b6f45 transparent transparent transparent;
}
.pagelink .pagelink-item:hover {
  opacity: 0.8;
}
.pagelink .pagelink-item .text {
  font-size: 1.125em;
  padding-top: 2.22em;
  line-height: 1.55;
}
.pagelink .pagelink-item .title {
  margin-top: 1em;
}
@media (min-width: 751px) {
  .pagelink .pagelink-item .title {
    font-size: 1.44em;
  }
}

.kakomi {
  background-color: whitesmoke;
  padding: 2em;
}
@media (max-width: 750px) {
  .kakomi {
    padding: 1em;
  }
}

@media (min-width: 751px) {
  .imgflex {
    display: -ms-flexbox;
    /* prefix -> -webkit- */
    display: -webkit-flex;
    /* no prefix */
    display: flex;
  }
}
@media (min-width: 751px) {
  .imgflex .imgbox {
    -webkit-flex: 1 0 46%;
    flex: 1 0 46%;
    width: 46%;
    max-width: 46%;
  }
}
@media (max-width: 750px) {
  .imgflex .textbox {
    padding-top: 1em;
  }
}
@media (min-width: 751px) {
  .imgflex .textbox {
    padding-left: 2em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter {
    flex-direction: row-reverse;
  }
}
@media (max-width: 750px) {
  .imgflex.alter .textbox {
    padding-top: 1em;
  }
}
@media (min-width: 751px) {
  .imgflex.alter .textbox {
    padding-right: 2em;
    padding-left: 0;
  }
}

.wp-caption-text {
  font-size: 0.8em;
  color: gray;
  line-height: 1.4 !important;
  margin-top: 0.5em;
}

.tablelist {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 750px) {
  .tablelist.block table {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .tablelist.block th, .tablelist.block td {
    display: block;
    white-space: normal;
  }
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.25em;
}
table th, table td {
  line-height: 1.6;
  vertical-align: middle;
  padding: 0.5em 0.7em;
}
@media (min-width: 751px) {
  table th, table td {
    font-size: 0.9375em;
  }
}
table th {
  white-space: nowrap;
  background: #9eb380;
}
table td {
  background: white;
}

.flickmessage {
  background-color: whitesmoke;
  text-align: center;
  padding: 0.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 751px) {
  .flickmessage {
    display: none;
  }
}
