@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
}

@media (max-width: 1400px) {
  html {
    overflow-x: auto;
  }
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 1299px) and (min-width: 1025px) {
  html {
    overflow-x: auto;
  }
  body {
    overflow-x: hidden;
    min-width: 1300px;
  }
}
@media (max-width: 1024px) {
  :root {
    --site-header-fixed-offset: calc(80px + env(safe-area-inset-top, 0px));
  }
  html {
    overflow-x: auto;
  }
  body {
    overflow-x: hidden;
    min-width: 100%;
    padding-top: var(--site-header-fixed-offset);
  }
}
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

.ibm-plex-sans-jp-regular {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans-jp-semibold {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.red-hat-display-300 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.red-hat-display-400 {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 1024px) {
  .pc_only {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .sp_only {
    display: none !important;
  }
}
body {
  color: #403630;
  font-size: 16px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6em;
  background-color: #fff5f5;
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.8em;
  }
}
header.site-header {
  width: clamp(1300px, 100%, 1400px);
  height: 126px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
header.site-header .site-header__inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 660px) minmax(0, 410px);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
}
header.site-header .site-header__main-nav {
  width: 100%;
  max-width: 660px;
  min-width: 615px;
  padding-top: 30px;
  padding-right: 20px;
}
header.site-header .site-header__main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header.site-header .site-header__main-nav > ul > li {
  position: relative;
  margin: 0;
  padding: 0;
}
header.site-header .site-header__main-nav > ul > li > a {
  display: inline-block;
  text-decoration: none;
  color: #403630;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 8px 0;
  transition: color 0.25s ease;
}
header.site-header .site-header__main-nav > ul > li:has(> .sub-menu) > a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 13px;
  height: 13px;
  background-image: url("images/angle-down-sharp-light-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}
header.site-header .site-header__main-nav > ul > li > a:hover {
  color: #f98484;
}
header.site-header .site-header__main-nav > ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
header.site-header .site-header__main-nav > ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header.site-header .site-header__main-nav > ul > li:hover:has(> .sub-menu) > a::after, header.site-header .site-header__main-nav > ul > li:focus-within:has(> .sub-menu) > a::after {
  transform: rotate(180deg);
}
header.site-header .site-header__main-nav > ul > li > .sub-menu > li {
  margin: 0;
  padding: 0;
}
header.site-header .site-header__main-nav > ul > li > .sub-menu > li > a {
  display: block;
  text-decoration: none;
  color: #403630;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 16px;
  white-space: nowrap;
}
header.site-header .site-header__main-nav > ul > li > .sub-menu > li > a:hover {
  background-color: #fff1f3;
  color: #f98484;
}
header.site-header .site-header__nav {
  max-width: 410px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #403630;
  line-height: 1.4;
  text-align: center;
}
header.site-header .site-header__nav p {
  margin: 0 auto;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: #403630;
  line-height: 1.4;
  text-align: center;
}
header.site-header .site-header__nav ul {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header.site-header .site-header__nav li {
  margin: 0;
  padding: 0;
}
header.site-header .site-header__nav li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0 20px;
  box-sizing: border-box;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 1400px) {
  header.site-header .site-header__nav li a {
    min-width: 170px;
  }
}
header.site-header .site-header__nav li a::after {
  content: "";
  margin-left: 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("images/arrow-right-regular-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
header.site-header .site-header__nav li:nth-child(1) a {
  background-color: #f88e8e;
}
header.site-header .site-header__nav li:nth-child(1) a:hover {
  background-color: #e37f7f;
}
header.site-header .site-header__nav li:nth-child(2) a {
  background-color: #76a770;
}
header.site-header .site-header__nav li:nth-child(2) a:hover {
  background-color: #679762;
}
header.site-header .site-header__nav li a.site-header__nav-btn--outline {
  background-color: transparent;
  color: #e36363;
  border: 1px solid #e36363;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
header.site-header .site-header__nav li a.site-header__nav-btn--outline::after {
  display: none;
}
header.site-header .site-header__nav li a.site-header__nav-btn--outline:hover {
  background-color: rgba(227, 99, 99, 0.08);
  color: #e36363;
  border-color: #e36363;
}

.site-header__logo {
  width: 100%;
}
.site-header__logo a {
  display: block;
  background-image: url(images/header_logo.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 80px;
  text-decoration: none;
  height: 70px;
}
.site-header__logo a h1 {
  font-size: 30px;
  color: #f98484;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.site-header__logo a h1 span {
  font-size: 12px;
  font-weight: normal;
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: -0.05em;
}

@media (max-width: 1024px) {
  header.site-header {
    width: 100%;
    height: var(--site-header-fixed-offset);
    margin: 0 auto;
    padding: env(safe-area-inset-top, 0px) 20px 0 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 260;
    background-color: #fff5f5;
    box-shadow: none;
    transition: box-shadow 0.25s ease;
  }
  header.site-header.is-header-scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  header.site-header .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: none;
  }
  header.site-header .site-header__mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--site-header-fixed-offset);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0 30px calc(74px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    background: #fff5f5;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  header.site-header.is-menu-open .site-header__mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  header.site-header .site-header__mobile-menu .site-header__nav {
    width: 100%;
    max-width: none;
    justify-self: auto;
    align-items: stretch;
    margin-top: 0px;
    padding-top: 24px;
    flex-shrink: 0;
  }
  header.site-header .site-header__mobile-menu .site-header__nav ul {
    flex-direction: column;
    width: 100%;
    gap: 18px;
  }
  header.site-header .site-header__mobile-menu .site-header__nav li a {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .site-header__menu-toggle {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #f88e8e;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .site-header__menu-toggle:focus-visible {
    outline: 2px solid #f98484;
    outline-offset: 2px;
  }
  .site-header__menu-bar {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 1px;
    margin-left: -15px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
  }
  .site-header__menu-bar:nth-child(1) {
    top: calc(50% - 10px);
  }
  .site-header__menu-bar:nth-child(2) {
    top: 50%;
    margin-top: -0.5px;
  }
  .site-header__menu-bar:nth-child(3) {
    top: calc(50% + 10px);
  }
  header.site-header.is-menu-open .site-header__menu-bar:nth-child(1) {
    top: 50%;
    margin-top: -0.5px;
    transform: rotate(45deg);
  }
  header.site-header.is-menu-open .site-header__menu-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  header.site-header.is-menu-open .site-header__menu-bar:nth-child(3) {
    top: 50%;
    margin-top: -0.5px;
    transform: rotate(-45deg);
  }
  .site-header__logo {
    width: auto;
    flex: 1;
    min-width: 0;
  }
  .site-header__logo a {
    display: block;
    background-image: url(images/header_logo.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50px auto;
    padding: 6px 0 0 66px;
    text-decoration: none;
    height: 70px;
  }
  .site-header__logo a h1 {
    font-size: 22px;
    color: #f98484;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .site-header__logo a h1 span {
    font-size: 10px;
    font-weight: normal;
    color: #000;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: -0.05em;
  }
  .site-header__mobile-menu__nav-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: none;
    border-bottom: 1px solid #c8c6c5;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 300;
  }
  .site-header__mobile-menu__nav-inner a {
    text-decoration: none;
    color: #403630;
    line-height: 1.4;
  }
  .site-header__mobile-menu__nav-inner a:hover {
    text-decoration: underline;
  }
  .site-header__mobile-menu__nav-inner--left {
    width: 30%;
    padding-top: 4px;
  }
  .site-header__mobile-menu__nav-inner--right {
    width: 70%;
  }
  .site-header__mobile-menu__nav-inner--right ul li {
    padding: 5px 0;
  }
  .site-header__mobile-menu__nav-en {
    font-size: 10px;
    color: #e36363;
    line-height: 1;
    margin: 6px 0 0;
    padding: 0;
  }
}
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(1300px, 100%, 1400px);
  margin: -100px auto 0;
  padding: 100px 100px 60px;
  border-radius: 100px 100px 0 0;
  background-image: linear-gradient(to bottom, #ffe5e7, #fff5f5);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 290px 470px 440px;
  gap: 0;
  width: 1200px;
  align-items: start;
}
.site-footer__logo {
  width: 290px;
  font-size: 14px;
}
.site-footer__logo a {
  color: #403630 !important;
}
.site-footer__logo__inner {
  width: 240px;
  margin-bottom: 60px;
}
.site-footer__logo__inner a {
  display: block;
  background-image: url(images/header_logo.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 80px;
  text-decoration: none;
  height: 70px;
}
.site-footer__logo__inner a h1 {
  font-size: 30px;
  color: #f98484;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.site-footer__logo__inner a h1 span {
  font-size: 12px;
  font-weight: normal;
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.site-footer__link {
  width: 470px;
  font-size: 14px;
}
.site-footer__link a {
  text-decoration: none;
  color: #e36363;
  line-height: 3;
}
.site-footer__link a:hover {
  text-decoration: underline;
}
.site-footer .sub-menu {
  border-left: 1px solid #c8c6c5;
  padding-left: 10px;
  margin-top: 16px;
}
.site-footer .sub-menu a {
  text-decoration: none;
  color: #e36363;
  line-height: 2.2;
}
.site-footer .sub-menu a:hover {
  text-decoration: underline;
}
.site-footer__table {
  width: 440px;
}
.site-footer__table table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0;
  padding: 0;
}
.site-footer__table table th {
  padding: 4px 0;
}
.site-footer__table table td {
  border-top: 1px solid #c8c6c5;
  padding: 4px 0;
}
.site-footer__table table .table-title {
  width: 120px;
}
.site-footer__table table .open {
  color: #f98484;
  font-weight: 700;
}
.site-footer__table .site-footer__nav {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.site-footer__table .site-footer__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 50px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0 24px;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.site-footer__table .site-footer__nav a::after {
  content: "";
  margin-left: 10px;
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("images/arrow-right-regular-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.site-footer__table .site-footer__nav a:nth-child(1) {
  background-color: #f88e8e;
}
.site-footer__table .site-footer__nav a:nth-child(1):hover {
  background-color: #e37f7f;
}
.site-footer__table .site-footer__nav a:nth-child(2) {
  background-color: #76a770;
}
.site-footer__table .site-footer__nav a:nth-child(2):hover {
  background-color: #679762;
}
.site-footer__link__inner {
  display: grid;
  grid-template-columns: 180px 290px;
  gap: 0;
}
.site-footer__copyright {
  font-size: 12px;
  color: #403630;
  text-align: right;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .site-footer {
    width: 100%;
    margin: -60px auto 0;
    padding: 60px 30px calc(80px + env(safe-area-inset-bottom, 0px)) 30px;
    border-radius: 60px 60px 0 0;
  }
  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .site-footer__logo {
    width: 100%;
    font-size: 14px;
    margin-bottom: 40px;
  }
  .site-footer__logo__inner {
    width: 100%;
    margin-bottom: 20px;
  }
  .site-footer__logo__inner a {
    display: block;
    background-image: url(images/header_logo.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50px auto;
    padding: 6px 0 0 66px;
    text-decoration: none;
    height: 70px;
  }
  .site-footer__logo__inner a h1 {
    font-size: 24px;
    color: #f98484;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .site-footer__logo__inner a h1 span {
    font-size: 10px;
    font-weight: normal;
    color: #000;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: 400;
    letter-spacing: -0.05em;
  }
  .site-footer__link {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .site-footer__link a {
    text-decoration: none;
    color: #e36363;
    line-height: 3;
  }
  .site-footer__link a:hover {
    text-decoration: underline;
  }
  .site-footer .sub-menu {
    border-left: 1px solid #c8c6c5;
    padding-left: 10px;
    margin-top: 16px;
  }
  .site-footer .sub-menu li {
    padding: 6px 0;
    line-height: 1.4;
  }
  .site-footer .sub-menu a {
    text-decoration: none;
    color: #e36363;
    line-height: 1.4;
  }
  .site-footer .sub-menu a:hover {
    text-decoration: underline;
  }
  .site-footer__table {
    width: 100%;
  }
  .site-footer__table .site-footer__nav {
    display: none;
  }
  .site-footer__link__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
  .site-footer__link__inner__left {
    width: 100%;
  }
  .site-footer__link__inner__right {
    width: 100%;
  }
  .site-footer__link__bottom {
    line-height: 1.6 !important;
  }
  .site-footer__link__bottom a {
    line-height: 1.6 !important;
  }
  .site-footer__copyright {
    font-size: 12px;
    color: #403630;
    text-align: center;
    margin-top: 36px;
  }
  .site-footer__nav_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }
  .site-footer__nav_sp a {
    flex: 1 1 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
    padding: 12px 10px;
    box-sizing: border-box;
    text-align: center;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .site-footer__nav_sp a::after {
    content: "";
    flex-shrink: 0;
    margin-left: 8px;
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url("images/arrow-right-regular-full.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);
  }
  .site-footer__nav_sp a:nth-child(1) {
    background-color: #f88e8e;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }
  .site-footer__nav_sp a:nth-child(1):active {
    background-color: #e37f7f;
  }
  .site-footer__nav_sp a:nth-child(2) {
    background-color: #76a770;
  }
  .site-footer__nav_sp a:nth-child(2):active {
    background-color: #679762;
  }
}
.c-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #403630;
  text-decoration: none;
}

.c-link-arrow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ffcac9;
  border-radius: 50%;
  color: #f98484;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.c-link-arrow:hover .c-link-arrow__icon {
  background-color: #fff1f3;
}

.fp-hero-area {
  display: flex;
  width: clamp(1300px, 100%, 1400px);
  margin: 0 auto 40px;
  padding: 0 10px;
}
.fp-hero-area__left {
  width: 440px;
  min-width: 430px;
  max-width: 440px;
  margin-left: 100px;
  padding: 60px 20px 0 0;
}
.fp-hero-area__left .text-1 {
  font-size: 20px;
  font-weight: 400;
  color: #f98484;
  line-height: 1.2;
  margin: 0;
  padding: 0 0 34px 0;
  text-decoration: underline;
  text-underline-offset: 8px;
  /* ここで隙間を調整 */
}
.fp-hero-area__left .text-2 {
  font-size: 24px;
  font-weight: 400;
  color: #403630;
  line-height: 1.2;
  margin: 0;
  padding: 0 0 12px 0;
}
.fp-hero-area__left .text-3 {
  font-size: 44px;
  font-weight: 300;
  color: #403630;
  line-height: 1.2;
  margin: 0 0 40px 0;
  padding: 0;
  letter-spacing: 0.1em;
}
.fp-hero-area__left .text-3__line2 {
  display: inline-block;
  margin-inline-start: -0.48em;
}
.fp-hero-area__left .text-4 {
  font-weight: 500;
  color: #f98484;
}
.fp-hero-area__left .text-5 {
  font-weight: 400;
  color: #403630;
  font-size: 14px;
}
.fp-hero-area__left__list ul {
  list-style: none;
  margin: 0 0 114px 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.fp-hero-area__left__list ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
  margin: 0;
  padding: 0;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 0 6px 0 rgba(249, 132, 132, 0.3490196078);
}
.fp-hero-area__left__list__icon {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fp-hero-area__left__list__text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  height: 60px;
  margin: 20px 0;
}
.fp-hero-area__left__table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0 0 6px 0;
  padding: 0;
}
.fp-hero-area__left__table table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0;
  padding: 0;
}
.fp-hero-area__left__table table th {
  padding: 4px 0;
}
.fp-hero-area__left__table table td {
  border-top: 1px solid #c8c6c5;
  padding: 4px 0;
}
.fp-hero-area__left__table table .table-title {
  width: 120px;
}
.fp-hero-area__left__table table .open {
  color: #f98484;
  font-weight: 700;
}
.fp-hero-area__right {
  width: 840px;
}
.fp-hero-area__right__list {
  margin: -60px 0 0 30px;
}
.fp-hero-area__right__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
.fp-hero-area__right__list ul li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 230px;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
}
.fp-hero-area__right__list ul li a {
  display: block;
  text-decoration: none;
  color: #403630;
}
.fp-hero-area__right__list ul li.item_01 {
  border: 10px solid #FFD8D8;
}
.fp-hero-area__right__list ul li.item_01 a:hover div, .fp-hero-area__right__list ul li.item_01 div:hover {
  background-color: #fff2f2;
}
.fp-hero-area__right__list ul li.item_01 div {
  box-shadow: 0 0 6px 0 #f98484;
  background-image: url(images/list_bg_01.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.fp-hero-area__right__list ul li.item_01 div span {
  color: #e36363;
  font-weight: 500;
  font-size: 20px;
  margin-top: 8px;
}
.fp-hero-area__right__list ul li.item_01 div .text_soon {
  font-size: 12px;
  font-weight: 400;
  color: #e36363;
  margin-top: -3px;
  margin-left: -5px;
  margin-bottom: -22px;
}
.fp-hero-area__right__list ul li.item_02 {
  border: 10px solid #D5F7E4;
}
.fp-hero-area__right__list ul li.item_02 a:hover div, .fp-hero-area__right__list ul li.item_02 div:hover {
  background-color: #efffef;
}
.fp-hero-area__right__list ul li.item_02 div {
  box-shadow: 0 0 6px 0 #6fa06d;
  background-image: url(images/list_bg_02.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.fp-hero-area__right__list ul li.item_02 div span {
  color: #6fa06d;
  font-weight: 500;
  font-size: 20px;
  margin-top: 8px;
}
.fp-hero-area__right__list ul li.item_03 {
  border: 10px solid #FFDEE9;
}
.fp-hero-area__right__list ul li.item_03 div {
  box-shadow: 0 0 6px 0 #f984c3;
}
.fp-hero-area__right__list ul li.item_03 div span {
  color: #e36363;
  font-weight: 500;
  font-size: 20px;
  margin-top: 8px;
}
.fp-hero-area__right__list ul li div {
  flex: 1 1 auto;
  width: 100%;
  min-height: 152px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 10px;
  background-color: #fff;
  transition: background-color 0.35s ease;
  padding-left: 30px;
}

@media (max-width: 1024px) {
  .fp-hero-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px auto 40px;
    padding: 0 30px 0 30px;
  }
  .fp-hero-area__left {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 30px 0;
    padding: 0;
  }
  .fp-hero-area__left .text-1 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    padding: 0 0 22px 0;
    text-decoration: underline;
    text-underline-offset: 8px;
    /* ここで隙間を調整 */
  }
  .fp-hero-area__left .text-2 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    padding: 0 0 12px 0;
  }
  .fp-hero-area__left .text-3 {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 24px 0;
    padding: 0;
    letter-spacing: 0.1em;
  }
  .fp-hero-area__left .text-3__line2 {
    display: inline-block;
    margin-inline-start: -0.48em;
  }
  .fp-hero-area__left .text-4 {
    font-weight: 500;
  }
  .fp-hero-area__left .text-5 {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
  }
  .fp-hero-area__left .hero_img_sp {
    width: calc(100% + 60px);
    margin: 0 -30px 40px -30px;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .fp-hero-area__left__list ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    display: flex;
    gap: 10px;
  }
  .fp-hero-area__left__list ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .fp-hero-area__left__list__icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .fp-hero-area__left__list__text {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding: 0;
    height: 60px;
    margin: 10px 0 10px;
  }
  .fp-hero-area__left__table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    margin: 0 0 6px 0;
    padding: 0;
  }
  .fp-hero-area__left__table table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .fp-hero-area__left__table table th {
    padding: 4px 0;
  }
  .fp-hero-area__left__table table td {
    border-top: 1px solid #c8c6c5;
    padding: 4px 0;
  }
  .fp-hero-area__left__table table .table-title {
    width: 120px;
  }
  .fp-hero-area__left__table table .open {
    color: #f98484;
    font-weight: 700;
  }
  .fp-hero-area__right {
    width: 100%;
  }
  .fp-hero-area__right__list {
    margin: 0px;
  }
  .fp-hero-area__right__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .fp-hero-area__right__list ul li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.4;
  }
  .fp-hero-area__right__list ul li a {
    display: block;
    text-decoration: none;
    color: #403630;
  }
  .fp-hero-area__right__list ul li.item_01 {
    border: 10px solid #FFD8D8;
  }
  .fp-hero-area__right__list ul li.item_01 a:hover div, .fp-hero-area__right__list ul li.item_01 div:hover {
    background-color: #fff2f2;
  }
  .fp-hero-area__right__list ul li.item_01 div {
    box-shadow: 0 0 6px 0 #f98484;
    background-image: url(images/list_bg_01.png);
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .fp-hero-area__right__list ul li.item_01 div span {
    color: #e36363;
    font-weight: 500;
    font-size: 18px;
    margin-top: 8px;
  }
  .fp-hero-area__right__list ul li.item_01 div .sp_text_soon {
    font-size: 11px;
    font-weight: 400;
  }
  .fp-hero-area__right__list ul li.item_02 {
    border: 10px solid #D5F7E4;
  }
  .fp-hero-area__right__list ul li.item_02 a:hover div, .fp-hero-area__right__list ul li.item_02 div:hover {
    background-color: #efffef;
  }
  .fp-hero-area__right__list ul li.item_02 div {
    box-shadow: 0 0 6px 0 #6fa06d;
    background-image: url(images/list_bg_02.png);
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .fp-hero-area__right__list ul li.item_02 div span {
    color: #6fa06d;
    font-weight: 500;
    font-size: 18px;
    margin-top: 8px;
  }
  .fp-hero-area__right__list ul li.item_03 {
    border: 10px solid #FFDEE9;
  }
  .fp-hero-area__right__list ul li.item_03 div {
    box-shadow: 0 0 6px 0 #f984c3;
  }
  .fp-hero-area__right__list ul li.item_03 div span {
    color: #e36363 !important;
    font-weight: 500;
    font-size: 18px;
    margin-top: 8px;
  }
  .fp-hero-area__right__list ul li div {
    flex: 1 1 auto;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border-radius: 10px;
    background-color: #fff;
    transition: background-color 0.35s ease;
    padding: 20px 24px;
  }
}
.fp-information-area {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 36px;
  width: 1200px;
  height: 100px;
  margin: 0 auto 100px;
  padding: 0 50px;
  background-color: #f98484;
  border-radius: 10px;
  box-sizing: border-box;
}
.fp-information-area .information-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.fp-information-area .information-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 1024px) {
  .fp-information-area {
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 60px);
    height: auto;
    margin: 0 30px 100px 30px;
    padding: 30px 12px;
  }
  .fp-information-area .information-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .fp-information-area .information-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 0;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }
}
.fp-lead-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 1300px;
  margin: 0 auto 100px;
}
.fp-lead-area__left {
  width: 570px;
}
.fp-lead-area__right {
  width: 660px;
  padding-right: 50px;
}
.fp-lead-area__right h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.fp-lead-area__right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4;
}

@media (max-width: 1024px) {
  .fp-lead-area {
    flex-direction: column;
    width: 100%;
    padding: 0 30px;
  }
  .fp-lead-area__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .fp-lead-area__right {
    width: 100%;
    padding-right: 0;
  }
  .fp-lead-area__right h2 {
    font-size: 24px;
    line-height: 1.8;
  }
}
.fp-features-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(1300px, 100%, 1400px);
  margin: 0 auto 100px;
  padding: 150px 0 0 0;
  border-radius: 100px 100px 0 0;
  background-image: url(images/features_bg.png), linear-gradient(to bottom, #ffe5e7, #fff5f5);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, center;
  background-size: auto, cover;
}
.fp-features-area .features-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  color: #e36363;
  letter-spacing: 0.1em;
}
.fp-features-area h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
.fp-features-area ul {
  list-style: none;
  width: 1200px;
  margin: 0;
}
.fp-features-area ul li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 30px;
  border: none;
  margin-bottom: 50px;
  box-shadow: 0 0 6px 0 rgba(255, 148, 148, 0.8431372549), 0 0 0 10px #ffdfeb;
}
.fp-features-area ul li.item_01 .fp-features-area__list__text {
  width: 680px;
  padding: 70px 70px;
  line-height: 1.8;
}
.fp-features-area ul li.item_01 .fp-features-area__list__image {
  width: 520px;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  background-image: url(images/features_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fp-features-area ul li.item_01 h3 {
  margin-bottom: 36px;
  padding-left: 86px;
  background-image: url(images/features_nam_01.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
}
.fp-features-area ul li.item_01 h3 span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2px;
  display: inline-block;
}
.fp-features-area ul li.item_02 {
  flex-direction: row-reverse;
}
.fp-features-area ul li.item_02 .fp-features-area__list__text {
  width: 700px;
  padding: 70px 70px;
  line-height: 1.8;
}
.fp-features-area ul li.item_02 .fp-features-area__list__image {
  width: 500px;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
  background-image: url(images/features_02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fp-features-area ul li.item_02 h3 {
  margin-bottom: 36px;
  padding-left: 86px;
  background-image: url(images/features_nam_02.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
}
.fp-features-area ul li.item_02 h3 span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2px;
  display: inline-block;
}
.fp-features-area ul li.item_03 .fp-features-area__list__text {
  width: 700px;
  padding: 70px 70px;
  line-height: 1.8;
}
.fp-features-area ul li.item_03 .fp-features-area__list__image {
  width: 500px;
  overflow: hidden;
  border-radius: 0 30px 30px 0;
  background-image: url(images/features_03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fp-features-area ul li.item_03 h3 {
  margin-bottom: 36px;
  padding-left: 86px;
  background-image: url(images/features_nam_03.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
}
.fp-features-area ul li.item_03 h3 span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .fp-features-area {
    width: 100%;
    padding: 100px 0 0 0;
    border-radius: 60px 60px 0 0;
    background-image: url(images/features_bg_sp.png), linear-gradient(to bottom, #ffe5e7, #fff5f5);
    background-repeat: no-repeat, no-repeat;
    background-position: top center, center;
    background-size: auto, cover;
  }
  .fp-features-area h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .fp-features-area ul {
    width: 100%;
    padding: 0 30px;
  }
  .fp-features-area ul li {
    flex-direction: column;
  }
  .fp-features-area ul li.item_01, .fp-features-area ul li.item_02, .fp-features-area ul li.item_03 {
    flex-direction: column-reverse;
  }
  .fp-features-area ul li.item_01 .fp-features-area__list__text, .fp-features-area ul li.item_02 .fp-features-area__list__text, .fp-features-area ul li.item_03 .fp-features-area__list__text {
    width: 100%;
    padding: 40px 30px;
    line-height: 1.8;
  }
  .fp-features-area ul li.item_01 .fp-features-area__list__image, .fp-features-area ul li.item_02 .fp-features-area__list__image, .fp-features-area ul li.item_03 .fp-features-area__list__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
  }
  .fp-features-area ul li.item_01 h3, .fp-features-area ul li.item_02 h3, .fp-features-area ul li.item_03 h3 {
    margin-bottom: 12px;
    padding: 46px 0 0 0;
    background-repeat: no-repeat;
    background-position: left top;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.6;
  }
  .fp-features-area ul li.item_01 h3 span, .fp-features-area ul li.item_02 h3 span, .fp-features-area ul li.item_03 h3 span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
    display: inline-block;
  }
  .fp-features-area ul li.item_01 h3 {
    background-image: url(images/features_nam_01.png);
  }
  .fp-features-area ul li.item_02 h3 {
    background-image: url(images/features_nam_02.png);
  }
  .fp-features-area ul li.item_03 h3 {
    background-image: url(images/features_nam_03.png);
  }
}
.fp-message-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(1300px, 100%, 1400px);
  margin: 0 auto;
  padding: 150px 0 260px 0;
  border-radius: 100px 100px 0 0;
  background-color: #FFF;
  background-image: url(images/message_bg.png);
  background-repeat: no-repeat;
  background-position: right 50px top 50px;
}
.fp-message-area__greeting {
  width: 1200px;
}
.fp-message-area__greeting .message-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  color: #e36363;
  letter-spacing: 0.1em;
  text-align: center;
}
.fp-message-area__greeting h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
.fp-message-area__greeting__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-image: url(images/greeting_bg.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.fp-message-area__greeting__inner_left {
  width: 500px;
  height: 100%;
}
.fp-message-area__greeting__inner_right {
  width: 620px;
  height: 100%;
  padding: 60px 0;
}
.fp-message-area__greeting__inner_right p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.fp-message-area__greeting__inner_right .message-greeting-name {
  font-weight: 500;
}
.fp-message-area__greeting__inner_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .fp-message-area {
    width: 100%;
    padding: 100px 30px 100px 30px;
    border-radius: 60px 60px 0 0;
    background-position: right -40px top 10px;
    background-size: 240px auto;
  }
  .fp-message-area__greeting {
    width: 100%;
  }
  .fp-message-area__greeting h2 {
    font-size: 24px;
  }
  .fp-message-area__greeting__inner {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-position: bottom center;
    background-size: 100% auto;
  }
  .fp-message-area__greeting__inner_left {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .fp-message-area__greeting__inner_right {
    width: 100%;
    height: auto;
    padding: 30px 0 0 0;
  }
  .fp-message-area__greeting__inner_bottom {
    margin-bottom: 24px;
  }
}
.fp-message-area__equipment {
  background-image: url(images/equipment_bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  min-height: 760px;
  margin-right: -100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.fp-message-area__equipment_left {
  width: 390px;
}
.fp-message-area__equipment_left .equipment-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px;
  color: #e36363;
  letter-spacing: 0.1em;
  text-align: left;
}
.fp-message-area__equipment_left h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
}
.fp-message-area__equipment_left .equipment_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
}
.fp-message-area__equipment_right {
  width: 910px;
  overflow: visible;
  display: flex;
  justify-content: flex-start;
}
.fp-message-area__equipment_right img {
  width: 1080px;
  max-width: none;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .fp-message-area__equipment {
    background-image: none;
    min-height: auto;
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }
  .fp-message-area__equipment_left {
    width: 100%;
  }
  .fp-message-area__equipment_left .equipment_bg_sp {
    width: calc(100% + 30px);
    max-width: none;
    margin: 0 -30px 40px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .fp-message-area__equipment_left .equipment_bg_sp img {
    width: 100%;
    height: auto;
    display: block;
  }
  .fp-message-area__equipment_left .equipment-en-title {
    text-align: center;
  }
  .fp-message-area__equipment_left h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .fp-message-area__equipment_right {
    display: none;
  }
}
.fp-menu-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(1300px, 100%, 1400px);
  margin: -100px auto 0;
  padding: 150px 0 260px 0;
  border-radius: 100px 100px 0 0;
  background-image: linear-gradient(to bottom, #ffe5e7, #fff5f5);
}
.fp-menu-area .menu-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  color: #e36363;
  letter-spacing: 0.1em;
}
.fp-menu-area h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
.fp-menu-area ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 50px;
  justify-content: flex-start;
  width: 1200px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.fp-menu-area ul li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex: 0 0 570px;
  width: 570px;
  max-width: 570px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 30px;
  border: none;
  margin: 0;
  box-shadow: 0 0 6px 0 rgba(255, 148, 148, 0.8431372549), 0 0 0 10px #ffdfeb;
}
.fp-menu-area .fp-menu-area__list_01 {
  margin-bottom: 50px;
}
.fp-menu-area .fp-menu-area__list_01 ul li {
  background-image: url(images/menu_list_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: background-color 0.35s ease;
}
.fp-menu-area .fp-menu-area__list_01 ul li:hover {
  background-color: #fff2f2;
}
.fp-menu-area .fp-menu-area__list_01 ul li a {
  display: block;
  padding: 40px 60px;
  text-decoration: none;
}
.fp-menu-area .fp-menu-area__list_01 ul li a h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-image: url(images/bg_sakura.png);
  background-repeat: no-repeat;
  background-position: left top 2px;
  padding: 0 0 18px 30px;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #e36363;
  color: #403630;
}
.fp-menu-area .fp-menu-area__list_01 ul li a p {
  color: #403630;
}
.fp-menu-area .fp-menu-area__list_02 ul li {
  flex: 1 1 100%;
  width: 100%;
  max-width: 1200px;
  padding: 70px;
}
.fp-menu-area .fp-menu-area__list_02 ul li > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.fp-menu-area .fp-menu-area__list_02 ul li h3 {
  flex: 0 0 340px;
  width: 340px;
  max-width: 340px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-image: url(images/bg_sakura.png);
  background-repeat: no-repeat;
  background-position: left top 2px;
  padding: 0 0 0 30px;
  margin: 0;
  box-sizing: border-box;
}
.fp-menu-area .fp-menu-area__list_02 ul li p {
  flex: 1;
  min-width: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .fp-menu-area {
    width: 100%;
    padding: 100px 30px 160px 30px;
    border-radius: 60px 60px 0 0;
  }
  .fp-menu-area h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .fp-menu-area ul {
    flex-direction: column;
    row-gap: 50px;
    width: 100%;
    box-sizing: border-box;
  }
  .fp-menu-area ul li {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 30px;
    border: none;
    margin: 0;
    box-shadow: 0 0 6px 0 rgba(255, 148, 148, 0.8431372549), 0 0 0 10px #ffdfeb;
  }
  .fp-menu-area .fp-menu-area__list_01 {
    margin-bottom: 50px;
  }
  .fp-menu-area .fp-menu-area__list_01 ul li {
    background-image: url(images/menu_list_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    transition: background-color 0.35s ease;
    width: 100%;
    max-width: 100%;
  }
  .fp-menu-area .fp-menu-area__list_01 ul li:hover {
    background-color: #fff2f2;
  }
  .fp-menu-area .fp-menu-area__list_01 ul li a {
    display: block;
    padding: 40px 40px;
    text-decoration: none;
  }
  .fp-menu-area .fp-menu-area__list_01 ul li a h3 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
    background-image: url(images/bg_sakura.png);
    background-repeat: no-repeat;
    background-position: left top 2px;
    padding: 0 0 18px 30px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #e36363;
    color: #403630;
  }
  .fp-menu-area .fp-menu-area__list_01 ul li a p {
    color: #403630;
  }
  .fp-menu-area .fp-menu-area__list_02 ul li {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    background-image: url(images/menu_list_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    transition: background-color 0.35s ease;
    padding: 0;
  }
  .fp-menu-area .fp-menu-area__list_02 ul li > div {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 40px 40px;
    box-sizing: border-box;
  }
  .fp-menu-area .fp-menu-area__list_02 ul li h3 {
    flex: none;
    width: auto;
    max-width: none;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.05em;
    background-image: url(images/bg_sakura.png);
    background-repeat: no-repeat;
    background-position: left top 2px;
    padding: 0 0 18px 30px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #e36363;
    box-sizing: border-box;
    color: #403630;
  }
  .fp-menu-area .fp-menu-area__list_02 ul li p {
    flex: none;
    min-width: auto;
    margin: 0;
    color: #403630;
  }
}
.fp-news-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(1300px, 100%, 1400px);
  margin: -100px auto 0;
  padding: 150px 100px 260px 100px;
  border-radius: 100px 100px 0 0;
  background-color: #FFF;
  background-image: url(images/news_bg.png);
  background-repeat: no-repeat;
  background-position: right 100px top 160px;
}
.fp-news-area .news-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  color: #e36363;
  letter-spacing: 0.1em;
}
.fp-news-area h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1.6;
}
.fp-news-area .news_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
}
.fp-news-area__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 860px;
  margin: 0 auto 140px 0;
}
.fp-news-area__inner__left {
  flex: 0 0 210px;
  width: 220px;
  max-width: 210px;
}
.fp-news-area__inner__right {
  flex: 0 0 650px;
  width: 640px;
  max-width: 650px;
}
.fp-news-area__inner__right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-news-area__inner__right li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid #c8c6c5;
}
.fp-news-area__inner__right .news_item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.fp-news-area__inner__right .news_date {
  flex: 0 0 auto;
  font-size: 14px;
  color: #8a7a74;
}
.fp-news-area__inner__right .news_title {
  flex: 1;
  min-width: 0;
}
.fp-news-area__inner__right .news_title a {
  color: #403630;
  text-decoration: none;
}
.fp-news-area__inner__right .news_title a:hover {
  text-decoration: underline;
}
.fp-news-area__inner__right .news_arrow {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .fp-news-area {
    width: 100%;
    margin: -60px auto 0;
    padding: 100px 30px 160px 30px;
    border-radius: 60px 60px 0 0;
    background-image: none;
  }
  .fp-news-area .news-en-title {
    text-align: center;
  }
  .fp-news-area h2 {
    font-size: 24px;
    text-align: center;
  }
  .fp-news-area .news_bottom {
    justify-content: flex-end;
  }
  .fp-news-area__inner {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 40px 0;
  }
  .fp-news-area__inner__left {
    flex: 0 0 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .fp-news-area__inner__right {
    flex: 0 0 0;
    width: 100%;
    max-width: 100%;
  }
  .fp-news-area__inner__right ul {
    margin: 0 0 40px 0;
  }
  .fp-news-area__inner__right .news_title {
    line-height: 1.5;
  }
}
.fp-access-area {
  width: 1200px;
}
.fp-access-area .access-en-title {
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 10px;
  color: #e36363;
  letter-spacing: 0.1em;
  text-align: center;
}
.fp-access-area h2 {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 70px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
}
.fp-access-area__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 1200px;
  margin: 0;
}
.fp-access-area__inner__left {
  position: relative;
  flex: 0 0 660px;
  width: 660px;
  max-width: 660px;
  z-index: 0;
}
.fp-access-area__inner__left::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-image: linear-gradient(to right, #ffe4d2, #ffcac9);
  z-index: -1;
}
.fp-access-area__inner__left iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.fp-access-area__inner__right {
  flex: 0 0 420px;
  width: 420px;
  max-width: 420px;
}
.fp-access-area__inner__right p {
  margin: 0 0 1.6em 0;
  padding: 0;
}
.fp-access-area__inner__right .access_bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .fp-access-area {
    width: 100%;
  }
  .fp-access-area h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .fp-access-area__inner {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .fp-access-area__inner__left {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .fp-access-area__inner__left::after {
    top: 20px;
    left: auto;
    right: 0;
    bottom: -20px;
    width: calc(100% - 20px);
    height: auto;
  }
  .fp-access-area__inner__left iframe {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    height: 190px;
    margin-right: 20px;
  }
  .fp-access-area__inner__right {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
}