body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.global_header {
  padding: 15px 40px;
  border-top: 8px solid #F9E7EC;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global_header__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.global_header_nav__list {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.global_header_nav__item {
  position: relative;
}
.global_header_nav__link {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 0.5em 0.25em;
  margin: 0 0.8em;
  transition-duration: 0.3s;
}
.global_header_nav__link:hover {
  color: #F48183;
  transform: scale(1.1);
}

.global_header_nav__item:hover .global_header_nav_sublist {
  visibility: visible;
  opacity: 1;
}

.global_header_nav_sublist {
  position: absolute;
  z-index: 2;
  top: 2.5em;
  left: 0;
  width: max-content;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  display: flex;
  flex-direction: column;
}
.global_header_nav_sublist__item {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: -1px;
}
.global_header_nav_sublist__link {
  display: block;
  color: #fff;
  background-color: #F48183;
  text-decoration: none;
  padding: 0.6em 1em;
  border: 1px solid #fff;
  transition-duration: 0.3s;
}
.global_header_nav_sublist__link:hover, .global_header_nav_sublist__link:focus {
  color: #F48183;
  background-color: #fff;
}

.global_header_sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.global_header_sns__item {
  margin: 5px;
}
.global_header_sns__item:last-of-type {
  margin-right: 0;
}
.global_header_sns__link {
  display: block;
}

.hamburger_button {
  display: none;
  width: 16px;
  height: 13px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hamburger_button__line {
  width: 100%;
  height: 1px;
  background-color: #FF9EA0;
}

.sp_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 30px 5%;
  background-color: rgba(255, 255, 255, 0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.sp_menu_nav {
  width: 100%;
}
.sp_menu_nav__list {
  width: 100%;
  flex-direction: column;
}
.sp_menu_nav__item {
  width: 100%;
  font-size: 2rem;
  margin-top: -1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.sp_menu_nav__link {
  display: block;
  width: calc(100% - 5rem);
  padding: 1em;
  margin: 0;
  color: #fff;
  background-color: #F48183;
  border: 1px solid #fff;
  text-decoration: none;
}
.sp_menu_nav__button {
  font-size: 2rem;
  width: 5rem;
  text-align: center;
  color: #fff;
  background-color: #F48183;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-left: none;
}

.sp_menu_nav__link:not(:has(+ .sp_menu_nav__button)) {
  width: 100%;
}

.sp_menu_nav_sublist {
  width: 100%;
  display: none;
}
.sp_menu_nav_sublist__item {
  margin-top: -1px;
}
.sp_menu_nav_sublist__link {
  display: block;
  text-decoration: none;
  line-height: 1.4;
  padding: 0.8em 1.5em;
  color: #fff;
  background-color: #F48183;
  border: 1px solid #fff;
}

.sp_menu_sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp_menu_sns__item {
  margin: 10px;
}

.sp_menu_close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}
.sp_menu_close__icon {
  width: 100%;
  height: 100%;
}

.main_visual {
  width: 100%;
  aspect-ratio: 1280/500;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.main_visual__content {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 15%;
  transform: translateY(-50%);
}
.main_visual__main {
  margin-left: -35px;
}
.main_visual__sub {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.22em;
  border-radius: 4px;
  width: max-content;
  margin-top: -55px;
  margin-left: 3em;
}

.breadcrumb {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  padding: 0 35px;
  margin: 1em auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb__item {
  margin-right: 0.5em;
  color: #000;
}
.breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  margin-left: 0.5em;
}
.breadcrumb__link {
  color: #000;
  text-decoration: none;
}

.page_read {
  width: 860px;
  max-width: 100%;
  margin: 60px auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
.page_read__text {
  letter-spacing: 0.02em;
}
.page_read__text:not(:first-of-type) {
  margin-top: 1em;
}

.section_title_wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.section_title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.section_title::before {
  position: absolute;
  display: block;
  content: "";
  background-color: #F9E7EC;
  left: -30px;
  bottom: 0;
  width: 5px;
  height: 65px;
  transform: rotate(30deg);
}
.section_title--white {
  color: #fff;
}
.section_title--white::before {
  background-color: #fff;
}
.section_title--border_white::before {
  background-color: #fff;
}

.section_title_sub {
  font-size: 1.1rem;
  color: #B1B1B1;
  margin-left: 1.8em;
}

.section_title_link {
  position: relative;
  font-size: 1.1rem;
  color: #000;
  margin-left: 1.8em;
  text-decoration: none;
}
.section_title_link::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 70px;
  background-color: #FADAE3;
}
.section_title_link::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -5px;
  left: 120%;
  height: 1px;
  width: 10px;
  background-color: #FADAE3;
  transform-origin: bottom right;
  transform: rotate(45deg);
}

.global_footer {
  width: 100%;
  margin-top: 100px;
  padding: 80px 100px 40px;
  background-color: #FAF8F5;
}

.global_footer_nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.global_footer_nav__list {
  width: calc(20% - 48px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.global_footer_nav__item {
  width: 100%;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.global_footer_nav__link {
  color: #000;
  text-decoration: none;
}
.global_footer_nav__sublist {
  width: 100%;
  font-size: 1.4rem;
  padding-left: 2em;
}
.global_footer_nav__subitem {
  width: 100%;
  margin-top: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.global_footer_nav__sublink {
  color: #000;
  text-decoration: none;
}

.global_footer_sns {
  width: 42px;
}
.global_footer_sns__item {
  width: 100%;
  margin-top: 10px;
}

.global_footer_signature {
  width: 100%;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px dotted #FFA3A5;
  line-height: 1.5;
  text-align: center;
}
.global_footer_signature__invoice {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.global_footer_signature__copy {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer_bottom {
  width: 100%;
  background-color: #F9E7EC;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_bottom__link {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.9em 3em;
  margin: 17px 20px;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  border-radius: 26px;
}

@media screen and (max-width: 960px) {
  .global_header {
    padding: 15px 4%;
  }
  .global_header__link {
    display: none;
  }
  .hamburger_button {
    display: flex;
  }
  .breadcrumb {
    padding: 0 4%;
  }
  .page_read {
    padding: 0 4%;
    font-size: 1.6rem;
  }
  .section_title {
    font-size: 2.6rem;
  }
  .section_title::before {
    left: -20px;
    bottom: 0;
    width: 4px;
    height: 50px;
    transform: rotate(30deg);
  }
  .section_title_link,
  .section_title_sub {
    display: none;
  }
  .global_footer {
    margin-top: 60px;
    padding: 30px 4%;
  }
  .global_footer_nav__list {
    width: 100%;
    margin-top: 15px;
  }
  .global_footer_nav__item {
    width: 100%;
  }
  .global_footer_nav__sublist {
    padding-left: 1.5em;
  }
  .global_footer_nav__subitem {
    width: 100%;
  }
  .global_footer_sns {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .global_footer_sns__item {
    width: 38px;
    margin: 10px;
  }
  .global_footer_sns__link {
    display: block;
  }
  .global_footer_signature {
    padding-top: 30px;
    margin-top: 30px;
    flex-direction: column;
  }
  .global_footer_signature__invoice {
    font-size: 1.3rem;
    text-align: center;
  }
  .global_footer_signature__copy {
    text-align: center;
  }
  .footer_bottom__link {
    font-size: 1.4rem;
    margin: 15px;
    padding: 0.9em 33px;
  }
}

/*# sourceMappingURL=common.css.map */
