@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #ffffff;
  color: #2a3a52;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #1f5fd0;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(31, 95, 208, 0.35);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  color: #0b2350;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 46px;
  font-size: 4.6rem;
}

h3 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.7;
}
h3.caption {
  font-size: 2.2rem;
}

h4 {
  font-size: 22px;
  font-size: 2.2rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #2a3a52;
  margin: 0;
  opacity: 0.4;
}

h1, h2, h3, h4 {
  text-wrap: balance;
  word-break: auto-phrase;
}

.u-phrase {
  text-wrap: balance;
  word-break: auto-phrase;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}
#header #logo .logo-black {
  display: none;
}

.sub-page #header {
  position: initial;
}
.sub-page #header #logo .logo-white {
  display: none;
}
.sub-page #header #logo .logo-black {
  display: block;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
  text-align: center;
}
#header_nav a span {
  display: block;
  font-size: 1.2rem;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2a3a52;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sub-page #header_nav a {
  color: #1f5fd0;
}

.sub-page .contact_btn a.reserve {
  color: #1f5fd0;
  border: 1px solid #1f5fd0;
}
.sub-page .contact_btn img {
  filter: brightness(0.3);
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  background: #1f5fd0;
  color: #ffffff;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
#footer .inner .footer-left {
  width: fit-content;
}
#footer .inner .footer-right {
  width: fit-content;
}
#footer .link-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.8rem;
}
#footer .link-list li a {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 5px;
}
#footer .link-list li a:hover {
  opacity: 0.6;
}
#footer .link-list li a .sub {
  font-size: 1.6rem;
}

.footer-contact a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  padding: 180px 120px;
}
.footer-contact a:hover .img::before {
  opacity: 0.8;
}
.footer-contact a:hover .img img {
  transform: scale(1.05);
}
.footer-contact .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.footer-contact .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.footer-contact .img::before {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f5fd0;
  z-index: 1;
  opacity: 0.6;
}
.footer-contact h2 {
  line-height: 1;
}
.footer-contact h2 span {
  display: block;
}
.footer-contact h2 .en {
  font-size: 8rem;
}
.footer-contact h2 .ja {
  font-size: 2rem;
}

.flogo {
  margin-bottom: 20px;
  width: 150px;
}

.copyright {
  opacity: 0.6;
  display: flex;
}

.footer_navi {
  position: relative;
}
.footer_navi ul {
  display: flex;
  flex-direction: column;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1f5fd0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title {
  border-bottom: 1px solid #1f5fd0;
}
#page-title .inner {
  padding: 40px 80px 120px;
}
#page-title .inner .title,
#page-title .inner .text {
  margin-bottom: 80px;
  color: #1f5fd0;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}
#page-title .inner img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 32px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #ffffff;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  padding: 8px;
}
.contact_btn a.reserve {
  aspect-ratio: initial;
  padding: 10px 24px;
  border: 1px solid #ffffff;
  min-width: 220px;
  border-radius: 0;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  object-fit: contain;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #ffffff;
  border: 1px solid #2a3a52;
  color: #2a3a52;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}
.contact_btn .big {
  width: 100%;
  text-align: center;
}
.contact_btn .big a {
  max-width: 320px;
  margin-inline: auto;
}

.contact_icon {
  width: 30px;
}

#form {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
}
#form .form-contents {
  padding: 0px !important;
  background: transparent !important;
  max-width: 600px !important;
}
#form dl {
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}
#form dl dt,
#form dl dd {
  width: 100%;
  padding-left: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #1f5fd0 !important;
  border-radius: 30px;
  padding: 5px 10px !important;
  font-size: 13px !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 52px !important;
  padding: 20px !important;
}
#form dl dd:not(.pattern-exclusion) .textarea {
  padding: 20px !important;
}
#form .submit-btn {
  background: #1f5fd0 !important;
  color: #ffffff !important;
  border: 1px solid #1f5fd0 !important;
  border-radius: 0 !important;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1400px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #1f5fd0;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f5fd0;
  background: rgba(31, 95, 208, 0.06);
  color: #1f5fd0;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(31, 95, 208, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(42.3217655263%, 60.0689145951%, 91.4037246698%);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}
.l-column.gap10 {
  --gap: 10px;
}
.l-column.gap15 {
  --gap: 15px;
}
.l-column.gap20 {
  --gap: 20px;
}
.l-column.gap30 {
  --gap: 30px;
}
.l-column.gap40 {
  --gap: 40px;
}
.l-column.gap50 {
  --gap: 50px;
}

.mv {
  position: relative;
}
.mv .mv-img {
  position: relative;
}
.mv .mv-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #73645E;
  opacity: 0.45;
}
.mv .mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .catch {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 10;
  color: #ffffff;
}
.mv .catch h1 {
  font-weight: 400;
  font-size: 6.5rem;
  margin-bottom: 74px;
}
.mv .catch .en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 3.5rem;
  line-height: 1.5;
}

.title {
  margin: 0 0 60px;
  position: relative;
  line-height: 1;
}
.title .en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  color: #1f5fd0;
  font-size: 8rem;
}
.title .ja {
  position: relative;
  font-size: 2rem;
}
.title--m0 {
  margin-bottom: 0;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #1f5fd0;
  content: "";
}
.title--slash::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #1f5fd0;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #1f5fd0;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #2a3a52;
  border-bottom: 1px solid #2a3a52;
  padding: 10px;
  width: 100%;
}

.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #0b2350;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
  min-width: 240px;
  text-align: center;
  justify-content: center;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  max-width: 240px;
}
.btn a .ja {
  font-size: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.btn a:hover {
  opacity: 0.6;
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--primary a {
  background: #1f5fd0;
  color: #ffffff;
  border-color: #1f5fd0;
}
.btn--outline a {
  background: #ffffff;
  color: #1f5fd0;
  border-color: #1f5fd0;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #1f5fd0;
}
.btn--square a {
  border-radius: 0;
  background: transparent;
  border: 1px solid #1f5fd0;
}
.btn--square a:hover {
  background: rgba(255, 255, 255, 0.6);
}
.btn--color2 a {
  background: #1f5fd0;
  color: #ffffff;
}

.card {
  height: 100%;
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
  border-bottom: 1px solid #1f5fd0;
}
.news-list .date {
  font-size: 2rem;
}
.news-list .ttl {
  font-size: 1.8rem;
}

.news-pager {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.news-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 4px 20px;
  border: 1px solid #1f5fd0;
  cursor: pointer;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-list li {
  width: calc((100% - 20px) / 2);
}
.blog-list li a {
  display: flex;
  gap: 24px;
  padding: 20px;
  border: 1px solid #1f5fd0;
  height: 100%;
}
.blog-list li a:hover {
  background: rgba(255, 255, 255, 0.6);
}
.blog-list .img {
  flex: 0 0 240px;
}
.blog-list .img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.blog-list .text {
  flex: 1 1 auto;
}
.blog-list .text .ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
.blog-list .text .detail {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.blog-list.type2 li {
  width: calc((100% - 40px) / 3);
  display: flex;
}
.blog-list.type2 li a {
  flex-direction: column;
  gap: 8px;
}
.blog-list.type2 li a .img {
  flex: initial;
}
.blog-list.type2 li a .img img {
  aspect-ratio: initial;
}
.blog-list.type2 li a .text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-detail {
  background: rgba(255, 255, 255, 0.6);
  padding: 40px;
}
.blog-detail__title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1f5fd0;
}
.blog-detail__pager {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #1f5fd0;
  text-align: center;
}
.blog-detail__pager a {
  padding: 8px 32px;
  border: 1px solid #1f5fd0;
  background: #1f5fd0;
  color: #ffffff;
  font-size: 0.8em;
}
.blog-detail__pager a:hover {
  background: #ffffff;
  color: #1f5fd0;
}
.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #1f5fd0;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #1f5fd0;
  color: #ffffff;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #1f5fd0;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #1f5fd0;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #ffffff;
  color: #1f5fd0;
  border: 2px solid #1f5fd0;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #ffffff;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #1f5fd0;
  color: #ffffff;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #1f5fd0;
}
.contents-nav > li a:hover {
  color: #1f5fd0;
  background: #ffffff;
}
.contents-nav > li:nth-child(2) a {
  background: #1f5fd0;
  border: 1px solid #1f5fd0;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #1f5fd0;
  background: #ffffff;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #0b2350;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
  font-size: 1.8rem;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #1f5fd0;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #1f5fd0;
}
.list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.list--inline li {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  padding: 5px 16px;
  text-align: center;
  text-indent: initial !important;
  padding-left: 16px !important;
  font-size: 0.9em;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #1f5fd0;
  border-bottom: 2px solid #1f5fd0;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #1f5fd0;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #1f5fd0;
  color: #ffffff;
}
.tbl tr td {
  background: #ffffff;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #1f5fd0;
}
.tbl--alternating tr:nth-child(odd) {
  background: #ffffff;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #2a3a52;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #1f5fd0;
  color: #2a3a52;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #ffffff;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #1f5fd0;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #1f5fd0;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #1f5fd0;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #2a3a52;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #1f5fd0;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  border: 1px solid #1f5fd0;
  padding-right: 40px;
  background: rgba(255, 255, 255, 0.6);
}
.accordion > .ttl::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: linear-gradient(#000, #000) center/100% 2px no-repeat, linear-gradient(#000, #000) center/2px 100% no-repeat;
  transition: transform 0.25s ease;
}
.accordion.is-open > .ttl::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordion.is-open .ttl {
  background: #ffffff;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #1f5fd0;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #1f5fd0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #1f5fd0;
  border-bottom: 2px solid #1f5fd0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: #fff;
}
.accordion.faq > .inner {
  position: relative;
  margin: 8px 0;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #1f5fd0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #0b2350;
  font-weight: 700;
}
.pagination .is-current {
  background: #1f5fd0;
  color: #ffffff;
  border-color: #1f5fd0;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

.u-hidden {
  display: none !important;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.b-m120 {
  margin-bottom: 120px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #1f5fd0;
}

.color02 {
  color: #1f5fd0;
}

.color-w {
  color: #ffffff !important;
}

.bg_line {
  background: #06c755 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #06c755 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  opacity: 0.3;
}
.bg--img02::after {
  background: url(../img/bg-02.jpg) no-repeat center/cover;
  opacity: 0.4;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}
.bg--beige::after {
  background: #E4DED6;
}
.bg--white::after {
  background: rgba(255, 255, 255, 0.4);
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #f4f8fd;
}

.bg--main {
  background: #1f5fd0;
}

.bg--sub {
  background: #1f5fd0;
}

.bg--sub2 {
  background: #1f5fd0;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.pcbr {
  display: block;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #1f5fd0;
  text-decoration: underline;
}
.text-link.white a {
  color: #ffffff;
}

.shadow {
  box-shadow: 0 6px 24px rgba(11, 35, 80, 0.1);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(11, 35, 80, 0.12);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 32px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
.img-switch {
  position: relative;
  overflow: hidden;
}
.img-switch__base, .img-switch__hover {
  display: block;
  transition: opacity 0.6s ease, transform 0.8s ease;
}
.img-switch__base {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 1;
}
.img-switch__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.img-switch:hover .img-switch__base {
  opacity: 0;
  transform: scale(1.03);
}
.img-switch:hover .img-switch__hover {
  opacity: 1;
  transform: scale(1.03);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.4;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.pill .ic {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.pill--navy {
  background: #0b2350;
  color: #fff;
}
.pill--navy:hover {
  background: #fff;
  color: #0b2350;
  border-color: #0b2350;
}
.pill--blue {
  background: #1f5fd0;
  color: #fff;
}
.pill--blue:hover {
  background: #fff;
  color: #1f5fd0;
  border-color: #1f5fd0;
}
.pill--line {
  background: #06c755;
  color: #fff;
}
.pill--line:hover {
  background: #fff;
  color: #06c755;
  border-color: #06c755;
}
.pill--ghost {
  background: transparent;
  color: #0b2350;
  border-color: rgba(11, 35, 80, 0.35);
}
.pill--ghost:hover {
  background: #0b2350;
  color: #fff;
  border-color: #0b2350;
}
.pill--white {
  background: #fff;
  color: #0b2350;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
}
.pill--white:hover {
  background: #0b2350;
  color: #fff;
}
.pill--lg {
  padding: 10px 20px;
  font-size: 1.06em;
}

.morebtn {
  text-align: center;
  margin-top: 44px;
}

.cms-output {
  max-width: 100%;
  margin-inline: auto;
}

.topbar {
  background: #0b2350;
  color: #dbe6fb;
}
.topbar__in {
  max-width: 1360px;
  margin-inline: auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-size: 1.2rem;
}
.topbar__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__area .ic {
  width: 14px;
  height: 14px;
  fill: #8fe3c0;
}
.topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.topbar__insta {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 700;
}

@keyframes headerDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#header {
  position: relative;
  background: #fff;
  box-shadow: 0 1px 0 rgba(11, 35, 80, 0.06);
  z-index: 100;
}
#header .inner {
  max-width: 1360px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 32px;
}
#header.is-fixed .inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  max-width: none;
  margin: 0;
  background: #fff;
  box-shadow: 0 3px 14px rgba(11, 35, 80, 0.12);
  padding: 10px max(24px, (100% - 1360px) / 2);
  animation: headerDown 0.3s ease;
}
#header #logo {
  width: auto;
}
#header #logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#header #logo img {
  width: 60px;
  height: auto;
}
#header #logo .logo-catch {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #5b6b83;
  line-height: 1.3;
}

#header .inner #logo {
  width: auto;
}

.head-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

#header_nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
}
#header_nav a {
  color: #0b2350;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 6px 2px;
  position: relative;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: #1f5fd0;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after, #header_nav a.is-current::after {
  transform: scaleX(1);
}
#header_nav a.active, #header_nav a.is-current {
  color: #1f5fd0;
}

.sub-page #header_nav a {
  color: #0b2350;
}
.sub-page #header_nav a.active, .sub-page #header_nav a.is-current {
  color: #1f5fd0;
}

.head-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.head-cta .hbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.head-cta .hbtn .ic {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.head-cta .hbtn--tel {
  background: #0b2350;
}
.head-cta .hbtn--tel:hover {
  background: #fff;
  color: #0b2350;
  border-color: #0b2350;
}
.head-cta .hbtn--line {
  background: #06c755;
}
.head-cta .hbtn--line:hover {
  background: #fff;
  color: #06c755;
  border-color: #06c755;
}
.head-cta .hbtn--mail {
  background: #1f5fd0;
}
.head-cta .hbtn--mail:hover {
  background: #fff;
  color: #1f5fd0;
  border-color: #1f5fd0;
}

.sp-nav__info {
  text-align: center;
}
.sp-nav__info .sp-nav__tel {
  display: block;
  color: #0b2350;
}
.sp-nav__info .sp-nav__tel span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}
.sp-nav__info .sp-nav__tel strong {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #1f5fd0;
}
.sp-nav__info p {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
  margin-top: 4px;
}

.sp-btn {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 90;
}
.sp-btn p {
  width: 33.3333333333%;
  margin: 0;
}
.sp-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  padding: 9px 4px;
  height: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
.sp-btn a .ic {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.sp-btn__tel {
  background: #0b2350;
}
.sp-btn__line {
  background: #06c755;
}
.sp-btn__mail {
  background: #1f5fd0;
}

.fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b2350;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.fixed-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.fixed-btn.is-visible {
  opacity: 0.9;
  pointer-events: auto;
}
.fixed-btn:hover {
  opacity: 1;
}

.sec {
  position: relative;
}

.sec--tint {
  background: #eaf3fc;
}

.sec--white {
  background: #fff;
}

.sec--ctaband {
  background: #fff;
}

.sec--works {
  background: linear-gradient(180deg, #ffffff 0 50%, #e8f3ea 50% 100%);
}

.sec--voice {
  position: relative;
  background: #EAF3FC;
  margin-top: 180px;
}

.sec--profile {
  margin-top: 150px;
}

.sec-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.sec-wave--top {
  top: 0;
  transform: translateY(-99%);
}
.sec-wave--bottom {
  bottom: 0;
  transform: translateY(99%);
}

.sec--trouble {
  background: linear-gradient(180deg, #e7eff9 0%, #d3e1f4 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 160px), 50% 100%, 0 calc(100% - 160px));
  padding-bottom: 110px;
}
@media (max-width: 720px) {
  .sec--trouble {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
    padding-bottom: 30px;
  }
}

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}
.sec-head__en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  color: #1f5fd0;
  font-size: 13px;
  font-size: 1.3rem;
}
.sec-head__ttl {
  font-size: 30px;
  font-size: 3rem;
  color: #0b2350;
  margin-top: 6px;
  line-height: 1.4;
}
.sec-head__ttl .accent {
  color: #1f5fd0;
}
.sec-head__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
}
.sec-head__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfe0f2;
}
.sec-head__dots span:first-child {
  background: #1f5fd0;
}
.sec-head__dots span:nth-child(2) {
  background: #8fe3c0;
}
.sec-head__lead {
  margin-top: 16px;
  color: #5b6b83;
}

#page-title {
  position: relative;
  background: #0b2350;
  color: #fff;
  border-bottom: none;
  overflow: hidden;
}
#page-title .inner {
  max-width: 1360px;
  margin-inline: auto;
  padding: 56px 32px 48px;
}
#page-title .pt-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}
#page-title .pt-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
#page-title .pt-dots span:first-child {
  background: #2f7fd4;
}
#page-title .pt-dots span:nth-child(2) {
  background: #8fe3c0;
}
#page-title .pt-en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-size: 1.2rem;
  color: #0b2350;
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
}
#page-title .pt-ttl {
  font-size: 38px;
  font-size: 3.8rem;
  color: #fff;
  margin: 14px 0 10px;
}
#page-title .pt-bread {
  font-size: 13px;
  font-size: 1.3rem;
  color: #b9c8e4;
}
#page-title .pt-bread a {
  color: #b9c8e4;
}
#page-title .pt-bread a:hover {
  color: #fff;
  text-decoration: underline;
}
#page-title .pt-bread .sep {
  padding: 0 0.4em;
}
#page-title .pt-plus {
  position: absolute;
  right: 4%;
  top: 25%;
  transform: translateY(-50%);
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-size: 200px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.contact-band {
  position: relative;
  background: #2f5fd0;
  color: #fff;
  overflow: hidden;
}
.contact-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-band__in {
  text-align: center;
  position: relative;
  z-index: 2;
}
.contact-band__en {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-size: 1.3rem;
}
.contact-band__en::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto 10px;
}
.contact-band__ttl {
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  margin: 6px 0 14px;
}
.contact-band__note {
  font-size: 15px;
  font-size: 1.5rem;
}
.contact-band__note2 {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 2px;
}
.contact-band__note2 strong {
  color: #ffc531;
}
.contact-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.contact-band .cbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 14px 28px;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.contact-band .cbtn--tel {
  background: #fff;
  color: #0b2350;
  flex-direction: column;
  line-height: 1.2;
  padding: 10px 30px;
}
.contact-band .cbtn--tel small {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-band .cbtn--tel strong {
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.contact-band .cbtn--tel:hover {
  background: #0b2350;
  color: #fff;
}
.contact-band .cbtn--line {
  background: #06c755;
  color: #fff;
}
.contact-band .cbtn--line:hover {
  background: #fff;
  color: #06c755;
  border-color: #06c755;
}
.contact-band .cbtn--mail {
  background: #0b2350;
  color: #fff;
}
.contact-band .cbtn--mail:hover {
  background: #fff;
  color: #0b2350;
  border-color: #0b2350;
}
.contact-band__chara {
  position: relative;
  z-index: 2;
  width: 130px;
  margin-left: 20px;
  align-self: flex-end;
}

#footer {
  background: #0b2350;
  color: #cdd8ee;
}
#footer .footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
#footer .flogo {
  width: 74px;
  margin-bottom: 14px;
  background: #fff;
  padding: 9px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
}
#footer .footer__catch {
  font-size: 13px;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}
#footer .footer__lead {
  font-size: 13px;
  font-size: 1.3rem;
  color: #a9bade;
  margin-top: 8px;
  line-height: 1.9;
}
#footer .footer__h {
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
#footer .footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
  font-size: 1.35rem;
}
#footer .footer__col a {
  color: #cdd8ee;
}
#footer .footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer .copyright {
  color: #7f92bb;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0 50%, #0B2350 50% 100%);
  padding: 0 3%;
}
.hero__slides {
  position: relative;
  max-width: 1700px;
  margin-inline: auto;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  height: calc(100svh - var(--hero-offset, 120px));
  min-height: 480px;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 35, 80, 0.34) 0%, rgba(11, 35, 80, 0.04) 52%), linear-gradient(180deg, transparent 58%, rgba(11, 35, 80, 0.26));
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  max-width: 1360px;
  margin-inline: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.hero__label {
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.95;
}
.hero__tags {
  display: flex;
  gap: 8px;
  margin: 10px 0 6px;
}
.hero__tags .hero__tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 20px;
  font-size: 2rem;
  color: #0b2350;
}
.hero__tags .hero__tag--mint {
  background: #8fe3c0;
}
.hero__tags .hero__tag--blue {
  background: #bcd6f7;
}
.hero__title {
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 900;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.2;
}
.hero__title .house {
  width: 42px;
  vertical-align: middle;
  margin-left: 6px;
}
.hero__catch {
  max-width: 560px;
  margin: 8px 0 14px;
}
.hero__catch img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__desc {
  color: #eaf1fb;
  font-size: 17px;
  font-size: 1.7rem;
  margin-top: 14px;
  max-width: 560px;
}
.hero__bubble {
  background: url(../img/mv-catch-bg.webp) center/100% 100% no-repeat;
  border-radius: 0;
  box-shadow: none;
  padding: 50px 44px;
  max-width: 400px;
  align-self: flex-end;
  margin-bottom: 100px;
}
.hero__bubble h2 {
  font-size: 23px;
  font-size: 2.3rem;
  color: #0b2350;
}
.hero__bubble h2 em {
  color: #1f5fd0;
  font-style: normal;
}
.hero__bubble h2 em.c-green {
  color: #1f8a5b;
}
.hero__bubble p, .hero__bubble div.cms-p {
  font-size: 13px;
  font-size: 1.3rem;
  color: #2a3a52;
  margin-top: 8px;
}
.hero__arrow {
  display: none;
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  place-items: center;
  cursor: pointer;
  border: none;
}
.hero__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #0b2350;
  stroke-width: 2.4;
}
.hero__arrow--prev {
  left: 16px;
}
.hero__arrow--next {
  right: 16px;
}
.hero__arrow:hover {
  background: #fff;
}
.hero__dots {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.hero__dots button.is-active {
  background: #fff;
}
.hero__features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 4;
}
.hero .features {
  max-width: 1000px;
  margin-inline: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .features .feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b2350;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid #cfe0f2;
  border-radius: 999px;
  padding: 5px 15px;
  box-shadow: 0 4px 14px rgba(11, 35, 80, 0.18);
}
.hero .features .feature__ic {
  width: 20px;
  height: 20px;
  flex: none;
}
.hero .features .feature__ic svg {
  width: 100%;
  height: 100%;
  fill: #1f5fd0;
}
.hero .features .feature__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trouble-grid .trouble {
  background: #fff;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5ecf6;
}
.trouble-grid .trouble__ic {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.trouble-grid .trouble__ic img {
  max-height: 110px;
  max-width: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.trouble-grid .trouble__txt {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2350;
  line-height: 1.6;
  white-space: pre-line;
}

.ctaband {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ctaband__box {
  background: #0b2350;
  border-radius: 16px;
  padding: 26px 44px;
}
@media (max-width: 720px) {
  .ctaband__box {
    padding: 15px 15px;
  }
}

.ctaband__ttl {
  color: #fff;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 900;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  line-height: 1.5;
}
.ctaband__ttl .brand-emph {
  color: #8fe3c0;
}
@media (max-width: 720px) {
  .ctaband__ttl {
    font-size: 20px;
    font-size: 2rem;
    text-align: left;
  }
}

.ctaband__chara {
  width: 200px;
  margin-left: -20px;
  align-self: flex-end;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason-grid .reason {
  background: #c9dcf3;
  color: #0b2350;
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.reason-grid .reason__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reason-grid .reason__ic {
  width: 50px;
  height: 50px;
  background: #1f5fd0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.reason-grid .reason__ic img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.reason-grid .reason__num {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 50px;
  font-size: 5rem;
  color: #fff;
  line-height: 1;
}
.reason-grid .reason__ttl {
  font-size: 18px;
  font-size: 1.8rem;
  color: #0b2350;
  margin-bottom: 8px;
}
.reason-grid .reason__txt {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
  line-height: 1.8;
}

.reason-lead {
  text-align: center;
  margin-top: 60px;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2350;
  line-height: 1.9;
}
.reason-lead .accent {
  color: #1f5fd0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svcard {
  background: #dbe7f7;
  border-radius: 18px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
}
.svcard__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.svcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f5fd0;
  display: grid;
  place-items: center;
  flex: none;
}
.svcard__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.svcard__badge {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #1f5fd0;
  padding: 5px 14px;
  border-radius: 999px;
}
.svcard__ttl {
  font-size: 26px;
  font-size: 2.6rem;
  color: #0b2350;
  margin-bottom: 10px;
}
.svcard__ttl small {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 6px;
}
.svcard__desc {
  font-size: 14px;
  font-size: 1.4rem;
  color: #2a3a52;
  line-height: 1.9;
  margin-bottom: 22px;
}
.svcard__photo {
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  max-width: 78%;
  margin: 0 auto 24px;
}
.svcard__photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.svcard__foot {
  margin-top: auto;
}
.svcard--benri {
  background: #e3f0e6;
}
.svcard--benri .svcard__icon {
  background: #1f8a5b;
}
.svcard--benri .svcard__badge {
  background: #1f8a5b;
}
.svcard--benri .svcard__ttl {
  color: #1f8a5b;
}

.btn--card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1f5fd0;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn--card:hover {
  background: #fff;
  color: #1f5fd0;
  border-color: #1f5fd0;
}
.svcard--benri .btn--card {
  background: #1f8a5b;
}
.svcard--benri .btn--card:hover {
  background: #fff;
  color: #1f8a5b;
  border-color: #1f8a5b;
}

.work-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.work-filter button {
  border: 1px solid #cfe0f2;
  background: #fff;
  color: #0b2350;
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.2s;
}
.work-filter button.is-active, .work-filter button:hover {
  background: #0b2350;
  color: #fff;
  border-color: #0b2350;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.work__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.work__img {
  position: relative;
  margin: 0;
  line-height: 0;
}
.work__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.work__img .ba {
  position: absolute;
  bottom: 8px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 10px;
  border-radius: 4px;
  line-height: 1.5;
}
.work__img .ba--before {
  left: 8px;
}
.work__img .ba--after {
  right: 8px;
}
.work__body {
  padding: 16px 18px 20px;
}
.work__cat {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f5fd0;
  background: #eaf3fc;
  padding: 3px 12px;
  border-radius: 999px;
}
.work__cat--olive {
  color: #6f7d1f;
  background: #eef2d8;
}
.work__cat--green {
  color: #1f8a5b;
  background: #e6f4ee;
}
.work__cat--amber {
  color: #b26a00;
  background: #fbeed0;
}
.work.is-hide {
  display: none;
}
.work__ttl {
  font-size: 17px;
  font-size: 1.7rem;
  color: #0b2350;
  margin: 10px 0 4px;
}
.work__ex {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b2350;
}
.google-badge .stars {
  color: #ffc531;
  letter-spacing: 2px;
}

.voice-slider {
  position: relative;
}

.voice-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 4px 16px;
  scrollbar-width: none;
}
.voice-track::-webkit-scrollbar {
  display: none;
}

.voice {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.voice__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (max-width: 720px) {
  .voice__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.voice__tag {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f5fd0;
  background: #eaf3fc;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.voice__tag.tag-teal {
  color: #0c7a92;
  background: #dff1f4;
}
.voice__tag.tag-green {
  color: #1f8a5b;
  background: #e6f4ee;
}
.voice__tag.tag-olive {
  color: #6f7d1f;
  background: #eef2d8;
}
.voice__stars {
  color: #ffc531;
  letter-spacing: 1px;
}
.voice__ttl {
  font-size: 16px;
  font-size: 1.6rem;
  color: #0b2350;
  margin-bottom: 6px;
}
.voice__work {
  font-size: 12.5px;
  font-size: 1.25rem;
  color: #5b6b83;
}
.voice__work strong {
  color: #0b2350;
}
.voice__quote {
  font-size: 13px;
  font-size: 1.3rem;
  color: #2a3a52;
  margin-top: 8px;
  line-height: 1.8;
}
.voice__person {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12.5px;
  font-size: 1.25rem;
  color: #5b6b83;
}
.voice__person .voice__avatar {
  font-size: 22px;
}

.voice-cms {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 4px 16px;
  scrollbar-width: none;
}
.voice-cms::-webkit-scrollbar {
  display: none;
}
.voice-cms .voice {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
@media (max-width: 720px) {
  .voice-cms .voice {
    flex-basis: 82%;
  }
}

.slider-btn {
  position: absolute;
  top: 40%;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cfe0f2;
  background: #fff;
  cursor: pointer;
  color: #0b2350;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
}
.slider-btn.prev {
  left: -8px;
}
.slider-btn.next {
  right: -8px;
}
.slider-btn:hover {
  background: #1f5fd0;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.post__thumb {
  background: #eaf3fc;
  display: grid;
  place-items: center;
  height: 170px;
  overflow: hidden;
  position: relative;
}
.post__thumb .ph-logo {
  width: 120px;
  opacity: 0.9;
}
.post__thumb img:not(.ph-logo) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.post__body {
  padding: 18px 20px 22px;
}
.post__date {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
}
.post__ttl {
  font-size: 17px;
  font-size: 1.7rem;
  color: #0b2350;
  margin: 4px 0 8px;
}
.post__ex {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 5.4em;
}
.post__ex * {
  display: inline;
  margin: 0;
}
.post__ex img {
  display: none;
}

.post__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.post__link:hover {
  opacity: 0.85;
}

.thanks-box {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.thanks-box__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(31, 138, 91, 0.12);
  display: grid;
  place-items: center;
}
.thanks-box__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #1f8a5b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.thanks-box__ttl {
  font-size: 22px;
  font-size: 2.2rem;
  color: #0b2350;
  margin-bottom: 14px;
}
.thanks-box__lead {
  color: #5b6b83;
  line-height: 1.9;
  margin-bottom: 30px;
}
.thanks-box__lead a {
  color: #1f5fd0;
  font-weight: 700;
}

.work-detail {
  max-width: 900px;
  margin-inline: auto;
}
.work-detail__cat {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f5fd0;
  background: #eaf3fc;
  padding: 5px 16px;
  border-radius: 999px;
}
.work-detail__ttl {
  font-size: 26px;
  font-size: 2.6rem;
  color: #0b2350;
  margin: 14px 0 24px;
  line-height: 1.5;
}
.work-detail__ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
@media (max-width: 720px) {
  .work-detail__ba {
    grid-template-columns: 1fr;
  }
}
.work-detail__img {
  position: relative;
  margin: 0;
}
.work-detail__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.work-detail__img figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 12px;
  border-radius: 5px;
}
.work-detail__img:last-child figcaption {
  left: auto;
  right: 10px;
}
.work-detail__body {
  font-size: 15px;
  font-size: 1.5rem;
  color: #2a3a52;
  line-height: 1.9;
}
.work-detail__body p {
  margin-bottom: 1.1em;
}
.work-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.work-detail__img img, .work-detail__body img, .post-detail__body img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.post-detail {
  max-width: 820px;
  margin-inline: auto;
}
.post-detail__thumb {
  margin: 1rem auto;
  width: fit-content;
}
.post-detail__thumb img {
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
}
.post-detail__thumb:has(img[src=""]), .post-detail__thumb:has(img:not([src])) {
  display: none;
}
.post-detail__date {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
}
.post-detail__ttl {
  font-size: 26px;
  font-size: 2.6rem;
  color: #0b2350;
  margin: 6px 0 24px;
  line-height: 1.5;
}
.post-detail__body {
  font-size: 15px;
  font-size: 1.5rem;
  color: #2a3a52;
  line-height: 1.95;
}
.post-detail__body p {
  margin-bottom: 1.1em;
}
.post-detail__body h2, .post-detail__body h3, .post-detail__body h4 {
  color: #0b2350;
  margin: 1.6em 0 0.6em;
  line-height: 1.5;
}
.post-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5em 0;
}
.post-detail__body a {
  color: #1f5fd0;
  text-decoration: underline;
}
.post-detail__body ul, .post-detail__body ol {
  padding-left: 1.5em;
  margin-bottom: 1.1em;
}
.post-detail__body blockquote {
  border-left: 3px solid #cfe0f2;
  padding-left: 1em;
  color: #5b6b83;
  margin: 1em 0;
}

.svc-tab-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.svc-tab-card {
  border-radius: 14px;
  padding: 20px 26px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.svc-tab-card--water {
  background: linear-gradient(105deg, #0b2350 0%, #2f6fd0 100%);
}
.svc-tab-card--benri {
  background: linear-gradient(105deg, #133e35 0%, #2f8a63 100%);
}
.svc-tab-card .no {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 34px;
  font-size: 3.4rem;
  opacity: 0.6;
}
.svc-tab-card .tx b {
  font-size: 20px;
  font-size: 2rem;
  display: block;
}
.svc-tab-card .tx span {
  font-size: 12.5px;
  font-size: 1.25rem;
  opacity: 0.9;
}

.svc-block {
  margin-bottom: 0;
}

.svc-band--water {
  background: #EAF3FC;
}

.svc-band--benri {
  background: #EEF6F4;
}

.svc-block__ttl {
  font-size: 24px;
  font-size: 2.4rem;
  color: #0b2350;
  padding-left: 14px;
  border-left: 5px solid #1f5fd0;
  margin-bottom: 8px;
}
.svc-block__ttl .en {
  display: block;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-size: 1.1rem;
  color: #1f5fd0;
}

.svc-block#benri .svc-block__ttl {
  border-left-color: #1f8a5b;
}
.svc-block#benri .svc-block__ttl .en {
  color: #1f8a5b;
}

.price-cats-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  color: #0b2350;
  margin: 4px 0 16px;
}
.price-cats-ttl .tax {
  font-size: 12px;
  font-size: 1.2rem;
  color: #5b6b83;
  font-weight: 400;
}

.price-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .price-cats {
    grid-template-columns: 1fr;
  }
}

.price-cat {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  align-self: start;
}
.price-cat__ttl {
  background: #dcefe3;
  color: #2f6b4a;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 9px 18px;
}
.price-cat__tbl {
  width: 100%;
}
.price-cat__tbl th, .price-cat__tbl td {
  padding: 9px 18px;
  border-bottom: 1px solid #e5ecf6;
  font-size: 13.5px;
  font-size: 1.35rem;
  vertical-align: middle;
}
.price-cat__tbl th {
  text-align: left;
  color: #0b2350;
  font-weight: 500;
}
.price-cat__tbl td {
  text-align: right;
  color: #1f8a5b;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.price-cat__tbl tr:last-child th, .price-cat__tbl tr:last-child td {
  border-bottom: none;
}

.svc-lead {
  color: #5b6b83;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.svc-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.svc-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.svc-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.svc-item .cap {
  padding: 10px 12px;
}
.svc-item .cap b {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  color: #0b2350;
}
.svc-item .cap span {
  font-size: 11.5px;
  font-size: 1.15rem;
  color: #5b6b83;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.svc-tags li {
  font-size: 12.5px;
  font-size: 1.25rem;
  background: #fff;
  border: 1px solid #cfe0f2;
  color: #0b2350;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
}
.price-table th, .price-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #e5ecf6;
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: middle;
}
.price-table th {
  color: #0b2350;
  font-weight: 500;
  text-align: left;
  width: 60%;
}
.price-table td {
  text-align: right;
  color: #1f5fd0;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.price-table tr:last-child th, .price-table tr:last-child td {
  border-bottom: none;
}
.price-table caption {
  text-align: left;
  font-weight: 700;
  color: #0b2350;
  padding: 10px 4px;
  font-size: 15px;
  font-size: 1.5rem;
}
.price-table caption .tax {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #5b6b83;
}

.price-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.estimate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.estimate-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.estimate-card .ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: #eaf3fc;
  border-radius: 12px;
}
.estimate-card .ic svg {
  width: 30px;
  height: 30px;
  fill: #1f5fd0;
}
.estimate-card b {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #0b2350;
}
.estimate-card p, .estimate-card div.cms-p {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
  margin-top: 6px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.flow__step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.flow__step::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: #cfe0f2;
  z-index: 0;
}
.flow__step:first-child::before {
  display: none;
}
.flow__step .num {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #1f5fd0;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
.flow__step:last-child .num {
  background: #1f8a5b;
}
.flow__step .box {
  background: #fff;
  border-radius: 10px;
  padding: 14px 10px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.flow__step .box b {
  display: block;
  font-size: 13.5px;
  font-size: 1.35rem;
  color: #0b2350;
}
.flow__step .box span {
  font-size: 12px;
  font-size: 1.2rem;
  color: #5b6b83;
}

.msg {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

.msg__photo {
  position: relative;
  aspect-ratio: 440/527;
  background: #f4f8fd;
  border-radius: 4px;
  border: 2px solid #1f5fd0;
}
.msg__photo img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.msg__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(20px, 20px);
  border: 3px solid #8fe3c0;
  border-radius: 4px;
  z-index: -1;
}

.msg__body .msg__lead {
  font-size: 24px;
  font-size: 2.4rem;
  color: #0b2350;
  font-family: "Zen Maru Gothic", "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.6;
}
.msg__body p, .msg__body div.cms-p:not(.msg__lead) {
  font-size: 14.5px;
  font-size: 1.45rem;
  color: #2a3a52;
}
.msg__body p + p, .msg__body p + div.cms-p, .msg__body div.cms-p:not(.msg__lead) + p, .msg__body div.cms-p:not(.msg__lead) + div.cms-p {
  margin-top: 16px;
}
.msg__body p strong, .msg__body div.cms-p:not(.msg__lead) strong {
  font-size: 19.5px;
  font-size: 1.95rem;
  color: #0b2350;
}

.profile-table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(11, 35, 80, 0.1);
  max-width: 900px;
  margin-inline: auto;
}
.profile-table th, .profile-table td {
  padding: 16px 22px;
  border-bottom: 1px solid #e5ecf6;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
  vertical-align: top;
}
.profile-table th {
  width: 190px;
  background: #eef0f4;
  color: #0b2350;
  font-weight: 700;
  white-space: nowrap;
}
.profile-table tr:last-child th, .profile-table tr:last-child td {
  border-bottom: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f5fd0;
  text-decoration: none;
  vertical-align: baseline;
}
.map-link__ic {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: none;
}
.map-link:hover {
  text-decoration: underline;
}

.area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.area__map {
  position: relative;
}
.area__map img {
  width: 100%;
}
.area__map .van {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
}

.area__body .area__en {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-size: 1.2rem;
  color: #1f5fd0;
}
.area__body .area__lead {
  font-size: 14px;
  font-size: 1.4rem;
  color: #2a3a52;
  margin: 6px 0 16px;
}
.area__body .area__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.area__body .area__tags li {
  background: #fff;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b2350;
}
.area__body .area__tags li::before {
  content: "📍";
  margin-right: 4px;
}
.area__body .area__note {
  font-size: 13px;
  font-size: 1.3rem;
  color: #5b6b83;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
}
.contact-card h3 {
  font-size: 17px;
  font-size: 1.7rem;
  color: #0b2350;
  margin-bottom: 10px;
}
.contact-card .tel {
  font-family: "M PLUS Rounded 1c", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  color: #0b2350;
  display: block;
}
.contact-card .note {
  font-size: 12.5px;
  font-size: 1.25rem;
  color: #5b6b83;
  margin: 6px 0 14px;
}
.contact-card .qr {
  width: 130px;
  margin: 0 auto 14px;
}
.contact-card .qr img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-visual {
  max-width: 760px;
  margin: 0 auto 24px;
}
.contact-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.mailform {
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
  max-width: 760px;
  margin-inline: auto;
}
.mailform .mf-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  color: #0b2350;
  padding-left: 12px;
  border-left: 4px solid #1f5fd0;
  margin-bottom: 20px;
}
.mailform .mf-row {
  margin-bottom: 18px;
}
.mailform label {
  display: block;
  font-weight: 700;
  color: #0b2350;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.mailform label .req {
  font-size: 11px;
  font-size: 1.1rem;
  background: #e8502e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}
.mailform label .any {
  font-size: 11px;
  font-size: 1.1rem;
  background: #cfe0f2;
  color: #0b2350;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}
.mailform input, .mailform textarea, .mailform select {
  width: 100%;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fbfdff;
}
.mailform input:focus, .mailform textarea:focus, .mailform select:focus {
  outline: none;
  border-color: #1f5fd0;
}
.mailform .mf-submit {
  text-align: center;
  margin-top: 26px;
}
.mailform .mf-submit button {
  background: #0b2350;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 25px;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.mailform .mf-submit button:hover {
  opacity: 0.9;
}

.cms-form {
  background: #fff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 2px 6px rgba(11, 35, 80, 0.08);
  border: 1px solid #e5ecf6;
  max-width: 760px;
  margin-inline: auto;
}
@media (max-width: 720px) {
  .cms-form {
    padding: 24px 18px;
  }
}
.cms-form .mf-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  color: #0b2350;
  padding-left: 12px;
  border-left: 4px solid #1f5fd0;
  margin-bottom: 20px;
}
.cms-form .form-contents {
  max-width: none;
}
.cms-form .form-contents .form-err-msg:not(:empty) {
  color: #d9333f;
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cms-form .form-contents dl {
  display: block !important;
  margin: 0;
  padding: 0;
}
.cms-form .form-contents dt {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 18px 0 6px;
  padding: 0;
}
.cms-form .form-contents dt:first-of-type {
  margin-top: 0;
}
.cms-form .form-contents dt span {
  color: #0b2350 !important;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  background: none !important;
  padding: 0 !important;
}
.cms-form .form-contents dt .required::before {
  background: #e8502e !important;
  color: #fff !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  margin-right: 8px;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: middle;
}
.cms-form .form-contents dt .free::before, .cms-form .form-contents dt .optional::before, .cms-form .form-contents dt .any::before {
  background: #cfe0f2 !important;
  color: #0b2350 !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  margin-right: 8px;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: middle;
}
.cms-form .form-contents dd {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}
.cms-form .form-contents dd input, .cms-form .form-contents dd select, .cms-form .form-contents dd textarea {
  width: 100%;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fbfdff;
  color: #2a3a52;
  box-sizing: border-box;
}
.cms-form .form-contents dd input:focus, .cms-form .form-contents dd select:focus, .cms-form .form-contents dd textarea:focus {
  outline: none;
  border-color: #1f5fd0;
}
.cms-form .form-contents dd textarea {
  min-height: 140px;
  resize: vertical;
}
.cms-form .form-contents .submit-btn {
  display: block;
  width: auto;
  margin: 28px auto 0;
  background: #0b2350;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 44px;
  font-weight: 700;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.cms-form .form-contents .submit-btn:hover {
  opacity: 0.9;
}

.cms-form .form-contents form dl dd:not(.pattern-exclusion) {
  padding-left: 0;
  padding-top: 10px;
}

.cms-form .form-contents form dl dt:not(.pattern-exclusion) {
  padding-top: 10px;
}

.faq-wrap {
  max-width: 860px;
  margin-inline: auto;
}

.faq-cat {
  font-size: 16px;
  font-size: 1.6rem;
  color: #0b2350;
  padding-left: 12px;
  border-left: 4px solid #1f5fd0;
  margin: 30px 0 14px;
}

.accordion.faq {
  margin-bottom: 10px;
}

.accordion.faq.is-open > .inner {
  padding: 20px 16px;
}

.accordion.faq > .ttl::after {
  background: none;
}

@media (max-width: 920px) {
  .reason-grid, .works-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__bubble {
    max-width: 320px;
  }
  .head-cta .hbtn {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 9px 12px;
  }
}
@media (max-width: 720px) {
  .topbar__in {
    padding: 6px 12px;
    gap: 4px 10px;
    flex-wrap: wrap;
    font-size: 10.5px;
    font-size: 1.05rem;
  }
  .topbar__area .ic {
    width: 12px;
    height: 12px;
  }
  .head-cta {
    display: none;
  }
  #header #logo .logo-catch {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .hero {
    padding: 0;
  }
  .hero__slides {
    max-width: none;
  }
  .hero__grid {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 18px 0;
    gap: 12px;
  }
  .hero__label {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .hero__catch {
    max-width: 240px;
  }
  .hero__desc {
    font-size: 13px;
    font-size: 1.3rem;
    max-width: 100%;
  }
  .hero__bubble {
    display: none;
  }
  .hero__features {
    bottom: 14px;
    padding: 0 10px;
  }
  .hero .features {
    gap: 6px;
    padding: 0;
  }
  .hero .feature {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 6px 12px;
  }
  .hero__dots {
    display: none;
  }
  .sec-head {
    margin-bottom: 32px;
  }
  .sec-head__ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .reason-lead {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 40px;
  }
  .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .svcard__photo {
    max-width: 100%;
  }
  .works-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .svc-tab-cards {
    grid-template-columns: 1fr;
  }
  .svc-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-cols {
    grid-template-columns: 1fr;
  }
  .price-cats {
    grid-template-columns: 1fr;
  }
  .estimate-cards {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .flow__step {
    padding: 0;
  }
  .flow__step::before {
    display: none;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .msg {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .msg__photo {
    max-width: 280px;
    margin-inline: auto;
  }
  .msg__body .msg__lead {
    font-size: 20px;
    font-size: 2rem;
  }
  .area {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .area__tags {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-table th {
    width: 120px;
    white-space: normal;
  }
  .contact-band .container {
    flex-direction: column;
  }
  .contact-band__ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .contact-band__chara {
    width: 150px;
    margin: 18px 0 0;
  }
  .contact-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cbtn {
    width: 100%;
  }
  #footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  #page-title .inner {
    padding: 36px 18px 34px;
  }
  #page-title .pt-ttl {
    font-size: 28px;
    font-size: 2.8rem;
  }
  #page-title .pt-plus {
    font-size: 110px;
    right: 2%;
  }
  .svc-block__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 440px) {
  .trouble-grid {
    grid-template-columns: 1fr;
  }
  .svc-items {
    grid-template-columns: 1fr;
  }
  .area__tags {
    grid-template-columns: 1fr;
  }
  .topbar__area {
    display: none;
  }
  .hero__catch {
    max-width: 200px;
  }
}
.cms-p p {
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.cms-p p + p {
  margin-top: 1em;
}

span.cms-p > [id^=cms-text-],
span.cms-p > [id^=cms-text-] > p {
  display: inline;
}

@media (max-width: 920px) {
  .footer-contact a {
    padding: 180px 60px;
  }
  .footer-contact h2 .en {
    font-size: 6rem;
  }
  .footer-contact h2 .ja {
    font-size: 1.5rem;
  }
  #header .contact_btn {
    display: none;
  }
  .mv .catch h1 {
    font-size: 4.5rem;
  }
  .mv .catch p {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 36px;
    font-size: 3.6rem;
  }
  h3 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .title .en {
    font-size: 6rem;
  }
  .title .ja {
    font-size: 1.6rem;
  }
}
@media (max-width: 720px) {
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  #header .inner {
    padding: 10px 20px;
  }
  #header #logo {
    width: 90px;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 33.3333333333%;
  }
  .sp-btn p a {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  .footer-contact a {
    padding: 120px 40px;
  }
  .footer-contact h2 .en {
    font-size: 4rem;
  }
  .flogo {
    width: 100px;
  }
  #footer .inner {
    padding: 0 20px;
    font-size: 1.4rem;
  }
  #footer .link-list {
    font-size: 1.4rem;
  }
  #nav-toggle {
    position: fixed;
    right: 16px;
    top: 10px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(11, 35, 80, 0.18);
    cursor: pointer;
    z-index: 210;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 28px;
    block-size: 24px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 2px;
    border-radius: 2px;
    background: #0b2350;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  #nav-toggle.is-active .bars i {
    background: #1f5fd0;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .sub-page #nav-toggle .bars i {
    background: #2a3a52;
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: #f4f8fd;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 205;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 14px;
    color: #2a3a52;
    text-decoration: none;
    border-bottom: 1px solid #1f5fd0;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav li a span {
    display: none;
  }
  #sp-nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn .big {
    width: 100%;
  }
  #sp-nav .contact_btn .big a {
    background: #ffffff;
    max-width: 260px;
    margin-inline: auto;
    color: #1f5fd0;
    border: 1px solid #1f5fd0;
  }
  #sp-nav .contact_btn img {
    filter: brightness(0.3);
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 0;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .mv .catch h1 {
    margin-bottom: 40px;
    font-size: 4rem;
  }
  .mv .catch p {
    font-size: 2rem;
  }
  #page-title .inner {
    padding: 20px 40px 60px;
  }
  #page-title .inner .title {
    margin-bottom: 40px;
  }
  .blog-list {
    gap: 10px;
  }
  .blog-list li {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .container--full {
    padding-left: 0;
    padding-right: 0;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .pcbr {
    display: none;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  .grid {
    gap: 12px;
  }
  .b-m120 {
    margin-bottom: 60px;
  }
}
@media (max-width: 440px) {
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 10px;
  }
  #header .inner #logo {
    width: auto;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  .copyright {
    padding-top: 40px;
    text-align: center;
  }
  .footer-contact a {
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
  }
  #footer {
    text-align: center;
  }
  #footer .inner {
    flex-direction: column;
  }
  .footer_navi {
    display: none;
  }
  .flogo {
    margin-inline: auto;
  }
  .mv .mv-img img {
    aspect-ratio: 390/600;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv .catch h1 {
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .list--disc li {
    font-size: 1.6rem;
  }
  .list--disc li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .news-list li {
    padding: 8px;
  }
  .news-list .date {
    font-size: 1.4rem;
  }
  .news-list .ttl {
    font-size: 1.4rem;
  }
  .blog-list li a {
    padding: 10px;
    gap: 16px;
  }
  .blog-list .img {
    flex: 0 0 120px;
  }
  .blog-list .text .ttl {
    font-size: 1.6rem;
  }
  .blog-list .text .detail {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
    line-height: 1.2;
  }
  .img-sp6-4 img {
    aspect-ratio: 6/4;
  }
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .b-m40 {
    margin-bottom: 20px;
  }
  .b-m60 {
    margin-bottom: 30px;
  }
  .b-m80 {
    margin-bottom: 40px;
  }
  .mb-80 {
    margin-bottom: 40px;
  }
  .tcenter_pc {
    text-align: left;
  }
  .pl-40 {
    padding-left: 0;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .title .en {
    font-size: 4rem;
  }
  .title .ja {
    font-size: 1.4rem;
  }
  .sub-ttl {
    font-size: 1.6rem;
  }
  .bigger {
    font-size: 1.1em;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  #page-title .inner {
    padding: 20px 20px 30px;
  }
  #page-title .inner img {
    height: 200px;
  }
  #form {
    padding: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .b-m120 {
    margin-bottom: 30px;
  }
  .copyright {
    justify-content: center;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}
@media (max-width: 1360px) {
  #header_nav {
    display: none;
  }
  .head-cta {
    display: none;
  }
  #header .inner {
    padding: 10px 16px;
  }
  #nav-toggle {
    display: grid;
    position: fixed;
    right: 16px;
    top: 65px;
    inline-size: 44px;
    block-size: 44px;
    place-items: center;
    background: #fff;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(11, 35, 80, 0.18);
    cursor: pointer;
    z-index: 210;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 28px;
    block-size: 24px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 2px;
    border-radius: 2px;
    background: #0b2350;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: #f4f8fd;
    opacity: 0;
    z-index: -10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 205;
  }
  #sp-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav nav a {
    font-size: 15px;
    color: #0b2350;
    text-decoration: none;
    border-bottom: 1px solid #e5ecf6;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav nav a span {
    display: none;
  }
}
