@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  min-inline-size: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

:root {
  --main: #333333;
  --darkgrey: #7A7A7A;
  --red: #A80B0B;
  --blue: #003E76;
  --blue2: #00579B;
  --blue3: #F2F3F5;
  --green: #009347;
  --border: #DFE4ED;
  --grey: #D0D0D0;
  --lightblue: #8BADCB;
  --font-family-sans: "Noto Sans JP", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --font-family-en: "Cinzel", serif;
  --headerHeight: 3.125rem;
  --opacity: .8;
  --transition-opacity: opacity .3s ease-out;
  --inner-space: 15px;
  --font-size-h1: 1.75rem;
  --font-size-h2-lg: 1.25rem;
  --font-size-h2: 1.25rem;
  --font-size-h3: 1.125rem;
  --font-size-h4: 1rem;
  --font-size-h5: 0.9375rem;
  --font-size--xxl: 1.5rem;
}
@media screen and (min-width: 768px) {
  :root {
    --inner-space: 50px;
    --font-size-h1: 2.25rem;
    --font-size-h2-lg: 1.75rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --font-size-h4: 1.125rem;
    --font-size-h5: 1rem;
    --font-size--xxl: 1.625rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 1.5625%;
  }
}

body {
  font-family: var(--font-family-sans);
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--main);
  background-color: #fff !important;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

hr {
  border-color: #DFE4ED !important;
}

button, input, textarea {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --headerHeight: 6.25rem;
  }
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}
.l-header__ttl {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

.l-header__ttl-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--main);
  transition: var(--transition-opacity);
}
@media screen and (min-width: 1024px) {
  .l-header__ttl-link:hover {
    opacity: var(--opacity);
  }
}

.l-header__logo {
  width: 0.9375rem;
  height: 1.4375rem;
  display: block;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 1.6875rem;
    height: 2.75rem;
    margin-right: 10px;
  }
}
.l-header__ttl-h1 {
  display: none;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .l-header__ttl-h1 {
    display: block;
  }
}

.l-header__ttl-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.l-header__ttl-sub {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .l-header__ttl-sub {
    display: none;
  }
}

.l-header {
  z-index: 999;
  width: 100%;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

.l-header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: 15px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__inner {
    padding-right: 15px;
  }
}

.l-header__ttl-main {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .l-header__ttl-main {
    font-size: 1.5rem;
  }
}
.l-header__block {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.l-header__head {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.l-header__head-ul {
  display: flex;
  gap: 40px;
}

.l-header__head-li {
  position: relative;
  padding-left: 1.1em;
  font-size: 0.8125rem;
  line-height: 1;
}
.l-header__head-li a {
  color: var(--main);
  opacity: 0.8;
}
.l-header__head-li a:hover {
  cursor: pointer;
}
.l-header__head-li::before {
  content: "";
  border-top: 1px solid var(--main);
  border-right: 1px solid var(--main);
  position: absolute;
  top: 0.40625rem;
  left: 0;
  transform: translateY(-20%) rotate(45deg);
  width: 0.35em;
  aspect-ratio: 1;
  display: block;
}

.l-header__head-tel {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.l-header__head-tel:hover {
  opacity: 0.8;
}
.l-header__head-tel img {
  vertical-align: middle;
}
.l-header__head-tel span {
  font-size: 1.875rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  color: var(--main);
  transition: var(--transition-opacity);
  cursor: pointer;
  line-height: 1;
}
.l-header__head-tel span:hover {
  opacity: var(--opacity);
}

.l-header__menus {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__menus {
    display: block;
    background-color: var(--blue);
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    width: 100%;
    height: 60px;
  }
}

.l-header__pc-items {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  font-size: min(1.0714285714vw, 0.9375rem);
  line-height: 1;
  gap: 2.5rem;
  width: min(100%, 1100px);
  height: inherit;
  margin-inline: auto;
}
.l-header__pc-items > li {
  height: inherit;
}

.l-header__pc-items a {
  padding: 0.5rem 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: inherit;
}

.l-header__pc-item {
  position: relative;
}

.l-header__pc-item::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.5s;
}

@media screen and (min-width: 1024px) {
  .l-header__pc-item:hover {
    cursor: pointer;
  }
}
.l-header__pc-item:hover::after {
  transform: scale(1, 1);
  transform-origin: left center;
  transition: transform 0.5s;
}

.l-header__tel-sp {
  width: var(--headerHeight);
  aspect-ratio: 1;
  height: auto;
  background-color: #3D86BF;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1200px) {
  .l-header__tel-sp {
    display: none;
  }
}
.l-header__faq {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__faq {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-left: 25px;
    min-width: 9.375rem;
    height: 50px;
    background-color: var(--border);
    border-radius: 50px;
    transition: opacity 0.3s ease-out;
    font-size: 0.875rem;
    color: var(--blue);
  }
}
.l-header__faq:hover {
  opacity: 0.8;
}
.l-header__faq img {
  display: block;
  width: 9.3333333333%;
  height: auto;
}

.l-header__contact {
  width: var(--headerHeight);
  aspect-ratio: 1;
  height: auto;
  background-color: var(--blue2);
  color: #fff;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .l-header__contact {
    margin-left: 15px;
    min-width: 9.375rem;
    height: 50px;
    background-color: var(--red);
    border-radius: 50px;
    transition: opacity 0.3s ease-out;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__contact:hover {
    opacity: 0.8;
  }
}
.l-header__contact span {
  display: none;
}
@media screen and (min-width: 1200px) {
  .l-header__contact span {
    display: block;
  }
}

.l-header__contact picture {
  width: 36%;
}
@media screen and (min-width: 1200px) {
  .l-header__contact picture {
    width: 9.3333333333%;
  }
}
.l-header__contact picture img {
  width: 100%;
  height: auto;
  display: block;
}

.l-header__button {
  background-color: #003E76;
  width: var(--headerHeight);
  aspect-ratio: 1;
  border: none;
  display: block;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button span {
  display: block;
  width: 35%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-header__button span:nth-child(1) {
  translate: -50% calc(-50% - 0.3125rem);
}

@media screen and (min-width: 768px) {
  .l-header__button span:nth-child(1) {
    translate: -50% calc(-50% - 0.625rem);
  }
}
.l-header__button span:nth-child(2) {
  translate: -50% -50%;
}

.l-header__button span:nth-child(3) {
  translate: -50% calc(-50% + 0.3125rem);
}

@media screen and (min-width: 768px) {
  .l-header__button span:nth-child(3) {
    translate: -50% calc(-50% + 0.625rem);
  }
}
.l-header__button.is-active span:nth-child(1) {
  translate: -50% -50%;
  rotate: 45deg;
}

.l-header__button.is-active span:nth-child(2) {
  translate: -50% -50%;
  opacity: 0;
}

.l-header__button.is-active span:nth-child(3) {
  translate: -50% -50%;
  rotate: -45deg;
}

/*
spナビ
*/
.l-header__sp-block.is-active {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.l-header__sp-block {
  opacity: 0;
  visibility: hidden;
  translate: 100% 0;
  transition: all 0.3s ease-out;
  padding: 1.25rem 2.5rem 6.25rem;
  background-color: var(--blue);
  position: fixed;
  top: var(--headerHeight);
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) {
  .l-header__sp-block {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__sp-block {
    overflow-y: visible;
    display: none;
  }
}
.l-header__sp-items > li a {
  display: block;
  padding: 1.25rem 0;
  color: #fff;
  position: relative;
}

.l-header__sp-items > li {
  border-bottom: 1px solid #fff;
}

.l-header__sp-items > li:has(.sub-menu) {
  padding-bottom: 15px;
}

.l-header__sp-items > li > a::before {
  content: "";
  width: 0.375rem;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: 0 -50%;
}

.l-header__sp-items ul a {
  padding: 0.625rem 0;
  text-indent: 2em;
  display: block;
  color: #fff;
  position: relative;
}

/*
問い合わせ
*/
.l-header__sp-links {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

.l-header__sp-links a {
  background-color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

.l-header__sp-mail {
  color: #003E76;
}

.l-header__sp-mail span {
  margin-top: 0.5rem;
  display: block;
}

.l-header__sp-line {
  color: #06C755;
}

.l-header__sp-tel {
  margin-top: 1.875rem;
  display: block;
  color: #fff;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  font-size: 2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__sp-tel span {
  display: block;
  margin-left: 0.5rem;
}

/*
pcメニュー
*/
.l-header__pc-items > li:has(.sub-menu):hover ul {
  opacity: 1;
  visibility: visible;
}

.l-header__pc-items > li:has(.sub-menu) {
  position: relative;
}
.l-header__pc-items > li:has(.sub-menu) ul {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-opacity);
  position: absolute;
  top: 100%;
  left: 0;
}
.l-header__pc-items > li:has(.sub-menu) ul a {
  background-color: #135895;
  background: linear-gradient(to bottom, transparent 0%, transparent 2px, #135895 2.1px, #135895 100%);
  color: #fff;
  padding: 20px 0;
  min-width: 200px;
  display: block;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-header__pc-items > li:has(.sub-menu) ul a {
    transition: var(--transition-opacity);
  }
}
@media screen and (min-width: 1024px) {
  .l-header__pc-items > li:has(.sub-menu) ul a:hover {
    opacity: var(--opacity);
  }
}

.l-footer {
  padding: 3.125rem 0 7.5rem;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 5.3125rem 0 7.5rem;
  }
}
.l-footer__info {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-footer__info {
    text-align: left;
  }
}
.l-footer__logo {
  display: block;
  width: min(100%, 12.5rem);
  height: auto;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: min(100%, 14.9375rem);
    margin-inline: 0;
  }
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer__container {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .l-footer__container {
    grid-template-columns: fit-content(100%) fit-content(100%);
    justify-content: space-between;
  }
}
.l-footer__name {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .l-footer__name {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
  }
}
.l-footer__address p {
  font-style: normal;
}

.l-footer__ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.l-footer__contents {
  display: none;
}

@media screen and (min-width: 768px) {
  .l-footer__contents {
    display: block;
  }
}
.l-footer__menus {
  display: none;
}

@media screen and (min-width: 768px) {
  .l-footer__menus {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.l-footer__items {
  font-size: 0.8125rem;
  line-height: 2.5;
}

.l-footer__items a {
  display: block;
  text-transform: uppercase;
  color: var(--main);
}

.l-footer__copy {
  margin-top: 3.125rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: none;
}

@media screen and (min-width: 768px) {
  .l-footer__copy {
    display: block;
  }
}
.l-footer__links {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.l-footer__links.is-active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  z-index: 999;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .l-footer__links.is-active {
    display: none;
  }
}
.l-footer__link,
.l-footer__pc-link {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-opacity);
}

@media screen and (min-width: 1024px) {
  .l-footer__link:hover,
  .l-footer__pc-link:hover {
    opacity: 0.8;
    cursor: pointer;
  }
}
.l-footer__link span,
.l-footer__pc-link span {
  display: block;
  margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .l-footer__link span,
  .l-footer__pc-link span {
    margin-left: 0.75rem;
  }
}
.l-footer__link--mail {
  background-color: var(--blue);
}

.l-footer__link--line {
  background-color: #06C755;
}

.l-footer__ctr.is-active {
  opacity: 1;
  visibility: visible;
}

.l-footer__ctr {
  z-index: 999;
  width: 15.625rem;
  padding: 1.875rem 1.25rem;
  background-color: #fff;
  position: fixed;
  bottom: 1.25rem;
  right: 0.9375rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out;
  display: none;
}

@media screen and (min-width: 768px) {
  .l-footer__ctr {
    display: block;
  }
}
.p-footer__ctr-ttl {
  font-size: 1.125rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-color: #A80B0B;
  color: #fff;
  border-radius: 1.875rem;
  width: min(100%, 10.25rem);
  padding: 0.4375rem 0;
  text-align: center;
  margin-inline: auto;
}

.p-footer__ctr-para {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}

.p-footer__ctr-tel {
  margin-top: 1.125rem;
  display: flex;
  align-items: center;
}

.p-footer__ctr-tel a {
  color: #A80B0B;
  font-size: 1.5625rem;
  letter-spacing: 0.05em;
  font-family: var(--font-family-en);
  font-weight: 400;
  line-height: 1;
  margin-left: 0.4375rem;
  transition: filter 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .p-footer__ctr-tel a:hover {
    cursor: pointer;
    filter: brightness(0.8);
  }
}
.l-footer__pc-links {
  margin-top: 0.9375rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.l-footer__button {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  border: none;
  background-color: transparent;
  width: 1.25rem;
  aspect-ratio: 1;
  padding: 0;
}

.l-footer__button span {
  width: 100%;
  height: 1px;
  background-color: #D0CECE;
  display: block;
}

.l-footer__button span:nth-child(1) {
  rotate: 45deg;
}

.l-footer__button span:nth-child(2) {
  rotate: -45deg;
}

@media screen and (min-width: 1024px) {
  .l-footer__button:hover {
    cursor: pointer;
  }
}
.l-section {
  position: relative;
}

.l-section__inner {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding: 0 0.9375rem;
}

@media screen and (min-width: 768px) {
  .l-section__inner {
    padding: 0 3.125rem;
  }
}
.l-section--line::before {
  content: "";
  width: 1px;
  height: 3.125rem;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}

@media screen and (min-width: 768px) {
  .l-section--line::before {
    height: 5rem;
  }
}
.l-section__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
}

.l-container {
  margin-inline: auto;
  width: min(100% - var(--inner-space) * 2, 1100px);
}

.p-top {
  margin-top: var(--headerHeight);
}
@media screen and (min-width: 1024px) {
  .p-top {
    margin-top: calc(var(--headerHeight) + 60px);
  }
}

.p-breadcrumb {
  margin-top: var(--headerHeight);
}
@media screen and (min-width: 1024px) {
  .p-breadcrumb {
    margin-top: calc(var(--headerHeight) + 60px);
  }
}

.c-heading-h1 {
  font-size: var(--font-size-h1);
  font-family: var(--font-family-serif);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.c-button {
  --_width: 18.75rem;
  --_height: 4.375rem;
  --_color: #fff;
  --_bgColor: #003E76;
  --_border: transparent;
  border: 1px solid var(--_border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--_color);
  background-color: var(--_bgColor);
  width: min(100%, var(--_width));
  height: var(--_height);
  position: relative;
  transition: all 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .c-button {
    --_width: 22.5rem;
  }
}
.c-button.p-single__page-button {
  --width: 100%;
  --_height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-button.p-single__page-button {
    --_height: 4.375rem;
  }
}

.c-button::after {
  content: "";
  width: 0.375rem;
  aspect-ratio: 1;
  display: block;
  border-top: 1px solid var(--_color);
  border-right: 1px solid var(--_color);
  rotate: 45deg;
  position: absolute;
  top: 50%;
  right: 12.5%;
  translate: 0 -50%;
}

@media screen and (min-width: 1024px) {
  .c-button:hover {
    cursor: pointer;
    --_color: #003E76;
    --_bgColor: #fff;
    --_border: #003E76;
  }
}
.c-button--white {
  --_color: var(--blue2);
  --_bgColor: #fff;
  --_border: var(--blue2);
}

@media screen and (min-width: 1024px) {
  .c-button--white:hover {
    cursor: pointer;
    --_color: #fff;
    --_bgColor: #003E76;
    --_border: transparent;
  }
}
.c-button-more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-family: var(--font-family-en);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--blue2);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--blue2);
}

.c-link {
  margin-inline: auto;
  width: min(100%, 220px);
  height: 40px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  border: 1px solid var(--blue);
  border-radius: 50px;
  transition: background-color 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-link {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-link:hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }
}
.c-title-h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--font-family-en);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-title-h2 {
    text-align: left;
    font-size: 2.5rem;
  }
}
.c-title-group {
  text-align: center;
}

.c-title-group__en {
  text-transform: uppercase;
  font-family: var(--font-family-en);
  color: var(--blue);
  line-height: 1.5;
  font-size: 1.5rem;
}

.c-title-group__ja {
  margin-top: 0.25rem;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: var(--font-family-serif);
}

@media screen and (min-width: 768px) {
  .c-title-group__ja {
    font-size: 2.5rem;
  }
}
.c-title-group__ja span {
  font-size: 0.75em;
}

.c-article {
  border-bottom: 1px solid var(--border);
}
.c-article:first-child {
  border-top: 1px solid var(--border);
}

.c-article a {
  color: var(--main);
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .c-article a {
    gap: 3.125rem;
    padding: 1.875rem 0;
    grid-template-columns: fit-content(100%) 1fr;
  }
}

.c-article__time {
  display: block;
  font-family: var(--font-family-en);
  max-width: 5rem;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  line-height: 2rem;
}

.c-lists {
  margin-top: 50px;
  margin-bottom: 50px;
}

.c-list {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-bottom: 1px solid #D0D0D0;
}
@media screen and (min-width: 768px) {
  .c-list {
    padding: 20px 0;
    grid-template-columns: 150px 1fr;
    gap: 30px;
  }
}

.c-pagenation {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-pagenation {
    margin-top: 100px;
  }
}
.c-pagenation .wp-pagenavi {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-pagenation .wp-pagenavi {
    gap: 18px;
  }
}
.c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-block;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-family: var(--font-family-en);
  line-height: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .c-pagenation .page, .c-pagenation .current, .c-pagenation .last, .c-pagenation .first {
    font-size: 0.9375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-pagenation .page:hover, .c-pagenation .current:hover, .c-pagenation .last:hover, .c-pagenation .first:hover {
    cursor: pointer;
    filter: opacity(0.8);
  }
}
.c-pagenation .extend, .c-pagenation .first {
  align-self: center;
}
.c-pagenation .current {
  color: #fff;
  background-color: var(--main);
}
.c-pagenation .page, .c-pagenation .last, .c-pagenation .first {
  color: var(--black2);
  background-color: #fff;
  border: 1px solid var(--main);
}

.previouspostslink,
.nextpostslink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .previouspostslink,
  .nextpostslink {
    width: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .previouspostslink:hover,
  .nextpostslink:hover {
    cursor: pointer;
    filter: opacity(0.8);
  }
}
.previouspostslink span,
.nextpostslink span {
  width: 0.6em;
  aspect-ratio: 1;
  display: inline-block;
  border-top: 1px solid var(--main);
  border-right: 1px solid var(--main);
}

.previouspostslink span {
  rotate: 225deg;
}

.nextpostslink span {
  rotate: 45deg;
}

.c-related {
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  border: 1px solid var(--blue);
}
.c-related a {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 120px 1fr;
  align-items: center;
  gap: 15px;
  padding: 30px 20px 18px;
  color: var(--main);
  transition: opacity 0.3s;
}
@media screen and (min-width: 600px) {
  .c-related a {
    grid-template-columns: 100px 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-related a {
    grid-template-columns: 120px 1fr;
    grid-template-rows: 1fr;
    padding: 20px 25px;
    gap: 40px;
  }
}
.c-related a::after {
  --background-color: var(--blue);
  padding: 0.375em 0.8125em;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--background-color);
  color: #fff;
  content: "関連記事";
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-family-serif);
  transition: background-color 0.3s;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-related a::after {
    padding: 0.875em 1.25em;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-related a:hover {
    opacity: 0.7;
  }
}

.c-related__figure {
  aspect-ratio: 1;
  height: 100%;
  margin-inline: auto;
}
.c-related__figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-related__title {
  margin-bottom: 8px !important;
  font-size: var(--font-size-h4);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .c-related__title {
    margin-bottom: 13px !important;
  }
}

.c-related__list {
  display: flex;
  gap: 35px;
}
.c-related__list p {
  margin-bottom: 0 !important;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-related__list p {
    font-size: 0.9375rem;
  }
}

.c-related__date {
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
}

.p-top__fv-body {
  position: relative;
  padding-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-body {
    padding-top: 8.75rem;
  }
}
.p-top__fv {
  position: relative;
}

.p-top__fv-bg {
  z-index: -1;
  position: absolute;
  top: auto;
  bottom: -1.25rem;
  left: 0;
  width: 100%;
  height: 16.0625rem;
  aspect-ratio: 375/257;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-top__fv-bg {
    top: 0;
    max-height: 40.78125rem;
    aspect-ratio: 1400/652.5;
    height: calc(100% - 3.125rem);
  }
}
.p-top__fv-ttl {
  position: relative;
  padding-bottom: 12.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-ttl {
    position: static;
    padding-bottom: 0rem;
  }
}
.p-top__fv-h2 {
  margin-top: 0.375rem;
  font-family: var(--font-family-serif);
  text-align: center;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .p-top__fv-h2 {
    margin-top: 0.8125rem;
  }
}
.p-top__fv-deco {
  color: #fff;
  background-color: var(--red);
  border-radius: 1.875rem;
  padding: 0 2.8125rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__fv-deco {
    font-size: 1.5rem;
    height: 3.125rem;
    padding: 0 3.75rem;
  }
}
.p-top__fv-para {
  display: block;
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-top__fv-para {
    font-size: 2.125rem;
  }
}
.p-top__fv-para:not(:first-child) {
  margin-top: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-para:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.p-top__fv-items {
  list-style: none;
  width: min(100%, 51.25rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media screen and (min-width: 768px) {
  .p-top__fv-items {
    margin-top: 2.1875rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.p-top__fv-sp {
  width: 100%;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-top__fv-sp {
    display: contents;
  }
}
.p-top__fv-item.p-top__fv-item--center {
  margin-inline: auto;
}

.p-top__fv-item:not(:first-child) {
  margin-left: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-item:not(:first-child) {
    margin-left: 0rem;
  }
}
.p-top__fv-item {
  background-color: rgb(175, 114, 24);
  opacity: 0.9;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  width: min(100%, 8.75rem);
  aspect-ratio: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-top__fv-item {
    width: min(100%, 15rem);
  }
}
.p-top__fv-item > *:not(:first-child) {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-item > *:not(:first-child) {
    margin-top: 1.25rem;
  }
}
.p-top__fv-item::before {
  content: "";
  width: 113.3333333333%;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 50%;
}

.p-top__fv-h3 {
  font-size: 1.125rem;
  font-family: var(--font-family-serif);
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .p-top__fv-h3 {
    font-size: 2rem;
  }
}
.p-top__fv-h3.p-top__fv-h3--small {
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-top__fv-h3.p-top__fv-h3--small {
    font-size: 1.5rem;
  }
}
.p-top__fv-p {
  font-size: 0.75rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-top__fv-p {
    font-size: 1rem;
  }
}
.p-top__fv-p.p-top__fv-p--number {
  margin-top: 0.125rem;
  font-size: 1.875rem;
  font-family: var(--font-family-serif);
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-top__fv-p.p-top__fv-p--number {
    font-size: 3.75rem;
  }
}
.p-top__fv-p.p-top__fv-p--number span {
  font-size: 0.6666666667em;
}

.p-top__fv-block {
  background-color: aliceblue;
}

.p-top__strength {
  position: relative;
  padding: 2.5rem 0 5.3125rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-top__strength {
    padding: 2.5rem 0 5.3125rem;
  }
}
.p-top__strength-bg {
  z-index: -2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 375/628;
}

@media screen and (min-width: 768px) {
  .p-top__strength-bg {
    height: auto;
    aspect-ratio: 1400/596;
    min-height: 31.25rem;
    max-height: 37.5rem;
  }
}
.p-top__strength-h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-family-serif);
}

@media screen and (min-width: 768px) {
  .p-top__strength-h2 {
    font-size: 2.5rem;
  }
}
.p-top__strength-para {
  margin-top: 1.5625rem;
  text-align: left;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-top__strength-para {
    text-align: center;
    font-size: 1.125rem;
  }
}
.p-top__feature {
  position: relative;
  padding: 4.375rem 0 0;
}

@media screen and (min-width: 768px) {
  .p-top__feature {
    padding: 12.5rem 0 0;
  }
}
.p-top__feature::before {
  content: "feature";
  position: absolute;
  top: -0.625rem;
  left: 50%;
  translate: -50% 0;
  font-size: 4.875rem;
  font-family: var(--font-family-en);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #F7F9FD;
  z-index: -3;
}

@media screen and (min-width: 768px) {
  .p-top__feature::before {
    top: -3.125rem;
    font-size: 20vw;
  }
}
.p-top__feature-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
}

.p-top__feature-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "text";
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-top__feature-item {
    gap: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top__feature-item:nth-child(odd) {
    grid-template-areas: "image text";
    grid-template-columns: 45.4545454545% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-top__feature-item:nth-child(even) {
    grid-template-areas: "text image";
    grid-template-columns: 1fr 45.4545454545%;
  }
}
.p-top__featrue-text {
  grid-area: text;
}

.p-top__featrue-text > *:not(:first-child) {
  margin-top: 1.25rem;
}

.p-top__feature-image {
  grid-area: image;
}

.p-top__feature-image img {
  display: block;
  width: min(100%, 31.25rem);
  height: auto;
  margin-inline: auto;
}

.p-top__feature-deco {
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-family-en);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--lightblue);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__feature-deco {
    margin-inline: 0;
    font-size: 1.5rem;
  }
}
.p-top__feature-deco::after {
  content: attr(data-number);
  font-size: 2.5rem;
  font-family: var(--font-family-en);
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__feature-deco::after {
    font-size: 5rem;
  }
}
.p-top__feature-h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--font-family-serif);
  font-weight: 500;
  color: var(--blue);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-top__feature-h2 {
    font-size: 1.875rem;
    text-align: left;
  }
}
.p-top__feature__button {
  margin-top: 3.125rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__feature__button {
    margin-top: 6.25rem;
  }
}
.p-top__banner {
  --gap: 10px;
  --column: repeat(1, 1fr);
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: var(--column);
  gap: var(--gap);
  margin-inline: auto;
  width: min(100% - var(--inner-space) * 2, 1100px);
}

.p-top__banner-item {
  display: block;
  width: min(100%, 340px);
  margin-inline: auto;
  box-shadow: 0 0.25rem 2.5rem rgba(0, 0, 0, 0.1);
  transition: filter 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .p-top__banner-item:hover {
    filter: opacity(0.8);
  }
}

.p-top__banner-item img {
  display: block;
  width: 100%;
  aspect-ratio: 340/180;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-top__banner {
    --gap: 40px;
    --column: repeat(3, 1fr);
    margin-top: 6.25rem;
  }
}
/*
case
*/
.p-top__case {
  margin-top: 3.75rem;
  padding: 4.375rem 0 6.25rem;
  position: relative;
}

.p-top__case-bg {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-top__case-para {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-family: var(--font-family-serif);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-top__case-para {
    margin-top: 3.75rem;
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.p-top__case-swiper {
  margin-top: 1.875rem;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-top__case {
    margin-top: 7.5rem;
  }
  .p-top__case-swiper {
    padding-bottom: 0rem;
    margin-top: 6.25rem;
  }
}
.swiper-wrapper {
  counter-reset: case-counter;
}

.swiper-slide {
  height: auto;
}
.swiper-slide > div {
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}

.p-top__case-head {
  background-color: #003E76;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875rem;
  height: 3.75rem;
  font-weight: 500;
  font-family: var(--font-family-serif);
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top__case-head {
    height: 5rem;
    padding: 0 3.875rem 0 3.25rem;
  }
}

.p-top__case-head h3 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-top__case-head h3 {
    font-size: 1.875rem;
    font-weight: 500;
  }
}
.p-top__case-head h3::after {
  margin-left: 0.3em;
  counter-increment: case-counter;
  content: "0" counter(case-counter);
}

.p-top__case-main {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__case-main {
    padding: 3.4375rem 4.375rem;
    grid-template-columns: 1fr 34%;
  }
}

.p-top__case-txt > *:not(:first-child) {
  margin-top: 1.25rem;
}

.p-top__case-txt p {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-top__case-txt p {
    line-height: 2;
  }
}

.p-top__case-ttl h4 {
  color: var(--blue);
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top__case-ttl h4 {
    font-size: 1.5rem;
  }
}

.p-top__case-list {
  display: flex;
  gap: 10px;
}
.p-top__case-list li a {
  border-radius: 40px;
  display: block;
  color: var(--color);
  background-color: var(--backgroundcolor);
  border: 1px solid var(--border);
  color: var(--color);
  padding: 0 1.3076923077em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-top__case-list li a:hover {
    opacity: 0.8;
  }
}
.p-top__case-list-parts {
  --backgroundcolor: var(--blue);
  --color: #fff;
  --border: var(--blue);
}
.p-top__case-list-symptoms {
  --backgroundcolor: #fff;
  --color: var(--green);
  --border: var(--green);
}

.p-top__case-ttl p {
  margin-top: 0.625rem;
}

.p-top__case-button {
  margin-top: 1.875rem;
  margin-inline: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-top__case-button {
    margin-top: 5rem;
  }
}
.p-top__case-figure {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-top__case-figure {
    display: block;
  }
}
.p-top__case-figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1;
}

.p-top__case-swiper {
  position: relative;
  bottom: 0;
}

.swiper__pagination {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .swiper__pagination {
    display: none;
  }
}
.swiper__pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.swiper__pagination .swiper-pagination-bullet-active {
  background-color: var(--blue);
}

.swiper__next, .swiper__prev {
  display: none;
  position: relative;
  transition: var(--transition-opacity);
}

.swiper__next::before, .swiper__prev::before {
  content: "";
  width: 0.75rem;
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (min-width: 1024px) {
  .swiper__next:hover, .swiper__prev:hover {
    cursor: pointer;
    opacity: var(--opacity);
  }
}
@media screen and (min-width: 768px) {
  .swiper__next, .swiper__prev {
    z-index: 2;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    display: block;
    width: 4.375rem;
    aspect-ratio: 1;
    background-color: rgba(0, 62, 118, 0.5);
  }
}
.swiper__prev::before {
  rotate: -135deg;
  translate: -30% -50%;
}

@media screen and (min-width: 768px) {
  .swiper__prev {
    left: 0;
    translate: -55% -50%;
  }
}
.swiper__next::before {
  rotate: 45deg;
  translate: -70% -50%;
}

@media screen and (min-width: 768px) {
  .swiper__next {
    right: 0;
    translate: 55% -50%;
  }
}
.p-top__price {
  margin-top: 6.25rem;
}

.p-top__price-para {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-top__price-para {
    margin-top: 3.75rem;
    text-align: center;
  }
}
.p-top__price-items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-top__price-items {
    margin-top: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.p-top__price-image {
  width: min(100%, 9.1875rem);
  aspect-ratio: 1;
  background-color: #AF7218;
  border-radius: 50%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.p-top__price-image img {
  display: block;
  width: auto;
  height: 40.8163265306%;
  margin-inline: auto;
}

.p-top__price-h3 {
  margin-top: 0.9375rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .p-top__price-h3 {
    font-size: 1.875rem;
  }
}
.p-top__price-h3 span {
  font-size: 0.6666666667em;
}

.p-top__price-p {
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-top__price-p {
    margin-top: 1.25rem;
  }
}
.p-top__price-button {
  margin-top: 3.125rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__price-button {
    margin-top: 5rem;
  }
}
.p-top__message {
  margin-top: 3.125rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-top__message {
    margin-top: 6.25rem;
  }
}
.p-top__message-bg {
  z-index: -1;
  position: absolute;
  bottom: 31.5315315315%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: auto;
  aspect-ratio: 373.67/1147;
}

@media screen and (min-width: 768px) {
  .p-top__message-bg {
    bottom: 0;
    aspect-ratio: 1400/1210;
  }
}
.p-top__message-2col {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  grid-template-areas: "image" "text";
}

@media screen and (min-width: 768px) {
  .p-top__message-2col {
    margin-top: 3.75rem;
    grid-template-areas: "image text";
    grid-template-columns: 37.7272727273% 1fr;
    gap: 3.75rem;
  }
}
.p-top__message-figure {
  grid-area: image;
}

.p-top__message-figure img {
  display: block;
  width: min(100%, 25.9375rem);
  margin-inline: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 345/423;
}

@media screen and (min-width: 768px) {
  .p-top__message-figure img {
    aspect-ratio: 415/559;
  }
}
.p-top__message-txt {
  grid-area: text;
}

.p-top__message-h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  font-family: var(--font-family-serif);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-top__message-h3 {
    font-size: 1.875rem;
    text-align: left;
  }
}
.p-top__message-para {
  margin-top: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-top__message-para {
    margin-top: 1.875rem;
  }
}
.p-top__message-para * > :not(:first-child) {
  margin-top: 1em;
}

.p-top__message-right {
  text-align: right;
}

.p-top__message-gallarys {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-top__message-gallarys {
    margin-top: 4.0625rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.p-top__message-gallarys figure img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: min(100%, 25rem);
  aspect-ratio: 344.84/247.8;
  margin-inline: auto;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-top__message-gallarys figure img {
    aspect-ratio: 1;
  }
}
.p-top__voice {
  background-color: #DFE4ED;
  margin-top: 3.75rem;
  padding: 4.0625rem 0;
}

@media screen and (min-width: 768px) {
  .p-top__voice {
    margin-top: 6.25rem;
    padding: 6.25rem 0;
  }
}
.p-top__voice-items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-top__voice-items {
    margin-top: 3.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.p-top__voice-item {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-top__voice-item {
    padding: 3.125rem 2.5rem;
  }
}
.p-top__voice-item > :not(:first-child) {
  margin-top: 1.25rem;
}

.p-top__voice-stars {
  display: grid;
  gap: 0.1875rem;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
}

.p-top__voice-stars img {
  display: block;
}

.p-top__voice-h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-top__voice-button {
  margin-top: 2.5rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__voice-button {
    margin-top: 5rem;
  }
}
.p-top__faq {
  padding: 3.125rem 0 10rem;
}

@media screen and (min-width: 768px) {
  .p-top__faq {
    padding: 6.25rem 0 35rem;
  }
}
.p-top__faq-dl {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-top__faq-dl {
    margin-top: 3.75rem;
  }
}
.p-top__faq-item {
  color: var(--blue);
  border: 1px solid #E7E0E0;
  border-radius: 0.375rem;
}

.p-top__faq-dt::before {
  content: "q.";
  top: 2.03125rem;
}

@media screen and (min-width: 768px) {
  .p-top__faq-dt::before {
    top: 2.53125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__faq-dt:hover {
    cursor: pointer;
  }
}
.p-top__faq-dt span {
  width: 0.875rem;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  translate: -50% -50%;
  background-color: var(--blue);
}

.p-top__faq-dt span:nth-child(2) {
  rotate: 90deg;
  transition: rotate 0.3s ease-out;
}

.p-top__faq-dt.is-active span:nth-child(2) {
  rotate: 0deg;
  transition: rotate 0.3s ease-out;
}

.p-top__faq-dt,
.p-top__faq-dd {
  position: relative;
  font-size: 0.9375rem;
  padding: 1.25rem 3.75rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-top__faq-dt,
  .p-top__faq-dd {
    font-size: 1.0625rem;
    padding: 1.875rem 3.75rem;
  }
}
.p-top__faq-dt::before,
.p-top__faq-dd::before {
  text-transform: uppercase;
  font-family: var(--font-family-en);
  position: absolute;
  left: 1.25rem;
  translate: 0 -50%;
}

.p-top__faq-dd {
  display: none;
  padding: 0.9375rem 3.75rem;
}

.p-top__faq-dd::before {
  content: "a.";
  top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-top__faq-dd::before {
    top: 2.0625rem;
  }
}
.p-top__faq-dd.is-active {
  display: block;
}

.p-top__faq-button {
  margin-top: 3.125rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__faq-button {
    margin-top: 5rem;
  }
}
.p-top__faq-bg {
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 380/246;
  height: auto;
  position: absolute;
  bottom: -3.75rem;
  left: 0;
  max-height: 20.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-top__faq-bg {
    max-height: none;
    bottom: 0;
    aspect-ratio: 1400/630;
  }
}
.p-top__news {
  padding: 1.875rem 0 3.125rem;
}

@media screen and (min-width: 768px) {
  .p-top__news {
    padding: 6.25rem 0;
  }
}
.p-top__news-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-top__news-container {
    grid-template-columns: fit-content(100%) 1fr;
    gap: 6.25rem;
  }
}
.p-top__news-head {
  display: contents;
}

@media screen and (min-width: 768px) {
  .p-top__news-head {
    display: block;
  }
}
.p-top__news-button {
  order: 3;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__news-button {
    margin-top: 1.5625rem;
    margin-inline: 0;
  }
}
.p-top__access {
  padding: 3.125rem 0;
  background-color: var(--border);
}

@media screen and (min-width: 768px) {
  .p-top__access {
    padding: 7.1875rem 0;
  }
}
.p-top__access-container {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .p-top__access-container {
    grid-template-columns: 1fr 61.8181818182%;
    gap: 3.75rem;
  }
}
.p-top__access-txt {
  text-align: center;
  display: contents;
}

@media screen and (min-width: 768px) {
  .p-top__access-txt {
    display: block;
    text-align: left;
  }
}
.p-top__access-name {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-family: var(--font-family-serif);
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .p-top__access-name {
    margin-top: 1.875rem;
    font-size: 1.5rem;
  }
}
.p-top__access-address {
  margin-top: 0.625rem;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .p-top__access-address {
    margin-top: 1.875rem;
  }
}
.p-top__access-buttons {
  margin-top: 1.875rem;
  order: 2;
}

.p-top__access-buttons > *:not(:first-child) {
  margin-top: 1.25rem;
}

.p-top__access-map {
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-top__access-map {
    margin-top: 0rem;
  }
}
.p-top__access-map iframe {
  display: block;
  aspect-ratio: 345/206;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-top__access-map iframe {
    aspect-ratio: 680/430;
  }
}
.p-top__access-button.c-button {
  --_height: 3.75rem;
  --_width: 18.75rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__access-button.c-button {
    margin-inline: 0;
  }
}
.p-top__contact {
  padding: 5.3125rem 0 4.0625rem;
}

.p-top__contact-container {
  text-align: center;
}

.p-top__contact-sub {
  background-color: #AF7218;
  padding: 0.625rem 0;
  display: block;
  width: min(100%, 18.75rem);
  margin-inline: auto;
  color: #fff;
  border-radius: 1.5625rem;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-top__contact-sub {
    font-size: 1.25rem;
    width: min(100%, 23.875rem);
  }
}
.p-top__contact-h2 {
  margin-top: 1.875rem;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-family-serif);
  line-height: 1.5;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-top__contact-h2 {
    margin-top: 1.25rem;
    font-size: 2.5rem;
  }
}
.p-top__contact-para {
  margin-top: 1.25rem;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-top__contact-para {
    margin-top: 0.625rem;
  }
}
.p-top__contact-tel {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .p-top__contact-tel {
    margin-top: 1.25rem;
  }
}
.p-top__contact-tel img {
  display: inline-block;
  width: 1.625rem;
  height: 1.625rem;
  aspect-ratio: 1;
  margin-right: 1.0625rem;
}

.p-top__contact-tel a {
  color: #fff;
  font-size: 2.5rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  line-height: 1.5;
  display: block;
  transition: filter 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .p-top__contact-tel a:hover {
    filter: brightness(0.8);
    cursor: pointer;
  }
}
.p-top__contact-buttons {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  width: min(100%, 45.625rem);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-top__contact-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top__contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: min(100%, 18.75rem);
  height: 5rem;
  background-color: #fff;
  margin-inline: auto;
  transition: filter 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .p-top__contact-button {
    width: min(100%, 21.875rem);
    font-size: 1.25rem;
    height: 6.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-top__contact-button:hover {
    cursor: pointer;
    filter: brightness(0.8);
  }
}
.p-top__contact-button--mail {
  color: #000;
}

.p-top__contact-button--mail img {
  width: min(100%, 1.5375rem);
  height: auto;
  margin-right: 0.625rem;
}

.p-top__contact-button--line {
  color: #06C755;
  font-weight: 400;
}

.p-top__contact-button--line img {
  width: min(100%, 1.5625rem);
  margin-right: 0.9375rem;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-top__contact-button--line img {
    width: min(100%, 3.3125rem);
    margin-right: 1.5625rem;
  }
}
.p-top__contact-button img {
  display: block;
}

.p-article {
  margin-top: 60px;
}

.p-article__links {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-article__links li {
  --size: 0.9375rem;
  position: relative;
}
.p-article__links li a {
  line-height: 2;
  display: block;
  padding: 0 1em 0.5em 1em;
  color: var(--main);
}
.p-article__links li:not(:first-child) {
  position: relative;
}
.p-article__links li:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1em;
  background-color: var(--main);
  top: calc(var(--size) * 2 / 2);
  left: 0;
  translate: 0 -50%;
}

.p-article__link.is-active a {
  color: var(--blue);
  font-weight: 700;
}

.p-article__link-symptoms {
  margin-top: 30px;
}

.c-title-page {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--font-family-serif);
  margin-bottom: 20px;
}

.p-article__items,
.p-news__content,
.p-article__notext,
.p-news__notext {
  margin-top: 60px;
}

.p-article__notext {
  text-align: center;
}

.p-article__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(100%, 400px);
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .p-article__items {
    width: min(100%, 900px);
  }
}

.p-article__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ---- card ---- */
.c-card a {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
  transition: border 0.2s ease-out;
}
@media screen and (min-width: 600px) {
  .c-card a {
    padding: 20px 25px;
    align-items: center;
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .c-card a:hover {
    border: 1px solid var(--blue2);
  }
}
.c-card a:hover .c-card__deco {
  background-color: var(--blue2);
}

.c-card__figure {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .c-card__figure {
    width: min(100%, 160px);
  }
}
.c-card__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}
@media screen and (min-width: 600px) {
  .c-card__body {
    gap: 30px;
  }
}

.c-card__title {
  color: var(--blue);
  font-family: var(--font-family-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.5rem;
  }
}

.c-card__lists {
  display: flex;
  gap: 10px;
}
.c-card__lists li {
  padding: 0 17px;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 30px;
}

.c-card__parts {
  --color: var(--blue);
  background-color: var(--color);
  color: #fff;
}

.c-card__symptoms {
  --color: var(--green);
  border: 1px solid var(--color);
  color: var(--color);
}

.c-card__column {
  color: #7A7A7A;
  border: 1px solid #7A7A7A;
}

.c-card__deco {
  transition: background-color 0.2s ease-out;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10.6666666667%;
  aspect-ratio: 1;
  display: block;
  background-color: var(--border);
}
@media screen and (min-width: 600px) {
  .c-card__deco {
    width: 6.3333333333%;
  }
}
.c-card__deco::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10%;
  aspect-ratio: 1;
}

.p-category {
  margin-top: 100px;
  padding: 100px 0 155px;
  background-color: var(--blue3);
}

.p-category__ttl {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--main);
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--font-family-serif);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-category__ttl {
    font-size: 1.75rem;
  }
}

.p-category__links {
  margin-top: 65px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-category__links {
    gap: 30px;
    flex-direction: row;
  }
}

.p-category__figure {
  order: -1;
  width: 53.3333333333%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-category__figure {
    min-width: 180px;
    width: 31%;
    order: 0;
    align-self: center;
  }
}
.p-category__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 341/760;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-category__items {
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 10px;
  grid-auto-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .p-category__items {
    gap: 20px;
  }
}
.p-category__items a {
  transition: all 0.3s ease-out;
  display: flex;
  gap: 7px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-category__items a {
    height: 100%;
  }
}

.p-category__item[data-type=head] a {
  background-color: #FF8299;
}

.p-category__item[data-type=spine] a {
  background-color: #FFC654;
}

.p-category__item[data-type=upper-limbs] a {
  background-color: #78D170;
}

.p-category__item[data-type=lower-limbs] a {
  background-color: #51D2FE;
}

.p-category__item[data-type=internal-organs] a {
  background-color: #669BF9;
}

.p-category__item[data-type=etc] a {
  background-color: #C8B49B;
}

.p-category__items--parts a {
  color: #fff;
}
.p-category__items--parts a:hover {
  opacity: 0.9;
  transform: translatex(8px);
}

.p-category__items--symptoms a {
  border: 1px solid var(--green);
  color: var(--green);
  background-color: #fff;
}
.p-category__items--symptoms a:hover {
  opacity: 0.9;
  transform: translateY(-6px);
}

.p-category__item-ttl {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-category__item-ttl {
    font-size: 1.375rem;
  }
}

.p-category__desc {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-category__desc {
    font-size: 1rem;
  }
}

.p-single__section {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-single__section {
    margin-bottom: 100px;
  }
}

.p-single__title {
  margin-bottom: 40px;
  font-size: var(--font-size--xxl);
  line-height: 1.5;
  font-family: var(--font-family-serif);
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--blue);
}
@media screen and (min-width: 768px) {
  .p-single__title {
    margin-bottom: 50px;
  }
}

.p-single__lists {
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-single__lists {
    margin-bottom: 60px;
  }
}

.p-single__list {
  line-height: 1;
  white-space: nowrap;
  padding: 8px 17px;
  font-weight: 500;
}
.p-single__list a {
  color: var(--color);
  transition: opacity 0.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-single__list a:hover {
    opacity: 0.75;
  }
}

.p-single__list--symptoms {
  --color: var(--green);
  border: 1px solid var(--color);
  border-radius: 30px;
}

.p-single__list--parts {
  --color: #fff;
  --bgcolor: var(--blue);
  border: 1px solid var(--bgcolor);
  background-color: var(--bgcolor);
  border-radius: 30px;
}

.p-single__figure {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-single__figure {
    margin-bottom: 60px;
  }
}
.p-single__figure img {
  display: block;
  width: min(100%, 700px);
  margin-inline: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/** デフォルト　**/
.p-default__section,
.p-news__section {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-default__section,
  .p-news__section {
    margin-bottom: 100px;
  }
}

.p-default__title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-default__title {
    margin-bottom: 90px;
  }
}

.p-default__title-name {
  font-weight: 500;
  line-height: 1.5;
}

.p-default__title-position {
  font-size: var(--font-size-h3);
  letter-spacing: 0.1em;
  font-family: var(--font-family-serif);
}

.p-default__title-lang {
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-default__title-lang {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}

.p-default__title-lang-ja {
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-default__title-lang-ja {
    font-size: 2rem;
  }
}

.p-default__title-lang-en {
  color: var(--blue);
  text-transform: capitalize;
  font-size: var(--font-size-h5);
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-default__title-lang-en {
    line-height: 3rem;
  }
}

.p-default__faq-item {
  width: min(100%, 900px);
  margin-inline: auto;
}

.p-default__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1100/460;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-404__content {
  text-align: center;
}

.p-default__content {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-default__content {
    margin-bottom: 80px;
  }
}
.p-default__content h2, .p-default__content h3 {
  font-family: var(--font-family-serif);
}
.p-default__content h2, .p-default__content h3, .p-default__content h4, .p-default__content h5 {
  font-size: var(--size);
  margin-top: 2.0833333333em;
  line-height: 1.5;
}
.p-default__content h2 {
  --size: var(--font-size-h2-lg);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 3.125rem;
}
.p-default__content h3 {
  --size: var(--font-size-h3);
  --color: var(--main);
  color: var(--color);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
}
.p-default__content h4 {
  --weight: 700;
  --size: var(--font-size-h4);
  --color: var(--main);
  color: var(--color);
  margin-bottom: 1.25rem;
  font-weight: var(--weight);
}
.p-default__content h5 {
  --size: var(--font-size-h5);
  margin-bottom: 1.25rem;
}
.p-default__content p {
  margin-bottom: 1.5em;
}
.p-default__content p a {
  color: var(--blue2);
  display: inline-block;
  border-bottom: 1px solid var(--blue2);
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease-out;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-default__content p a:hover {
    opacity: 0.75;
  }
}

ul.wp-block-list {
  margin-bottom: 2em;
}
ul.wp-block-list li {
  position: relative;
  padding-left: 1em;
}
ul.wp-block-list li::before {
  content: "";
  display: block;
  background-color: var(--main);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  left: 0;
  translate: 50% -50%;
}

ol.wp-block-list {
  margin-left: 1em;
  list-style-type: decimal;
}

/**** 標準 ****/
.wp-block-group {
  margin-bottom: 70px;
}

/**** 見出し *****/
.wp-block-heading.is-style-h2-bg {
  --size: var(--font-size-h2);
  padding: 0.6428571429em 1em;
  border-left: 1px solid var(--blue);
  background-color: #F7F8F9;
}

.wp-block-heading.is-style-h3-underline {
  --color: var(--blue);
  padding-bottom: 1em;
  border-bottom: 1px solid #DFE4ED;
}

.wp-block-heading.is-style-h3-bg {
  --color: var(--blue);
  text-align: center;
  padding: 0.8em;
  background-color: #CDDFEF;
  border-radius: 10px;
}

.wp-block-heading.is-style-h4-serif {
  --color: var(--blue);
  --weight: 500;
  font-family: var(--font-family-serif);
}

/**** テーブル  ****/
.wp-block-table {
  margin-bottom: 50px;
  margin-top: 50px;
}

.wp-block-table table {
  --width: 100%;
  width: var(--width) !important;
  border-collapse: collapse;
}
.wp-block-table table td {
  border: 1px solid #BABFC8;
}

.wp-block-table.is-style-blue-table-sm table {
  --width: min(100%, 900px);
  margin-inline: auto;
}

.wp-block-table.is-style-col-table thead tr:first-child {
  background-color: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-h3);
  border: 1px solid var(--blue);
  text-align: left;
}
.wp-block-table.is-style-col-table thead tr:first-child th {
  padding: 0.25em 1em;
}

.wp-block-table.is-style-col-table thead {
  border: 2px solid var(--blue);
}

.wp-block-table.is-style-col-table td {
  padding: 1em 1.3333333333em;
}

.wp-block-table.is-style-col-table tr {
  font-weight: 500;
}

.wp-block-table.is-style-blue-table-lg th:first-child,
.wp-block-table.is-style-blue-table-lg td:first-child,
.wp-block-table.is-style-blue-table-sm td:first-child,
.wp-block-table.is-style-blue-table-sm th:first-child {
  padding: 12px 15px;
  background-color: #F5F7FA;
  font-weight: 700;
}

/* 修正要素の右にある見出しセル */
.wp-block-table.is-style-blue-table-sm td.factor {
  padding: 12px 15px;
  background-color: #F5F7FA;
  font-weight: 700;
}

/**** ボタン ****/
.wp-block-button {
  --color: var(--blue);
  --bgColor: #fff;
  --icon: var(--blue);
  --width: 300px;
  --height: 60px;
  --size: 0.9375rem;
  max-width: var(--width);
  width: 100%;
  height: var(--height);
  font-size: var(--size);
}
.wp-block-button a {
  position: relative;
  color: var(--color);
  border: 1px solid var(--color);
  background-color: var(--bgColor);
  border-radius: 0%;
  transition: filter 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8.3333333333%;
  translate: 0 -50%;
  rotate: 45deg;
  border-top: 1px solid var(--icon);
  border-right: 1px solid var(--icon);
  width: 0.5em;
  height: 0.5em;
}
@media screen and (min-width: 1024px) {
  .wp-block-button a:hover {
    filter: opacity(0.8);
  }
}

.wp-block-button.is-style-button-md-blue,
.wp-block-button.is-style-button-md {
  --width: 400px;
  --height: 70px;
  --size: var(--font-size-h4);
}

.wp-block-button.is-style-button-lg-blue,
.wp-block-button.is-style-button-lg {
  --width: 600px;
  --height: 80px;
  --size: var(--font-size-h3);
}

.wp-block-button.is-style-button-sm-blue,
.wp-block-button.is-style-button-md-blue,
.wp-block-button.is-style-button-lg-blue {
  --color: #fff;
  --bgColor: var(--blue);
  --icon: #fff;
}

/** ページネーション **/
.p-single__page {
  --width: 12.5rem;
  position: relative;
  margin-inline: auto;
  width: min(100%, var(--width));
}
@media screen and (min-width: 768px) {
  .p-single__page {
    --width: 18.75rem;
  }
}

.p-single__page-prev,
.p-single__page-next {
  --space: 10px;
  --gap: 8px;
  position: absolute;
  top: 50%;
  font-family: var(--font-family-en);
  letter-spacing: 0.1em;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: var(--gap);
}
@media screen and (min-width: 768px) {
  .p-single__page-prev,
  .p-single__page-next {
    --space: 20px;
    --gap: 14px;
  }
}
.p-single__page-prev::before, .p-single__page-prev::after,
.p-single__page-next::before,
.p-single__page-next::after {
  display: none;
}
@media screen and (min-width: 375px) {
  .p-single__page-prev::before, .p-single__page-prev::after,
  .p-single__page-next::before,
  .p-single__page-next::after {
    width: 6px;
    aspect-ratio: 1;
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    display: inline-block;
  }
}

.p-single__page-prev {
  left: calc(var(--space) * -1);
  translate: -100% -50%;
}
.p-single__page-prev::before {
  content: "";
  rotate: -135deg;
}

.p-single__page-next {
  right: calc(var(--space) * -1);
  translate: 100% -50%;
}
.p-single__page-next::after {
  content: "";
  rotate: 45deg;
}

/*
ページネーション
*/
.p-single__relate-items {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-single__relate-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    justify-content: normal;
    margin-bottom: 100px;
  }
}

.p-single__relate-item {
  --icon-position: 30px;
  --gap: 30px;
  width: 100%;
  margin-inline: auto;
  max-width: 500px;
  border: 1px solid var(--blue);
}
@media screen and (min-width: 768px) {
  .p-single__relate-item {
    max-width: inherit;
  }
}

.p-single__relate-item-link {
  position: relative;
  display: block;
  transition: filter 0.3s ease-out;
  color: var(--blue);
  font-weight: 500;
  height: 100%;
  padding: 30px 40px;
  transition: filter 0.3s ease-out;
  background-color: #fff;
}
.p-single__relate-item-link::before {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 1024px) {
  .p-single__relate-item-link:hover {
    filter: brightness(0.95);
  }
}

.p-single__relate-item--prev .p-single__relate-item-link::before {
  rotate: -135deg;
  left: var(--icon-position);
}
.p-single__relate-item--prev .p-single__relate-item-link > div {
  margin-left: var(--gap);
}

.p-single__relate-item--next .p-single__relate-item-link::before {
  right: var(--icon-position);
  rotate: 45deg;
}
.p-single__relate-item--next .p-single__relate-item-link > div {
  margin-right: var(--gap);
}

/*****
目次
*****/
.ez-toc-custom {
  margin-bottom: 50px;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-top: 4px solid var(--blue);
}
@media screen and (min-width: 768px) {
  .ez-toc-custom {
    margin-bottom: 70px;
    padding: 30px 40px;
  }
}

.ez-toc-list {
  margin-left: 2em;
}
.ez-toc-list a {
  cursor: pointer;
  color: var(--color);
  display: block;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .ez-toc-list a:hover {
    opacity: 0.8;
  }
}
.ez-toc-list li {
  position: relative;
}
.ez-toc-list li::before {
  position: absolute;
  left: 0;
  top: 0;
}

.ez-toc-list-level-1 {
  counter-reset: list-counter-2;
}
.ez-toc-list-level-1 > li {
  counter-increment: list-counter-2;
  font-size: var(--font-size-h3);
  color: var(--blue);
  padding-left: 1.25em;
}
.ez-toc-list-level-1 > li::before {
  content: counter(list-counter-2) ".";
}
.ez-toc-list-level-1 > li > ul {
  counter-reset: list-counter-3;
}
.ez-toc-list-level-1 > li > ul > li {
  color: var(--main);
  counter-increment: list-counter-3;
  padding-left: 2.5em;
}
.ez-toc-list-level-1 > li > ul > li::before {
  content: counter(list-counter-2) "." counter(list-counter-3) ".";
}
.ez-toc-list-level-1 > li > ul > li > ul {
  counter-reset: list-counter-4;
}
.ez-toc-list-level-1 > li > ul > li > ul > li {
  color: var(--main);
  counter-increment: list-counter-4;
  padding-left: 3.3em;
}
.ez-toc-list-level-1 > li > ul > li > ul > li::before {
  content: counter(list-counter-2) "." counter(list-counter-3) "." counter(list-counter-4);
}
.ez-toc-list-level-1 > li > ul > li > ul > li > ul {
  counter-reset: list-counter-5;
}
.ez-toc-list-level-1 > li > ul > li > ul > li > ul > li {
  color: var(--main);
  counter-increment: list-counter-5;
  padding-left: 4em;
}
.ez-toc-list-level-1 > li > ul > li > ul > li > ul > li::before {
  content: counter(list-counter-2) "." counter(list-counter-3) "." counter(list-counter-4) "." counter(list-counter-5);
}

.ez-toc-title {
  font-size: var(--font-size-h3);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ez-toc-heading-level-2 {
  font-weight: 500;
  line-height: 1.8;
  font-size: var(--font-size-h4);
}
.ez-toc-heading-level-2:not(:last-child) {
  margin-bottom: 20px;
}
.ez-toc-heading-level-2 > a {
  --color: var(--blue);
  margin-bottom: 0.5555555556em;
}

.ez-toc-heading-level-3,
.ez-toc-heading-level-4,
.ez-toc-heading-level-5 {
  line-height: 1.8;
  font-size: var(--font-size-h5);
}
.ez-toc-heading-level-3 a,
.ez-toc-heading-level-4 a,
.ez-toc-heading-level-5 a {
  --color: var(--main);
}

.p-breadcrumb {
  padding-top: 30px;
  margin-bottom: 60px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.p-breadcrumb a {
  color: var(--main);
}
.p-breadcrumb span:first-of-type {
  padding-right: 5px;
  text-transform: uppercase;
}
.p-breadcrumb span:not(:first-of-type) {
  padding: 0 5px;
}

.p-form {
  width: min(100%, 900px);
  margin-inline: auto;
}

.form-row {
  --bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: var(--bottom);
}
@media screen and (min-width: 768px) {
  .form-row {
    --bottom: 40px;
    gap: 40px;
    grid-template-columns: 1fr 73.3333333333%;
  }
}

.form-row.form-row--last {
  --bottom: 60px;
}
@media screen and (min-width: 768px) {
  .form-row.form-row--last {
    --bottom: 100px;
  }
}

.form-row:has(.form-input) .form-label {
  padding-top: 7px;
}

.form-label {
  display: flex;
  gap: 20px;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .form-label {
    justify-content: space-between;
  }
}
.form-label .required {
  background-color: #A80B0B;
}
.form-label .optional {
  background-color: #ABADB0;
}
.form-label .optional,
.form-label .required {
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  width: 50px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  translate: 0 2px;
  font-weight: 400;
  font-size: 0.75rem;
}

.form-input input,
.form-input textarea {
  width: 100%;
  border: 1px solid var(--grey);
  border-radius: 0;
  color: var(--main);
  padding: 0.5em 1em;
}
.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: var(--grey);
}
.form-input input::placeholder,
.form-input textarea::placeholder {
  color: var(--grey);
}

.form-input textarea {
  min-height: 200px;
}

/*
checkbox, radio
*/
.form-radio label::before {
  border-radius: 50%;
}
.form-radio label::after {
  content: "";
  position: absolute;
  display: none;
  top: 6px;
  left: 2.5px;
  background-color: var(--main);
  aspect-ratio: 1;
  width: 0.8em;
  border-radius: 50%;
}

.form-checkbox label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 5px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox label:has(input:checked)::before {
  --bg: black;
}

.form-radio input,
.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}
.form-radio label,
.form-checkbox label {
  padding-left: 1.8em;
  margin-right: 1em;
  position: relative;
}
.form-radio label::before,
.form-checkbox label::before {
  --bg: transparent;
  z-index: -1;
  content: "";
  width: 1em;
  height: 1em;
  border: 1px solid var(--main);
  position: absolute;
  top: calc(50% + 1px);
  left: 0;
  translate: 0 -50%;
  background-color: var(--bg);
}
.form-radio label:has(input:checked)::after,
.form-checkbox label:has(input:checked)::after {
  display: block;
}

/* privacy */
.privacy-privacy {
  text-align: center;
  margin-bottom: 50px;
}

/*button*/
.wpcf7-submit.c-button {
  margin-inline: auto;
}

.p-aside {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-aside {
    margin-bottom: 100px;
  }
}

.p-aside__heading {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-aside__heading {
    margin-bottom: 50px;
  }
}

.p-aside__figure {
  margin-bottom: 30px;
}
.p-aside__figure img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-aside__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .p-aside__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-aside__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-aside__item a {
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .p-aside__item a:hover {
    opacity: 0.8;
  }
}

.p-aside__list,
.p-aside__title {
  margin-bottom: 20px;
  color: var(--main);
}

.p-aside__list {
  display: flex;
  gap: 30px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-aside__list {
    font-size: 0.9375rem;
  }
}

.p-aside__list-time {
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
}

.p-aside__title {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.5;
}

.p-aside__cats {
  display: flex;
  gap: 20px;
}
.p-aside__cats li {
  color: var(--darkgrey);
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 2px 15px;
  border-radius: 30px;
  border: 1px solid var(--darkgrey);
  width: -moz-fit-content;
  width: fit-content;
}

.p-aside__no-posts {
  text-align: center;
}

.u-only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block;
  }
}

.u-only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
}

.u-ft-blue {
  color: var(--blue);
}

.u-ft-red {
  color: var(--red);
}

.u-ft-bigger1 {
  font-size: 1.4705882353em;
}

.u-ft-bigger2 {
  font-size: 1.0588235294em;
}

.u-marker-red {
  background: linear-gradient(transparent 40%, #EDCCCC 40%);
}

.u-marker-yellow {
  background: linear-gradient(transparent 50%, #FFF0AB 50%);
}

.u-marker-blue {
  background: linear-gradient(transparent 40%, #CDDFEF 40%);
}/*# sourceMappingURL=style.css.map */