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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #404040;
  background-color: #EAEAEA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

body.has-fixed-header {
  padding-top: 146px;
}
@media (max-width: 767px) {
  body.has-fixed-header {
    padding-top: 80px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

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

picture {
  display: block;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}

.l-container {
  max-width: 905px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 767px) {
  .l-container {
    padding: 0 24px;
  }
}

.l-wrapper {
  display: flex;
}
@media (max-width: 767px) {
  .l-wrapper {
    flex-direction: column;
  }
}

.l-sidebar {
  position: sticky;
  top: 0;
  width: 335px;
  height: 100vh;
  flex-shrink: 0;
  background-color: #EAEAEA;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  z-index: 90;
}
@media (max-width: 767px) {
  .l-sidebar {
    display: none;
  }
}
.l-sidebar__header {
  padding: 24px 40px 4px 40px;
}
.l-sidebar__logo {
  display: block;
  width: 64px;
}
.l-sidebar__logo img {
  width: 100%;
  height: auto;
}
.l-sidebar__nav {
  padding: 32px 40px;
}
.l-sidebar__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-sidebar__nav-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
.l-sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (hover: hover) {
  .l-sidebar__nav-link:hover {
    opacity: 0.7;
  }
}
.l-sidebar__nav-en {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #404040;
}
.l-sidebar__nav-ja {
  font-size: 12px;
  color: #777;
}
.l-sidebar__cta {
  padding: 0 24px 24px;
}
.l-sidebar__fc {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 40px;
  background-color: #8dc9d4;
  background-size: cover;
  background-position: center;
}
.l-sidebar__fc::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/menu-bg.jpg");
  background-size: cover;
  background-position: center;
}
.l-sidebar__fc-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(7, 159, 186, 0.7);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
}
.l-sidebar__fc-text {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}

.l-content {
  flex: 1;
  min-width: 0;
  background-color: #EAEAEA;
}
@media (max-width: 767px) {
  .l-content {
    width: 100%;
  }
}

.l-header {
  display: none;
}
@media (max-width: 767px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 24px;
    background-color: #EAEAEA;
    z-index: 100;
  }
}
.l-header__logo {
  display: block;
  width: 48px;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__menu-btn {
  width: 32px;
  height: 24px;
  position: relative;
}
.l-header__menu-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #404040;
  transition: 0.3s ease;
}
.l-header__menu-btn span:nth-child(1) {
  top: 0;
}
.l-header__menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__menu-btn span:nth-child(3) {
  bottom: 0;
}
.l-header__menu-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__menu-btn.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.l-mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #EAEAEA;
  z-index: 150;
  padding: 24px;
  overflow-y: auto;
}
.l-mobile-menu.is-open {
  display: block;
}
.l-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-mobile-menu__item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
.l-mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-mobile-menu__en {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #404040;
}
.l-mobile-menu__ja {
  font-size: 12px;
  color: #777;
}

@media (max-width: 767px) {
  .l-main {
    padding-top: 80px;
  }
}

.l-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .l-section {
    padding: 48px 0;
  }
}
.l-section--gray {
  background-color: #f5f5f5;
}
.l-section--dark {
  background-color: #546065;
  color: #fff;
}
.l-section--primary {
  background-color: #079FBA;
  color: #fff;
}

.l-footer {
  background-color: #EAEAEA;
  border-top: 1px solid #999;
  padding: 40px 60px;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 32px 24px;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
  }
}
.l-footer__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__top {
  display: flex;
  gap: 64px;
}
.l-footer__logo {
  width: 80px;
  flex-shrink: 0;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
.l-footer__nav {
  display: flex;
  gap: 56px;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 24px;
  }
}
.l-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-footer__nav-link {
  font-size: 16px;
  color: #404040;
}
@media (hover: hover) {
  .l-footer__nav-link:hover {
    color: #079FBA;
  }
}
.l-footer__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
}
@media (max-width: 767px) {
  .l-footer__right {
    width: 100%;
  }
}
.l-footer__copyright {
  padding: 16px 0;
  font-size: 12px;
  color: #777;
}

.c-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: 0.3s ease;
}
.c-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-btn {
  height: 36px;
  padding: 0 40px;
  font-size: 12px;
  border-radius: 4px;
}
.c-btn--primary {
  background-color: #079FBA;
  color: #fff;
}
.c-btn--line {
  background-color: #07b53b;
  color: #fff;
}
.c-btn--white {
  background-color: #fff;
  color: #079FBA;
}
.c-btn--dark {
  background-color: #404040;
  color: #fff;
}
.c-btn--outline {
  background-color: transparent;
  border: 1px solid #546065;
  color: #404040;
}
@media (hover: hover) {
  .c-btn--outline:hover {
    background-color: #079FBA;
    border-color: #079FBA;
    color: #fff;
  }
}
.c-btn--m {
  height: 48px;
  font-size: 14px;
}
.c-btn--l {
  height: 53px;
  font-size: 14px;
}
.c-btn--block {
  width: 100%;
}

.c-link {
  display: inline-flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #404040;
  text-transform: uppercase;
  border-bottom: 1px solid #404040;
  padding-bottom: 2px;
}
@media (hover: hover) {
  .c-link:hover {
    opacity: 0.7;
  }
}

.c-title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.c-title__header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.c-title__dot {
  width: 8px;
  height: 8px;
  background-color: #079FBA;
  flex-shrink: 0;
}
.c-title__en {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #079FBA;
  text-transform: uppercase;
  flex-shrink: 0;
}
.c-title__line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.4s;
}
.c-title__line.is-animated {
  transform: scaleX(1);
}
.c-title__ja {
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
}
.c-title__text {
  font-size: 14px;
  color: #404040;
  line-height: 1.6;
}
.c-title--white .c-title__dot {
  background-color: #fff;
}
.c-title--white .c-title__en,
.c-title--white .c-title__ja {
  color: #fff;
}
.c-title--white .c-title__line {
  background-color: rgba(255, 255, 255, 0.5);
}

.c-heading {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .c-heading {
    margin-bottom: 40px;
  }
}
.c-heading__en {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #079FBA;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.c-heading__ja {
  font-weight: 700;
  line-height: 1.4;
  font-size: 32px;
}
@media (max-width: 767px) {
  .c-heading__ja {
    font-size: 24px;
  }
}
.c-heading--left {
  text-align: left;
}

.c-accordion {
  border-bottom: 1px solid #dcdcdc;
}
.c-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background-color: #f5f5f5;
  text-align: left;
  gap: 24px;
  cursor: pointer;
}
.c-accordion__title {
  flex: 1;
  font-size: 16px;
  color: #404040;
}
.c-accordion__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.c-accordion__icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  transform: rotate(45deg);
}
.c-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  background-color: #dee3e5;
}
.c-accordion__body-inner {
  overflow: hidden;
}
.c-accordion__content {
  padding: 16px 24px 40px;
  font-size: 14px;
  color: #404040;
  line-height: 1.8;
}
.c-accordion.is-open .c-accordion__icon {
  transform: rotate(180deg);
}
.c-accordion.is-open .c-accordion__body {
  grid-template-rows: 1fr;
}

.c-tab__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid #ccc;
  padding-top: 32px;
}
.c-tab__item {
  flex: 1;
  min-width: 0;
  padding: 12px 24px;
  border: 1px solid #546065;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-tab__item:hover {
    border-color: #079FBA;
  }
}
.c-tab__item.is-active {
  background-color: #079FBA;
  border-color: #079FBA;
  color: #fff;
}
.c-tab__item.is-active .c-tab__label,
.c-tab__item.is-active .c-tab__name {
  color: #fff;
}
.c-tab__label {
  display: block;
  font-size: 14px;
  color: #546065;
  line-height: 1.6;
}
.c-tab__name {
  display: block;
  font-size: 18px;
  color: #404040;
  line-height: 1.6;
}
.c-tab__panels {
  margin-top: 40px;
}
.c-tab__panel {
  display: none;
}
.c-tab__panel.is-active {
  display: block;
}

.c-news {
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
}
.c-news__title {
  font-size: 16px;
  color: #404040;
  line-height: 1.8;
  margin-bottom: 8px;
}
.c-news__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  color: #777;
}
.c-news__date {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
.c-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-feature__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.c-feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-feature__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-feature__title {
  font-size: 18px;
  color: #404040;
  line-height: 1.4;
  min-height: 64px;
}
.c-feature__text {
  font-size: 13px;
  color: #546065;
  line-height: 1.8;
}

.c-price {
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
}
.c-price__header {
  padding: 24px;
  border-bottom: 1px solid #bbb;
}
.c-price__name {
  font-size: 18px;
  color: #404040;
  margin-bottom: 12px;
}
.c-price__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #404040;
}
.c-price__label {
  font-size: 14px;
}
.c-price__number {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
}
.c-price__unit {
  font-size: 14px;
}
.c-price__body {
  padding: 16px 24px 56px;
}
.c-price__desc {
  font-size: 13px;
  color: #546065;
  line-height: 1.6;
}

.c-location {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
}
.c-location__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 280/300;
}
.c-location__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-location__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c-location__name {
  font-size: 16px;
  color: #404040;
}
.c-location__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #546065;
}

.c-card {
  background-color: #EAEAEA;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }
}
.c-card__image {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-card__body {
  padding: 24px;
}
@media (max-width: 767px) {
  .c-card__body {
    padding: 16px;
  }
}
.c-card__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #079FBA;
  margin-bottom: 8px;
}
.c-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-card__title {
    font-size: 1.6rem;
  }
}
.c-card__text {
  font-size: 1.4rem;
  color: #546065;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-card__text {
    font-size: 1.3rem;
  }
}
.c-card__date {
  font-size: 1.2rem;
  color: #999;
  margin-top: 16px;
}

.c-form__group {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .c-form__group {
    margin-bottom: 20px;
  }
}
.c-form__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.c-form__label--required::after {
  content: "必須";
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  background-color: #dc3545;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
}
.c-form__input, .c-form__textarea, .c-form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: 0.3s ease;
}
.c-form__input:focus, .c-form__textarea:focus, .c-form__select:focus {
  outline: none;
  border-color: #079FBA;
}
.c-form__input::-moz-placeholder, .c-form__textarea::-moz-placeholder, .c-form__select::-moz-placeholder {
  color: #999;
}
.c-form__input::placeholder, .c-form__textarea::placeholder, .c-form__select::placeholder {
  color: #999;
}
@media (max-width: 767px) {
  .c-form__input, .c-form__textarea, .c-form__select {
    padding: 10px 14px;
    font-size: 1.6rem;
  }
}
.c-form__textarea {
  min-height: 160px;
  resize: vertical;
}
.c-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
  padding-right: 40px;
}
.c-form__error {
  font-size: 1.3rem;
  color: #dc3545;
  margin-top: 8px;
}
.c-form__submit {
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-form__submit {
    margin-top: 24px;
  }
}

.c-breadcrumb {
  padding: 16px 0;
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    padding: 12px 0;
    font-size: 1.2rem;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-breadcrumb__item::after {
  content: ">";
  color: #999;
}
.c-breadcrumb__item:last-child::after {
  display: none;
}
.c-breadcrumb__link {
  color: #546065;
}
@media (hover: hover) {
  .c-breadcrumb__link:hover {
    color: #079FBA;
    text-decoration: underline;
  }
}
.c-breadcrumb__current {
  color: #404040;
}

.c-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .c-pagination {
    margin-top: 40px;
  }
}
.c-pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-pagination__item:hover {
    border-color: #079FBA;
    color: #079FBA;
  }
}
.c-pagination__item.is-current {
  background-color: #079FBA;
  border-color: #079FBA;
  color: #fff;
}
.c-pagination__item--prev, .c-pagination__item--next {
  width: auto;
  padding: 0 16px;
}

.p-top-mv {
  width: 100%;
  height: 700px;
}
@media (max-width: 767px) {
  .p-top-mv {
    height: 400px;
  }
}
.p-top-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-about {
  padding: 24px;
  background-color: #EAEAEA;
}
@media (max-width: 767px) {
  .p-top-about {
    padding: 16px;
  }
}
.p-top-about__inner {
  position: relative;
  padding: 80px 40px 280px 80px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) {
  .p-top-about__inner {
    padding: 40px 24px;
  }
}
.p-top-about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top-about__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-about__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.p-top-about__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 130px;
}
@media (max-width: 767px) {
  .p-top-about__content {
    gap: 40px;
  }
}
.p-top-about__main {
  display: flex;
  gap: 160px;
  padding-left: 72px;
}
@media (max-width: 767px) {
  .p-top-about__main {
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
  }
}
.p-top-about__vertical-text {
  display: flex;
  gap: 44px;
}
@media (max-width: 767px) {
  .p-top-about__vertical-text {
    display: none;
  }
}
.p-top-about__vertical-item {
  writing-mode: vertical-rl;
  font-family: "Klee One", cursive;
  font-size: 57px;
  font-weight: 600;
  line-height: 1.2;
}
.p-top-about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 320px;
}
@media (max-width: 767px) {
  .p-top-about__body {
    padding-top: 0;
  }
}
.p-top-about__catch {
  font-family: "Klee One", cursive;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-top-about__catch {
    font-size: 20px;
  }
}
.p-top-about__text {
  font-family: "Klee One", cursive;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-top-about__text {
    font-size: 16px;
  }
}
.p-top-about__text p + p {
  margin-top: 1.5em;
}

.p-top-banner {
  padding: 24px 120px 56px;
}
@media (max-width: 767px) {
  .p-top-banner {
    padding: 24px 24px 40px;
  }
}
.p-top-banner__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 820/120;
}
.p-top-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-news {
  padding: 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .p-top-news {
    padding: 40px 24px;
  }
}
.p-top-news__list {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .p-top-news__list {
    padding: 24px;
  }
}
.p-top-feature {
  padding: 40px 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-top-feature {
    padding: 40px 24px 80px;
  }
}
.p-top-feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-feature__list {
    grid-template-columns: 1fr;
  }
}

.p-top-commitment {
  position: relative;
  padding: 80px;
  border-radius: 0 40px 40px 0;
  margin-right: 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-commitment {
    padding: 40px 24px;
    margin-right: 0;
    border-radius: 0;
  }
}
.p-top-commitment__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top-commitment__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.p-top-commitment__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.p-top-commitment__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-commitment-card {
  position: relative;
  display: flex;
  gap: 56px;
  align-items: center;
  padding: 40px 60px 56px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
}
@media (max-width: 767px) {
  .p-commitment-card {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }
}
.p-commitment-card__number {
  position: absolute;
  top: -10px;
  left: 40px;
  width: 105px;
  height: 120px;
  background-image: url("../images/icon-point.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .p-commitment-card__number {
    width: 80px;
    height: 95px;
    left: 20px;
    padding-bottom: 12px;
  }
}
.p-commitment-card__number-label {
  font-size: 12px;
  text-transform: uppercase;
}
.p-commitment-card__number-value {
  font-size: 40px;
}
@media (max-width: 767px) {
  .p-commitment-card__number-value {
    font-size: 28px;
  }
}
.p-commitment-card__body {
  flex: 1;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .p-commitment-card__body {
    padding-top: 56px;
  }
}
.p-commitment-card__title {
  font-size: 26px;
  font-weight: 500;
  color: #079FBA;
}
@media (max-width: 767px) {
  .p-commitment-card__title {
    font-size: 18px;
  }
}
.p-commitment-card__text {
  font-size: 14px;
  color: #546065;
  line-height: 1.6;
}
.p-commitment-card__image {
  width: 340px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-commitment-card__image {
    width: 100%;
  }
}
.p-commitment-card__image img {
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-commitment-card__image img {
    height: 200px;
  }
}
.p-commitment-card__note {
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-bottom: 8px;
}

.p-top-price {
  padding: 96px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-top-price {
    padding: 80px 24px;
  }
}
.p-top-price__header {
  display: flex;
  gap: 56px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .p-top-price__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-top-price__icon {
  width: 106px;
  height: auto;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-top-price__icon {
    width: 80px;
  }
}
.p-top-price__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-top-price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-top-price__list {
    grid-template-columns: 1fr;
  }
}
.p-top-price__option {
  position: relative;
  padding: 16px 24px;
  margin-top: 40px;
  padding: 24px;
}
.p-top-price__option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #404040;
  pointer-events: none;
}
.p-top-price__option::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-bottom: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #404040;
  pointer-events: none;
}
.p-top-price__option-header {
  background-color: #546065;
  color: #f5f5f5;
  padding: 6px 24px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 32px;
}
.p-top-price__option-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-top-price__option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #bbb;
  font-size: 16px;
  color: #404040;
}
.p-top-price__option-price {
  font-size: 14px;
}
.p-top-price__note {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  margin-top: 32px;
}

.p-top-guide {
  padding: 40px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-guide {
    padding: 40px 24px;
  }
}
.p-top-guide__content {
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 24px 32px;
}
@media (max-width: 767px) {
  .p-top-guide__content {
    padding: 24px;
  }
}
.p-top-guide__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-top-guide__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.p-top-guide__item:last-child {
  border-bottom: none;
}
.p-top-guide__label {
  width: 90px;
  flex-shrink: 0;
  font-size: 14px;
  color: #079FBA;
}
.p-top-guide__value {
  flex: 1;
  font-size: 13px;
  color: #404040;
}
.p-top-guide__note {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin-top: 16px;
}

.p-top-flow {
  padding: 40px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-flow {
    padding: 40px 24px;
  }
}
.p-top-flow__list {
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .p-top-flow__list {
    flex-direction: column;
    gap: 24px;
  }
}

.p-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  height: 308px;
  padding: 0;
}
@media (max-width: 767px) {
  .p-flow-step {
    height: auto;
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }
}
.p-flow-step__number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .p-flow-step__number-wrap {
    width: auto;
    flex-shrink: 0;
  }
}
.p-flow-step__line {
  flex: 1;
  height: 2px;
  background-color: #546065;
}
@media (max-width: 767px) {
  .p-flow-step__line {
    display: none;
  }
}
.p-flow-step__line--hidden {
  visibility: hidden;
}
.p-flow-step__number {
  width: 32px;
  height: 32px;
  background-color: #546065;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.p-flow-step__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.p-flow-step__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  flex: 1;
}
@media (max-width: 767px) {
  .p-flow-step__body {
    text-align: left;
    align-items: flex-start;
  }
}
.p-flow-step__title {
  font-size: 16px;
  color: #079FBA;
}
.p-flow-step__text {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
}

.p-top-faq {
  padding: 40px 80px 80px;
}
@media (max-width: 767px) {
  .p-top-faq {
    padding: 40px 24px;
  }
}
.p-top-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-top-faq__list {
  display: flex;
  flex-direction: column;
}

.p-top-location {
  padding: 40px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-top-location {
    padding: 40px 24px;
  }
}
.p-top-location__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .p-top-location__list {
    grid-template-columns: 1fr;
  }
}

.p-top-seat {
  padding: 40px 80px 120px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-seat {
    padding: 40px 24px 80px;
  }
}
.p-top-seat__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.p-top-seat__status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 411px;
  max-width: 100%;
}
.p-top-seat__status-box {
  background-color: #fff;
  border-radius: 4px;
  padding: 24px 60px;
  text-align: center;
}
.p-top-seat__status-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.p-top-seat__status-available {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 500;
  color: #404040;
}
.p-top-seat__status-label {
  font-size: 18px;
}
.p-top-seat__status-number {
  font-family: "DM Sans", sans-serif;
  font-size: 56px;
}
@media (max-width: 767px) {
  .p-top-seat__status-number {
    font-size: 40px;
  }
}
.p-top-seat__status-unit {
  font-size: 18px;
}
.p-top-seat__status-total {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid #bbb;
  font-size: 14px;
  font-weight: 500;
  color: #404040;
}
.p-top-seat__status-total-number {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
}
.p-top-seat__status-note {
  font-size: 12px;
  color: #404040;
}

.p-top-contact {
  padding: 56px 80px 80px;
  background-color: #546065;
}
@media (max-width: 767px) {
  .p-top-contact {
    padding: 40px 24px;
  }
}
.p-top-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-top-contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-top-contact__cards {
    grid-template-columns: 1fr;
  }
}
.p-top-contact__card {
  background-color: #EAEAEA;
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-top-contact__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-top-contact__card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.p-top-contact__card-text {
  flex: 1;
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
}

.p-top-breadcrumb {
  padding: 32px 80px;
}
@media (max-width: 767px) {
  .p-top-breadcrumb {
    padding: 16px 24px;
  }
}
.p-top-breadcrumb__inner {
  background-color: #dcdcdc;
  padding: 16px 40px;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-breadcrumb__inner {
    padding: 12px 16px;
  }
}
.p-top-breadcrumb__item {
  font-size: 13px;
  color: #777;
}
.p-top-breadcrumb__item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  transform: rotate(-45deg);
  margin-left: 8px;
}
.p-top-breadcrumb__item:last-child::after {
  display: none;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.c-section-title__en {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #079FBA;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: 28px;
  }
}
.c-section-title__line {
  width: 80px;
  height: 2px;
  background-color: #079FBA;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.4s;
}
.c-section-title__line.is-animated {
  transform: scaleX(1);
}
.c-section-title__ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #666;
}
.c-section-title--white .c-section-title__en {
  color: #fff;
}
.c-section-title--white .c-section-title__line {
  background-color: #fff;
}
.c-section-title--white .c-section-title__ja {
  color: #fff;
}

.p-fc-hero {
  position: relative;
  min-height: 520px;
  padding: 32px 80px;
  background-color: #e7eeee;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-fc-hero {
    min-height: auto;
    padding: 56px 24px 40px;
    flex-direction: column;
    gap: 360px;
  }
}
.p-fc-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.p-fc-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fc-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 441px;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .p-fc-hero__inner {
    max-width: 100%;
    padding-top: 0;
    gap: 16px;
  }
}
.p-fc-hero__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.p-fc-hero__logo-image {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-fc-hero__logo-image img {
  height: 26px;
  width: auto;
}
@media (max-width: 767px) {
  .p-fc-hero__logo-image img {
    height: 21px;
  }
}
.p-fc-hero__logo-label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #079FBA;
}
@media (max-width: 767px) {
  .p-fc-hero__logo-label {
    font-size: 13px;
  }
}
.p-fc-hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-fc-hero__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #079FBA;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-fc-hero__title {
    font-size: 36px;
  }
}
.p-fc-hero__subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-fc-hero__subtitle {
    font-size: 12px;
  }
}
.p-fc-hero__cta {
  background: linear-gradient(90deg, #079fba 0%, #3ebc94 50%, #92b837 100%);
  border-radius: 6px;
  padding: 15px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .p-fc-hero__cta {
    padding: 16px 24px;
    border-radius: 5px;
  }
}
.p-fc-hero__cta-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  .p-fc-hero__cta-text {
    font-size: 16px;
  }
}
.p-fc-hero__cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 24px 12px 32px;
  color: #079FBA;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-fc-hero__cta-btn {
    width: 100%;
    padding: 16px 20px 16px 24px;
    font-size: 14px;
  }
}
.p-fc-hero__cta-btn svg, .p-fc-hero__cta-btn img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .p-fc-hero__cta-btn svg, .p-fc-hero__cta-btn img {
    width: 17px;
    height: 17px;
  }
}
@media (hover: hover) {
  .p-fc-hero__cta-btn:hover {
    opacity: 0.9;
  }
}

.p-fc-wave {
  display: block;
  width: 100%;
  background-color: #8dc9d4;
}
@media (max-width: 767px) {
  .p-fc-wave {
    height: 40px;
  }
}
.p-fc-wave img, .p-fc-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-fc-concept {
  background-color: #8dc9d4;
  padding: 80px 120px 60px 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}
@media (max-width: 767px) {
  .p-fc-concept {
    padding: 40px 24px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.p-fc-concept__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 767px) {
  .p-fc-concept__content {
    gap: 40px;
    align-items: center;
  }
}
.p-fc-concept__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fafafa;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-fc-concept__title {
    font-size: 28px;
    text-align: center;
  }
}
.p-fc-concept__text {
  padding-left: 56px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .p-fc-concept__text {
    padding-left: 0;
    padding-bottom: 0;
  }
}
.p-fc-concept__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fafafa;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .p-fc-concept__text p {
    font-size: 15px;
    text-align: center;
    line-height: 1.9;
  }
}
.p-fc-concept__images {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .p-fc-concept__images {
    display: none;
  }
}
.p-fc-concept__image {
  border-radius: 4px;
  overflow: hidden;
}
.p-fc-concept__image--1 {
  width: 278px;
  height: 188px;
  margin-bottom: 18px;
}
.p-fc-concept__image--2 {
  position: relative;
  right: -30px;
  width: 235px;
  height: 310px;
}
.p-fc-concept__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fc-ict {
  background-color: #8dc9d4;
  padding: 56px 16px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .p-fc-ict {
    padding: 40px 16px 80px;
    gap: 32px;
  }
}
.p-fc-ict__card {
  max-width: 905px;
  width: 100%;
}
.p-fc-ict__card img {
  width: 100%;
  height: auto;
  display: block;
}
.p-fc-ict__image {
  max-width: 905px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-fc-ict__image {
    aspect-ratio: 1/1;
  }
}
.p-fc-ict__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fc-features {
  background-color: #fafafa;
  padding: 80px 80px 120px;
  border-radius: 32px 32px 0 0;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-fc-features {
    padding: 56px 24px 80px;
  }
}
.p-fc-features__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 905px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-fc-features__inner {
    gap: 32px;
  }
}
.p-fc-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .p-fc-features__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-fc-features__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .p-fc-features__item {
    gap: 12px;
  }
}
.p-fc-features__item-image {
  width: 100%;
  height: 143px;
  border-radius: 8px;
  overflow: hidden;
}
.p-fc-features__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fc-features__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.p-fc-features__item-label {
  display: flex;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #079FBA;
  border-bottom: 2px solid #079FBA;
  padding-bottom: 4px;
}
.p-fc-features__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #404040;
  line-height: 1.4;
  padding-top: 12px;
}
@media (max-width: 767px) {
  .p-fc-features__item-title {
    font-size: 16px;
  }
}

.p-fc-strengths {
  position: relative;
  padding: 56px 40px;
  background-size: cover;
  background-position: center;
}
.p-fc-strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(141, 201, 212, 0.4);
}
@media (max-width: 767px) {
  .p-fc-strengths {
    padding: 56px 24px;
  }
}
.p-fc-strengths__inner {
  position: relative;
  z-index: 1;
  background-color: rgba(7, 159, 186, 0.6);
  border-radius: 16px;
  padding: 56px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 905px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-fc-strengths__inner {
    padding: 32px 16px;
    gap: 24px;
  }
}
.p-fc-strengths__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-fc-strengths__list {
    gap: 32px;
  }
}
.p-fc-strengths__item {
  border-top: 1px solid #ddd;
  padding-top: 40px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-fc-strengths__item {
    flex-direction: column;
    padding-top: 24px;
    gap: 16px;
  }
}
.p-fc-strengths__item-content {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .p-fc-strengths__item-content {
    flex: auto;
    width: 100%;
  }
}
.p-fc-strengths__item-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .p-fc-strengths__item-header {
    gap: 16px;
    align-items: center;
  }
}
.p-fc-strengths__item-number {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #068ba2;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-fc-strengths__item-number {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.p-fc-strengths__item-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.p-fc-strengths__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-fc-strengths__item-title {
    font-size: 20px;
  }
}
.p-fc-strengths__item-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.p-fc-strengths__item-points {
  background-color: #119bb3;
  border-radius: 4px;
  padding: 16px 24px;
}
.p-fc-strengths__item-points ul {
  list-style: none;
}
.p-fc-strengths__item-points ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.p-fc-strengths__item-points ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  flex-shrink: 0;
  margin-top: 6px;
}
.p-fc-strengths__item-image {
  flex: 1;
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-fc-strengths__item-image {
    width: 100%;
    min-height: 160px;
    border-radius: 4px;
  }
}
.p-fc-strengths__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-fc-growth {
  background-color: #fafafa;
  padding: 80px 80px 56px;
}
@media (max-width: 767px) {
  .p-fc-growth {
    padding: 56px 24px;
  }
}
.p-fc-growth__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 905px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-fc-growth__inner {
    gap: 32px;
  }
}
.p-fc-growth__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-fc-growth__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .p-fc-growth__cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.p-fc-growth__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #f2f2f2;
  border: 2px solid #079FBA;
  border-radius: 8px;
  padding: 24px;
  min-height: 117px;
}
@media (max-width: 767px) {
  .p-fc-growth__card {
    padding: 16px 24px;
    min-height: auto;
    border-color: #a9d1d8;
  }
}
.p-fc-growth__card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #079FBA;
}
@media (max-width: 767px) {
  .p-fc-growth__card-icon {
    width: 24px;
    height: 24px;
  }
}
.p-fc-growth__card-icon img, .p-fc-growth__card-icon svg {
  width: 100%;
  height: 100%;
}
.p-fc-growth__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #079FBA;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-fc-growth__card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-fc-growth__simulation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-fc-growth__simulation-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-color: #d8e6e8;
  padding: 40px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .p-fc-growth__simulation-images {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }
}
.p-fc-growth__simulation-images img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}
.p-fc-growth__simulation-note {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  color: #777;
  text-align: center;
}
@media (max-width: 767px) {
  .p-fc-growth__simulation-note {
    font-size: 12px;
  }
}
.p-fc-growth__image {
  width: 100%;
  aspect-ratio: 820/160;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-fc-growth__image {
    aspect-ratio: 1/1;
  }
}
.p-fc-growth__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fc-growth__coming-soon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  background-color: #EAEAEA;
  padding: 24px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .p-fc-growth__coming-soon {
    padding: 20px;
  }
}
.p-fc-growth__coming-soon-label {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #777;
  text-align: center;
}
@media (max-width: 767px) {
  .p-fc-growth__coming-soon-label {
    font-size: 20px;
  }
}
.p-fc-growth__coming-soon-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #777;
}
@media (max-width: 767px) {
  .p-fc-growth__coming-soon-text {
    font-size: 14px;
  }
}

.p-fc-company {
  background-color: #546065;
  padding: 56px 80px 72px;
}
@media (max-width: 767px) {
  .p-fc-company {
    padding: 56px 24px 80px;
  }
}
.p-fc-company__inner {
  display: flex;
  flex-direction: column;
  gap: 39px;
  max-width: 905px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-fc-company__inner {
    gap: 32px;
  }
}
.p-fc-company__table {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 24px 32px;
}
@media (max-width: 767px) {
  .p-fc-company__table {
    padding: 24px;
  }
}
.p-fc-company__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-fc-company__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4d4d4;
}
.p-fc-company__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .p-fc-company__item {
    flex-direction: column;
    gap: 8px;
  }
}
.p-fc-company__label {
  width: 90px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #079FBA;
}
@media (max-width: 767px) {
  .p-fc-company__label {
    width: auto;
  }
}
.p-fc-company__value {
  flex: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  color: #404040;
  line-height: 1.6;
}
.p-fc-company__value ul {
  list-style: none;
}
.p-fc-company__value ul li::before {
  content: "●";
  margin-right: 4px;
}

.p-fc-breadcrumb {
  background-color: #EAEAEA;
  padding: 32px 60px 80px;
}
@media (max-width: 767px) {
  .p-fc-breadcrumb {
    padding: 16px;
  }
}
.p-fc-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background-color: #dedede;
  padding: 16px 40px;
}
@media (max-width: 767px) {
  .p-fc-breadcrumb__inner {
    font-size: 12px;
    padding: 14px 16px;
    min-height: 45px;
  }
}
.p-fc-breadcrumb__item {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #777;
}
.p-fc-breadcrumb__item--current {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #404040;
}
.p-fc-breadcrumb__separator {
  font-family: "DM Sans", sans-serif;
  color: #404040;
}
@media (hover: hover) {
  .p-fc-breadcrumb a.p-fc-breadcrumb__item:hover {
    color: #079FBA;
  }
}

.l-sidebar__fc.is-current .l-sidebar__fc-inner {
  background: rgba(7, 159, 186, 0.85);
}

.p-news {
  padding: 96px 120px 56px;
}
@media (max-width: 767px) {
  .p-news {
    padding: 80px 16px 80px;
  }
}
.p-news__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .p-news__inner {
    gap: 48px;
  }
}
.p-news__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-news__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  .p-news__title {
    gap: 8px;
  }
}
.p-news__title-en {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #404040;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .p-news__title-en {
    font-size: 32px;
  }
}
.p-news__title-ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}
.p-news__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid #bcbfc7;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .p-news__item {
    gap: 16px;
  }
}
@media (hover: hover) {
  .p-news__item:hover {
    opacity: 0.7;
  }
}
.p-news__item-title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #404040;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .p-news__item-title {
    line-height: 1.6;
  }
}
.p-news__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-news__item-meta {
    padding: 0;
  }
}
.p-news__item-date {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #777;
}
.p-news__item-tag {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  color: #777;
}

.p-news-detail {
  padding: 96px 120px 40px;
}
@media (max-width: 767px) {
  .p-news-detail {
    padding: 56px 16px 80px;
  }
}
.p-news-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 767px) {
  .p-news-detail__inner {
    gap: 80px;
  }
}
.p-news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .p-news-detail__header {
    padding-bottom: 40px;
  }
}
.p-news-detail__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #404040;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-news-detail__title {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
}
.p-news-detail__image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-news-detail__image {
    height: 200px;
  }
}
.p-news-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-news-detail__meta {
    margin-top: 0;
  }
}
.p-news-detail__date {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #626262;
}
@media (max-width: 767px) {
  .p-news-detail__date {
    font-weight: 500;
    color: #777;
  }
}
.p-news-detail__tag {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  color: #777;
}
.p-news-detail__body {
  margin-top: 40px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #404040;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-news-detail__body {
    line-height: 1.6;
  }
}
.p-news-detail__body p {
  margin-bottom: 1.5em;
}
.p-news-detail__body p:last-child {
  margin-bottom: 0;
}
.p-news-detail__back {
  display: flex;
  align-items: center;
}
.p-news-detail__back-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #404040;
  text-transform: uppercase;
  border-bottom: 1px solid #404040;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}
.p-news-detail__back-btn::before {
  content: "👈";
  margin-right: 8px;
}
@media (hover: hover) {
  .p-news-detail__back-btn:hover {
    opacity: 0.7;
  }
}

.p-breadcrumb {
  padding: 32px 60px;
}
@media (max-width: 767px) {
  .p-breadcrumb {
    padding: 16px;
  }
}
.p-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #dedede;
  padding: 16px 40px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .p-breadcrumb__inner {
    padding: 14px 16px;
    font-size: 12px;
  }
}
.p-breadcrumb__item {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #777;
  white-space: nowrap;
}
.p-breadcrumb__item--current {
  color: #404040;
}
.p-breadcrumb a.p-breadcrumb__item {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .p-breadcrumb a.p-breadcrumb__item:hover {
    color: #079FBA;
  }
}
.p-breadcrumb__separator {
  font-family: "DM Sans", sans-serif;
  color: #404040;
}

.p-contact {
  padding: 80px 120px 56px;
}
@media (max-width: 767px) {
  .p-contact {
    padding: 80px 16px 48px;
  }
}
.p-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (max-width: 767px) {
  .p-contact__inner {
    gap: 40px;
  }
}
.p-contact__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-contact__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  .p-contact__title {
    gap: 8px;
  }
}
.p-contact__title-en {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #404040;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .p-contact__title-en {
    font-size: 32px;
  }
}
.p-contact__title-ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .p-contact__form {
    gap: 24px;
  }
}
.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-contact__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #404040;
}
.p-contact__input {
  width: 100%;
  height: 56px;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #404040;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #404040;
  outline: none;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .p-contact__input {
    height: 48px;
    font-size: 14px;
  }
}
.p-contact__input::-moz-placeholder {
  color: #bcbfc7;
}
.p-contact__input::placeholder {
  color: #bcbfc7;
}
.p-contact__input:focus {
  border-bottom-color: #079FBA;
}
.p-contact__select-wrap {
  position: relative;
}
.p-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #404040;
  pointer-events: none;
}
.p-contact__select {
  width: 100%;
  height: 56px;
  padding: 0 40px 0 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #404040;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .p-contact__select {
    height: 48px;
    font-size: 14px;
  }
}
.p-contact__select:focus {
  border-color: #079FBA;
}
.p-contact__textarea {
  width: 100%;
  height: 150px;
  padding: 16px 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #404040;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #404040;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .p-contact__textarea {
    height: 120px;
    font-size: 14px;
  }
}
.p-contact__textarea::-moz-placeholder {
  color: #bcbfc7;
}
.p-contact__textarea::placeholder {
  color: #bcbfc7;
}
.p-contact__textarea:focus {
  border-bottom-color: #079FBA;
}
.p-contact__submit {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-contact__submit {
    margin-top: 16px;
  }
}
.p-contact__submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 56px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #404040;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .p-contact__submit-btn {
    max-width: 100%;
    height: 48px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .p-contact__submit-btn:hover {
    opacity: 0.8;
  }
}

.p-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 120px;
}
@media (max-width: 767px) {
  .p-thanks {
    min-height: 50vh;
    padding: 80px 16px;
  }
}
.p-thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-thanks__inner {
    gap: 24px;
  }
}
.p-thanks__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #404040;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-thanks__title {
    font-size: 20px;
  }
}
.p-thanks__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  color: #404040;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-thanks__text {
    font-size: 12px;
  }
}
.p-thanks__btn {
  margin-top: 16px;
  width: 320px;
}
@media (max-width: 767px) {
  .p-thanks__btn {
    width: 100%;
    margin-top: 8px;
  }
}
.p-thanks__btn .c-btn {
  height: 56px;
}
@media (max-width: 767px) {
  .p-thanks__btn .c-btn {
    height: 48px;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: inline;
  }
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

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

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

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

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

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

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

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

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

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

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

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

.u-mb-24 {
  margin-bottom: 24px !important;
}

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

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

.u-fw-normal {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-color-primary {
  color: #079FBA !important;
}

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

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fadein.is-fadein {
  opacity: 1;
  transform: translateY(0);
}

.fadein--delay-1 {
  transition-delay: 0.1s;
}

.fadein--delay-2 {
  transition-delay: 0.2s;
}

.fadein--delay-3 {
  transition-delay: 0.3s;
}

.fadein--delay-4 {
  transition-delay: 0.4s;
}

.js-text-animation .char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.js-text-animation.is-animated .char {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */