* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}
body {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.6;
  color: #2C2C2C;
  letter-spacing: 0.04em;
  background-color: #fff;
}
a:hover {
  opacity: 0.7;
}
.note {
  padding-left: calc(1em + 4px);
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}
.note::before {
  content: '※';
  position: absolute;
  left: 0;
}
.sup {
  padding-left: calc(1em + 4px);
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
}
.sup::before {
  content: '*';
  position: absolute;
  font-size: 20px;
  line-height: 1.4;
  left: 0;
}
.memo {
  padding-left: calc(1em + 8px);
  position: relative;
  line-height: 2.5;
  padding-bottom: 10px;
}
.memo:last-child {
  padding-bottom: 0;
}
.memo::before {
  content: '・';
  position: absolute;
  left: 0;
}
.underline {
  text-decoration: underline;
}
.section {
  padding-top: 100px;
}
.container {
  overflow: visible;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.inner, .inner-pc {
  max-width: 1160px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .note.u_tac-tal {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .sup.u_tac-tal {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .section {
    padding-top: 80px;
  }
  .container {
    margin-left: 24px;
    margin-right: 24px;
  }
  .inner {
    margin: 0 12px;
  }
  .inner-pc {
    margin: 0;
  }
  .note {
    font-size: 10px;
  }
  .sup {
    font-size: 10px;
  }
  .sup::before {
    font-size: 16px;
  }
  .memo {
    line-height: 2;
    padding-left: calc(1em + 2px);
  }
  .memo:first-child {
    margin-bottom: 10px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

header {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 100%;
  gap: 10px;
}
.header-logo {
  max-width: 454px;
  min-width: 1px;
  flex-shrink: 1;
}
.header-nav {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.header-nav a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.header-nav a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }
  .header-logo {
    max-width: 320px;
  }
  .header-nav {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
  .header-logo {
    max-width: 260px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.hamburger {
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1001;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2C2C2C;
  transition: all 0.5s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span {
  background-color: rgba(255, 255, 255, 0.8);
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0 50px;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
nav.sp-menu {
  display: flex;
}
.sp-menu.active {
  opacity: 1;
  visibility: visible;
}
.sp-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.sp-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.footer-top {
  background: #2C2C2C;
  padding: 40px 20px;
  text-align: center;
  color: #FFF;
}
.footer-company {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 15px;
}
.footer-info {
  font-size: 16px;
  line-height: 2;
}
.footer-bottom {
  text-align: center;
  background: #FFF;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .footer-top {
    padding: 24px 24px;
  }
  .footer-company {
    font-size: 18px;
  }
  .footer-info {
    font-size: 10px;
  }
  .footer-bottom {
    padding: 12px 24px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.pageTop {
  display: block;
  position: sticky;
  margin-left: auto;
  right: 40px;
  bottom: 40px;
  width: 110px;
  margin-bottom: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 998;
  cursor: pointer;
}
.pageTop.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .pageTop {
    right: 24px;
    bottom: 24px;
    width: 80px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .pageTop {
    right: 16px;
    width: 60px;
  }
  .pageTop.hasNav {
    bottom: 110px;
    margin-bottom: 16px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.btn-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 370px;
  width: 100%;
}
.btn-wrapper-bg-white {
  background-color: #fff;
}
.btn {
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #DC9B91 0%, #B54B53 100%);
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  text-align: center;
  box-shadow: 2px 6px 20px 0 rgba(0, 0, 0, 0.25);
}
.btn.black {
  background: linear-gradient(90deg, #5E5E5E 0%, #000 100%);
}
.btn.blue {
  background: linear-gradient(90deg, #44698B 0%, #042646 100%);
}
.btn:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.btn-text {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .btn {
    padding: 15px 0;
  }
  .btn-text {
    font-size: 14px;
    gap: 5px;
  }
  .btn-arrow {
    width: 9px;
    height: 9px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.contact {
  background-color: #173D60;
  color: #FFF;
  padding-top: 50px;
  padding-bottom: 60px;
}
.link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.link-wrapper a {
  position: relative;
  padding: 0 20px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.link-wrapper a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .contact {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .link-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 15px;
  }
  .link-wrapper a {
    position: static;
    padding: 0;
    font-size: 12px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.modal.active {
  display: block;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  box-sizing: border-box;
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  z-index: 2001;
}
.modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.modal-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-img {
  background-color: #fff;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 769px) {
  .modal {
    display: none;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

.u_sp {
  display: none;
}
.u_w50 {
  width: 50%;
}
.u_w65 {
  width: 65%;
}
.u_mw310 {
  width: 100%;
  max-width: 310px;
}
.u_mw1160 {
  max-width: 1160px;
  margin: 0 auto;
}
.u_mw1040 {
  max-width: 1040px;
  margin: 0 auto;
}
.u_mw880 {
  max-width: 880px;
  margin: 0 auto;
}
.u_mw500 {
  max-width: 500px;
  margin: 0 auto;
}
.u_tac {
  text-align: center;
}
.u_tac-tal {
  text-align: center;
}
.u_fwb {
  font-weight: bold;
}
.u_fwm {
  font-weight: 500;
}
.u_lh2 {
  line-height: 2;
}
.u_red {
  color: #C3535B;
}
.u_red02 {
  color: #FF0000;
}
.u_orange {
  color: #D4A977;
  font-weight: bold;
}
.u_fs10 {
  font-size: 10px;
}
.u_fs12 {
  font-size: 12px;
}
.u_fs14 {
  font-size: 14px;
}
.u_fs14-12 {
  font-size: 14px;
}
.u_fs14-10 {
  font-size: 14px;
}
.u_fs16-12 {
  font-size: 16px;
}
.u_fs16-14 {
  font-size: 16px;
}
.u_fs18-12 {
  font-size: 18px;
}
.u_fs18-14 {
  font-size: 18px;
}
.u_fs20 {
  font-size: 20px;
}
.u_fs20-14 {
  font-size: 20px;
}
.u_fs20-18 {
  font-size: 20px;
}
.u_fs22-16 {
  font-size: 22px;
}
.u_fs24-16 {
  font-size: 24px;
}
.u_fs28-20 {
  font-size: 28px;
}
.u_fs32-18 {
  font-size: 32px;
}
.u_fs34 {
  font-size: 34px;
}
.u_fs34-24 {
  font-size: 34px;
}
.u_fs46-26 {
  font-size: 46px;
}
.u_sans-serif {
  font-family: 'Noto Sans JP', sans-serif;
}
.u_serif {
  font-family: 'Noto Serif JP', serif !important;
}
.u_white {
  background-color: #FFF;
  padding: 30px;
}
.u_gray {
  background-color: #F9F9F9;
  border: 1px solid #D9D9D9;
  padding: 60px 40px;
}
.u_gray02 {
  background-color: #F9F9F9;
  border: 1px solid #D9D9D9;
  padding: 10px 10px;
  
}
.u_bg_red {
  background-color: #EED6D8;
  border: 1px solid #C3535B;
  padding: 20px 20px;
  color: #C3535B;
  font-size: 12px;
  line-height: 2.2;
}
.u_bg_white {
  background: #FFF;
  padding: 70px 60px 30px;
  position: relative;
}
.u_flexBox {
  display: flex;
  justify-content: space-between;
}
.u_gap20 {
  gap: 20px;
}
.u_gap20-30 {
  gap: 20px;
}
.u_gap30 {
  gap: 30px;
}
.u_aic {
  align-items: center;
}
.u_wrap {
  margin-left: 24px;
  margin-right: 24px;
}
.u_ml0 {
  margin-left: 0 !important;
}
.u_mt-100-60 {
  margin-top: -100px;
}
.u_mt-100-0 {
  margin-top: -100px;
}
.u_mt10 {
  margin-top: 10px;
}
.u_mt10-0 {
  margin-top: 10px;
}
.u_mt20-0 {
  margin-top: 20px;
}
.u_mt20-10 {
  margin-top: 20px;
}
.u_mt20 {
  margin-top: 20px;
}
.u_mt25 {
  margin-top: 25px;
}
.u_mt30 {
  margin-top: 30px;
}
.u_mt40 {
  margin-top: 40px;
}
.u_mt40-0 {
  margin-top: 40px;
}
.u_mt40-20 {
  margin-top: 40px;
}
.u_mt40-30 {
  margin-top: 40px;
}
.u_mt50-40 {
  margin-top: 50px;
}
.u_mt60 {
  margin-top: 60px;
}
.u_mt60-10 {
  margin-top: 60px;
}
.u_mt60-40 {
  margin-top: 60px;
}
.u_mt80-20 {
  margin-top: 80px;
}
.u_mt80-40 {
  margin-top: 80px;
}
.u_mt100-40 {
  margin-top: 100px;
}
.u_mt100-50 {
  margin-top: 100px;
}
.u_mt100-10 {
  margin-top: 100px;
}
.u_mb10 {
  margin-bottom: 10px;
}
.u_mb10-0 {
  margin-bottom: 10px;
}
.u_mb20 {
  margin-bottom: 20px !important;
}
.u_pt20 {
  padding-top: 20px;
}
.u_pt60-30 {
  padding-top: 60px !important;
}
.u_pt100-50 {
  padding-top: 100px !important;
}
.u_pb40 {
  padding-bottom: 40px;
}
.u_pb200 {
  padding-bottom: 200px !important;
}
.u_pb200-140 {
  padding-bottom: 200px !important;
}
.u_prl40-0 {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 769px) {
  .u_miw-390-pc {
    min-width: 390px;
  }
  .u_mb15-0 {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .u_pc {
    display: none !important;
  }
  .u_sp {
    display: block;
  }
  .u_w50 {
    width: 100%;
  }
  .u_w65 {
    width: 100%;
  }
  .u_tac-tal {
    text-align: left;
  }
  .u_fs14-12 {
    font-size: 12px;
  }
  .u_fs14-10 {
    font-size: 10px;
  }
  .u_fs16-12 {
    font-size: 12px;
  }
  .u_fs16-14 {
    font-size: 14px;
  }
  .u_fs18-12 {
    font-size: 12px;
  }
  .u_fs18-14 {
    font-size: 14px;
  }
  .u_fs20-14 {
    font-size: 14px;
  }
  .u_fs20-18 {
    font-size: 18px;
  }
  .u_fs22-16 {
    font-size: 16px;
  }
  .u_fs24-16 {
    font-size: 16px;
  }
  .u_fs28-20 {
    font-size: 20px;
  }
  .u_fs32-18 {
    font-size: 18px;
  }
  .u_fs34-24 {
    font-size: 24px;
  }
  .u_fs46-26 {
    font-size: 26px;
  }
  .u_gray {
    padding: 20px 10px;
  }
  .u_white {
    padding: 20px 15px;
  }
  .u_bg_red {
    padding: 10px;
  }
  .u_bg_white {
    padding: 30px 10px 20px;
  }
  .u_flexBox {
    flex-direction: column;
  }
  .u_gap20-30 {
    gap: 30px;
  }
  .u_mt-100-60 {
    margin-top: -60px;
  }
  .u_mt-100-0 {
    margin-top: 0;
  }
  .u_mt10-0 {
    margin-top: 0;
  }
  .u_mt20-0 {
    margin-top: 0;
  }
  .u_mt20-10 {
    margin-top: 10px;
  }
  .u_mt20-sp {
    margin-top: 20px;
  }
  .u_mt40-0 {
    margin-top: 0;
  }
  .u_mt40-20 {
    margin-top: 20px;
  }
  .u_mt40-30 {
    margin-top: 30px;
  }
  .u_mt50-40 {
    margin-top: 40px;
  }
  .u_mt60-40 {
    margin-top: 40px;
  }
  .u_mt60-10 {
    margin-top: 10px;
  }
  .u_mt80-20 {
    margin-top: 20px;
  }
  .u_mt80-40 {
    margin-top: 40px;
  }
  .u_mt100-10 {
    margin-top: 10px;
  }
  .u_mt100-40 {
    margin-top: 40px;
  }
  .u_mt100-50 {
    margin-top: 50px;
  }
  .u_mb10-0 {
    margin-bottom: 0;
  }
  .u_mb10-sp {
    margin-bottom: 10px;
  }
  .u_pt60-30 {
    padding-top: 30px !important;
  }
  .u_pt100-50 {
    padding-top: 50px !important;
  }
  .u_pb200-140 {
    padding-bottom: 140px !important;
  }
  .u_prl40-0 {
    padding-left: 0;
    padding-right: 0;
  }
}