@charset "UTF-8";
/********************
base
*********************/
body {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #444444;
  background-color: #FCFCFC;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

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

h2 {
  font-size: clamp(1.375rem, 1.016025641rem + 1.7948717949vw, 2.25rem);
  font-weight: 500;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

small {
  display: block;
}
@media screen and (max-width: 960px) {
  small {
    text-align: center;
  }
}

/********************
layout
*********************/
.l-container {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}

.l-section {
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .l-section {
    margin-bottom: 96px;
  }
}

.l-page {
  padding-top: 120px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  transition: transform 0.4s ease, background-color 0.3s ease;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
  }
}
.l-header.is-hide {
  transform: translateY(-100%);
}
.l-header.is-scrolled {
  background-color: #FCFCFC;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.l-header__logo {
  position: relative;
  z-index: 100;
}

.l-footer {
  padding: 80px 0;
  border-top: 1px solid #dddcda;
}
@media screen and (max-width: 960px) {
  .l-footer__logo {
    margin-bottom: 64px;
  }
}
.l-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
.l-footer__list a {
  transition: 0.3s;
  font-size: 14px;
}
.l-footer__list a:hover {
  opacity: 0.7;
}

/********************
oblect
*********************/
.c-headline {
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-headline {
    line-height: 1.7;
    margin-bottom: 24px;
  }
}
.c-headline--en {
  position: relative;
  display: block;
  padding-left: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.7948717949rem + 1.0256410256vw, 1.5rem);
  font-family: "Barlow Condensed", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #498BA6;
}
.c-headline--en::before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #498BA6;
}
.c-headline--ja {
  position: relative;
  display: inline-block;
  font-size: clamp(1.375rem, 1.016025641rem + 1.7948717949vw, 2.25rem);
}
.c-headline--ja::before {
  content: "";
  position: absolute;
  display: block;
  width: 180px;
  height: 1px;
  top: 50%;
  left: calc(100% + 16px);
  transform: translateY(-50%);
  background-color: #444444;
}
@media screen and (max-width: 767px) {
  .c-headline--ja::before {
    display: none;
  }
}

.c-section-txt {
  width: 80%;
  margin-bottom: 88px;
}
@media screen and (max-width: 1200px) {
  .c-section-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-section-txt {
    margin-bottom: 64px;
  }
}

.c-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 16px;
  }
}
.c-btn--primary {
  position: relative;
  color: #498BA6;
  padding: 0 40px 8px 0;
  overflow: hidden;
}
.c-btn--primary::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  top: calc(50% - 4px);
  right: 0;
  transform: translateY(-50%);
  background: url(../images/svg/arrow-right.svg) center center no-repeat;
  background-size: contain;
}
.c-btn--primary::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-color: #498BA6;
  transition: 0.3s;
}
.c-btn--primary:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.c-btn--primary:hover::before {
  transform: translateX(0);
}
.c-btn--cta {
  position: relative;
  padding: 16px 40px;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .c-btn--cta {
    background-color: #498BA6;
  }
}
.c-btn--cta::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0 100% 0 0;
  background-color: #498BA6;
  border-radius: 12px;
  z-index: -1;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .c-btn--cta::before {
    display: none;
  }
}
.c-btn--cta:hover {
  transition: 0.3s;
}
.c-btn--cta:hover::before {
  inset: 0;
}

.c-card a {
  transition: 0.3s;
}
.c-card a:hover {
  opacity: 0.8;
}
.c-card__img {
  margin-bottom: 24px;
}
.c-card__title {
  font-size: clamp(1.125rem, 1.0224358974rem + 0.5128205128vw, 1.375rem);
  margin-bottom: 4px;
}
.c-card__tags {
  display: flex;
  gap: 10px;
}
.c-card__tag {
  font-size: 12px;
  font-weight: 500;
  color: #999999;
}

@media screen and (max-width: 960px) {
  .c-nav {
    position: fixed;
    width: 100%;
    height: 85vh;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    border-radius: 0 0 50px 50px;
    background-color: #FCFCFC;
    z-index: 90;
    transition: 0.3s;
  }
}
.c-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .c-nav__list {
    gap: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
}
.c-nav__item {
  overflow: hidden;
}
.c-nav__item a {
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .c-nav__item a {
    font-size: 18px;
  }
}
.c-nav__item a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-color: #498BA6;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .c-nav__item a::before {
    display: none;
  }
}
.c-nav__item a:hover {
  color: #498BA6;
  opacity: 0.8;
  transition: 0.3s;
}
.c-nav__item a:hover::before {
  transform: translateX(0);
}

.is-open {
  transform: translateY(0);
  transition: 0.3s;
}

.c-menu {
  display: none;
}
@media screen and (max-width: 960px) {
  .c-menu {
    position: relative;
    display: block;
    width: 28px;
    height: 100%;
    z-index: 100;
  }
}
.c-menu span {
  position: absolute;
  display: block;
  width: 28px;
  height: 1px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #444444;
  transition: 0.3s;
}
.c-menu span:first-child {
  top: calc(50% - 7px);
}
.c-menu span:last-child {
  top: calc(50% + 7px);
}

.is-active span:first-child {
  top: 50%;
  rotate: 135deg;
}
.is-active span:nth-child(2) {
  opacity: 0;
}
.is-active span:last-child {
  top: 50%;
  rotate: -135deg;
}

.c-page-title {
  padding-bottom: 24px;
  border-bottom: 1px solid #444444;
  width: 90%;
  margin-inline: auto;
  font-size: clamp(1.5rem, 1.0897435897rem + 2.0512820513vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    margin-bottom: 48px;
  }
}
.c-page-title--en {
  display: block;
  font-size: clamp(1rem, 0.7948717949rem + 1.0256410256vw, 1.5rem);
}

.c-page-section .c-headline--ja {
  font-size: clamp(1.25rem, 0.9423076923rem + 1.5384615385vw, 2rem);
}
.c-page-section .c-headline--ja::before {
  display: none;
}
.c-page-section__inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width: 960px) {
  .c-page-section__inner {
    flex-direction: column-reverse;
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .c-page-section__inner {
    gap: 32px;
  }
}
.c-page-section__txt-box, .c-page-section__img {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .c-page-section__txt-box {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .c-page-section__img {
    width: 85%;
  }
  .c-page-section__img img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-page-section__img {
    width: 100%;
  }
}

.snow-monkey-form {
  max-width: 880px;
  line-height: 1.7;
  margin-inline: auto;
  /* 枠 */
  /* チェックマーク */
  /* チェック時 */
}
.snow-monkey-form .smf-item {
  margin-bottom: 16px;
}
.snow-monkey-form .smf-item__label__text {
  font-weight: 500;
  color: #444444;
}
.snow-monkey-form .smf-item__description {
  font-size: 14px;
  color: #444444;
  margin-top: 8px;
  line-height: 1.7;
}
.snow-monkey-form .smf-item__description a {
  text-decoration: underline;
  color: #498BA6;
}
.snow-monkey-form .smf-text-control__control,
.snow-monkey-form .smf-textarea-control__control {
  width: 100%;
  padding: 14px 16px;
  line-height: 1.6;
  font-size: 16px;
  border: 1px solid #999999;
  border-radius: 8px;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.snow-monkey-form .smf-textarea-control__control {
  min-height: 160px;
  resize: vertical;
}
.snow-monkey-form .smf-text-control__control:focus,
.snow-monkey-form .smf-textarea-control__control:focus {
  outline: none;
  border-color: #498BA6;
  box-shadow: 0 0 0 2px rgba(73, 139, 166, 0.2);
}
.snow-monkey-form .smf-label label {
  cursor: pointer;
}
.snow-monkey-form .smf-checkbox-control {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.snow-monkey-form .smf-checkbox-control__control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.snow-monkey-form .smf-checkbox-control__label {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
}
.snow-monkey-form .smf-checkbox-control__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1.5px solid #999999;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.snow-monkey-form .smf-checkbox-control__label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: translateY(-55%) rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.snow-monkey-form .smf-checkbox-control__control:checked + .smf-checkbox-control__label::before {
  background-color: #498BA6;
  border-color: #498BA6;
}
.snow-monkey-form .smf-checkbox-control__control:checked + .smf-checkbox-control__label::after {
  transform: translateY(-55%) rotate(45deg) scale(1);
}
.snow-monkey-form .smf-button-control__control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background-color: #498BA6;
  position: relative;
  padding: 16px 56px;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: none;
}

.snow-monkey-form .smf-item:has([data-validations*=required]) .smf-item__label__text::after {
  content: " *";
  color: #d64545;
  font-size: 14px;
  margin-left: 2px;
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(2px, -3px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.c-shape {
  position: fixed;
  z-index: -10;
}
.c-shape img {
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

.c-shape-1 {
  top: 0;
  left: 0;
}
.c-shape-1 img {
  width: 85%;
  animation-duration: 14s;
}
@media screen and (max-width: 1200px) {
  .c-shape-1 img {
    width: 50%;
  }
}

.c-shape-2 {
  top: 40%;
  right: 2.5%;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .c-shape-2 {
    right: 0;
    transform: translateX(20%);
  }
}
.c-shape-2 img {
  animation-duration: 11s;
  animation-delay: -4s;
}
@media screen and (max-width: 767px) {
  .c-shape-2 img {
    width: 60%;
  }
}

.c-shape-3 {
  top: 85%;
  left: 0;
}
.c-shape-3 img {
  animation-duration: 18s;
  animation-delay: -7s;
}
@media screen and (max-width: 1200px) {
  .c-shape-3 img {
    width: 60%;
  }
}

.p-fv {
  position: relative;
  width: 100%;
  height: 100dvh;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .p-fv {
    margin-bottom: 64px;
  }
}
.p-fv__inner {
  width: 90%;
  height: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-fv__txt-box {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }
}
.p-fv__tagline {
  font-size: clamp(2rem, 1.3846153846rem + 3.0769230769vw, 3.5rem);
  margin-bottom: 16px;
  line-height: 1.5;
  writing-mode: horizontal-tb;
}
.p-fv__tagline .p-fv__line {
  display: block;
  white-space: nowrap;
}
.p-fv__tagline .p-fv__char {
  display: inline-block;
  font-size: clamp(2rem, 1.3846153846rem + 3.0769230769vw, 3.5rem);
  opacity: 0;
  transform: translateY(6px);
}
.p-fv__tagline .p-fv__char.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.p-fv__tagline--en {
  font-size: clamp(0.75rem, 0.4935897436rem + 1.2820512821vw, 1.375rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #498BA6;
  font-family: "Barlow Condensed", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.p-fv__img {
  width: 30vw;
  max-width: 384px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-fv__img {
    position: absolute;
    width: 45%;
    max-width: 480px;
    margin-bottom: 16px;
    right: 5%;
    bottom: 0;
  }
}
.p-fv__scroll {
  position: absolute;
  left: 2%;
  bottom: 150px;
  font-size: 12px;
  font-weight: 500;
  writing-mode: vertical-lr;
  font-family: "Barlow Condensed", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
  .p-fv__scroll {
    bottom: 100px;
  }
}
.p-fv__scroll span {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 75px;
  left: calc(50% - 4px);
  top: calc(100% + 16px);
}
@media screen and (max-width: 767px) {
  .p-fv__scroll span {
    height: 50px;
  }
}
.p-fv__scroll span::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0 0 100% 0;
  background-color: #444444;
  animation: scroll 5s ease-in-out infinite;
}
.p-fv__tagline--en, .p-fv__img, .p-fv__scroll {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.p-fv__tagline--en.is-show, .p-fv__img.is-show, .p-fv__scroll.is-show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes scroll {
  0% {
    inset: 0 0 100% 0;
  }
  50% {
    inset: 0;
  }
  100% {
    inset: 100% 0 0 0;
  }
}

.p-concept__inner {
  display: flex;
  gap: 80px;
  padding: 0 5% 0 0;
}
@media screen and (max-width: 1200px) {
  .p-concept__inner {
    gap: 64px;
  }
}
@media screen and (max-width: 960px) {
  .p-concept__inner {
    padding: 0;
    flex-direction: column;
  }
}
.p-concept__img {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .p-concept__img {
    width: 85%;
  }
}
.p-concept__img img {
  width: 100%;
  height: auto;
  border-radius: 0 8px 8px 0;
}
.p-concept__txt-box {
  width: 45%;
  max-width: 568px;
}
@media screen and (max-width: 960px) {
  .p-concept__txt-box {
    width: 90%;
    max-width: 1100px;
    margin-inline: auto;
  }
}
.p-concept__txt {
  line-height: 2.2;
}
.p-concept .c-headline--ja::before {
  display: none;
}

.p-service {
  position: relative;
}
.p-service__item {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 96px;
}
@media screen and (max-width: 1200px) {
  .p-service__item:last-child {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 960px) {
  .p-service__item {
    max-width: 480px;
    margin-inline: auto;
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 64px;
  }
  .p-service__item:last-child {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__item:last-child {
    margin-bottom: 56px;
  }
}
.p-service__item:nth-child(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .p-service__item:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.p-service .c-txt-box {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .p-service .c-txt-box {
    width: 100%;
  }
}
.p-service__title {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #444444;
}
@media screen and (max-width: 960px) {
  .p-service__title {
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: 20px;
    padding: 0;
    border-bottom: none;
  }
}
.p-service__img {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .p-service__img {
    width: 100%;
  }
}
.p-service__img img {
  width: 100%;
  height: auto;
}

.p-works__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 96px;
}
@media screen and (max-width: 1200px) {
  .p-works__container {
    gap: 40px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 960px) {
  .p-works__container {
    gap: 24px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-works__container {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 56px;
  }
}
.p-works__item {
  width: calc(50% - 48px);
}
@media screen and (max-width: 1200px) {
  .p-works__item {
    width: calc(50% - 32px);
  }
}
@media screen and (max-width: 960px) {
  .p-works__item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .p-works__item {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}
.p-works__item:nth-child(even) {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-works__item:nth-child(even) {
    margin-top: 0;
  }
}
.p-works__item--page {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-works__item--page {
    margin-bottom: 0;
  }
}
.p-works__item--page:nth-child(even) {
  margin-top: 0;
}

.p-news__list {
  margin-top: 64px;
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: 88px;
}
@media screen and (max-width: 1200px) {
  .p-news__list {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin-bottom: 56px;
  }
}
.p-news__item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dotted #999999;
}
@media screen and (max-width: 767px) {
  .p-news__item {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.p-news__item:last-child {
  margin-bottom: 0;
}
.p-news__date {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
}
.p-news__title {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 15px;
  }
}

.p-cta {
  color: #FFFFFF;
  text-align: center;
}
.p-cta__container {
  width: 90%;
  margin-inline: auto;
  padding: 120px 40px;
  background: url(../images/cta-bg@2x.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 50px;
}
@media screen and (max-width: 1200px) {
  .p-cta__container {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__container {
    border-radius: 25px;
    padding: 40px 24px;
  }
}
.p-cta__txt {
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .p-cta__txt {
    width: 63%;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__txt {
    width: 100%;
  }
}

.p-profile__img {
  width: 100%;
  max-width: 480px;
  margin-top: 80px;
  margin-bottom: 48px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .p-profile__img {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-profile__img {
    margin-top: 40px;
  }
}
.p-profile__name-box {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.p-profile__job {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-profile__job {
    font-size: 14px;
  }
}
.p-profile__name {
  font-size: 28px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .p-profile__name {
    font-size: 24px;
  }
}
.p-profile__ruby {
  display: inline-block;
  font-size: 16px;
  font-family: "Barlow Condensed", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin-left: 24px;
}
.p-profile__container {
  padding: 80px 0;
  background-color: #f2f1ee;
}
@media screen and (max-width: 767px) {
  .p-profile__container {
    padding: 64px 0;
  }
}
.p-profile__title {
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: "Barlow Condensed", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.p-profile__item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #999999;
}

.p-info__container {
  border-radius: 30px;
  padding: 80px;
  margin: 80px auto 0;
  background-color: #FCFCFC;
}
@media screen and (max-width: 1200px) {
  .p-info__container {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-info__container {
    margin-top: 40px;
    padding: 40px 24px;
  }
}
.p-info__item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #999999;
}
@media screen and (max-width: 767px) {
  .p-info__item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.p-info__item:last-child {
  margin-bottom: 0;
}
.p-info__title {
  font-size: 16px;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-info__title {
    font-size: 15px;
    margin-bottom: 8px;
    width: 100%;
  }
}
.p-info__body {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-info__body {
    width: 100%;
  }
}
.p-info__note {
  font-size: 12px;
  margin-top: 4px;
}

.p-recommend__container {
  margin-top: 64px;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 80px;
}
@media screen and (max-width: 1200px) {
  .p-recommend__container {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend__container {
    margin-top: 40px;
    padding: 40px 24px;
  }
}
.p-recommend__item {
  position: relative;
  font-size: 18px;
  margin-bottom: 24px;
  padding: 0 0 24px 32px;
  border-bottom: 1px dotted #999999;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-recommend__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend__item {
    font-size: 14px;
  }
}
.p-recommend__item:last-child {
  margin-bottom: 0;
}
.p-recommend__item::before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 10px);
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/svg/check-icon.svg) center center no-repeat;
  background-size: cover;
}

.p-price__list {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 960px) {
  .p-price__list {
    flex-direction: column;
  }
}
.p-price__item {
  flex-grow: 1;
  width: 33.3%;
  border: 1px solid #f2f1ee;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .p-price__item {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
  }
}
.p-price__label {
  background-color: #f2f1ee;
  border-radius: 15px 15px 0 0;
  text-align: center;
  padding: 16px 0;
  margin-bottom: 24px;
}
.p-price__lead {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
}
@media screen and (max-width: 960px) {
  .p-price__lead {
    font-size: 16px;
  }
}
.p-price__amount {
  text-align: center;
  font-weight: 500;
}
.p-price__value {
  font-size: 40px;
}
.p-price__item:nth-child(2) {
  border: 1px solid #498BA6;
}
.p-price__item:nth-child(2) .p-price__label {
  background-color: #498BA6;
  color: #FFFFFF;
}
.p-price__detail-list {
  margin-top: 8px;
  padding: 24px;
  border-top: 1px dotted #999999;
}
@media screen and (max-width: 960px) {
  .p-price__detail-list {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 8px;
  }
}
.p-price__detail-list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 13px;
  padding-left: 12px;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .p-price__detail-list li {
    width: calc(50% - 4px);
  }
}
@media screen and (max-width: 767px) {
  .p-price__detail-list li {
    width: 100%;
    font-size: 15px;
  }
}
.p-price__detail-list li::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #498BA6;
  border-radius: 50%;
}
.p-price__detail-list li:last-child {
  margin-bottom: 0;
}

.p-flow {
  padding: 80px 0;
  background-color: #f2f1ee;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 48px 0;
  }
}
.p-flow__list {
  max-width: 880px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin: 48px 0;
  }
}
.p-flow__list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #999999;
}
.p-flow__item {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 6px 20px rgba(68, 68, 68, 0.04);
}
.p-flow__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #444444;
}
.p-flow__descri {
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
}
.p-flow__descri a {
  color: #498BA6;
  text-decoration: underline;
  font-weight: 500;
}
.p-flow__descri a:hover {
  opacity: 0.8;
}

.p-faq__container {
  margin-top: 80px;
  margin-inline: auto;
  max-width: 880px;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    margin-top: 48px;
  }
}
.p-faq__item {
  border-bottom: 1px solid #999999;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 24px 0;
  }
}
.p-faq__item:first-child {
  border-top: 1px solid #999999;
}
.p-faq summary {
  list-style: none;
  cursor: pointer;
}
.p-faq summary::-webkit-details-marker {
  display: none;
}
.p-faq__question {
  position: relative;
  padding-right: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #444444;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 15px;
  }
}
.p-faq__question:hover {
  opacity: 0.8;
}
.p-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #498BA6;
}
.p-faq details[open] .p-faq__question::after {
  content: "−";
}
.p-faq__answer {
  font-size: 14px;
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid #498BA6;
}
.p-faq__answer p {
  color: #444444;
  margin-bottom: 12px;
}
.p-faq__answer p:last-child {
  margin-bottom: 0;
}

.p-single .c-card__img {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-single .c-card__img {
    margin-bottom: 32px;
  }
}
.p-single .c-card__title {
  font-size: 32px;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 88px;
}
@media screen and (max-width: 960px) {
  .p-single .c-card__title {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-single .c-card__title {
    font-size: 24px;
    margin-bottom: 48px;
  }
}
.p-single__content {
  margin-bottom: 88px;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-bottom: 64px;
  }
}
.p-single__title {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px dotted #999999;
}
@media screen and (max-width: 960px) {
  .p-single__title {
    margin-bottom: 56px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-bottom: 48px;
    padding-bottom: 24px;
  }
}
.p-single .p-news__date {
  display: block;
}
.p-single .p-news__title {
  font-size: 32px;
}
@media screen and (max-width: 960px) {
  .p-single .p-news__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-single .p-news__title {
    font-size: 24px;
  }
}

.p-archive-works {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-archive-works {
    margin-bottom: 64px;
  }
}
.p-archive-works .p-works__container {
  margin-bottom: 40px;
}

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

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

.u-mb-lr {
  margin-bottom: 48px;
}

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

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

.u-align-right {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .u-align-right {
    text-align: left;
  }
}

.u-border-img {
  border-radius: 10px;
}

.u-shadow {
  box-shadow: 0 2.5rem 2rem -2rem hsla(200, 50%, 20%, 0.4);
}

.u-color-text {
  color: #444444 !important;
}

.u-md {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-md {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-md {
    display: none;
  }
}

.js-observe {
  transform: translateY(10px);
  opacity: 0;
}

.is-visible {
  opacity: 1;
  transition: 1s;
  transform: translateY(0);
}

.js-cover-slide {
  position: relative;
}
.js-cover-slide::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background-color: #FCFCFC;
}

.is-cover-open::before {
  inset: 0 0 0 100%;
  transition: 0.6s;
}/*# sourceMappingURL=style.css.map */