@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield; /* Firefox対応 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html,
body {
  font-family: "Shippori Mincho", serif;
}

body {
  width: 100%;
  font-size: clamp(16px, 16px + (4) * (100vw - 375px) / (1065), 20px);
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  color: #000000;
  font-weight: 500;
  line-height: 1.5;
}
body img {
  display: block;
  width: 100%;
}

.u-pdt0 {
  padding-top: 0 !important;
}

.u-pdt8 {
  padding-top: 8px !important;
}

.u-pdt16 {
  padding-top: 16px !important;
}

.u-pdt24 {
  padding-top: 24px !important;
}

.u-pdt32 {
  padding-top: 32px !important;
}

.u-pdt40 {
  padding-top: 40px !important;
}

.u-pdt50 {
  padding-top: 50px !important;
}

.u-pdb0 {
  padding-bottom: 0 !important;
}

.u-pdb8 {
  padding-bottom: 8px !important;
}

.u-pdb16 {
  padding-bottom: 16px !important;
}

.u-pdb24 {
  padding-bottom: 24px !important;
}

.u-pdb32 {
  padding-bottom: 32px !important;
}

.u-pdb40 {
  padding-bottom: 40px !important;
}

.u-pdb50 {
  padding-bottom: 50px !important;
}

.u-mgt0 {
  margin-top: 0 !important;
}

.u-mgt8 {
  margin-top: 8px !important;
}

.u-mgt16 {
  margin-top: 16px !important;
}

.u-mgt24 {
  margin-top: 24px !important;
}

.u-mgt32 {
  margin-top: 32px !important;
}

.u-mgt40 {
  margin-top: 40px !important;
}

.u-mgt50 {
  margin-top: 50px !important;
}

.u-mgb0 {
  margin-bottom: 0 !important;
}

.u-mgb8 {
  margin-bottom: 8px !important;
}

.u-mgb16 {
  margin-bottom: 16px !important;
}

.u-mgb20 {
  margin-bottom: 20px !important;
}

.u-mgb30 {
  margin-bottom: 30px !important;
}

.u-mgb40 {
  margin-bottom: 40px !important;
}

.u-mgb50 {
  margin-bottom: 50px !important;
}

.u-hr {
  height: 1px;
  border: none;
  background-color: #CCCCCC;
}

.u-txt-bold {
  font-weight: bold;
}

.u-txt-center {
  text-align: center;
}

.u-txt-right {
  text-align: right;
}

.u-txt-red {
  color: #FF5757;
}

.u-txt-caution {
  display: block;
  color: #8D1E1E;
}

.u-txt-highlight {
  font-weight: bold;
  color: #121E34;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #D6E3F9 50%, #D6E3F9 100%);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

@media screen and (min-width: 1025px) {
  .u-pc-none {
    display: none !important;
  }
}

.u-sp-none {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .u-sp-none {
    display: revert !important;
  }
}

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

.u-sp-none-swiper {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .u-sp-none-swiper {
    display: flex !important;
  }
}

.u-color-main {
  color: #121E34;
}

.u-vertical-center {
  place-content: center;
}

.u-nowrap {
  white-space: nowrap;
}

.u-border {
  border: 1px solid #D6D6D6;
  padding: 16px;
}

.u-break-word {
  word-break: break-word;
}

.c-cec-inner {
  background-color: #121E34;
  padding: 56px 16px;
  color: #fff;
}
@media screen and (width >= 1025px) {
  .c-cec-inner {
    padding: 100px 0;
  }
}
@media screen and (width >= 1025px) {
  .c-cec-inner .c-cec-cont {
    max-width: 800px;
    margin-inline: auto;
  }
}
.c-cec-inner.sec-w {
  background-image: url(../img/img_bg_w.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #121E34;
  background-attachment: scroll;
}
@media screen and (width >= 1025px) {
  .c-cec-inner.sec-w {
    background-attachment: fixed;
  }
}
@media screen and (width >= 1025px) {
  .c-cec-inner .c-cec-cont-wide {
    max-width: 1000px;
    margin-inline: auto;
  }
}

.remodal {
  max-width: 800px;
  padding: 0;
  width: 100%;
  margin-inline: auto;
}

.modal-inner {
  background: #fff;
  padding: 40px 16px;
  max-width: 800px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (width >= 769px) {
  .modal-inner {
    padding: 56px;
    max-width: 800px;
  }
}
.modal-inner .modal-top {
  font-size: clamp(18px, 18px + (2) * (100vw - 375px) / (1065), 20px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #121E34;
}
@media screen and (width >= 769px) {
  .modal-inner .modal-top {
    margin-bottom: 16px;
  }
}
.modal-inner p {
  font-size: clamp(14px, 14px + (2) * (100vw - 375px) / (1065), 16px);
  text-align: start;
  line-height: 1.5;
}
.modal-inner .js-modal-close {
  background-color: #121E34;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  color: #fff;
  margin-top: 24px;
  transition: filter 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border: 1px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .modal-inner .js-modal-close:hover:hover {
    background-color: #fff;
    border: 1px solid #121E34;
    color: #121E34;
  }
}
@media screen and (width >= 769px) {
  .modal-inner .js-modal-close {
    padding: 24px 0;
    margin-top: 32px;
  }
}

.c-cec-ttl {
  font-size: clamp(22px, 22px + (8) * (100vw - 375px) / (1065), 30px);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 32px;
  margin-inline: auto;
  background: linear-gradient(to bottom, #FFFFFF, #BFAD6D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (width >= 1025px) {
  .c-cec-ttl {
    margin-bottom: 56px;
  }
}
.c-cec-ttl::before, .c-cec-ttl::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background-color: #D9CEA7;
}
@media screen and (width >= 1025px) {
  .c-cec-ttl::before, .c-cec-ttl::after {
    width: 24px;
  }
}
.c-cec-ttl.sec-w {
  background: linear-gradient(to bottom, #121E34, #BFAD6D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-cec-ttl.sec-w::before, .c-cec-ttl.sec-w::after {
  background-color: #121E34;
}

.c-cec__case-ttl {
  font-size: clamp(18px, 18px + (2) * (100vw - 375px) / (1065), 20px);
  padding: 12px 4px;
  border-top: 0.5px solid #0B121F;
  border-bottom: 0.5px solid #0B121F;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 56px;
  margin-bottom: 40px;
  margin-inline: auto;
  font-weight: 700;
  background: linear-gradient(to bottom, #121E34, #BFAD6D, #121E34 0%, #121E34 40%, #BFAD6D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

main {
  overflow: hidden;
}

body {
  background-color: #121E34;
}

.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #121E34;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
.p-home-entry {
  position: fixed;
  z-index: 999;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(11, 18, 31, 0.5);
}
@media screen and (width >= 769px) {
  .p-home-entry {
    width: auto;
    bottom: 16px;
    right: 16px;
    left: auto;
    transform: none;
    background-color: transparent;
  }
}
.p-home-entry a {
  display: block;
  width: 250px;
  height: 50px;
  margin: 8px 0;
  margin-inline: auto;
  color: #fff;
  background-image: url(../img/img_mv_btn.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0.5px solid #fff;
  font-size: clamp(14px, 14px + (3) * (100vw - 375px) / (1065), 17px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: left 0.5s, top 0.5s, background-color 0.5s;
}
@media screen and (width >= 769px) {
  .p-home-entry a {
    width: 285px;
    height: 70px;
    margin-inline: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-home-entry a:hover:hover {
    color: #fff;
  }
}
.p-home-entry a::after,
.p-home-entry a ::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  box-sizing: border-box;
  transition: left 0.5s, top 0.5s, background-color 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-entry a:hover:hover::after {
    top: 0;
    left: 0;
    background-color: #0B121F;
  }
}
.p-home-entry a::after {
  top: 0;
  left: -500px;
  width: 100%;
  height: 100%;
}

.p-home-mv {
  background-color: #121E34;
  background: url(../img/img_mv.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.35rem;
}
@media screen and (width >= 1025px) {
  .p-home-mv {
    letter-spacing: 0.4rem;
    background-attachment: fixed;
  }
}
.p-home-mv .p-home-mv__cont {
  color: #fff;
  margin-inline: auto;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  padding-inline: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (width >= 1025px) {
  .p-home-mv .p-home-mv__cont {
    writing-mode: vertical-rl;
    top: 40%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%);
    text-align: start;
    flex-direction: row;
    gap: 100px;
  }
}
.p-home-mv .p-home-mv__cont .text-combine {
  text-combine-upright: all;
  display: inline-block;
  transform: translateX(0) translateY(0);
}
@media screen and (width >= 1025px) {
  .p-home-mv .p-home-mv__cont .text-combine {
    transform: translateX(0) translateY(-0.2em);
  }
}
.p-home-mv .p-home-mv__cont .text-combine.center {
  transform: translateX(-0.1em) translateY(0);
}
@media screen and (width >= 1025px) {
  .p-home-mv .p-home-mv__cont .text-combine.center {
    transform: translateX(-0.1em) translateY(-0.2em);
  }
}
@supports (background: -webkit-named-image(i)) {
  .p-home-mv .p-home-mv__cont .text-combine {
    position: relative;
    left: 0.2rem;
  }
}

.p-home-mv__ttl-sub {
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
  white-space: nowrap;
  word-break: keep-all;
  margin-bottom: 4%;
}
@media screen and (width >= 1025px) {
  .p-home-mv__ttl-sub {
    margin-bottom: 0;
  }
}

.p-home-mv__ttl {
  font-size: clamp(24px, 24px + (24) * (100vw - 375px) / (1065), 48px);
  margin-top: 0%;
  white-space: nowrap;
  margin-bottom: 5%;
  font-weight: 700;
}
@media screen and (width >= 1025px) {
  .p-home-mv__ttl {
    padding: 0 20px 0 24px;
    margin-top: 8%;
    margin-bottom: 0;
  }
}

.p-home-mv__text {
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
  margin-top: 0;
  white-space: nowrap;
  margin-bottom: 24px;
  line-height: 1.8;
}
@media screen and (width >= 1025px) {
  .p-home-mv__text {
    margin-top: 30%;
    margin-bottom: 0;
  }
}
.p-home-mv__text span {
  display: inline-block;
  margin-top: 0%;
}
@media screen and (width >= 1025px) {
  .p-home-mv__text span {
    margin-top: 4%;
  }
}

/* フェードイン */
.js-fadein {
  opacity: 0;
  transform: translateY(20px);
}

/* アニメーション用のクラスが付与された時の状態 */
.js-fadein.is-animated {
  animation: fadeinUp 1.5s ease-out forwards;
}

/* フェードインしながら上に上がるアニメーションの定義（キーフレーム） */
@keyframes fadeinUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-home-about {
  text-align: center;
  margin-top: -1px;
  position: relative;
}
.p-home-about .p-home-deco {
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 300px;
}
@media screen and (width >= 1025px) {
  .p-home-about .p-home-deco {
    bottom: -20%;
    left: -13%;
    width: 700px;
  }
}
.p-home-about .p-home-deco img {
  opacity: 0.04;
}
.p-home-about .p-home-about__text-top {
  font-size: clamp(18px, 18px + (14) * (100vw - 375px) / (1065), 32px);
  line-height: 2;
  margin-bottom: 24px;
  letter-spacing: 3%;
}
@media screen and (width >= 1025px) {
  .p-home-about .p-home-about__text-top {
    margin-bottom: 40px;
  }
}
.p-home-about .p-home-about__text {
  font-size: clamp(14px, 14px + (4) * (100vw - 375px) / (1065), 18px);
  line-height: 2.5;
}

.p-home-summary .p-home-summary__wrap table {
  margin-inline: auto;
}
.p-home-summary .p-home-summary__wrap table tbody tr {
  background-color: rgba(255, 255, 255, 0.2);
  border-top: 0.5px solid #121E34;
  display: block;
}
.p-home-summary .p-home-summary__wrap table tbody tr:last-of-type {
  border-bottom: 0.5px solid #121E34;
}
.p-home-summary .p-home-summary__wrap table tbody tr.p-home-summary__table-gray {
  background-color: rgba(224, 224, 224, 0.2);
}
@media screen and (width >= 1025px) {
  .p-home-summary .p-home-summary__wrap table tbody tr {
    display: table-row;
  }
}
.p-home-summary .p-home-summary__wrap table tbody tr th {
  font-size: clamp(16px, 16px + (4) * (100vw - 375px) / (1065), 20px);
  font-weight: 600;
  padding: 16px 0 4px 16px;
  display: block;
}
@media screen and (width >= 1025px) {
  .p-home-summary .p-home-summary__wrap table tbody tr th {
    display: table-cell;
    width: 17%;
    border-right: 0.5px solid #121E34;
    vertical-align: middle;
    border-bottom: none;
    padding: 24px 0 24px 24px;
  }
}
.p-home-summary .p-home-summary__wrap table tbody tr td {
  padding: 4px 8px 16px 16px;
  display: block;
}
@media screen and (width >= 1025px) {
  .p-home-summary .p-home-summary__wrap table tbody tr td {
    display: table-cell;
    width: 83%;
    padding: 24px 16px 24px 24px;
  }
}
.p-home-summary .p-home-summary__wrap table tbody tr td p {
  font-size: clamp(14px, 14px + (4) * (100vw - 375px) / (1065), 18px);
}

.p-home-course {
  position: relative;
}
.p-home-course .p-home-deco_01 {
  position: absolute;
  top: -1%;
  right: -15%;
  width: 300px;
  z-index: 1;
}
@media screen and (width >= 1025px) {
  .p-home-course .p-home-deco_01 {
    top: -4%;
    right: -10%;
    width: 728px;
  }
}
.p-home-course .p-home-deco_01 img {
  opacity: 0.04;
}
.p-home-course .p-home-deco_02 {
  position: absolute;
  bottom: -1%;
  left: -40%;
  width: 500px;
  z-index: 1;
}
@media screen and (width >= 1025px) {
  .p-home-course .p-home-deco_02 {
    bottom: -3%;
    left: -25%;
    width: 1300px;
  }
}
.p-home-course .p-home-deco_02 img {
  opacity: 0.04;
}
.p-home-course .c-cec-cont-wide {
  position: relative;
  z-index: 2;
}
.p-home-course .p-home-course__nav {
  margin-bottom: 32px;
}
@media screen and (width >= 1025px) {
  .p-home-course .p-home-course__nav {
    margin-bottom: 56px;
  }
}
.p-home-course .p-home-course__nav .p-home-course__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
}
@media screen and (width >= 1025px) {
  .p-home-course .p-home-course__nav .p-home-course__nav-list {
    gap: 40px;
  }
}
.p-home-course .p-home-course__nav .p-home-course__nav-list li {
  font-size: clamp(14px, 14px + (2) * (100vw - 375px) / (1065), 16px);
}
.p-home-course .p-home-course__nav .p-home-course__nav-list li a {
  padding-bottom: 2px;
  position: relative;
  /* 疑似要素の基準にするため必須 */
  display: inline-block;
  /* 線の幅を文字に合わせるため必須 */
  text-decoration: none;
}
.p-home-course .p-home-course__nav .p-home-course__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  /* 元の線の太さ */
  background-color: #fff;
  /* ▼ アニメーションの要 ▼ */
  transform: scaleX(1);
  /* 最初は100%（表示されている状態） */
  transform-origin: left;
  /* 【重要】左端をピン留めする */
  transition: transform 0.3s ease;
  /* 0.3秒かけて滑らかに変化 */
}
@media (hover: hover) and (pointer: fine) {
  .p-home-course .p-home-course__nav .p-home-course__nav-list li a:hover {
    /* ホバー時の動き */
  }
  .p-home-course .p-home-course__nav .p-home-course__nav-list li a:hover:hover::after {
    transform: scaleX(0);
    /* 線を0%に縮めて見えなくする */
  }
}
.p-home-course .p-home-course__temple-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.p-home-course .p-home-course__temple {
  border: 0.5px solid #fff;
  padding: 16px;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple {
    padding: 40px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  font-size: clamp(14px, 14px + (2) * (100vw - 375px) / (1065), 16px);
  margin-bottom: 16px;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont {
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont figure {
  flex-shrink: 0;
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont figure {
    width: clamp(250px, 250px + (30) * (100vw - 768px) / (672), 280px);
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-ttl {
  font-size: clamp(26px, 26px + (6) * (100vw - 375px) / (1065), 32px);
  margin-bottom: 8px;
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-ttl span {
  font-size: clamp(14px, 14px + (2) * (100vw - 375px) / (1065), 16px);
  margin-left: 4px;
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-text {
  line-height: 2;
  margin-bottom: 16px;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-text {
    margin-bottom: 24px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class {
    flex-direction: column;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class p {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class p {
    gap: 16px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class p span {
  border: 0.5px solid #fff;
  padding: 2px 4px;
  display: inline-block;
  width: 25%;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-cont .p-home-course__temple-info .p-home-course__temple-class p span {
    width: 15%;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn {
  display: flex;
  gap: 8px;
  color: #121E34;
  font-size: clamp(16px, 16px + (4) * (100vw - 375px) / (1065), 20px);
  font-weight: 800;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-btn {
    gap: 16px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item {
  width: 100%;
  z-index: 2;
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont {
  background-color: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border: 0.5px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont:hover:hover {
    background-color: #121E34;
    border: 0.5px solid #fff;
    color: #fff;
  }
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont {
    padding: 24px 0;
    gap: 16px;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont .p-home-course__temple-btn-img,
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont figure {
  display: flex;
  align-items: center;
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont .p-home-course__temple-btn-img svg,
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont figure svg {
  fill: currentColor;
  transition: fill 0.3s ease;
  width: 12px;
  height: 12px;
}
@media screen and (width >= 769px) {
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont .p-home-course__temple-btn-img svg,
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont figure svg {
    width: 18px;
    height: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont .p-home-course__temple-btn-img svg:hover:hover,
  .p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item .p-home-course__temple-btn-item-cont figure svg:hover:hover {
    background-color: #121E34;
    color: #fff;
    border-color: #fff;
  }
}
.p-home-course .p-home-course__temple .p-home-course__temple-btn .p-home-course__temple-btn-item.gold a {
  background-color: #D9CEA7;
}

.p-home-bg {
  height: 150px;
  overflow: hidden;
}
@media screen and (width >= 769px) {
  .p-home-bg {
    height: 300px;
  }
}
.p-home-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}

.p-home-point .p-home-point__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 52px;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__wrap {
    gap: 24px 52px;
  }
}
.p-home-point .p-home-point__wrap .p-home-point__cont {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__wrap .p-home-point__cont {
    width: calc(50% - 26px);
  }
}
.p-home-point .p-home-point__wrap .p-home-point__cont .p-home-point__num {
  font-size: clamp(28px, 28px + (12) * (100vw - 375px) / (1065), 40px);
  color: #fff;
  background-color: #121E34;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
  padding: 8px;
  margin-right: -35px;
  z-index: 1;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__wrap .p-home-point__cont .p-home-point__num {
    padding: 14px;
  }
}
.p-home-point .p-home-point__wrap .p-home-point__cont .p-home-point__text {
  font-size: clamp(16px, 16px + (8) * (100vw - 375px) / (1065), 24px);
  font-weight: 700;
  background-color: #F9F7F0;
  border: 0.5px solid #121E34;
  padding: 16px 40px 16px 70px;
  z-index: 0;
  width: 100%;
}
.p-home-point .p-home-point__case .p-home-point__wcase-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px 28px;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__case .p-home-point__wcase-wrap {
    flex-direction: row;
    gap: 24px 28px;
  }
}
.p-home-point .p-home-point__case .p-home-point__wcase-wrap .p-home-point__case-cont {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(70, 87, 118, 0.15);
  padding: 10px 0;
  width: 100%;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__case .p-home-point__wcase-wrap .p-home-point__case-cont {
    width: calc(50% - 14px);
  }
}
.p-home-point .p-home-point__case .p-home-point__wcase-wrap .p-home-point__case-cont figure {
  width: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (width >= 769px) {
  .p-home-point .p-home-point__case .p-home-point__wcase-wrap .p-home-point__case-cont figure {
    width: 50px;
  }
}
.p-home-point .p-home-point__case .p-home-point__wcase-wrap .p-home-point__case-cont p {
  font-size: clamp(15px, 15px + (5) * (100vw - 375px) / (1065), 20px);
  padding-left: 64px;
}

.p-home-question {
  position: relative;
}
.p-home-question .p-home-deco {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 250px;
}
@media screen and (width >= 1025px) {
  .p-home-question .p-home-deco {
    top: -17%;
    right: -15%;
    width: 735px;
  }
}
.p-home-question .p-home-deco img {
  opacity: 0.04;
}
.p-home-question ul {
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
}
.p-home-question ul li span {
  font-size: clamp(20px, 20px + (10) * (100vw - 375px) / (1065), 30px);
}
.p-home-question ul li .p-home-question__text-question {
  display: flex;
  align-items: center;
  gap: 11px;
  background-color: rgba(70, 87, 118, 0.4);
  padding: 8px 16px;
}
@media screen and (width >= 769px) {
  .p-home-question ul li .p-home-question__text-question {
    padding: 12px 32px;
  }
}
.p-home-question ul li .p-home-question__text-answer {
  display: flex;
  align-items: center;
  gap: 11px;
  background-color: rgba(11, 18, 31, 0.4);
  padding: 8px 16px;
}
@media screen and (width >= 769px) {
  .p-home-question ul li .p-home-question__text-answer {
    padding: 12px 32px;
  }
}

.p-home-register .p-home-register__top {
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
  text-align: center;
}
.p-home-register .p-home-register__cont {
  margin-bottom: 40px;
  max-width: 700px;
  margin-inline: auto;
}
.p-home-register .p-home-register__cont .p-home-register__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (width >= 769px) {
  .p-home-register .p-home-register__cont .p-home-register__list {
    gap: 32px;
  }
}
.p-home-register .p-home-register__cont .p-home-register__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0.5px solid #121E34;
  padding: 6px;
  position: relative;
}
@media screen and (width >= 769px) {
  .p-home-register .p-home-register__cont .p-home-register__list li {
    padding: 8px;
  }
}
.p-home-register .p-home-register__cont .p-home-register__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 12px;
  background: #121E34;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border-radius: 3px;
  position: absolute;
  bottom: -19px;
  left: 17px;
}
@media screen and (width >= 769px) {
  .p-home-register .p-home-register__cont .p-home-register__list li:not(:last-child)::after {
    width: 26px;
    height: 16px;
    bottom: -25px;
    left: 22px;
  }
}
.p-home-register .p-home-register__cont .p-home-register__list li .p-home-register__num {
  font-size: clamp(20px, 20px + (10) * (100vw - 375px) / (1065), 30px);
  color: #fff;
  background-color: #121E34;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding: 8px;
}
@media screen and (width >= 769px) {
  .p-home-register .p-home-register__cont .p-home-register__list li .p-home-register__num {
    padding: 10px;
  }
}
.p-home-register .p-home-register__cont .p-home-register__list li .p-home-register__text {
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
}
.p-home-register .p-home-register__note {
  text-align: center;
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
  color: #8D1E1E;
  background-color: rgba(217, 206, 167, 0.4);
  padding: 16px 4px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.8;
  letter-spacing: 3%;
}

/* ① 初期状態：透明にして、下に40px下げておく */
.js-scroll-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ② 画面に入った時の状態：JavaScriptでこのクラスが付与される */
.js-scroll-fadein.is-animated {
  opacity: 1;
  transform: translateY(0);
}

body {
  position: relative;
}

.l-header .l-header__toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1000;
  background-color: rgba(11, 18, 31, 0.3);
}
@media screen and (width >= 1025px) {
  .l-header .l-header__toggle {
    display: none;
  }
}
.l-header .l-header__toggle span {
  display: block;
  width: 60%;
  height: 2px;
  background: #fff;
  margin: 10px auto;
  transition: 0.3s;
  border-radius: 1px;
}
.l-header .l-header__toggle.is-open span:nth-child(1) {
  transform: translateY(12.5px) rotate(45deg);
}
.l-header .l-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header .l-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-12.5px) rotate(-45deg);
}
.l-header .l-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  overflow: hidden;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.l-header .l-nav.is-open {
  transform: translateX(0);
}
@media screen and (width >= 1025px) {
  .l-header .l-nav {
    transform: translateX(0);
    height: auto;
    width: auto;
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.l-header .l-nav .l-nav-main {
  background-color: #0B121F;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (width >= 1025px) {
  .l-header .l-nav .l-nav-main {
    background-color: rgba(11, 18, 31, 0.3);
    flex-direction: row-reverse;
  }
}
.l-header .l-nav .l-nav-main li {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
}
.l-header .l-nav .l-nav-main li a {
  font-size: clamp(14px, 14px + (0) * (100vw - 375px) / (1065), 14px);
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (width >= 1025px) {
  .l-header .l-nav .l-nav-main li a {
    writing-mode: vertical-rl;
  }
}
.l-header .l-nav .l-nav-main li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  /* 文字から少し下（お好みで調整） */
  left: 0;
  width: 100%;
  /* 文字の幅ピッタリにする */
  height: 1px;
  /* 線の太さ */
  background-color: #fff;
  /* 線の色 */
  /* アニメーション設定：最初は長さを0(非表示)にしておく */
  transform: scaleX(0);
  transform-origin: left;
  /* 左端を起点に設定 */
  transition: transform 0.3s ease;
  /* 0.3秒かけて滑らかに変化 */
}
@media (hover: hover) and (pointer: fine) {
  .l-header .l-nav .l-nav-main li a:hover:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (width >= 1025px) {
  .l-header .l-nav .l-nav-main li a::after {
    bottom: auto;
    left: -2px;
    top: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .l-header .l-nav .l-nav-main li a:hover::after {
    transform: scaleY(1);
  }
}

.l-footer {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (width >= 769px) {
  .l-footer {
    padding-bottom: 40px;
  }
}
.l-footer .p-home-deco {
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 280px;
}
@media screen and (width >= 1025px) {
  .l-footer .p-home-deco {
    bottom: -35%;
    left: -10%;
    width: 690px;
  }
}
.l-footer .p-home-deco img {
  opacity: 0.04;
}
.l-footer .l-footer__cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin-bottom: 56px;
  font-size: clamp(14px, 14px + (6) * (100vw - 375px) / (1065), 20px);
}
.l-footer .l-footer__cont .l-footer__cont-ttl {
  max-width: 140px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (width >= 769px) {
  .l-footer .l-footer__cont .l-footer__cont-ttl {
    max-width: 187px;
    margin-bottom: 100px;
  }
}
.l-footer .l-footer__cont address {
  line-height: 2.2;
}
.l-footer .l-footer__cont .l-footer__cont-form {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.l-footer .l-footer__cont .l-footer__cont-form a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  /* 疑似要素の基準にするため必須 */
  /* 線の幅を文字に合わせるため必須 */
  text-decoration: none;
}
.l-footer .l-footer__cont .l-footer__cont-form a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5px;
  /* 元の線の太さ */
  background-color: #fff;
  /* ▼ アニメーションの要 ▼ */
  transform: scaleX(1);
  /* 最初は100%（表示されている状態） */
  transform-origin: left;
  /* 【重要】左端をピン留めする */
  transition: transform 0.3s ease;
  /* 0.3秒かけて滑らかに変化 */
}
@media (hover: hover) and (pointer: fine) {
  .l-footer .l-footer__cont .l-footer__cont-form a:hover:hover::after {
    transform: scaleX(0);
    /* 線を0%に縮めて見えなくする */
  }
}
.l-footer small {
  margin-top: 40px;
  display: block;
  font-size: clamp(10px, 10px + (1) * (100vw - 375px) / (1065), 11px);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}