@charset "UTF-8";
/* setting */
:root {
  font-size: 16px;
  --blue: #0074ff;
  --blue2: #01329a;
  --blue3: #6ca6ea;
}

/* base */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}

html {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "noto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
}

figure {
  margin: 0;
}

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

a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inherit;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: inherit;
  }
}
body {
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

.en {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .inner {
    padding: 0 1.25rem;
  }
}
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 950;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 5px 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 175px;
  }
}
.header__logo img {
  vertical-align: middle;
}
.header__sub {
  background: #2e2e2e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  max-width: 250px;
  text-align: center;
  padding: 2px;
}
@media (max-width: 768px) {
  .header__sub {
    max-width: 175px;
    font-size: 7px;
  }
}
.header__toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
}
.header__toggle span {
  border: 4px solid #0074ff;
  display: inline-block;
  width: 38px;
  height: 10px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .header__toggle span {
    border-width: 2px;
    height: 6px;
    width: 27px;
  }
}
.header__toggle span:nth-child(2) {
  border: 4px solid #01329a;
}
@media (max-width: 768px) {
  .header__toggle span:nth-child(2) {
    border-width: 2px;
  }
}
.header__toggle span:nth-child(2) {
  border: 4px solid #01329a;
}
@media (max-width: 768px) {
  .header__toggle span:nth-child(2) {
    border-width: 2px;
  }
}
.header__toggle.is-active span:nth-child(1) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(2) {
  rotate: -45deg;
  top: 0px;
}
.header__toggle.is-active span:nth-child(3) {
  rotate: 45deg;
  top: -12px;
}

.gnav-nav {
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 116, 255, 0.85);
  position: fixed;
  top: 0;
  right: -500px;
  transition: 0.3s all;
  height: 100vh;
  width: 330px;
  z-index: 100;
  padding: 10rem 0.625rem;
}
.gnav-nav.is-active {
  opacity: 1;
  pointer-events: inherit;
  right: 0;
}
.gnav-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.gnav-nav__item {
  text-align: center;
}
.gnav-nav__link {
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.gnav-nav__link:hover {
  opacity: 1;
  color: #01329a;
}
.gnav-nav__link:hover .gnav-nav__blank {
  background: transparent url("../img/common/icon_link_o.svg") right center no-repeat;
}
.gnav-nav__en {
  font-size: 1.9375rem;
  line-height: 1;
}
.gnav-nav__ja {
  font-weight: 600;
}
.gnav-nav__blank {
  background: transparent url("../img/common/icon_link.svg") right center no-repeat;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 20px;
  transition: background-color 0.3s, background-image 0.3s;
}

.main {
  padding-bottom: 7.5rem;
  padding-top: 4.75rem;
}
@media (max-width: 768px) {
  .main {
    padding-bottom: 5rem;
    padding-top: 3.75rem;
  }
}

.fixed {
  position: fixed;
  top: 220px;
  right: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  right: -100px;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  .fixed {
    display: none;
  }
}
.fixed.is-active {
  right: 38px;
  opacity: 1;
  pointer-events: inherit;
}
.fixed__list {
  display: flex;
  flex-direction: column;
  gap: 85px;
}
.fixed__item {
  width: 120px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1px;
  transform-origin: top right;
  transform: rotate(-90deg) translateX(100%);
}
.fixed__item a {
  border: 2px solid #000;
  display: block;
  padding: 0.4em 0.32em;
  width: 120px;
  background: #fff;
}
.fixed__item a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

.visually-hidden {
  display: none;
}

.top__title {
  font-size: 2.5rem;
  padding-left: 26px;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .top__title {
    font-size: 1.75rem;
    padding-left: 22px;
  }
}
.top__title::before, .top__title::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--blue2);
  position: absolute;
  top: 18px;
  left: 4px;
  display: inline-block;
}
@media (max-width: 768px) {
  .top__title::before, .top__title::after {
    width: 7px;
    height: 7px;
    top: 12px;
  }
}
.top__title::after {
  top: 38px;
  background: var(--blue);
}
@media (max-width: 768px) {
  .top__title::after {
    top: 28px;
  }
}
.top__image {
  aspect-ratio: 470/370;
}
.top__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  margin-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .mv {
    margin-bottom: 5rem;
  }
}
.mv__logo {
  background: transparent url("../img/top/img_mv_image.jpg") no-repeat center center;
  background-size: cover;
  height: 500px;
  border-radius: 10px;
  width: min(100%, 980px);
  aspect-ratio: 980/500;
}
@media (max-width: 1100px) {
  .mv__logo {
    width: 80vw;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .mv__logo {
    background: transparent url("../img/top/img_mv_image_sp.png") no-repeat center center;
    background-size: cover;
    height: 100%;
    aspect-ratio: 410/343;
    margin-bottom: 10px;
    width: 100%;
  }
}
.mv__logo img {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1100px) {
  .mv__logo img {
    
  }
}
@media (max-width: 520px) {
  .mv__logo img {
   
  }
}
.mv__flex {
  display: contents;
}
@media (max-width: 768px) {
  .mv__flex {
    display: flex;
    flex-direction: row-reverse;
  }
}
.mv-pickup {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(100%, 240px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .mv-pickup {
    position: relative;
    top: 0;
    transform: none;
    margin: 0 0 0 auto;
    width: 80%;
  }
}
.mv-pickup__link {
  display: block;
  order: 2;
}
.mv-pickup__link a:hover {
  opacity: 1;
}
.mv-pickup__image {
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  margin-bottom: 10px;
}
.mv-pickup__image img {
  aspect-ratio: 240/240;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-pickup time {
  order: 1;
  flex-direction: column;
  display: flex;
}
.mv-pickup time {
  text-align: center;
  margin: 0 0 5px auto;
}
.mv-pickup__month {
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 3px;
}
.mv-pickup__month::after {
  content: ".";
}
.mv-pickup__day {
  font-size: 3.3125rem;
  line-height: 1;
}
.mv-pickup__text {
  order: 3;
  font-size: 0.75rem;
  font-weight: 600;
  width: 100px;
  left: 60%;
}
@media (max-width: 1100px) {
  .mv-pickup__text {
    left: 40%;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .mv-pickup__text {
    left: 0;
    width: 100%;
    font-size: 0.875rem;
  }
}
.mv-object {
  position: absolute;
  bottom: -7.5rem;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}
@media (max-width: 1100px) {
  .mv-object {
    bottom: -16vw;
  }
}
@media (max-width: 900px) {
  .mv-object {
    bottom: -19vw;
  }
}
@media (max-width: 840px) {
  .mv-object {
    bottom: -19vw;
  }
}
@media (max-width: 768px) {
  .mv-object {
    position: relative;
    bottom: 0;
    flex-direction: column;
    width: 30%;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .mv-object__item--02 {
    position: absolute;
    top: 0.225rem;
    right: -6.875rem;
    width: 91px;
  }
}
@media (max-width: 768px) {
  .mv-object__item--01 {
    width: 119px;
  }
}
@media (max-width: 768px) {
  .mv-object__item--03 {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .mv-object__item--04 {
    width: 50px;
  }
}
@media (max-width: 768px) {
  .mv-object__item--05 {
    width: 92px;
  }
}

.first {
  margin-bottom: 7.5rem;
}
.first .inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(330px, 39vw, 527px);
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .first .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .first .nav {
    order: 4;
  }
}
.first__title {
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 600;
  background: transparent url("../img/top/bg_first.svg") left bottom no-repeat;
  padding-bottom: 15px;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .first__title {
    margin-bottom: 0.625rem;
  }
}
.first__text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .first__text {
    order: 3;
    width: 82%;
    margin: 0 auto;
    line-height: 2.2;
  }
}
@media (max-width: 768px) {
  .first__detail {
    display: contents;
  }
}
@media (max-width: 768px) {
  .first__image {
    order: 1;
    width: 82%;
    margin: 0 auto 0.625rem;
  }
}

.pickup {
  margin-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .pickup {
    margin-bottom: 5rem;
  }
}
.pickup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media (max-width: 1100px) {
  .pickup__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pickup__list {
    grid-template-columns: 1fr;
    width: 82%;
    margin: 0 auto;
  }
}
.pickup__link {
  z-index: 10;
}
.pickup__item:nth-child(2) {
  margin-top: 3.75rem;
}
@media (max-width: 1100px) {
  .pickup__item:nth-child(2) {
    margin-top: 0;
    top: 50%;
  }
}
@media (max-width: 768px) {
  .pickup__item:nth-child(2) {
    top: 0;
  }
}
.pickup__item:nth-child(3) {
  margin-top: 7.5rem;
}
@media (max-width: 1100px) {
  .pickup__item:nth-child(3) {
    margin-top: 0;
  }
}
.pickup__image {
  margin-bottom: 0.625rem;
  border-radius: 5px;
  overflow: hidden;
}
.pickup__image img {
  width: 100%;
  aspect-ratio: 330/260;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup__text {
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .pickup__text {
    font-size: 1rem;
  }
}
.pickup time {
  text-align: center;
  margin: 0 0 5px auto;
  position: absolute;
  top: -1.75rem;
  right: 0;
  display: flex;
  align-items: flex-start;
}
.pickup__month {
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 3px;
}
.pickup__month::after {
  content: ".";
}
.pickup__day {
  font-size: 3.3125rem;
  line-height: 1;
}
.pickup__object01 {
  position: absolute;
  bottom: -9.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1100px) {
  .pickup__object01 {
    display: none;
  }
}
@media (max-width: 768px) {
  .pickup__object01 {
    display: block;
    left: -40px;
    transform: none;
    bottom: auto;
  }
}
.pickup__object02 {
  position: absolute;
  top: -7.5rem;
  left: 3.125rem;
}
@media (max-width: 1100px) {
  .pickup__object02 {
    display: none;
  }
}
@media (max-width: 768px) {
  .pickup__object02 {
    display: block;
    left: -1.875rem;
    transform: none;
    top: -2.5rem;
  }
}
.pickup__object03 {
  display: none;
}
@media (max-width: 1100px) {
  .pickup__object03 {
    position: absolute;
    top: -8.125rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}
@media (max-width: 768px) {
  .pickup__object03 {
    display: none;
  }
}
.pickup__object04 {
  display: none;
}
@media (max-width: 1100px) {
  .pickup__object04 {
    position: absolute;
    bottom: -9.375rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
  }
}
@media (max-width: 768px) {
  .pickup__object04 {
    display: none;
  }
}

.category {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.category__item {
  font-size: 14px;
  padding: 0.2em 0.32em;
  border: 2px solid #000;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  max-width: 68px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.category__item a {
  display: block;
  padding: 0.2em 0.32em;
}
.category__item a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.category__item:has(a) {
  padding: 0;
}
.category__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 20px;
}
.category__list--lower {
  display: none;
  gap: 5px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .category__list--lower {
    display: grid;
  }
}
@media (max-width: 428px) {
  .category__list--lower .category__item {
    max-width: 66px;
  }
}
@media (max-width: 428px) {
  .category__list--lower .category__item a {
    padding: 0.2em 0.22em;
  }
}

.nav {
  max-width: 290px;
  width: 100%;
}
@media (max-width: 768px) {
  .nav {
    margin: 0 auto;
  }
}
.nav a {
  text-align: center;
  display: block;
  padding: 1em;
  border: 2px solid #000;
  font-weight: 600;
}
.nav a span::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 4px solid var(--blue3);
  position: relative;
  display: inline-block;
  top: 0px;
  left: -6px;
}
.nav a:hover {
  background: var(--blue);
  color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .content__wrap {
    display: flex;
    justify-content: space-between;
  }
}
.content__list {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 70px);
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .content__list {
    padding: 0;
    width: 82%;
    margin: 0 auto 2.5rem;
  }
}
.content__link {
  display: grid;
  grid-template-columns: clamp(330px, 35vw, 470px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .content__link {
    grid-template-columns: 1fr;
  }
}
.content__detail {
  position: relative;
  display: flex;
  flex-direction: column;
}
.content__image {
  border-radius: 5px;
  overflow: hidden;
}
.content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content__category {
  order: 1;
  margin-bottom: 10px;
}
.content__title {
  order: 2;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .content__title {
    font-size: 1rem;
    order: 1;
  }
}
.content__text {
  order: 3;
  font-size: 0.875rem;
}
.content__time {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}
@media (max-width: 768px) {
  .content__time {
    position: relative;
    order: 2;
  }
}
.content__time--pc {
  display: block;
}
@media (max-width: 768px) {
  .content__time--pc {
    display: none;
  }
}
.content__time--sp {
  display: none;
}
@media (max-width: 768px) {
  .content__time--sp {
    display: block;
  }
}
.content__month {
  font-size: 1.375rem;
  top: -1.5625rem;
}
.content__month::after {
  content: ".";
  position: relative;
  left: -5px;
}
.content__day {
  font-size: 3.3125rem;
  top: -5px;
}

.lower {
  padding-top: 10.625rem;
}
@media (max-width: 1100px) {
  .lower {
    padding-top: 14vw;
  }
}
@media (max-width: 768px) {
  .lower {
    padding-top: 4.375rem;
  }
}
.lower__title {
  z-index: 5;
  line-height: 1;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .lower__title {
    margin-bottom: 2.5rem;
  }
}
.lower__title--en {
  font-size: clamp(2.3125rem, 10vw, 3.875rem);
}
.lower__title--ja {
  display: block;
  font-size: 1.125rem;
  margin-top: 0.9375rem;
}
@media (max-width: 768px) {
  .lower__title--ja {
    margin-top: 0.625rem;
  }
}

.about {
  padding-bottom: 0;
}
.about .lower__title {
  position: absolute;
  top: 1.25rem;
  left: 0;
}
.about-mv {
  margin-bottom: 6.875rem;
}
@media (max-width: 768px) {
  .about-mv {
    margin-bottom: -1.25rem;
  }
}
@media (max-width: 1200px) {
  .about-mv .inner {
    padding: 0;
    margin-left: 20px;
  }
}
.about-first {
  padding-bottom: 21.25rem;
}
@media (max-width: 768px) {
  .about-first {
    padding-bottom: 12.5rem;
  }
}
.about-first .inner {
  display: grid;
  grid-template-columns: 7fr 13fr;
  gap: clamp(2vw, 5vw, 90px);
}
@media (max-width: 768px) {
  .about-first .inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-first__head {
    display: grid;
    grid-template-columns: 4fr 2fr;
    align-items: baseline;
  }
}
.about-first__title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  background: transparent url("../img/common/bg_dot.svg") left bottom no-repeat;
  background-size: 70px;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .about-first__title {
    font-size: clamp(1.5rem, 6vw, 1.875rem);
    background-size: 60px;
    margin-bottom: 0rem;
  }
}
.about-first__image {
  width: min(100%, 350px);
}
.about-first__contents {
  display: flex;
  flex-direction: column;
  gap: 2.1875rem;
}
@media (max-width: 768px) {
  .about-first__contents {
    padding: 0 25px;
  }
}
.about-first__contents p {
  line-height: 2.2;
  font-size: 0.875rem;
  font-weight: 700;
}
.about-detail {
  border-top: 6px solid #000;
  padding-bottom: 8.75rem;
}
@media (max-width: 768px) {
  .about-detail {
    padding-bottom: 6.25rem;
  }
}
.about-detail .inner {
  width: min(100%, 980px);
}
.about-detail__title {
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
  position: absolute;
  top: -8.75rem;
  left: 50%;
  transform: translateX(-50%);
}
.about-detail__main {
  padding-top: 12.5rem;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 768px) {
  .about-detail__main {
    width: 80%;
    margin: 0 auto;
    padding-top: 10rem;
    gap: 60px;
  }
}
.about-detail__contents {
  order: 2;
}
.about-detail__image {
  order: 1;
}
.about-detail__set {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-detail__set {
    grid-template-columns: 1fr;
  }
}
.about-detail__set:nth-child(even) .about-detail__contents {
  order: 1;
}
@media (max-width: 768px) {
  .about-detail__set:nth-child(even) .about-detail__contents {
    order: 2;
  }
}
.about-detail__set:nth-child(even) .about-detail__image {
  order: 2;
}
@media (max-width: 768px) {
  .about-detail__set:nth-child(even) .about-detail__image {
    order: 1;
  }
}
.about-detail__head {
  margin-bottom: 1.875rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
}
.about-detail__contents {
  background: transparent url("../img/common/bg_dot.svg") left bottom no-repeat;
  background-size: 70px;
  padding-bottom: 2.1875rem;
}
.about-detail__num {
  font-size: 3.3125rem;
}
.about-detail__label {
  font-size: 1.125rem;
}
.about-detail__text {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .about-detail__text {
    line-height: 1.8;
  }
}
.about-system {
  background: #f5f5f5;
  padding: 4.375rem 0;
}
.about-system__title {
  background: #000000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.1875rem 5rem;
  color: #fff;
  text-align: center;
  margin: 0 auto 0.9375rem;
}
.about-system__text {
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .about-system__text {
    font-size: 1rem;
  }
}

.single {
  display: block;
}
.single-main {
  width: min(100%, 980px);
  margin: 0 auto;
}
.single .inner {
  max-width: 980px;
}
.single__mv {
  width: 70%;
  height: 100%;
  aspect-ratio: 1280/720;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .single__mv {
    width: 100%;
  }
}
.single__mv img {
  width: 100%;

}
.single__detail {
  margin-bottom: 6.25rem;
}
.single__detail p {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .single__detail p {
    font-size: 0.9375rem;
  }
}
.single__detail p:last-child {
  margin-bottom: 0;
}
.single__detail a {
  word-break: break-all;
  overflow-wrap: break-word;
  text-decoration: underline;
  color: var(--blue);
}
.single__detail .wp-block-separator {
  margin: 1.875rem 0;
  display: block;
}
.single__detail .wp-block-image {
  margin: 0 auto 1.25rem;
  width: 78%;
}
@media (max-width: 768px) {
  .single__detail .wp-block-image {
    width: 100%;
  }
}
.single__detail .is-layout-flex .wp-block-image {
  margin-bottom: 0;
}
.single__detail .wp-block-column .wp-block-image {
  width: 100%;
}
.single__detail .aligncenter {
  margin: 0 auto;
  text-align: center;
}
.single__detail .wp-block-media-text,
.single__detail .wp-block-embed,
.single__detail .wp-block-table,
.single__detail .wp-block-gallery,
.single__detail .wp-block-columns,
.single__detail .wp-block-list {
  margin-bottom: 1.25rem;
}
.single__detail .wp-block-list li::before {
  content: "・";
  padding-right: 5px;
}
.single__detail h2.wp-block-heading {
  font-weight: 600;
  font-size: clamp(1.25rem, 5vw, 1.625rem);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #000;
}
.single__detail h3.wp-block-heading {
  font-weight: 600;
  font-size: clamp(1rem, 5vw, 1.25rem);
  margin-bottom: 1.25rem;
  background: #f4f4f4;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .single__detail .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
    margin-top: 1.25rem;
  }
}
.single__detail .wp-block-quote {
  background: #f4f4f4;
  padding: 1.875rem;
}
.single__detail .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.single__detail .wp-block-quote .wp-block-image {
  margin-bottom: 1.25rem;
}
.single__detail iframe.instagram-media {
  margin: 0 auto !important;
  height: revert-layer;
}
.single__detail .wp-block-buttons {
  margin-bottom: 2.5rem;
}
.single__detail .wp-block-buttons > .wp-block-button {
  display: block;
}
.single__detail .wp-block-buttons a {
  display: block;
  background: #000;
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}
.single__detail .aligncenter {
  text-align: center;
}
.single__detail .is-content-justification-right .wp-block-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.single__detail .is-style-sme-speech-left {
  position: relative;
  left: 20px;
  width: calc(100% - 130px);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.single__detail .is-style-sme-speech-right {
  position: relative;
  right: 20px;
  width: calc(100% - 130px);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.single__detail .wp-block-group {
  margin-bottom: 1.875rem;
  overflow: hidden;
  clear: both;
}
@media (max-width: 768px) {
  .single__detail .wp-block-group {
    margin-bottom: 1.25rem;
  }
}
.single__detail iframe {
  margin: 0 auto 20px;
  display: block;
  width: 100%;
}
.single .content__time {
  top: -1.5rem;
}
.single .content__detail {
  margin-bottom: 0.625rem;
}
.single .content__title {
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 700;
}
.single .category__nav {
  margin: 0 auto;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  font-weight: 600;
}
.wp-pagenavi span.current {
  background: #000;
  color: #fff;
}
.wp-pagenavi a.nextpostslink {
  font-size: 0;
}
.wp-pagenavi a.nextpostslink::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}
.wp-pagenavi a.previouspostslink {
  font-size: 0;
}
.wp-pagenavi a.previouspostslink::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  rotate: -180deg;
  top: 0;
  right: 4px;
  bottom: 0;
  margin: auto;
}

.footer {

  text-align: center;
  border-top: 2px solid #000;
}
.footer-insta-banner {
  
}
.footer-bg {
  background: #f4f4f4;
  padding-top: 2.8125rem;
  padding-bottom: 2.8125rem;
}

.footer-link {
  font-size: 1.25rem;

}
@media (max-width: 1200px) {
  .footer-link {
    padding-right: 50px;
  }
}
@media (max-width: 768px) {
  .footer-link {
    padding: 0 1.25rem;
    width: 82%;
  }
}
.footer-link__title {
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-link__title {
    margin-bottom: 30px;
  }
}
.footer-link__wrapper {
  display: flex;
  gap : 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-link__wrapper {
    flex-direction: column;
    gap : 20px;
  }
}
.footer-link__image {
  max-width: 448px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .footer-link__image {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .footer-link__image {
    max-width: 450px;
  }
}
.footer-link__detail {
  flex : 1;
  text-align: left;
}
.footer-link__label {
  font-size: 18px;
  background: #000;
  padding: 5px 15px;
  color: #fff;
  margin-bottom: 5px;
  text-align: center;
}
.footer-link__text {
  font-size: 14px;
  margin-bottom: 5px;
}
.footer-link__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 15px;
  background: #fff;

}
.footer-link__table th {
  border: 2px solid #fff;
  padding: 1px;
  background: #F9f9f9;
  font-weight: 500;
  padding: 2px 10px;
}
.footer-link__table td {
  padding: 2px 10px;
  border-bottom: 2px solid #F5F5F5;
}
.footer-link__table tr:last-child td {
  border-bottom: none;
}
.footer-link__table td sup {
  font-size : 9px;
  position: relative;
  top : -5px;
}
.footer-link .nav {
  margin: 0 auto;
}
.footer-link .nav a {
  padding: 15px;
  background: #fff;
}

.footer-link__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .footer-link__list {
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .footer-link__list {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 82%;
    margin: 0 auto 3.125rem;
  }
}
.footer-logo {
  margin-bottom: 0.9375rem;
}
.footer-copy {
  font-size: 10px;
  font-weight: 600;
}
/*# sourceMappingURL=layout.css.map */