@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@700&display=swap");
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo UI", Helvetica, sans-serif;
  background-color: #222;
  color: #fff;
}

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

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

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

h2,
h3 {
  background-color: #333;
  color: #fff;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  h2,
  h3 {
    height: 55px;
  }
}
@media only screen and (min-width: 1001px) {
  h2,
  h3 {
    height: 70px;
  }
}

@media only screen and (max-width: 1000px) {
  h2 {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 1001px) {
  h2 {
    font-size: 1.9rem;
  }
}

@media only screen and (max-width: 1000px) {
  h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1001px) {
  h3 {
    font-size: 1.2rem;
  }
}

.global_head {
  margin: 0;
}

@media only screen and (min-width: 1001px) {
  .content {
    margin: 0 auto;
  }
}

.local-head {
  display: grid;
}
@media only screen and (max-width: 1000px) {
  .local-head {
    grid-template-rows: 40px max-content;
    grid-template-columns: 280px 1fr;
    grid-template-areas: "logo lang" "nav  nav";
  }
}
@media only screen and (min-width: 1001px) {
  .local-head {
    grid-template-columns: 260px 1fr 120px;
    align-items: center;
    height: 55px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .local-head__logo {
    grid-area: logo;
    padding-left: 10px;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 1000px) {
  .local-head__logo img {
    height: 18px;
  }
}
@media only screen and (min-width: 1001px) {
  .local-head__logo img {
    height: 25px;
  }
}
@media only screen and (max-width: 1000px) {
  .local-head__nav {
    grid-area: nav;
    border-top: 1px solid #0c0d0d;
  }
}
.local-head__nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1001px) {
  .local-head__nav ul {
    justify-content: center;
    gap: 0 15px;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
  }
}
.local-head__nav ul li {
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .local-head__nav ul li {
    width: 16.6666666667%;
    height: 60px;
    font-size: 0.8rem;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 1001px) {
  .local-head__nav ul li {
    height: 50px;
  }
}
@media only screen and (max-width: 1000px) {
  .local-head__nav ul li:last-child {
    border-right: none;
  }
}
.local-head__nav ul li a {
  word-break: break-all;
  padding: 0 5px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media only screen and (min-width: 1001px) {
  .local-head__nav ul li a:hover {
    color: #999;
  }
}
.local-head__lang {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1000px) {
  .local-head__lang {
    grid-area: lang;
    justify-self: end;
    padding-right: 10px;
  }
}
.local-head__lang a {
  background-color: #f1f1f1;
  color: #333;
  font-family: "Robot";
  font-weight: 600;
  padding: 6px 13px;
  font-size: 0.85rem;
  transition: 0.3s;
}
@media only screen and (max-width: 1000px) {
  .local-head__lang a {
    font-size: 0.75rem;
    padding: 4px 13px;
  }
}
.local-head__lang a:hover {
  filter: brightness(0.9);
}
.local-head__lang a::before {
  content: "\f57d";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #333;
  font-size: 0.8rem;
  margin-right: 5px;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .local-head__lang a::before {
    font-size: 0.7rem;
  }
}

.hero {
  border-bottom: 1px solid #0c0d0d;
}
.hero__content {
  position: relative;
  container-type: inline-size;
}
@media only screen and (min-width: 1001px) {
  .hero__content {
    display: grid;
    grid-template-columns: 1fr 22cqi;
    gap: 0.5cqi;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1000px) {
  .hero__main {
    margin: 0 0 20px;
    padding: 10px 0 0;
  }
}
.hero__main h1 {
  margin: 0;
}
@media only screen and (min-width: 1001px) {
  .hero__main h1 {
    margin: 0 0 5px;
  }
}
.hero__main h1 img {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 1001px) {
  .hero__main h1 img {
    margin-top: 20px;
  }
}
.hero__sub {
  background-color: #f5f4f3;
  color: #333;
}
@media only screen and (max-width: 1000px) {
  .hero__sub {
    margin: 10px 40px 30px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero__sub {
    margin: 20px 0;
  }
}
@supports (font-size: 1cqi) {
  .hero__sub {
    font-size: clamp(13px, 1.4cqi + 0.2rem, 18px);
    line-height: 1.25;
  }
}
@supports not (font-size: 1cqi) {
  .hero__sub {
    font-size: clamp(13px, 1vw + 0.4rem, 18px);
    line-height: 1.25;
  }
}
.hero__sub:where(p, span, a, small, strong, em, h1, h2, h3, h4, h5, h6) {
  font-size: 1em;
}
.hero__latest {
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .hero__latest {
    display: none;
  }
}
@media only screen and (min-width: 1001px) {
  .hero__latest {
    padding: 1.5cqi 1.5cqi;
  }
}
.hero__latest p {
  font-weight: 700;
  line-height: 1;
}
.hero__latest-text {
  font-weight: 600;
  margin: 0 0 0.7em;
  display: inline-block;
  border: 2px solid #555;
  padding: 0.2em 1em;
}
@media only screen and (min-width: 1001px) {
  .hero__latest-text {
    font-size: max(0.8rem, 1.05cqi);
  }
}
.hero__latest-img {
  margin: 0 auto;
  inline-size: clamp(160px, 22cqi, 520px);
  margin-inline: auto;
}
@media only screen and (min-width: 1001px) {
  .hero__latest-img {
    width: 60%;
  }
}
.hero__latest-img img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}
@media only screen and (min-width: 1001px) {
  .hero__latest-img img {
    transition: 0.3s;
  }
  .hero__latest-img img:hover {
    opacity: 0.8;
  }
}
.hero__latest-name {
  margin: 0.7em 0 0;
}
@media only screen and (min-width: 1001px) {
  .hero__latest-name {
    font-size: max(1.1rem, 1.3cqi);
  }
}
.hero .bid-item {
  position: relative;
}
.hero .bid-item.bid-before .bid-item__btn {
  background: linear-gradient(#b01300, #7a0906);
}
.hero .bid-item.bid-after .bid-item__btn {
  background: linear-gradient(#053e70, #062146);
}
.hero .bid-item__ttl {
  background-color: #333;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item__ttl {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item__ttl {
    font-size: max(1.1rem, 1.25cqi);
    padding: 1cqi 0;
  }
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item__content {
    padding: 15px 20px 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item__content {
    padding: 1.5cqi 1.7cqi;
  }
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item .bid-date {
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item .bid-date {
    margin: 0 0 1.5cqi;
  }
}
.hero .bid-item .bid-date__item {
  border-left: 4px solid #000;
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item .bid-date__item {
    margin: 0 0 10px;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item .bid-date__item {
    margin-bottom: 1.3cqi;
    padding-left: 10px;
  }
}
.hero .bid-item .bid-date__item:nth-of-type(2) {
  margin: 0;
}
.hero .bid-item .bid-date__item p {
  font-weight: 700;
  margin: 0;
}
.hero .bid-item .bid-date__item p.bid-ttl {
  display: inline-block;
  color: #666;
  margin: 0 0 8px;
  line-height: 1;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item .bid-date__item p.bid-ttl {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item .bid-date__item p.bid-ttl {
    font-size: max(1.05rem, 1.1cqi);
  }
}
.hero .bid-item .bid-date__item p .bid-date {
  font-family: "Robot";
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item .bid-date__item p .bid-date {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item .bid-date__item p .bid-date {
    font-size: max(1.3rem, 1.5cqi);
  }
}
.hero .bid-item .bid-date__item p .bid-date .week {
  font-weight: 800;
  font-family: "Noto Sans JP";
  font-size: max(0.9rem, 0.8cqi);
  margin: 0 3px;
  position: relative;
  top: -1px;
}
.hero .bid-item .bid-date__item p .bid-date .time {
  font-size: max(1.1rem, 1.1cqi);
}
.hero .bid-item__btn {
  position: relative;
  color: #fff;
  font-weight: 600;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .hero .bid-item__btn {
    height: 55px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1001px) {
  .hero .bid-item__btn {
    height: max(55px, 4.2cqi);
    font-size: max(1.0625cqi, 13.005px);
    transition: 0.3s;
  }
  .hero .bid-item__btn:hover {
    filter: brightness(0.8);
  }
}
.hero .bid-item__btn::before, .hero .bid-item__btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero .bid-item__btn::before {
  border: 2px solid #fff;
  border-radius: 50%;
  width: max(0.875cqi, 20px);
  height: max(0.875cqi, 20px);
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
.hero .bid-item__btn::after {
  right: 28px;
  width: max(0.2cqi, 7px);
  height: max(0.2cqi, 7px);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
.latest {
  display: grid;
}
@media only screen and (max-width: 1000px) {
  .latest {
    padding: 30px 20px;
    grid-template-areas: "magazine" "main" "sub-nav";
  }
}
@media only screen and (min-width: 1001px) {
  .latest {
    grid-template-columns: 350px 1fr;
    grid-auto-rows: auto;
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    gap: 0 3.5%;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub {
    display: contents;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine {
    grid-area: magazine;
    margin: 0 0 40px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine {
    margin: 0 0 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__img {
    width: 300px;
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__img {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__info {
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__info {
    margin: 0 0 20px;
  }
}
.latest__sub .magazine__info .title {
  margin: 0 0 13px;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__info .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__info .title {
    font-size: 1.4rem;
  }
}
.latest__sub .magazine__info .data {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__info .data {
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__info .data {
    font-size: 0.9rem;
    margin: 0 0 8px;
  }
}
.latest__sub .magazine__info .data:last-child {
  margin: 0;
}
.latest__sub .magazine__info .data span {
  display: block;
  flex-grow: 1;
}
.latest__sub .magazine__info .data .data-ttl {
  border: 2px solid #555;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  font-size: 0.8rem;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__info .data .data-ttl {
    margin: 0 8px 0 0;
    padding: 2px 0 4px;
    width: 70px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__info .data .data-ttl {
    padding: 3px 0 5px;
    width: 80px;
  }
}
.latest__sub .magazine__info .data .data-text {
  width: calc(100% - 80px);
  padding-left: 15px;
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__info .data .data-text {
    font-size: 1rem;
  }
}
.latest__sub .magazine__info .data .date-free {
  background-color: #e2f2e1;
  color: #008626;
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 10px;
  padding: 3px 10px;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order {
    order: 3;
  }
}
.latest__sub .magazine__order__item {
  border-bottom: 2px solid #ccc;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__item {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__item {
    padding: 25px 0;
  }
}
.latest__sub .magazine__order__item p {
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__item p {
    width: calc(100% - 250px);
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__item p {
    width: calc(100% - 250px);
    font-size: 0.95rem;
  }
}
.latest__sub .magazine__order__item:first-of-type {
  padding: 0 0 25px;
}
.latest__sub .magazine__order__item.kodoku-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.latest__sub .magazine__order__item .shipping-free {
  background-color: #e2f2e1;
  color: #008626;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__item .shipping-free {
    margin-top: 10px;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__item .shipping-free {
    margin-top: 10px;
    font-size: 0.85rem;
  }
}
.latest__sub .magazine__order__item .shipping-free__img {
  border: 2px solid #2E8D43;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__item .shipping-free__img {
    margin-right: 7px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__item .shipping-free__img {
    margin-right: 10px;
  }
}
.latest__sub .magazine__order__item .shipping-free__img img {
  width: 13px;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn-container {
    width: 250px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn-container {
    width: 240px;
    font-size: 15px;
  }
}
.latest__sub .magazine__order__btn {
  background: #cc0000;
  position: relative;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn {
    height: 50px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn {
    height: 45px;
    transition: 0.3s;
  }
  .latest__sub .magazine__order__btn:hover {
    filter: brightness(0.8);
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn:nth-of-type(2) {
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn:nth-of-type(2) {
    margin: 10px 0 0;
  }
}
.latest__sub .magazine__order__btn::before, .latest__sub .magazine__order__btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.latest__sub .magazine__order__btn::before {
  background-color: #fff;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  border-radius: 50%;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn::before {
    width: 15px;
    height: 15px;
    right: 17px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn::before {
    width: 17px;
    height: 17px;
    right: 20px;
  }
}
.latest__sub .magazine__order__btn::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #cc0000;
  border-right: 2px solid #cc0000;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  pointer-events: none;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn::after {
    right: 22px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn::after {
    right: 26px;
  }
}
.latest__sub .magazine__order__btn a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest__sub .magazine__order__btn.latest-btn {
  height: 55px;
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order__btn.latest-btn {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order__btn.latest-btn {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__sub .magazine__order .kodoku-text {
    font-size: 0.9rem;
    margin: 10px 0 0;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order .kodoku-text {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin: 10px 0 0;
  }
}
.latest__sub .magazine__order .kodoku-text a {
  color: #999;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
}
@media only screen and (min-width: 1001px) {
  .latest__sub .magazine__order .kodoku-text a:hover {
    text-decoration: none;
  }
}
.latest__sub .magazine__order .zenbu-text {
  background-color: #f1f1f1;
  color: #333;
  padding: 15px;
  margin-top: 30px;
}
.latest__sub .magazine__order .zenbu-text__lead {
  font-weight: 600;
  margin: 0 0 5px;
  font-size: 0.95rem;
}
.latest__sub .magazine__order .zenbu-text__sub {
  margin: 0;
  font-size: 0.85rem;
}
.latest .sub-nav {
  display: grid;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav {
    grid-area: sub-nav;
    grid-template-areas: "sns sns" "mainichi help";
  }
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav__item {
    height: 85px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest .sub-nav__item {
    height: 85px;
    transition: 0.3s;
  }
  .latest .sub-nav__item:hover {
    filter: brightness(0.8);
  }
}
.latest .sub-nav .item-sns {
  border: 2px solid #555;
  background-color: #222;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 58px max-content;
  gap: 0 13px;
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav .item-sns {
    grid-area: sns;
  }
}
.latest .sub-nav .item-sns__icon {
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
}
.latest .sub-nav .item-sns__text {
  display: grid;
  gap: 2px 0;
}
.latest .sub-nav .item-sns__name {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
}
.latest .sub-nav .item-sns__account {
  margin: 0;
  color: #999;
  font-size: 0.85rem;
}
.latest .sub-nav .item-mainichi,
.latest .sub-nav .item-help {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav .item-mainichi,
  .latest .sub-nav .item-help {
    height: 55px;
  }
}
.latest .sub-nav .item-mainichi {
  background-color: #f6f4b2;
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav .item-mainichi {
    grid-area: mainichi;
  }
}
.latest .sub-nav .item-help {
  background-color: #d01125;
}
@media only screen and (max-width: 1000px) {
  .latest .sub-nav .item-help {
    grid-area: help;
  }
}
@media only screen and (max-width: 1000px) {
  .latest__main {
    grid-area: main;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__main {
    margin: 0 auto;
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
.latest__main-head {
  border-top: 2px solid #666;
  border-bottom: 2px solid #666;
  position: relative;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .latest__main-head {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 30px;
    padding: 15px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__main-head {
    align-items: center;
    margin: 0 0 30px;
    padding: 13px 0;
  }
}
.latest__main-date {
  display: inline-block;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1;
  border: 2px solid #f82a26;
  color: #f82a26;
}
@media only screen and (max-width: 1000px) {
  .latest__main-date {
    order: 2;
    font-size: 0.9rem;
    margin: 7px 0 0;
    padding: 5px 20px 7px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__main-date {
    margin: 0 15px 0 0;
    padding: 5px 20px 7px;
  }
}
.latest__main-tokushu {
  margin: 0;
  font-weight: 700;
}
@media only screen and (max-width: 1000px) {
  .latest__main-tokushu {
    order: 1;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__main-tokushu {
    font-size: 26px;
  }
}
.latest__tokushu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1001px) {
  .latest__tokushu {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.latest__tokushu li {
  display: inline-block;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1000px) {
  .latest__tokushu li {
    margin: 0 0 20px;
    padding: 0 15px 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__tokushu li {
    margin: 0 0 30px;
    padding: 0 20px 20px;
  }
}
.latest__tokushu li:last-child {
  border: none;
  padding: 0;
  top: -15px;
}
.latest__tokushu strong {
  display: inline-block;
  background-color: #222;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .latest__tokushu strong {
    font-size: 1rem;
    top: -10px;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__tokushu strong {
    font-size: 1.1rem;
    padding: 0 10px;
    top: -10px;
    left: -10px;
  }
}
.latest__tokushu p {
  margin: 0;
  line-height: 1.7;
  position: relative;
}
.latest__tokushu p::before {
  content: "";
  width: 100%;
  height: 110%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1000px) {
  .latest__tokushu p {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 1001px) {
  .latest__tokushu p {
    font-size: 0.95rem;
  }
}

.items__content {
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .items__content {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .items__content {
    max-width: 1500px;
    width: 95%;
    padding: 50px 0;
  }
}
.items__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  .items__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .items__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.items__item {
  text-align: center;
  border: 2px solid #555;
  box-sizing: border-box;
}
@media only screen and (max-width: 1000px) {
  .items__item {
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .items__item {
    padding-bottom: 20px;
  }
}
.items__pic {
  border-bottom: 2px solid #555;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1000px) {
  .items__pic {
    padding: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .items__pic {
    padding: 20px;
    background-color: #000;
  }
}
.items__pic img {
  height: 300px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.items__name {
  height: auto;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .items__name {
    font-size: 0.9rem;
    margin: 15px 5px 0;
    padding: 0 5px;
  }
}
@media only screen and (min-width: 1001px) {
  .items__name {
    font-size: 1.05rem;
    margin: 15px 10px 0;
    padding: 0 10px;
  }
}
.items__caption {
  border-top: 1px solid #e3e3e3;
}
@media only screen and (max-width: 1000px) {
  .items__caption {
    font-size: 0.8rem;
    margin: 10px 7px 0;
    padding: 10px 5px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .items__caption {
    font-size: 0.9rem;
    margin: 12px 10px 0;
    padding: 12px 10px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .items__note {
    font-size: 0.85rem;
    margin: 20px 0 0;
  }
}
@media only screen and (min-width: 1001px) {
  .items__note {
    font-size: 0.9rem;
    margin: 35px 0 0;
  }
}

#cboxLoadedContent {
  border: none !important;
}

.faq {
  display: grid;
  grid-auto-flow: row;
}
@media only screen and (max-width: 1000px) {
  .faq {
    grid-template-columns: 1fr;
    grid-template-rows: max-content max-content max-content;
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 1001px) {
  .faq {
    grid-template-columns: 400px 1fr;
    grid-template-rows: max-content 1fr;
    border-top: 2px solid #555;
    border-bottom: 2px solid #555;
  }
}
.faq h2 {
  background-color: #333;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .faq h2 {
    grid-area: 1/1/2/2;
  }
}
@media only screen and (min-width: 1001px) {
  .faq h2 {
    grid-area: 1/1/2/2;
    margin: 0 0 40px;
    padding: 0 40px;
    justify-content: flex-start;
  }
}
.faq__link {
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .faq__link {
    grid-area: 3/1/4/2;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    width: 90% !important;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__link {
    grid-area: 2/1/3/2;
    font-size: 14px;
    width: 80% !important;
  }
}
@media only screen and (max-width: 1000px) {
  .faq__kaito {
    grid-area: 2/1/3/2;
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__kaito {
    grid-area: 1/2/3/4;
    border-left: 2px solid #555;
    padding: 40px;
  }
}
.faq__kaito dl {
  border-bottom: 2px solid #555;
}
@media only screen and (max-width: 1000px) {
  .faq__kaito dl {
    margin: 0;
    padding: 20px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__kaito dl {
    margin: 0 0 35px;
    padding: 0 0 35px;
  }
}
@media only screen and (max-width: 1000px) {
  .faq__kaito dl:first-child {
    padding: 0 0 20px;
  }
}
.faq__kaito dl:last-child {
  border-bottom: none;
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .faq__kaito dl:last-child {
    padding: 20px 0 0;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__kaito dl:last-child {
    padding: 0;
  }
}
.faq__kaito dl dt {
  margin: 0 0 15px;
  padding: 0 20px;
  font-weight: 600;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .faq__kaito dl dt {
    font-size: 1rem;
    padding: 0 0 0 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__kaito dl dt {
    font-size: 1.05rem;
  }
}
.faq__kaito dl dt span {
  width: calc(100% - 30px);
}
.faq__kaito dl dt::before {
  font-family: "Robot", sans-serif;
  display: block;
  content: "Q";
  margin: 0 17px 0 -20px;
  background-color: #555;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.faq__kaito dl dd {
  margin: 0;
  line-height: 1.7;
  display: flex;
}
@media only screen and (max-width: 1000px) {
  .faq__kaito dl dd {
    font-size: 0.9rem;
    padding: 0 0 0 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .faq__kaito dl dd {
    padding: 0 20px;
  }
}
.faq__kaito dl dd span {
  width: calc(100% - 30px);
}
.faq__kaito dl dd::before {
  font-family: "Robot", sans-serif;
  display: block;
  content: "A";
  margin: 0 17px 0 -20px;
  border: 2px solid #555;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-sizing: border-box;
}

@media only screen and (min-width: 1001px) {
  .contact {
    display: flex;
    justify-content: space-between;
  }
}
.contact__item {
  box-sizing: border-box;
}
@media only screen and (min-width: 1001px) {
  .contact__item {
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1000px) {
  .contact__item:first-child {
    border-bottom: 2px solid #555;
  }
}
@media only screen and (min-width: 1001px) {
  .contact__item:first-child {
    border-right: 2px solid #555;
  }
}
@media only screen and (min-width: 1001px) {
  .contact__item:first-child h3 {
    border-right: 1px solid #555;
  }
}
.contact__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 0;
}
@media only screen and (max-width: 1000px) {
  .contact__block {
    padding: 20px 20px 30px;
    height: 150px;
  }
}
@media only screen and (min-width: 1001px) {
  .contact__block {
    flex-grow: 1;
    padding: 0 5% 5%;
    height: 250px;
  }
}
.contact .mailform__link a::before {
  content: "\f0e0";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #fff;
  font-size: 1.3rem;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.contact .tel {
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .contact__item_content {
    height: auto;
  }
}
.contact .tel .tel-num {
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .tel-num {
    font-size: 1.5rem;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .contact .tel .tel-num {
    font-size: 2rem;
    margin: 0 0 10px;
  }
}
.contact .tel .tel-num::before {
  content: "\f095";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 5px;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .tel-num::before {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1001px) {
  .contact .tel .tel-num::before {
    font-size: 1.5rem;
  }
}
.contact .tel .tel-note {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .tel-note {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .contact .tel .tel-note {
    font-size: 15px;
    margin: 0 0 20px;
  }
}
.contact .tel .tel-tanto {
  display: inline-block;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .tel-tanto {
    display: flex;
  }
}
.contact .tel .tel-tanto span {
  margin: 0;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid #0c0d0d;
}
@media only screen and (max-width: 1000px) {
  .contact .tel .tel-tanto span {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 1001px) {
  .contact .tel .tel-tanto span {
    font-size: 1rem;
    padding: 0 0 3px;
  }
}

.link-btn {
  border: solid 2px #ddd;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .link-btn {
    height: 65px;
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 1001px) {
  .link-btn {
    max-width: 400px;
    height: 70px;
  }
}
.link-btn::before, .link-btn:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  translate: 0 -50%;
}
.link-btn::before {
  background-color: #666;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  right: 20px;
}
.link-btn::after {
  right: 26px;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  rotate: 45deg;
}
.link-btn:hover {
  transition: 0.3s;
  background: #333;
}
.link-btn a {
  font-weight: 600;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1001px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .pconly {
    display: none;
  }
}

.slide {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1000px) {
  .slide {
    margin-top: 5px;
    margin-bottom: 30px;
  }
}
.slide .splide__pagination {
  bottom: 0;
  position: relative;
  margin-top: 20px;
}
@media only screen and (max-width: 1000px) {
  .slide .splide__pagination {
    margin-top: 5px;
  }
}
.slide .splide__pagination__page {
  background-color: #222;
  border: 2px solid #777;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  opacity: 1;
  transition: all 0.3s;
}
@media only screen and (max-width: 1000px) {
  .slide .splide__pagination__page {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
.slide .splide__pagination__page.is-active {
  background-color: #777;
  opacity: 1;
  transform: scale(1);
}
.slide .splide__pagination__page:hover {
  opacity: 0.8;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1000px) {
  .pagination {
    gap: 8px;
    margin: 20px 0;
  }
}
.pagination__btn {
  padding: 12px 25px;
  background-color: #666;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1000px) {
  .pagination__btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}
.pagination__btn:hover:not(:disabled) {
  background-color: #555;
}
.pagination__btn:disabled {
  background-color: #333;
  color: #888;
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__numbers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__number {
  padding: 12px 18px;
  background-color: #222;
  color: #fff;
  border: 2px solid #555;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 45px;
}
@media only screen and (max-width: 1000px) {
  .pagination__number {
    padding: 6px 10px;
    font-size: 0.9rem;
    min-width: 35px;
  }
}
.pagination__number:hover {
  background-color: #333;
}
.pagination__number.active {
  background-color: #666;
  border: 2px solid #666;
  color: #fff;
}

.form__content {
  max-width: 800px;
  min-height: calc(100vh - 300px);
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .form__content {
    padding: 40px 5% 50px;
  }
}
@media only screen and (min-width: 1001px) {
  .form__content {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .form h2 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1001px) {
  .form h2 {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input {
    border: 2px solid #555;
    padding: 50px 50px;
  }
}
.form__input input[type=email],
.form__input input[type=text],
.form__input textarea {
  border: 1px solid #bbb;
  padding: 13px;
  box-sizing: border-box;
  width: 100%;
  font-size: 1rem;
}
.form__input textarea {
  height: 150px;
}
.form__input table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: show;
}
.form__input tr {
  border-bottom: 1px solid #555;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1000px) {
  .form__input tr {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input tr {
    padding: 25px 0;
  }
}
@media only screen and (max-width: 1000px) {
  .form__input tr:first-child {
    padding: 0 0 20px;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input tr:first-child {
    padding: 0 0 25px;
  }
}
.form__input th,
.form__input td {
  text-align: left;
}
.form__input th {
  margin: 0 0 10px;
}
.form__input .submit {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1000px) {
  .form__input .submit {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input .submit {
    gap: 0 20px;
  }
}
.form__input input[type=submit] {
  -webkit-appearance: none;
  border: 0;
  background-color: #eee;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 1000px) {
  .form__input input[type=submit] {
    width: 90%;
    height: 50px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input input[type=submit] {
    width: 100%;
    max-width: 350px;
    height: 55px;
    font-size: 1.1rem;
    transition: 0.3s;
  }
  .form__input input[type=submit]:hover {
    filter: brightness(0.8);
  }
}
.form__input input[type=submit]:first-child {
  background-color: #e60012;
  color: #fff;
}
.form__input input[type=submit]:first-child:hover {
  filter: brightness(1.2);
}
.form__input p {
  text-align: center;
}
.form__input .link-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e60012;
  color: #fff;
  font-weight: 600;
  margin: 30px auto 0;
}
@media only screen and (max-width: 1000px) {
  .form__input .link-top {
    width: 90%;
    height: 50px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1001px) {
  .form__input .link-top {
    width: 100%;
    max-width: 350px;
    height: 55px;
    font-size: 1.1rem;
    transition: 0.3s;
  }
  .form__input .link-top:hover {
    filter: brightness(1.2);
  }
}/*# sourceMappingURL=style.css.map */