@charset "UTF-8";
:root {
  --white: #fff;
  --black: #333333;
  --black-weak: #303030;
  --main: #2a75bf;
  --main-weak: #edf6ff;
  --accent: #eb9021;
  --base: #ebebe5;
  --atten: #898989;
  --border: #bfbfbf;
  --snow: #f5f5f5;
  --greige: #45443e;
  --dotted: #c4bcbc;
  --header-border: #666666;
}

.clamp {
  --min-viewport: 768;
  --max-viewport: 1440;
  --min-size: 64;
  --max-size: 104;
  /* a 傾き */
  --slope: calc(
    (var(--max-size) - var(--min-size)) /
      (var(--max-viewport) - var(--min-viewport))
  );
  /* b 切片 */
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  /* y = ax + b */
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  /* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
  --clamp-size: clamp(
    var(--min-size) / 16 * 1rem,
    var(--fluid-size),
    var(--max-size) / 16 * 1rem
  );
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes hover-arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
/* ------------------------------
数値変換
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  /* 1.15 is the default line-height */
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
  border-top: 1px solid;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  bottom: 0.25em;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  top: -0.5em;
}

ul,
ol {
  list-style-type: none;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input {
  overflow: visible;
}

[hidden] {
  display: none;
}

html {
  min-height: 100%;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--base);
}

/* This file is intentionally left blank. */
/* This file is intentionally left blank. */
.l-header {
  position: fixed;
  top: 0;
  border-bottom: 1px solid var(--header-border);
  z-index: 1000;
  width: 100%;
  padding-block: 16px;
  background-color: var(--base);
}
@media screen and (width <= 1024px) {
  .l-header {
    top: 0;
    padding-block: 15px;
    height: fit-content;
  }
}
.l-header__wrapper {
  margin-left: 36px;
  margin-right: 19px;
  display: flex;
  justify-content: space-between;
}
@media screen and (width <= 1024px) {
  .l-header__wrapper {
    margin-left: 20px;
    margin-right: 19px;
    align-items: center;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  z-index: 1001;
}
.l-header__logo-link {
  transition: all 0.3s ease;
  display: block;
  height: fit-content;
}
@media screen and (width <= 1024px) {
  .l-header__logo-link img {
    max-width: 89px;
    width: 100%;
  }
}
.l-header__logo-link:hover {
  opacity: 0.7;
}
.l-header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.l-header__nav:has(.is-active) {
  display: block;
  position: fixed;
  top: 64px;
  left: 0;
  background-color: var(--base);
  width: 100vw;
  height: 100vh;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
}
.l-header__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (width <= 1024px) {
  .l-header__list {
    display: none;
  }
  .l-header__list.is-active {
    display: block;
    border-top: 1px solid var(--header-border);
    padding: 64px 32px 0;
  }
  .l-header__list.is-active::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 375px;
    background-color: var(--base);
    z-index: -1;
  }
  .l-header__list.is-active li:last-child a {
    margin-bottom: 0;
  }
  .l-header__list.is-active li a {
    display: block;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black-weak);
    font-weight: 500;
    position: relative;
    width: 100%;
    height: auto;
  }
  .l-header__list.is-active li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    background-image: url("../images/common/icon_arrow-black.svg");
    width: 16px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.l-header__item:is(.is-active) {
  display: block;
  margin-top: 60px;
}
.l-header__item:is(.is-active) .l-header__item-link {
  color: var(--white);
  background-color: var(--accent);
  text-align: center;
  padding-block: 15px 20px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 600;
  background-image: none;
  border-bottom: 0;
}
.l-header__item:is(.is-active) .l-header__item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 10px;
  width: 14px;
  height: 8px;
  background-image: url("../images/common/icon_arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.l-header__item--burger {
  display: none;
}
.l-header__item--burger.is-active {
  display: block;
  margin-top: 60px;
  position: relative;
}
.l-header__item--burger.is-active::before {
  content: "";
  background-image: url("../images/common/icon_cta.svg");
  width: 56px;
  height: 50px;
  background-size: contain;
  position: absolute;
  top: -21px;
  left: 17px;
  z-index: 2;
  background-repeat: no-repeat;
}
.l-header__item-link {
  color: var(--black-weak);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  width: fit-content;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.l-header__item-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: -6px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition-duration: 0.3s;
}
@media screen and (width <= 1024px) {
  .l-header__item-link::after {
    height: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__item-link:hover::after {
    transform: scale(1, 1);
  }
}
.l-header__submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (width <= 1024px) {
  .l-header__submit {
    display: none;
  }
}
.l-header__submit a {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding-block: 10px 11px;
  padding-inline: 26px;
  border: 2px solid var(--accent);
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__submit a:hover {
    color: var(--accent);
    background-color: var(--white);
    border-color: var(--accent);
  }
}
.l-header__burger {
  display: none;
  position: relative;
  cursor: pointer;
}
@media screen and (width <= 1024px) {
  .l-header__burger {
    display: block;
  }
}
.l-header__button {
  display: none;
}
@media screen and (width <= 1024px) {
  .l-header__button {
    display: grid;
    row-gap: 7px;
    justify-content: flex-end;
    width: 100%;
    justify-items: end;
  }
}
.l-header__line {
  display: block;
  background-color: var(--black-weak);
  height: 1px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1001;
}
.l-header__line:nth-of-type(1) {
  width: 50px;
}
.l-header__line:nth-of-type(1).is-active {
  transform: translateY(7px) rotate(-20deg);
}
.l-header__line:nth-of-type(2) {
  width: 42px;
}
.l-header__line:nth-of-type(2).is-active {
  opacity: 0;
}
.l-header__line:nth-of-type(3) {
  width: 35px;
}
.l-header__line:nth-of-type(3).is-active {
  width: 50px;
  transform: translateY(-9px) rotate(20deg);
}
.l-header__line.is-active .l-header__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__line.is-active .l-header__line:nth-child(2) {
  opacity: 0;
}
.l-header__line.is-active .l-header__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-footer {
  background-color: var(--greige);
  padding-block: 24px;
  padding-inline: 59px 69px;
  margin-top: 144px;
}
@media screen and (width <= 767px) {
  .l-footer {
    margin-top: 104px;
    padding: 32px 83px 16px;
    text-align: center;
  }
}
.l-footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (width <= 767px) {
  .l-footer__wrapper {
    display: block;
  }
}
@media screen and (width <= 767px) {
  .l-footer__logo-link img {
    width: 96px;
    height: auto;
    display: block;
    margin-inline: auto;
  }
}
.l-footer__corporate {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--black-weak);
  font-feature-settings: "palt";
}
@media screen and (width <= 767px) {
  .l-footer__corporate {
    display: block;
  }
}
.l-footer__corporate-link {
  color: var(--white);
  transition: all 0.3s ease;
  opacity: 0.8;
  display: block;
}
@media screen and (width <= 767px) {
  .l-footer__corporate-link {
    margin-top: 10px;
  }
}
.l-footer__corporate-link span {
  color: var(--white);
  position: relative;
}
.l-footer__corporate-link span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: -3px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__corporate-link span:hover::after {
    transform: scale(1, 1);
  }
}
@media screen and (width <= 767px) {
  .l-footer__copyright {
    margin-top: 26px;
  }
}
.l-footer__copyright small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0em;
  color: var(--white);
  opacity: 0.8;
  font-style: normal;
  display: block;
  transform: translateY(-4px);
}

.l-section {
  margin-top: 180px;
}
@media screen and (width <= 767px) {
  .l-section {
    margin-top: 96px;
  }
}

.c-plane-title {
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--black);
  position: relative;
}
@media screen and (width <= 767px) {
  .c-plane-title {
    font-size: 24px;
  }
}

.c-section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 120px;
}
@media screen and (width <= 767px) {
  .c-section-title {
    margin-left: 20px;
  }
}
.c-section-title__txt {
  margin-bottom: 49px;
  display: grid;
}
@media screen and (width <= 767px) {
  .c-section-title__txt {
    margin-bottom: 48px;
  }
}
.c-section-title__en {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--main);
  position: relative;
  margin-left: 24px;
  margin-bottom: 10px;
  overflow: visible;
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .c-section-title__en {
    font-size: 14px;
    margin-left: 22px;
  }
}
.c-section-title__en::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: -18px;
  background-color: var(--main);
  width: 5px;
  height: 100%;
  max-height: 18px;
  rotate: 36deg;
}
@media screen and (width <= 767px) {
  .c-section-title__en::before {
    left: -18px;
    max-height: 16px;
  }
}
.c-section-title__jp {
  font-size: 42px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--black);
  font-weight: 600;
}
@media screen and (width <= 1024px) {
  .c-section-title__jp {
    font-size: 32px;
  }
}
@media screen and (width <= 767px) {
  .c-section-title__jp {
    font-size: 28px;
  }
}
.c-section-title__jp--small {
  font-size: 34px;
}
@media screen and (width <= 1024px) {
  .c-section-title__jp--small {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.c-section-title__illust {
  width: fit-content;
  position: relative;
}
@media screen and (width <= 1024px) {
  .c-section-title__illust {
    z-index: 1;
  }
}
.c-section-title__illust img {
  height: auto;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: -1;
}
@media screen and (width <= 1024px) {
  .c-section-title__illust img {
    max-width: 200px;
    right: 0;
    top: -30px;
    z-index: 1;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  width: fit-content;
  box-sizing: border-box;
  transform: translateX(5px);
}
@media screen and (width <= 767px) {
  .c-btn {
    width: 100%;
    max-width: none;
    transform: translateX(0px);
    text-align: center;
    overflow-x: clip;
  }
}
.c-btn::before {
  content: "";
  background-image: url("../images/common/icon_cta.svg");
  width: 62px;
  height: 57px;
  background-size: contain;
  position: absolute;
  top: -23px;
  left: -12px;
  z-index: 2;
  background-repeat: no-repeat;
}
@media screen and (width <= 767px) {
  .c-btn::before {
    top: -24px;
    left: 9px;
  }
}
.c-btn a {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0em;
  padding-block: 23px;
  padding-left: 102px;
  padding-right: 90px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 376px;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .c-btn a {
    font-size: 17px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 19px;
    padding-inline: 0;
    overflow: visible;
    letter-spacing: 0.08em;
    transform: translateX(0);
    font-feature-settings: "palt";
  }
}
.c-btn a::before,
.c-btn a::after {
  content: "";
  background-image: url("../images/common/icon_arrow-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 10px;
  width: 20px;
  height: 12px;
  display: block;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
}
@media screen and (width <= 767px) {
  .c-btn a::before,
  .c-btn a::after {
    width: 20px;
    height: 12px;
  }
}
.c-btn a::before {
  transform: translate(-50%, -50%) translateX(250%);
}
@media screen and (width <= 767px) {
  .c-btn a::before {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    color: var(--accent);
    background-color: var(--white);
    border-color: var(--accent);
  }
  .c-btn a:hover::before {
    animation: hover-arrowLeft 0.2s linear forwards;
    animation-delay: 0s;
    background-image: url("../images/common/icon_arrow-orange.svg");
    width: 20px;
    height: 12px;
    background-size: contain;
    display: block;
  }
  .c-btn a:hover::after {
    animation: hover-arrowRight 0.2s linear forwards;
    background-image: url("../images/common/icon_arrow-orange.svg");
    animation-delay: 0s;
    width: 20px;
    height: 12px;
    background-size: contain;
    display: block;
  }
}
@keyframes hover-arrowLeft {
  0% {
    transform: translate(-50%, -50%) translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
}
@keyframes hover-arrowRight {
  0% {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translate(0%, -50%) translateX(50px);
    opacity: 0;
  }
}
.c-btn--small {
  justify-content: flex-start;
  margin-inline: 0;
  margin-top: 36px;
  margin-bottom: 66px;
  transform: translateX(9px);
}
@media screen and (width <= 767px) {
  .c-btn--small {
    margin-top: 37px;
    margin-bottom: 0px;
    transform: translateX(0);
  }
}
.c-btn--small::before {
  top: -22px;
  left: -8px;
  width: 56px;
  height: 50px;
}
@media screen and (width <= 767px) {
  .c-btn--small::before {
    top: -21px;
    left: 17px;
  }
}
.c-btn--small a {
  max-width: 262px;
  padding-inline: 61px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-top: 11px;
  padding-bottom: 14px;
  padding-left: 63px;
  padding-right: 63px;
}
@media screen and (width <= 767px) {
  .c-btn--small a {
    width: 100%;
    max-width: none;
    padding-top: 13px;
    padding-bottom: 14px;
  }
}
.c-btn--small a::before,
.c-btn--small a::after {
  content: "";
  right: 10px;
  width: 14px;
  height: 8px;
}
@media screen and (width <= 767px) {
  .c-btn--small a::before,
  .c-btn--small a::after {
    right: 7px;
  }
}
.c-btn--small a::before {
  transform: translate(-50%, -50%) translateX(250%);
}
@media screen and (width <= 767px) {
  .c-btn--small a::before {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--small a:hover::before,
  .c-btn--small a:hover::after {
    width: 14px;
    height: 8px;
  }
}
.c-btn--big {
  margin-top: 116px;
  padding-inline: 40px;
  transform: translateX(7px);
}
@media screen and (width <= 767px) {
  .c-btn--big {
    width: 100%;
    max-width: none;
    transform: translateX(0px);
    text-align: center;
    overflow-x: clip;
    padding-inline: 20px;
  }
}
.c-btn--big::before {
  width: 76px;
  height: 70px;
  top: -28px;
  left: 28px;
}
@media screen and (width <= 767px) {
  .c-btn--big::before {
    width: 62px;
    height: 56px;
    top: -24px;
    left: 29px;
  }
}
.c-btn--big a {
  padding-top: 23px;
  padding-bottom: 25px;
  padding-inline: 249px;
  font-size: 24px;
  width: 100%;
  max-width: 720px;
  display: block;
  letter-spacing: 0em;
}
@media screen and (width <= 767px) {
  .c-btn--big a {
    font-size: 17px;
    width: 100%;
    max-width: none;
    padding-top: 18px;
    padding-bottom: 19px;
    padding-inline: 0;
    overflow: visible;
    letter-spacing: 0.08em;
    transform: translateX(0);
    font-feature-settings: "palt";
  }
}
.c-btn--big a::before,
.c-btn--big a::after {
  width: 26px;
  height: 16px;
  right: 20px;
}
@media screen and (width <= 767px) {
  .c-btn--big a::before,
  .c-btn--big a::after {
    width: 20px;
    height: 12px;
    right: 9px;
  }
}
.c-btn--big a::before {
  transform: translate(-50%, -50%) translateX(250%);
}
@media screen and (width <= 767px) {
  .c-btn--big a::before {
    display: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--big a:hover::before,
  .c-btn--big a:hover::after {
    width: 26px;
    height: 16px;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (width <= 767px) {
  .c-btn--big a:hover::before,
  .c-btn--big a:hover::after {
    width: 20px;
    height: 12px;
  }
}

.c-contents-board {
  background-color: var(--white);
  max-width: 1160px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
}
@media screen and (width >= 1281px) {
  .c-contents-board {
    max-width: calc(100% - 100px);
  }
}
.c-contents-board--left {
  border-radius: 0 8px 8px 0;
  margin-right: clamp(10px, 10vw, 120px);
  padding-left: clamp(20px, 10vw, 120px);
  padding-right: clamp(20px, 8vw, 100px);
}
@media screen and (width <= 767px) {
  .c-contents-board--left {
    margin-right: 20px;
    padding-inline: 20px;
    border-radius: 0 4px 4px 0;
  }
}
.c-contents-board--right {
  border-radius: 8px 0 0 8px;
  margin-left: clamp(10px, 10vw, 120px);
  padding-right: clamp(20px, 10vw, 120px);
  padding-left: clamp(20px, 8vw, 100px);
}
@media screen and (width <= 767px) {
  .c-contents-board--right {
    margin-left: 20px;
    padding-inline: 20px;
    border-radius: 4px 0 0 4px;
  }
}
.c-contents-board--center {
  margin-inline: auto;
  max-width: none;
  border-radius: 8px;
  padding-inline: clamp(20px, 10vw, 120px);
}
@media screen and (width <= 767px) {
  .c-contents-board--center {
    border-radius: 4px;
  }
}

.c-fade-normal {
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateY(40px);
}

.c-fade-landscape {
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateX(-80px);
}

.c-fade-seminar {
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateY(40px);
}

.c-fade-flow {
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translateY(40px);
}

.c-lines,
.c-lines--reverse {
  position: relative;
}
.c-lines::after,
.c-lines--reverse::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
}

.c-lines--reverse::after {
  transform-origin: right;
}

.line-reached::after {
  transform: scaleX(1);
  opacity: 1;
}

.is-fadein {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.p-event {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
}
.p-event .is-sp {
  display: none;
}
@media screen and (width <= 1024px) {
  .p-event .is-sp {
    display: block;
  }
}
.p-event .is-pc {
  display: block;
}
@media screen and (width <= 1024px) {
  .p-event .is-pc {
    display: none;
  }
}

.p-mv {
  display: flex;
  margin-top: 80px;
  background-image: url("../images/mv/mv_bg.webp");
  max-height: 795px;
  height: 670px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}
@media screen and (width >= 1441px) {
  .p-mv {
    height: 100vh;
    background-size: cover;
    background-image: url("../images/mv/mv_bg_wide.webp");
  }
}
@media screen and (width <= 1024px) {
  .p-mv {
    margin-top: 66px;
    height: auto;
    background-image: none;
  }
}
@media screen and (width <= 1024px) {
  .p-mv {
    background-image: none;
    display: block;
    background-size: auto;
    max-height: none;
  }
}
.p-mv__details {
  margin-left: clamp(1rem, 8vw, 80px);
}
@media screen and (width >= 1281px) {
  .p-mv__details {
    margin-left: clamp(1rem, 8vw, 120px);
  }
}
@media screen and (width <= 1024px) {
  .p-mv__details {
    margin-inline: 20px;
  }
}
.p-mv__image {
  position: relative;
  transform: translateX(-221px);
}
.p-mv__image img {
  width: 100%;
  height: auto;
  z-index: 2;
}
.p-mv__title-sub {
  margin-top: 96px;
}
@media screen and (width <= 767px) {
  .p-mv__title-sub {
    margin-top: 114px;
  }
  .p-mv__title-sub img {
    width: 100%;
    height: auto;
  }
}
.p-mv__title-main {
  margin-top: 14px;
}
@media screen and (width <= 1024px) {
  .p-mv__title-main {
    margin-top: 8px;
  }
  .p-mv__title-main img {
    height: auto;
    width: 100%;
  }
}
.p-mv__date {
  margin-top: 68px;
}
@media screen and (width <= 1024px) {
  .p-mv__date {
    margin-top: 28px;
  }
  .p-mv__date img {
    width: 100%;
    max-width: 245px;
    height: auto;
  }
}
.p-mv__bg-sp {
  display: none;
}
@media screen and (width <= 1024px) {
  .p-mv__bg-sp {
    margin-top: 40px;
    display: block;
    margin-left: calc((100vw - 100%) / 2 * -1);
    margin-right: calc((100vw - 100%) / 2 * -1);
  }
  .p-mv__bg-sp img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.p-about {
  background-color: var(--snow);
  padding-bottom: 104px;
  margin-top: 0;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-about {
    padding-bottom: 80px;
  }
}
.p-about::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed var(--dotted);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1220px;
}
@media screen and (width <= 767px) {
  .p-about::after {
    max-width: calc(100% - 40px);
  }
}
@media screen and (width <= 767px) {
  .p-about .c-section-title__txt {
    max-width: 450px;
    margin-inline: auto;
  }
}
@media screen and (width <= 767px) {
  .p-about__wrapper {
    display: block;
    margin-inline: 20px;
  }
}
.p-about__contents {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  margin-right: 40px;
  margin-left: clamp(10px, 11vw, 139px);
  overflow: hidden;
}
@media screen and (width >= 1281px) {
  .p-about__contents {
    max-width: 1110px;
    margin-inline: auto;
  }
}
@media screen and (width <= 1024px) {
  .p-about__contents {
    margin-left: clamp(10px, 11vw, 40px);
  }
}
@media screen and (width <= 767px) {
  .p-about__contents {
    display: block;
    margin-inline: 0;
  }
}
.p-about__text {
  margin-top: clamp(100px, 21vw, 268px);
}
@media screen and (width <= 767px) {
  .p-about__text {
    margin-top: -3px;
  }
}
.p-about__title {
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-about__copy {
  margin-top: 64px;
}
@media screen and (width <= 767px) {
  .p-about__copy {
    margin-top: 48px;
  }
}
.p-about__copy p {
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 2.4;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  font-weight: 500;
  color: var(--black);
}
@media screen and (width <= 767px) {
  .p-about__copy p {
    max-width: 450px;
    margin-inline: auto;
  }
}
.p-about__copy p:nth-child(n + 2) {
  margin-top: 44px;
}
@media screen and (width <= 767px) {
  .p-about__copy p:nth-child(n + 2) {
    margin-top: 36px;
  }
}
@media screen and (width <= 767px) {
  .p-about__copy p {
    font-size: 15px;
  }
}
.p-about__pictures {
  margin-top: 160px;
}
@media screen and (width <= 767px) {
  .p-about__pictures {
    margin-top: 46px;
    margin-inline: auto;
    max-width: 450px;
  }
}
.p-about__pictures--sp {
  display: none;
  margin-top: 64px;
}
@media screen and (width <= 767px) {
  .p-about__pictures--sp {
    text-align: right;
    display: block;
  }
  .p-about__pictures--sp .p-about__img-sp:nth-child(1) {
    margin-right: 20px;
  }
  .p-about__pictures--sp .p-about__img-sp:nth-child(2) {
    margin-right: 0;
    margin-top: -36px;
  }
}
.p-about__img {
  width: 100%;
  height: auto;
  position: relative;
}
.p-about__img img {
  height: auto;
}
@media screen and (width <= 767px) {
  .p-about__img img {
    display: block;
  }
}
.p-about__img:nth-child(1) {
  margin-right: 145px;
  transform: translateX(6px);
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(1) {
    display: none;
  }
}
.p-about__img:nth-child(1) img {
  width: clamp(100px, 30vw, 374px);
}
.p-about__img:nth-child(2) {
  margin-top: -82px;
  text-align: right;
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(2) {
    display: none;
  }
}
.p-about__img:nth-child(2) img {
  width: clamp(50px, 17vw, 200px);
}
.p-about__img:nth-child(3) {
  position: relative;
  margin-top: 23px;
  margin-left: 65px;
}
.p-about__img:nth-child(3) img {
  width: clamp(50px, 31vw, 340px);
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(3) {
    margin-left: 0;
    margin-top: 0;
    margin-right: 51px;
  }
  .p-about__img:nth-child(3) img {
    margin-left: auto;
    width: 180px;
    margin-right: 31px;
  }
}
.p-about__img:nth-child(3) .p-about__img--illust {
  position: absolute;
  z-index: 2;
  bottom: 67px;
  left: -123px;
}
.p-about__img:nth-child(3) .p-about__img--illust img {
  width: clamp(10px, 17vw, 188px);
}
@media screen and (width <= 1024px) {
  .p-about__img:nth-child(3) .p-about__img--illust {
    left: 120px;
    bottom: -40px;
  }
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(3) .p-about__img--illust {
    left: 0px;
    bottom: -17px;
  }
  .p-about__img:nth-child(3) .p-about__img--illust img {
    width: 119px;
  }
}
.p-about__img:nth-child(4) {
  margin-top: -32px;
  margin-left: -28px;
  text-align: right;
  z-index: 2;
}
.p-about__img:nth-child(4) img {
  width: clamp(50px, 20vw, 244px);
  margin-left: auto;
}
@media screen and (width <= 1024px) {
  .p-about__img:nth-child(4) {
    text-align: left;
  }
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(4) {
    margin-top: -19px;
    margin-right: 0;
    margin-left: 0;
    text-align: right;
  }
  .p-about__img:nth-child(4) img {
    width: 140px;
  }
}
.p-about__img:nth-child(5) {
  margin-top: -43px;
  margin-left: -57px;
}
.p-about__img:nth-child(5) img {
  width: clamp(50px, 30vw, 362px);
}
@media screen and (width <= 1024px) {
  .p-about__img:nth-child(5) {
    margin-left: 15px;
  }
}
@media screen and (width <= 767px) {
  .p-about__img:nth-child(5) {
    margin-top: -17px;
    margin-left: 0;
    margin-inline: auto;
  }
  .p-about__img:nth-child(5) img {
    width: 210px;
    height: 119px;
    margin-inline: auto;
    transform: translateX(-14px);
  }
}
.p-about .c-btn {
  margin-top: 110px;
}
@media screen and (width <= 767px) {
  .p-about .c-btn {
    max-width: 450px;
    margin-top: 69px;
  }
}

.p-details {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  background-color: var(--snow);
  margin-top: 0;
  padding-top: 160px;
}
@media screen and (width <= 767px) {
  .p-details {
    padding-top: 99px;
    padding-inline: 0;
  }
}
@media screen and (width <= 767px) {
  .p-details .c-section-title {
    margin-left: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-details .c-section-title__txt {
    margin-bottom: 53px;
  }
}
.p-details .c-section-title__illust img {
  right: 144px;
  top: -70px;
  width: 329px;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .p-details .c-section-title__illust img {
    right: 14px;
    top: 59px;
    width: 100px;
  }
}
.p-details__wrapper {
  background-color: var(--base);
  position: relative;
  overflow: hidden;
}
.p-details__wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  background-color: var(--snow);
  border-radius: 0;
  z-index: 1;
}
.p-details__contents {
  padding-block: 136px 120px;
}
@media screen and (width <= 767px) {
  .p-details__contents {
    padding: 76px 20px 80px;
  }
}
@media screen and (width >= 1281px) {
  .p-details__list {
    max-width: 1080px;
    margin-inline: auto;
  }
}
.p-details__item {
  display: flex;
  justify-content: center;
}
@media screen and (width <= 767px) {
  .p-details__item {
    display: block;
    max-width: 450px;
    margin-inline: auto;
  }
}
.p-details__item:nth-child(odd) .p-details__item-title {
  padding-left: 56px;
}
@media screen and (width <= 767px) {
  .p-details__item:nth-child(odd) .p-details__item-title {
    padding-left: 0;
  }
}
.p-details__item:nth-child(odd) .p-details__item-text {
  margin-left: 56px;
}
@media screen and (width <= 767px) {
  .p-details__item:nth-child(odd) .p-details__item-text {
    margin-left: 0;
  }
}
.p-details__item:nth-child(even) {
  flex-direction: row-reverse;
}
.p-details__item:nth-child(even) .p-details__item-text {
  margin-right: 64px;
}
@media screen and (width <= 767px) {
  .p-details__item:nth-child(even) .p-details__item-text {
    margin-right: 0;
  }
}
.p-details__item:nth-child(n + 2) {
  margin-top: 132px;
}
@media screen and (width <= 767px) {
  .p-details__item:nth-child(n + 2) {
    margin-top: 84px;
  }
}
.p-details__item-info {
  margin-top: clamp(30px, 5.5vw, 63px);
}
@media screen and (width <= 767px) {
  .p-details__item-info {
    margin-top: 28px;
  }
}
.p-details__item-title {
  color: var(--main);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 14px;
}
@media screen and (width <= 767px) {
  .p-details__item-title {
    font-size: 24px;
    padding-bottom: 15px;
    padding-left: 0;
  }
}
.p-details__item-time {
  color: var(--main);
  font-size: 16px;
  margin-left: 6px;
  letter-spacing: 0.04em;
}
@media screen and (width <= 1024px) {
  .p-details__item-time {
    display: block;
    margin-top: 10px;
  }
}
@media screen and (width <= 767px) {
  .p-details__item-time {
    display: inline-block;
    font-size: 13px;
  }
}
.p-details__item-text {
  margin-top: clamp(20px, 3.5vw, 40px);
  font-size: clamp(12px, 1.5vw, 17px);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--black);
  font-weight: 400;
}
@media screen and (width <= 767px) {
  .p-details__item-text {
    font-size: 15px;
    margin-top: 32px;
    margin-left: 0;
    letter-spacing: 0.12em;
  }
}
.p-details__item-img {
  position: relative;
}
.p-details__item-img img {
  width: clamp(200px, 43vw, 520px);
  height: auto;
  display: block;
}
@media screen and (width <= 767px) {
  .p-details__item-img img {
    width: 100%;
  }
}
.p-details__item-number {
  background-color: var(--main);
  width: clamp(40px, 6vw, 64px);
  height: clamp(40px, 6vw, 64px);
  aspect-ratio: 1/1;
  position: absolute;
  top: -20px;
  left: 20px;
  display: grid;
}
@media screen and (width <= 767px) {
  .p-details__item-number {
    width: 56px;
    height: 56px;
  }
}
.p-details__item-number span {
  color: var(--white);
  margin-inline: auto;
  display: block;
}
.p-details__item-number span:nth-child(1) {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  transform: translateY(9px);
  font-family: "Public Sans", sans-serif;
}
.p-details__item-number span:nth-child(2) {
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Public Sans", sans-serif;
}
@media screen and (width <= 767px) {
  .p-details__item-number span:nth-child(2) {
    font-size: 26px;
  }
}

.p-seminar__contents {
  padding-block: 89px 104px;
}
@media screen and (width <= 767px) {
  .p-seminar__contents {
    padding-block: 56px 80px;
  }
}
.p-seminar__contents-inner {
  overflow: hidden;
}
@media screen and (width >= 1281px) {
  .p-seminar__contents-inner {
    max-width: 1080px;
    margin-inline: auto;
  }
}
@media screen and (width <= 767px) {
  .p-seminar__contents-inner {
    max-width: 450px;
    margin-inline: auto;
  }
}
@media screen and (width <= 767px) {
  .p-seminar .c-section-title {
    margin-left: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-seminar .c-section-title__txt {
    margin-bottom: 55px;
  }
}
.p-seminar .c-section-title__illust img {
  right: 64px;
  top: -54px;
}
@media screen and (width <= 767px) {
  .p-seminar .c-section-title__illust img {
    right: 5px;
    top: 65px;
    width: 150px;
  }
}
.p-seminar__title {
  background-color: var(--main);
  color: var(--white);
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  font-feature-settings: "palt";
  font-weight: 600;
}
.p-seminar__title::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url("../images/seminar/seminar-title-shadow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 156px;
  height: 156px;
  z-index: 2;
}
@media screen and (width <= 1024px) {
  .p-seminar__title::before {
    width: 190px;
    height: 190px;
  }
}
@media screen and (width <= 767px) {
  .p-seminar__title::before {
    width: 150px;
    height: 150px;
    left: -120px;
  }
}
.p-seminar__title::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-image: url("../images/seminar/seminar-title-shadow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 156px;
  height: 156px;
  z-index: 2;
  rotate: 180deg;
}
@media screen and (width <= 1024px) {
  .p-seminar__title::after {
    width: 190px;
    height: 190px;
  }
}
@media screen and (width <= 767px) {
  .p-seminar__title::after {
    width: 150px;
    height: 150px;
    right: -120px;
  }
}
.p-seminar__title span {
  color: var(--white);
  display: block;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding-inline: 20px;
}
.p-seminar__title span:nth-child(1) {
  font-size: 22px;
  padding-top: 22px;
}
@media screen and (width <= 767px) {
  .p-seminar__title span:nth-child(1) {
    font-size: 15px;
  }
}
.p-seminar__title span:nth-child(2) {
  font-size: 24px;
  margin-top: 6px;
  padding-bottom: 22px;
}
@media screen and (width <= 767px) {
  .p-seminar__title span:nth-child(2) {
    font-size: 17px;
    margin-top: 8px;
    line-height: 1.56;
  }
}
.p-seminar .c-btn {
  margin-top: 71px;
}

.p-seminar-profile {
  margin-top: 40px;
  column-gap: 36px;
  row-gap: 32px;
  display: grid;
  grid-template-columns: 260px 1fr;
}
@media screen and (width <= 767px) {
  .p-seminar-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    column-gap: 16px;
    row-gap: 24px;
  }
}
.p-seminar-profile__image {
  grid-area: image;
  width: 260px;
  grid-area: 1/1/3/2;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__image {
    grid-area: 1/1/2/2;
    width: fit-content;
  }
}
.p-seminar-profile__image img {
  min-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (width <= 1024px) {
  .p-seminar-profile__image img {
    max-width: 340px;
    margin-inline: auto;
    display: block;
  }
}
@media screen and (width <= 767px) {
  .p-seminar-profile__image img {
    width: 144px;
    min-width: auto;
    margin-inline: 0;
  }
}
.p-seminar-profile__info {
  grid-area: prof;
  width: 100%;
  grid-area: 1/2/2/3;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__info {
    grid-area: 1/2/2/3;
    transform: translateX(-6px);
  }
}
.p-seminar-profile__label {
  color: var(--main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 1px solid var(--main);
  padding: 5px 11px 6px 14px;
  width: fit-content;
}
.p-seminar-profile__label span {
  font-weight: 600;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__label {
    font-size: 11px;
    padding: 5px 11px 6px 11px;
  }
}
.p-seminar-profile__post {
  margin-top: 18px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--black);
  font-feature-settings: "palt";
}
@media screen and (width <= 767px) {
  .p-seminar-profile__post {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
  }
}
.p-seminar-profile__name {
  display: flex;
  align-items: flex-end;
  margin-top: 10px;
  gap: 10px;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__name {
    display: block;
    margin-top: 14px;
  }
}
.p-seminar-profile__name-ja {
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--black);
}
@media screen and (width <= 767px) {
  .p-seminar-profile__name-ja {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
.p-seminar-profile__name-en {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--gray);
  transform: translateY(4px);
  font-family: "Montserrat", sans-serif;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__name-en {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.p-seminar-profile__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--black);
  font-feature-settings: "palt";
  grid-area: text;
  grid-area: 2/2/3/3;
}
@media screen and (width <= 767px) {
  .p-seminar-profile__text {
    grid-area: 2/1/3/3;
    font-size: 14px;
  }
}

.p-seminar-schedule__wrapper {
  margin-top: 33px;
  padding-block: 26px 26px;
  padding-inline: clamp(20px, 10vw, 106px);
  max-width: 980px;
  background-color: var(--main-weak);
  display: grid;
  grid-template-areas: "no1 no2" "no1 no3";
  row-gap: 10px;
  justify-content: space-between;
}
@media screen and (width >= 1281px) {
  .p-seminar-schedule__wrapper {
    max-width: none;
  }
}
@media screen and (width <= 1024px) {
  .p-seminar-schedule__wrapper {
    grid-template-areas: "no1" "no2" "no3";
    padding-inline: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__wrapper {
    padding: 24px;
    margin-top: 32px;
    row-gap: 8px;
  }
}
.p-seminar-schedule__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__item {
    gap: 13px;
  }
}
.p-seminar-schedule__item:nth-child(1) {
  grid-area: no1;
}
.p-seminar-schedule__item:nth-child(1) .p-seminar-schedule__label {
  height: 100%;
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__item:nth-child(1) .p-seminar-schedule__label {
    height: 52px;
    padding-block: 0px;
  }
}
.p-seminar-schedule__item:nth-child(2) {
  grid-area: no2;
}
.p-seminar-schedule__item:nth-child(3) {
  grid-area: no3;
}
.p-seminar-schedule__item div .p-seminar-schedule__info:nth-of-type(n + 2) {
  margin-top: 8px;
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__item div .p-seminar-schedule__info:nth-of-type(n + 2) {
    margin-top: 4px;
  }
}
.p-seminar-schedule__label {
  background-color: var(--main);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  max-width: 91px;
  width: 91px;
  text-align: center;
  padding-block: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 91px;
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__label {
    min-width: auto;
    width: 60px;
    font-size: 13px;
    padding-block: 6px 7px;
    font-feature-settings: "palt";
  }
}
.p-seminar-schedule__info {
  color: var(--black);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (width <= 767px) {
  .p-seminar-schedule__info {
    font-size: 13px;
    line-height: 1.5;
  }
}

.p-recommend__contents {
  padding-block: 132px 104px;
}
@media screen and (width <= 767px) {
  .p-recommend__contents {
    padding-block: 56px 80px;
  }
}
@media screen and (width <= 767px) {
  .p-recommend .c-section-title {
    margin-left: 20px;
  }
}
@media screen and (width <= 767px) {
  .p-recommend .c-section-title__txt {
    margin-bottom: 54px;
  }
}
.p-recommend .c-section-title__illust img {
  right: 200px;
  top: -41px;
}
@media screen and (width <= 767px) {
  .p-recommend .c-section-title__illust img {
    right: 20px;
    top: 59px;
    width: 90px;
  }
}
.p-recommend__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  row-gap: 68px;
}
@media screen and (width >= 1281px) {
  .p-recommend__list {
    max-width: 1080px;
    margin-inline: auto;
  }
}
@media screen and (width <= 767px) {
  .p-recommend__list {
    display: grid;
    row-gap: 24px;
    column-gap: 0px;
  }
}
.p-recommend__item {
  min-width: 302px;
  width: 302px;
  background-color: var(--main-weak);
  text-align: center;
  padding-inline: 26px;
  padding-bottom: 31px;
  display: grid;
  position: relative;
}
@media screen and (width <= 1024px) {
  .p-recommend__item {
    min-width: clamp(200px, 80vw, 270px);
    width: clamp(200px, 80vw, 270px);
  }
}
@media screen and (width <= 767px) {
  .p-recommend__item {
    min-width: auto;
    width: calc(100% - 32px);
    display: flex;
    align-items: center;
    padding-block: 20px;
    padding-inline: 52px 26px;
    min-height: 122px;
    height: 100%;
    margin-left: auto;
    text-align: left;
    max-width: 450px;
  }
  .p-recommend__item:nth-child(1) .p-recommend__icon img {
    width: 28px;
  }
  .p-recommend__item:nth-child(2) .p-recommend__icon img {
    width: 23px;
  }
  .p-recommend__item:nth-child(3) .p-recommend__icon img {
    width: 43px;
  }
  .p-recommend__item:nth-child(4) .p-recommend__icon img {
    width: 48px;
    transform: translateY(1px);
  }
  .p-recommend__item:nth-child(5) .p-recommend__icon img {
    width: 37px;
  }
}
.p-recommend__icon {
  width: 88px;
  height: 88px;
  aspect-ratio: 1/1;
  background-color: var(--main);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-top: -44px;
}
@media screen and (width <= 767px) {
  .p-recommend__icon {
    width: 64px;
    height: 64px;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
}
.p-recommend__text {
  color: var(--black);
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-top: 20px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.p-recommend__text .color {
  color: var(--main);
  font-weight: 700;
}
@media screen and (width <= 767px) {
  .p-recommend__text {
    font-size: 15px;
    margin-top: 0px;
  }
}

.p-flow__contents {
  padding-block: 88px 104px;
}
@media screen and (width <= 1024px) {
  .p-flow__contents {
    padding-block: 64px 80px;
    margin-top: 7px;
  }
}
.p-flow .c-section-title__illust img {
  right: 174px;
  top: -48px;
}
@media screen and (width <= 1024px) {
  .p-flow .c-section-title__illust img {
    right: 20px;
    top: 69px;
    width: 120px;
  }
}
.p-flow__steps {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 27px;
}
@media screen and (width >= 1281px) {
  .p-flow__steps {
    max-width: 1080px;
    margin-inline: auto;
  }
}
@media screen and (width <= 1024px) {
  .p-flow__steps {
    justify-content: center;
  }
}
@media screen and (width <= 1024px) {
  .p-flow__steps {
    display: grid;
    grid-template-rows: 1fr;
    row-gap: 56px;
  }
}
.p-flow__item {
  text-align: center;
}
@media screen and (width <= 1024px) {
  .p-flow__item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .p-flow__item:nth-child(1) .p-flow__icon img {
    width: 60px;
    transform: translateY(-5px);
  }
  .p-flow__item:nth-child(1) .p-flow__icon::before {
    display: none;
  }
  .p-flow__item:nth-child(2) .p-flow__icon img {
    width: 44px;
  }
  .p-flow__item:nth-child(3) .p-flow__icon img {
    width: 41px;
  }
}
.p-flow__item:last-child .p-flow__icon::after {
  background-image: none;
}
@media screen and (width <= 1024px) {
  .p-flow__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (width >= 1281px) {
  .p-flow__item {
    max-width: 300px;
    width: 100%;
  }
}
@media screen and (width <= 767px) {
  .p-flow__item {
    max-width: 380px;
    margin-inline: auto;
  }
}
.p-flow__icon {
  width: clamp(100px, 20vw, 250px);
  height: clamp(100px, 20vw, 250px);
  aspect-ratio: 1/1;
  border: 1px solid var(--main);
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-inline: auto;
  position: relative;
}
@media screen and (width <= 1024px) {
  .p-flow__icon {
    width: 128px;
    height: 128px;
    margin-left: 10px;
    margin-right: 0;
  }
}
.p-flow__icon img {
  height: auto;
}
@media screen and (width <= 1024px) {
  .p-flow__icon img {
    max-width: 70px;
  }
}
.p-flow__icon::before {
  content: "";
  display: none;
}
@media screen and (width <= 1024px) {
  .p-flow__icon::before {
    content: "";
    display: block;
    background-image: url("../images/common/icon_arrow-main.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transform: translateX(50%) rotate(90deg);
    bottom: 160px;
    right: 53%;
    width: 30px;
    height: 15px;
  }
}
.p-flow__step {
  position: absolute;
  top: 10px;
  left: 8px;
  background-color: var(--main);
  color: var(--white);
  width: 57px;
  height: 57px;
  text-align: center;
  display: grid;
  align-items: center;
  align-content: center;
  font-family: "Public Sans", sans-serif;
}
@media screen and (width <= 1024px) {
  .p-flow__step {
    width: 40px;
    height: 40px;
    top: 1px;
    left: -11px;
  }
}
.p-flow__step-en {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .p-flow__step-en {
    font-size: 9px;
  }
}
.p-flow__step-number {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-family: "Public Sans", sans-serif;
}
@media screen and (width <= 1024px) {
  .p-flow__step-number {
    font-size: 17px;
  }
}
.p-flow__name {
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 16px;
  font-feature-settings: "palt";
}
@media screen and (width <= 1024px) {
  .p-flow__name {
    font-size: 16px;
  }
}
@media screen and (width <= 1024px) {
  .p-flow__name {
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.12em;
    margin-top: 0;
  }
}
.p-flow__text {
  color: var(--black);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-top: 10px;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media screen and (width <= 1024px) {
  .p-flow__text {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }
}
.p-flow__atten {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-top: 6px;
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .p-flow__arrow {
    width: fit-content;
    height: fit-content;
    display: none;
  }
}
.p-flow__arrow img {
  width: 40px;
  height: 20px;
  transform: translateY(116px);
}
@media screen and (width <= 1024px) {
  .p-flow__arrow img {
    display: none;
    width: 30px;
    height: 15px;
    transform: translateY(0px) translateX(0px) rotate(90deg);
  }
}

.p-info {
  margin-inline: auto;
  margin-top: 160px;
}
@media screen and (width <= 767px) {
  .p-info {
    margin-top: 88px;
  }
}
.p-info__group {
  max-width: 1000px;
  padding-inline: 40px;
  margin-inline: auto;
  position: relative;
}
@media screen and (width >= 1281px) {
  .p-info__group {
    max-width: calc(100% - 360px);
  }
}
@media screen and (width <= 767px) {
  .p-info__group {
    padding-inline: 20px;
  }
}
.p-info__group:nth-child(2) {
  margin-top: 120px;
}
@media screen and (width <= 767px) {
  .p-info__group:nth-child(2) {
    margin-top: 80px;
  }
}
.p-info__group:nth-child(2) .p-info__list {
  max-width: 524px;
}
@media screen and (width >= 1281px) {
  .p-info__group:nth-child(2) .p-info__list {
    max-width: 75%;
  }
}
.p-info__list {
  margin-top: 28px;
}
@media screen and (width <= 767px) {
  .p-info__list {
    max-width: 524px;
    margin-inline: auto;
  }
}
.p-info__item {
  display: flex;
  align-items: flex-start;
  padding-block: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.p-info__item:first-child {
  border-top: 1px solid var(--border);
}
.p-info__label {
  min-width: clamp(60px, 12vw, 146px);
  color: var(--main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (width >= 1281px) {
  .p-info__label {
    min-width: 120px;
  }
}
@media screen and (width <= 767px) {
  .p-info__label {
    min-width: 104px;
    font-feature-settings: "palt";
  }
}
.p-info__text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--black);
  font-weight: 400;
  font-feature-settings: "palt";
}
@media screen and (width <= 767px) {
  .p-info__text {
    font-size: 14px;
  }
}
.p-info__atten {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.8;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 6px;
  font-feature-settings: "palt";
}
@media screen and (width <= 767px) {
  .p-info__atten {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
}
.p-info__map {
  position: absolute;
  top: 8px;
  right: 40px;
}
@media screen and (width <= 767px) {
  .p-info__map {
    position: static;
    margin-top: 32px;
    margin-left: auto;
  }
}
.p-info__map iframe {
  width: clamp(20px, 35vw, 459px);
  height: 380px;
  border: none;
}
@media screen and (width <= 767px) {
  .p-info__map iframe {
    width: 100%;
    height: 276px;
    max-width: 524px;
    margin-inline: auto;
    display: block;
  }
}
