@charset "UTF-8";
:root {
  --noto: "Noto Sans", sans-serif;
  --main-color: #001d58;
  --accent-orange: #ed6a02;
  --accent-blue: #0081c6;
  --font-color: #333333;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 15rem;
}
@media screen and (min-width: 1600px) {
  html {
    font-size: calc(160px / 1400 * 100);
  }
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  html {
    font-size: calc(10vw / 1400 * 100);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10vw / 400 * 100);
  }
}
html.is-hidden body {
  pointer-events: none;
}

body {
  font-family: var(--noto);
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0;
  background-color: white;
  color: var(--font-color);
  opacity: 0;
  transition: opacity 0.5s;
  margin-top: 14.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body {
    margin-top: 7.3rem;
  }
}
body.is-active {
  opacity: 1;
}
body.is-menu-open {
  height: 100vh;
  overflow: hidden;
}

:where(a) {
  text-decoration: none;
}
:where(a):visited, :where(a):link {
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

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

picture {
  display: inline-block;
  width: 100%;
  height: auto;
}

figure {
  padding: 0;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  line-height: 1.2;
}

svg,
img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
  img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
[x-cloak] {
  display: none !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

.js-inview[data-inview=fade] {
  opacity: 0;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(30px);
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn] a::before,
.js-inview[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn] i {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn].is-inview a::before,
.js-inview[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn].is-inview i {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn-border] a::after,
.js-inview[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn-border].is-inview a::after,
.js-inview[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=bg]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-white]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg-white].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-scale]::before {
  transition: transform 0.8s;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;
}
.js-inview[data-inview=bg-scale].is-inview::before {
  transform: translate(-50%, -50%) scale(1);
}
.js-inview-photo[data-inview=scale-small] {
  transition: transform 1s;
  transform: scale(1.5);
}
.is-inview .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

.js-inview-photo-img[data-inview=scale-small] {
  transition: transform 1s;
  transform: translateX(-50%) scale(1.5);
}
.is-inview .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem[data-inview=btn] a::before,
.js-inview-eachItem[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn].is-inview a::before,
.js-inview-eachItem[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=btn-border] a::after,
.js-inview-eachItem[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn-border].is-inview a::after,
.js-inview-eachItem[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border]::before {
  transition: transform 0.8s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=list-border] span,
.js-inview-eachItem[data-inview=list-border] figure,
.js-inview-eachItem[data-inview=list-border] a {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=list-border] i {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(-20px) rotate(45deg);
}
.js-inview-eachItem[data-inview=list-border].is-inview::before {
  transform: scale(1);
}
.js-inview-eachItem[data-inview=list-border].is-inview span,
.js-inview-eachItem[data-inview=list-border].is-inview figure,
.js-inview-eachItem[data-inview=list-border].is-inview a {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border].is-inview i {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}
.js-inview-eachItem-fast[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.js-inview-eachItem-fast[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade] {
  opacity: 0;
  transition: transform 0.8s;
}
.js-inview-eachItem-delay[data-inview=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem-delay[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem-delay[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-all[data-inview=btn] a::before,
.js-inview-all[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn].is-inview a::before,
.js-inview-all[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-all[data-inview=btn-border] a::after,
.js-inview-all[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn-border].is-inview a::after,
.js-inview-all[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.l-header__inner {
  width: 100%;
  border: none !important;
  padding-inline: 3.5rem !important;
  height: 8rem;
  align-items: center !important;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-inline: 2.7rem 2rem !important;
    height: 6rem;
  }
}
.l-header__gnav {
  margin: 0 !important;
}
.l-header__cat-button {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-header__cat-button {
    order: 2;
    margin-left: auto;
  }
}
.l-header__cat-button > .in-text {
  font-weight: bold;
  font-family: var(--tsuku-gothic-b);
}
.l-header__cat-button > .in-bars {
  margin-left: 0.5rem;
  margin-top: 0.4rem;
}
.l-header__cat-button > .in-bars svg {
  width: 3.5rem;
}
.l-header__logo {
  padding: 0 !important;
  margin: 0 !important;
  border-right: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
.l-header__logo .c-headLogo {
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  .l-header__menuBtn {
    order: 3;
  }
}

.c-button-angle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 22rem;
  height: 3.8rem;
  border-radius: 2.5rem;
  background-color: var(--main-color);
  transition: opacity 0.3s;
}
.c-button-angle__text {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-button-angle__icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
}
.c-button-angle--orange {
  background-color: var(--accent-orange);
}
.c-button-angle--invert {
  background-color: white;
}
.c-button-angle--invert .c-button-angle__text {
  color: var(--main-color);
}
.c-button-angle--invert .c-button-angle__icon svg path {
  stroke: var(--main-color);
}
@media screen and (min-width: 768px) {
  .c-button-angle--large {
    width: 26rem;
    height: 5rem;
  }
  .c-button-angle--large .c-button-angle__text {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .c-button-angle:hover {
    opacity: 0.7;
  }
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
}
.c-header__primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 8rem;
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .c-header__primary {
    height: 6.7rem;
    padding-inline: 1.8rem;
  }
}
.c-header__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-header__logo-wrap {
    gap: 0.6rem;
  }
}
.c-header__logo-wrap--h1 {
  pointer-events: none;
}
@media (hover: hover) {
  .c-header__logo-wrap:hover {
    opacity: 0.7;
  }
}
.c-header__logo-num {
  width: 3.6rem;
}
@media screen and (max-width: 768px) {
  .c-header__logo-num {
    width: 2.7rem;
  }
}
.c-header__logo {
  width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .c-header__logo {
    width: 16.9rem;
  }
}
@media screen and (max-width: 768px) {
  .c-header__contact-nav {
    display: none;
  }
}
.c-header__contact-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}
.c-header__secondary {
  width: 100%;
  background-color: var(--main-color);
}
.c-header__secondary .c-button-angle {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-header__secondary-inner {
    height: calc(100vh - 7.3rem);
    max-height: calc(100vh - 7.3rem);
    overflow-y: scroll;
  }
}
.c-header__nav-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  height: 5.3rem;
}
@media screen and (max-width: 768px) {
  .c-header__nav-list {
    grid-template-columns: 1fr;
    height: auto;
    padding-block: 4rem;
    gap: 2.4rem;
  }
}
.c-header__nav-item {
  border-right: solid 1px white;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-header__nav-item {
    border: none;
  }
}
.c-header__nav-item:last-of-type {
  border-radius: none;
}
.c-header__nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.c-header__nav-item--disabled {
  pointer-events: none;
}
.c-header__nav-item--disabled a {
  pointer-events: none;
  color: #848484;
}
.c-header__nav-item.is-current {
  background-color: #365CAA;
  pointer-events: none;
}
@media (hover: hover) {
  .c-header__nav-item:hover {
    background-color: #365CAA;
  }
}
.c-header__mobile-toggle {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header__mobile-toggle {
    display: block;
    width: 2.5rem;
    height: 1.6rem;
    position: relative;
  }
}
.c-header__mobile-toggle > .in-bar {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.c-header__mobile-toggle > .in-bar--middle {
  top: 50%;
}
.c-header__mobile-toggle > .in-bar--bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.c-header__mobile-toggle.is-active > .in-bar--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-header__mobile-toggle.is-active > .in-bar--middle {
  opacity: 0;
}
.c-header__mobile-toggle.is-active > .in-bar--bottom {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.c-footer__contact {
  background-color: #DDEFFF;
  padding-block: 6rem;
}
@media screen and (max-width: 768px) {
  .c-footer__contact {
    padding-block: 4rem;
  }
}
.c-footer__title {
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 768px) {
  .c-footer__title {
    margin-bottom: 2.4rem;
  }
}
.c-footer__contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .c-footer__contact-list {
    padding-inline: 2rem;
    gap: 4rem;
  }
}
.c-footer__contact-item {
  width: 41rem;
}
.c-footer__contact-item p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-footer__contact-item p {
    font-size: 1.4rem;
  }
}
.c-footer__contact-item p a {
  text-decoration: underline;
}
.c-footer__contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  width: 100%;
  height: 3rem;
  border-radius: 1.5rem;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .c-footer__contact-title {
    font-size: 1.5rem;
  }
}
.c-footer__location-name {
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .c-footer__location-name {
    font-size: 1.5rem;
  }
}
.c-footer__nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-inline: 5.1rem;
  padding-block: 3.6rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-footer__nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 10rem;
  }
}
.c-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.c-footer__logo-num {
  width: 2.8rem;
}
.c-footer__logo {
  width: 17.4rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-footer__logo:hover {
    opacity: 0.7;
  }
}
.c-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-footer__nav-list {
    justify-content: center;
    gap: 1rem 2rem;
  }
}
.c-footer__nav-item a {
  font-size: 1.4rem;
  font-weight: bold;
  transition: color 0.3s, opacity 0.3s;
}
@media (hover: hover) {
  .c-footer__nav-item a:hover {
    color: var(--main-color);
    opacity: 0.7;
  }
}
.c-footer__blank-link {
  display: flex;
  width: 8.6rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-size: 1.4rem;
  font-weight: bold;
  margin-inline: auto 0;
  margin-top: 1rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-footer__blank-link:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .c-footer__blank-link {
    margin-inline: auto;
    margin-top: 2rem;
  }
}

.c-rainbow-border {
  width: 100%;
  height: 1.2rem;
  background-image: url(../images/common/rainbow-line.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-rainbow-border {
    width: 100%;
    height: 0.6rem;
  }
}

.c-heading-simple {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-heading-simple {
    font-size: 2.8rem;
  }
}
.c-heading-simple--center {
  text-align: center;
}
.c-heading-simple--simple {
  font-size: 2.4rem;
}

.c-over-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.c-post-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  border-bottom: solid 1px #cccccc;
  padding-block: 1.6rem;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-post-item {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.c-post-item__time {
  width: 8.4rem;
  flex-shrink: 0;
}
.c-post-item__cat {
  font-size: 1.2rem;
  background-color: var(--main-color);
  padding: 0.2rem 1rem;
  color: white;
  flex-shrink: 0;
}
.c-post-item__title {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-post-item__title {
    width: 100%;
  }
}
.c-post-item__title a {
  position: relative;
  z-index: 11;
  text-decoration: underline;
}

.c-secondary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20rem;
  background-image: url(../images/post/secondary-header-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .c-secondary-header {
    height: 11rem;
  }
}
.c-secondary-header__title {
  font-size: 4rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-secondary-header__title {
    font-size: 2.2rem;
  }
}

.c-blockeditor-content > *:first-child {
  margin-top: 0 !important;
}
.c-blockeditor-content :where(h2) {
  font-size: 1.8rem;
  font-weight: bold;
  margin-block: 4rem 1.6rem;
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content :where(h2) {
    margin-block: 4rem 1rem;
  }
}
.c-blockeditor-content :where(h2).is-mt-none {
  margin-top: 0;
}
.c-blockeditor-content :where(h3) {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color);
  margin-block: 4rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content :where(h3) {
    margin-block: 4rem 1rem;
  }
}
.c-blockeditor-content :where(p) {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content :where(p) {
    font-size: 1.4rem;
  }
}
.c-blockeditor-content :where(p):last-of-type {
  margin-bottom: 0;
}
.c-blockeditor-content :where(p) a {
  color: var(--accent-blue);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-blockeditor-content :where(p) a:hover {
    opacity: 0.7;
  }
}
.c-blockeditor-content :where(p) a svg {
  transform: translate(0, 0.1rem);
}
.c-blockeditor-content :where(p) a svg path {
  fill: var(--accent-blue);
}
.c-blockeditor-content :where(p).is-description {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content :where(p).is-description {
    margin-bottom: 4rem;
  }
}
.c-blockeditor-content :where(ol) li {
  padding-left: 1.5em;
  position: relative;
  counter-increment: olCounter;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content :where(ol) li {
    font-size: 1.4rem;
  }
}
.c-blockeditor-content :where(ol) li::before {
  content: "(" counter(olCounter) ")";
  position: absolute;
  left: 0;
}
.c-blockeditor-content :where(ol) li > ol > li {
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
  padding-left: 1.1em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(1)::before {
  content: "①";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(2)::before {
  content: "②";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(3)::before {
  content: "③";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(4)::before {
  content: "④";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(5)::before {
  content: "⑤";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(6)::before {
  content: "⑥";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(7)::before {
  content: "⑦";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(8)::before {
  content: "⑧";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(9)::before {
  content: "⑨";
  margin-right: 0.5em;
}
.c-blockeditor-content :where(ol) li > ol > li:nth-child(10)::before {
  content: "⑩";
  margin-right: 0.5em;
}
.c-blockeditor-content .c-heading-bottom-bar-rainbow {
  margin-block: 8rem 4rem;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content .c-heading-bottom-bar-rainbow {
    margin-block: 5rem 3rem;
  }
}
.c-blockeditor-content .c-heading-width-icon {
  margin-block: 4.3rem 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-blockeditor-content .c-heading-width-icon {
    margin-block: 3rem 1.5rem;
  }
}

.c-dl {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c-dl {
    gap: 2rem;
  }
}
.c-dl__item {
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-dl__item {
    flex-direction: column;
    gap: 1rem;
  }
}
.c-dl__title {
  padding-bottom: 3rem;
  border-bottom: solid 1px var(--main-color);
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color);
  width: 17rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-dl__title {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.6rem;
  }
}
.c-dl__data {
  padding-bottom: 3rem;
  border-bottom: solid 1px #cccccc;
  flex: auto;
  font-size: 1.6rem;
  font-weight: 500;
  padding-inline: 1rem;
}
@media screen and (max-width: 768px) {
  .c-dl__data {
    width: 100%;
    padding-bottom: 1rem;
    padding-inline: 0;
    font-size: 1.4rem;
  }
}
.c-dl__data a {
  color: var(--accent-blue);
}
.c-dl__data iframe {
  width: 78.6rem;
  height: 38rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c-dl__data iframe {
    width: 100%;
    aspect-ratio: 1/1;
  }
}

.c-heading-bottom-bar-rainbow {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading-bottom-bar-rainbow {
    font-size: 2.6rem;
    padding-bottom: 1.2rem;
  }
}
.c-heading-bottom-bar-rainbow::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  background-image: url(../images/common/rainbow-line.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-heading-bottom-bar-rainbow::after {
    width: 100%;
    height: 0.6rem;
  }
}

.c-heading-width-icon {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.c-heading-width-icon__icon {
  display: flex;
  align-items: center;
}
.c-heading-width-icon__icon img {
  height: 2.6rem;
}
@media screen and (max-width: 768px) {
  .c-heading-width-icon__icon img {
    height: 2.2rem;
  }
}
.c-heading-width-icon__text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-color);
}

.c-ul-note {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.c-ul-note__item {
  list-style: none;
  padding-left: 1em;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-ul-note__item {
    font-size: 1.2rem;
  }
}
.c-ul-note__item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.c-ul-note__item--large {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-ul-note__item--large {
    font-size: 1.4rem;
  }
}
.c-ul-note__item--blue {
  color: var(--accent-blue);
}

.c-heading-gradient {
  background: linear-gradient(to right, var(--main-color), var(--main-color) 50%, transparent);
  padding: 0.8rem 2rem;
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-heading-gradient {
    font-size: 2rem;
    padding: 0.5rem 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-heading-gradient--mobile-full {
    background-color: var(--main-color);
    text-align: center;
  }
}

.c-heading-angle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.c-heading-angle__icon {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-heading-angle__icon svg {
    width: 1.5rem;
  }
}
.c-heading-angle__text {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-blue);
}
@media screen and (max-width: 768px) {
  .c-heading-angle__text {
    font-size: 1.6rem;
  }
}

.c-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  height: auto;
  border-radius: 3rem;
  border: solid 1px var(--accent-blue);
  color: var(--accent-blue);
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-label {
    font-size: 1.4rem;
    min-height: 2.6rem;
  }
}
.c-label--invert {
  background-color: var(--accent-blue);
  color: white;
}

.c-ul-dot {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.c-ul-dot__item {
  position: relative;
  padding-left: 0.8em;
  font-size: 1.4rem;
}
.c-ul-dot__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.c-ul-dot__item--large {
  font-size: 1.6rem;
}
.c-ul-dot__item > .in-small {
  font-size: 1.4rem;
}

.c-angle {
  width: 1.5rem;
  vertical-align: middle;
  margin-inline: 0.1rem;
  transform: translate(0, -0.1rem);
}
.c-angle--mobild-small {
  width: 1.2rem;
}

.c-dot-label {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 1.6rem;
}
.c-dot-label::before {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--accent-blue);
}

.p-top__fixed-button {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  z-index: 12;
}
@media screen and (max-width: 768px) {
  .p-top__fixed-button {
    right: auto;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, 0);
  }
}
.p-top__fixed-button .c-button-angle {
  width: 29.6rem;
  height: 6.4rem;
  border-radius: 0.5rem;
  border: solid 0.3rem white;
}
@media screen and (max-width: 768px) {
  .p-top__fixed-button .c-button-angle {
    border-radius: 5rem;
    width: 26rem;
    height: 5.1rem;
  }
}
.p-top__fixed-button .c-button-angle__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top__fixed-button .c-button-angle__text {
    font-size: 1.6rem;
  }
}
.p-top__clear-fixed-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  transform: translate(50%, -50%);
  display: block;
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: white;
  border: solid 0.2rem var(--accent-orange);
}
.p-top__clear-fixed-button::before, .p-top__clear-fixed-button::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 0.2rem;
  border-radius: 0, 2rem;
  background-color: var(--accent-orange);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-top__clear-fixed-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-top__mv {
  background-image: url(../images/top/mv-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 56.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9.7rem;
  padding-inline: 6.8rem 9.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top__mv {
    flex-direction: column;
    background-color: #112244;
    background-image: url(../images/top/sp-mv-bg.jpg);
    background-size: 100% auto;
    background-position: top center;
    height: auto;
    padding-inline: 1rem;
    padding-top: 2.5rem;
    gap: 1.1rem;
    padding-bottom: 4.8rem;
  }
}
.p-top__mv-free {
  position: absolute;
  width: 31.5rem;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top__mv-free {
    width: 18.6rem;
    bottom: auto;
    top: 40rem;
  }
}
.p-top__mv-title {
  width: 59rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top__mv-title {
    width: 100%;
    padding-left: 1rem;
  }
}
.p-top__mv-contact-button {
  margin-inline: auto;
  margin-top: 0.8rem;
  border: solid white 0.2rem;
}
.p-top__mv-desc-wrap {
  width: 54rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-desc-wrap {
    width: 100%;
  }
}
.p-top__mv-day {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-day {
    margin-bottom: 5rem;
  }
  .p-top__mv-day img {
    width: 29.5rem;
    margin-left: 1.8rem;
  }
}
.p-top__mv-date-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.5rem;
  height: 3.2rem;
  background-color: white;
  border-radius: 1.6rem;
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: bold;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-date-title {
    margin-bottom: 2.3rem;
  }
}
.p-top__mv-first-day {
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-first-day {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__second-day {
    padding-inline: 1rem;
  }
}
.p-top__mv-banner {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 7rem 5rem;
  height: 8.9rem;
}
@media screen and (max-width: 768px) {
  .p-top__mv-banner {
    flex-direction: column;
    gap: 3.4rem;
    padding: 3.3rem 2rem 5rem;
    height: auto;
  }
}
.p-top__itabashi-banner {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__itabashi-banner {
    gap: 2.3rem;
  }
}
.p-top__itabashi-banner img {
  height: 5.7rem;
}
@media screen and (max-width: 768px) {
  .p-top__itabashi-banner img {
    height: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__place-banner {
    padding-inline: 1rem;
  }
}
.p-top__place-banner img {
  height: 5.7rem;
}
@media screen and (max-width: 768px) {
  .p-top__place-banner img {
    height: auto;
    width: 100%;
  }
}
.p-top__new-posts {
  padding-block: 5rem 5.5rem;
}
.p-top__new-posts .c-heading-simple {
  margin-bottom: 4.3rem;
}
@media screen and (max-width: 768px) {
  .p-top__new-posts .c-heading-simple {
    margin-bottom: 2.3rem;
  }
}
.p-top__new-posts-list {
  width: 108rem;
  max-width: calc(100% - 4rem);
  margin-inline: auto;
}
.p-top__about {
  padding-block: 10rem;
  background-color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .p-top__about {
    padding-block: 5rem 2rem;
  }
}
.p-top__about-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.p-top__about-title img {
  width: 57.5rem;
}
@media screen and (max-width: 768px) {
  .p-top__about-title img {
    width: 35rem;
  }
}
.p-top__about-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top__about-list {
    gap: 2rem;
  }
}
.p-top__about-item {
  width: 108rem;
  margin-inline: auto;
  background-color: white;
  padding: 4rem;
  max-width: calc(100% - 4rem);
}
@media screen and (max-width: 768px) {
  .p-top__about-item {
    flex-direction: column;
    padding: 2rem;
  }
}
.p-top__center-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__center-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}
.p-top__center-title > .in-large {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__center-title > .in-large {
    font-size: 2.2rem;
  }
}
.p-top__center-title > .in-orange {
  color: #ED6A02;
}
.p-top__monodukuri-content p {
  margin-bottom: 1.5rem;
}
.p-top__event-date .c-heading-bottom-bar-rainbow {
  margin-bottom: 2rem;
}
.p-top__event-date .c-heading-gradient {
  margin-block: 5rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-top__event-date .c-heading-gradient {
    margin-bottom: 1rem;
  }
}
.p-top__event-date .c-heading-gradient:first-of-type {
  margin-block: 4rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__event-date .c-heading-gradient:first-of-type {
    margin-block: 2rem;
  }
}
.p-top__event-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__event-item:last-of-type {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top__event-item {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-top__event-item > .in-thumb-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 20.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top__event-item > .in-thumb-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top__business-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__business-list {
    gap: 2rem;
  }
}
.p-top__business-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top__business-item {
    flex-direction: column;
    gap: 0;
  }
}
.p-top__business-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.7rem;
  height: 3.4rem;
  background-color: var(--accent-blue);
  border-radius: 0.4rem;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-top__business-title > .in-small {
  display: inline-block;
  transform: scaleX(0.8);
  white-space: nowrap;
  margin-inline: -1rem;
}
@media screen and (max-width: 768px) {
  .p-top__business-title > .in-small {
    transform: none;
    margin-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top__business-title {
    width: 17rem;
    height: 3rem;
    font-size: 1.6rem;
  }
}
.p-top__business-data {
  padding-top: 0.5rem;
}
.p-top__qualty-wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top__qualty-wrap {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.p-top__qualty-title {
  width: 14.7rem;
  height: 3.4rem;
  background-color: var(--accent-blue);
  border-radius: 0.4rem;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-top__qualty-title {
    width: 16rem;
    height: 3rem;
    font-size: 1.6rem;
  }
}
.p-top__qualty-data {
  display: grid;
  grid-template-columns: 15.2rem 19.6rem 1fr;
  gap: 0.6rem 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-top__qualty-data {
    grid-template-columns: 1fr;
  }
}

.p-page {
  width: 108rem;
  max-width: calc(100% - 4rem);
  padding-block: 9rem 10rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-page {
    padding-block: 5rem;
  }
}

.p-access .c-ul-note {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-access .c-ul-note {
    margin-top: 2rem;
  }
}

.p-privacy .c-blockeditor-content :where(h2) {
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 1.6rem;
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-privacy .c-blockeditor-content :where(h2) {
    font-size: 2rem;
  }
}
.p-privacy .c-blockeditor-content :where(p) + ol {
  margin-top: -1.5rem;
}

.p-exhibition-terms .c-blockeditor-content :where(h2) {
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 1.6rem;
  border-bottom: solid 1px #CCCCCC;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-exhibition-terms .c-blockeditor-content :where(h2) {
    font-size: 2rem;
  }
}
.p-exhibition-terms .c-blockeditor-content :where(p) + ol {
  margin-top: -1.5rem;
}

.p-404 {
  width: 51rem;
}
.p-404__title {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 500;
}
.p-404 .c-button-angle {
  margin-top: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-404 .c-button-angle {
    margin-top: 3rem;
  }
}

.p-mihon__remarks-title {
  background-color: var(--main-color);
  padding: 0.5rem;
  position: relative;
  margin-bottom: 0;
}
.p-mihon__remarks-title::after {
  content: "";
  display: block;
  border: solid transparent 0.8rem;
  border-left-color: var(--main-color);
  border-top-color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.p-mihon__remarks-title > .in-inner {
  background: linear-gradient(to right, var(--accent-blue), transparent);
  padding: 0.5rem 1.5rem;
  color: white;
  font-size: 2.6rem;
  font-weight: bold;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-mihon__remarks-title > .in-inner {
    font-size: 2.2rem;
  }
}
.p-mihon__remarks-content {
  border: solid 0.5rem var(--main-color);
  border-top: none;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__remarks-content {
    padding: 1.5rem;
  }
}
.p-mihon__num-title {
  display: flex;
  align-items: center;
  border: solid 0.2rem var(--main-color);
  padding: 0.8rem 1.6rem;
  position: relative;
  color: var(--main-color);
  gap: 1.6rem;
  margin-block: 3rem 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__num-title {
    margin-block: 2rem 1rem;
  }
}
.p-mihon__num-title:first-of-type {
  margin-top: 0;
}
.p-mihon__num-title::before {
  content: "";
  display: block;
  border: solid 1rem transparent;
  border-top-color: white;
  border-left-color: white;
  position: absolute;
  top: -0.2rem;
  left: -0.2rem;
}
.p-mihon__num-title::after {
  content: "";
  display: block;
  border: solid 0.8rem transparent;
  border-top-color: var(--main-color);
  border-left-color: var(--main-color);
  position: absolute;
  top: -0.2rem;
  left: -0.2rem;
}
.p-mihon__num-title > .in-num {
  display: flex;
  align-items: center;
  width: 3.1rem;
  font-size: 1.6rem;
  font-weight: bold;
  border-right: solid 1px var(--main-color);
  flex-shrink: 0;
}
.p-mihon__num-title > .in-text {
  flex: auto;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-mihon__thumb-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__thumb-wrap {
    gap: 1rem;
    margin-top: 2rem;
  }
}
.p-mihon__result-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__result-list {
    gap: 2rem;
  }
}
.p-mihon__result-item {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__result-item {
    flex-direction: column;
    gap: 0.3rem;
  }
}
.p-mihon__result-item--column {
  flex-direction: column;
}
.p-mihon__result-item--column .p-mihon__result-title {
  width: 100%;
}
.p-mihon__result-item--column .p-mihon__result-data {
  width: 100%;
}
.p-mihon__result-title {
  width: 13.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-mihon__result-title {
    width: 100%;
  }
}
.p-mihon__result-title--large {
  width: 24rem;
}
.p-mihon__result-data {
  flex: auto;
  font-size: 1.6rem;
  padding-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__result-data {
    width: 100%;
    font-size: 1.4rem;
  }
}
.p-mihon__feedback-img {
  width: 31rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__feedback-img {
    width: 26rem;
    margin-top: -1rem;
  }
}
.p-mihon__result-img {
  width: 71.2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__result-img {
    width: 35rem;
  }
}
.p-mihon__support-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-block: 3rem;
  gap: 5.2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__support-item {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-mihon__benefit-title {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__benefit-title {
    gap: 0.5rem;
  }
}
.p-mihon__benefit-title > .in-icon {
  width: 4.2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__benefit-title > .in-icon {
    width: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-mihon__benefit-title > .in-text {
    font-size: 1.6rem;
  }
}
.p-mihon__label {
  padding: 0.5rem 1.2rem;
  background-color: var(--accent-blue);
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-mihon__label {
    font-size: 1.2rem;
    padding: 0.2rem 0.5rem;
  }
}
.p-mihon__coach {
  display: flex;
  gap: 1.7rem;
  align-items: flex-start;
  width: 38.8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-mihon__coach {
    width: 100%;
  }
}
.p-mihon__coach-thumb {
  width: 13.2rem;
  flex-shrink: 0;
}
.p-mihon__coach-desc p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__coach-desc p {
    font-size: 1.4rem;
  }
}
.p-mihon__coach-label {
  padding: 0.1rem 0.5rem;
  background-color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  display: inline-block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__coach-label {
    font-size: 1.4rem;
  }
}
.p-mihon__coach-furigana {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.p-mihon__coach-name {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 0.7rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__coach-name {
    font-size: 2.4rem;
  }
}
.p-mihon__coach-name > ruby > rt {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0.2rem;
}
.p-mihon__coach-name > .in-unit {
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-mihon__coach-name > .in-unit {
    font-size: 1.6rem;
  }
}
.p-mihon__meetup {
  width: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__meetup {
    width: 100%;
    text-align: center;
  }
  .p-mihon__meetup img {
    width: 30rem;
  }
}
.p-mihon__meetup > .in-caption {
  font-size: 1.4rem;
}
.p-mihon__medal {
  width: 22.8rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__medal {
    width: 100%;
    text-align: center;
  }
  .p-mihon__medal img {
    width: 22rem;
  }
}
.p-mihon__attraction-content {
  display: flex;
  align-items: flex-start;
  gap: 3.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__attraction-content {
    flex-direction: column;
  }
}
.p-mihon__attraction-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 1rem;
  flex: auto;
}
@media screen and (max-width: 768px) {
  .p-mihon__attraction-labels {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
  }
}
.p-mihon__attraction-labels .c-label:last-of-type {
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  .p-mihon__attraction-labels .c-label:last-of-type {
    grid-column: span 2;
    text-align: center;
  }
}
.p-mihon__attraction-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 49rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-mihon__attraction-thumbs {
    width: 100%;
  }
}
.p-mihon__attraction-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.p-mihon__attraction-thumb > .in-caption {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__attraction-thumb > .in-caption {
    font-size: 1rem;
  }
}
.p-mihon__category-labels {
  width: 100%;
  max-width: 97.5em;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem 0.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__category-labels {
    gap: 0.8rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-mihon__public-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__public-list {
    gap: 2rem;
  }
}
.p-mihon__public-item {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .p-mihon__public-item {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-mihon__public-title {
  width: 15rem;
}
.p-mihon__public-ul-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.p-mihon__public-ul-item {
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-mihon__public-ul-item {
    font-size: 1.4rem;
  }
}
.p-mihon__public-ul-item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-mihon__user-voice {
  width: 51.8rem;
}
.p-mihon__exhibitor-voice {
  width: 57.5rem;
}
.p-mihon .c-blockeditor-content .c-heading-garadient {
  margin-block: 5rem 2.4rem;
}

.p-application-for-exhibition__date {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin-block: 1.6rem;
}
.p-application-for-exhibition__date p {
  font-weight: bold;
}
.p-application-for-exhibition__date p > .in-orange {
  color: var(--accent-orange);
  font-size: 2rem;
}
.p-application-for-exhibition__spec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .p-application-for-exhibition__spec {
    flex-direction: column;
  }
}
.p-application-for-exhibition__spec .p-application-for-exhibition__label {
  flex-shrink: 0;
}
.p-application-for-exhibition__spec-list {
  display: grid;
  grid-template-columns: 28.3rem 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-application-for-exhibition__spec-list {
    grid-template-columns: 1fr;
  }
}
.p-application-for-exhibition__label {
  padding: 0.5rem 1.2rem;
  background-color: var(--accent-blue);
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-application-for-exhibition__label {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}
.p-application-for-exhibition__price-attention {
  font-size: 2rem;
  font-weight: bold;
}
.p-application-for-exhibition__price-attention > .in-accent {
  color: var(--accent-blue);
}
@media screen and (max-width: 768px) {
  .p-application-for-exhibition__schedule {
    overflow-x: scroll;
    max-width: 100%;
  }
  .p-application-for-exhibition__schedule img {
    width: 230%;
    max-width: 230%;
  }
}
.p-application-for-exhibition .c-blockeditor-content .c-ul-note {
  margin-block: 1.5rem;
}
.p-application-for-exhibition .c-blockeditor-content .c-button-angle {
  margin-top: 3rem;
  margin-inline: auto;
}
.p-application-for-exhibition .c-blockeditor-content .c-heading-garadient {
  margin-block: 5rem 3rem;
}
.p-application-for-exhibition .c-blockeditor-content .c-ul-dot {
  margin-block: 1.5rem;
}/*# sourceMappingURL=styles.css.map */