@charset "UTF-8";
:root {
  --color-base: #333;
  --color-primary: #F3761D;
  --color-secondary: #0174D9;
  --gradient: linear-gradient(90deg, #00B39F 0%, #66E7A2 100%);
  --container-xl: 1280px;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, arial, sans-serif;
  color: var(--color-base);
  scroll-padding-top: 80px;
}
@media (max-width: 1023px) {
  html {
    scroll-padding-top: 40px;
  }
}

body {
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.8;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.0784313725);
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 16px 40px;
  border-bottom: 1px solid #E4E4E4;
}
@media (max-width: 1023px) {
  .header_inner {
    height: 52px;
    padding: 0 12px 0 16px;
    border-bottom: none;
  }
}
.header_logo {
  width: 200px;
}
@media (max-width: 1023px) {
  .header_logo {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .header_logo {
    width: 160px;
  }
}
@media (max-width: 575px) {
  .header_logo {
    width: 120px;
  }
}
.header_menu {
  display: none;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .header_menu {
    display: block;
  }
}

.header_btn {
  display: grid;
  place-items: center;
  height: 48px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  width: 180px;
  background-color: #00C6B0;
  color: #fff;
  border: 1px solid transparent;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .header_btn {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  }
  .header_btn:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(3px);
    transition: 0.5s;
  }
}
@media (max-width: 1023px) {
  .header_btn {
    display: none;
  }
}

.header_nav {
  padding: 12px 40px;
  display: flex;
  gap: 60px;
  flex-shrink: 0;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .header_nav {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
.overlay.is_open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  padding: 10px 12px;
  width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  background-color: #fff;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.drawer.is_open {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer_close {
  align-self: flex-end;
  cursor: pointer;
}
.drawer_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.drawer_menu {
  margin: 10px 0 40px;
  border-top: 1px solid #E4E4E4;
}
.drawer_menu_item {
  border-bottom: 1px solid #E4E4E4;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.drawer_menu_item.is-disabled {
  padding: 20px 0;
  color: #E4E4E4;
}
.drawer_menu_item_link {
  padding: 20px 0;
  display: block;
}

.drawer_btn {
  display: grid;
  place-items: center;
  width: 180px;
  height: 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  background-color: #00C6B0;
  color: #fff;
  border: 1px solid transparent;
}

.main {
  word-break: auto-phrase;
  margin-top: 88px;
}
@media (max-width: 1023px) {
  .main {
    margin-top: 52px;
  }
}

.footer_row {
  display: flex;
  align-items: center;
  padding-block: 40px;
}
@media (max-width: 1023px) {
  .footer_row {
    flex-direction: column;
    gap: 40px;
  }
}
.footer_col {
  flex: 1;
}
.footer_copy {
  display: block;
  background-color: #494949;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  color: #fff;
}
@media (max-width: 767px) {
  .footer_copy {
    font-size: 12px;
  }
}

.footer_col_right {
  display: flex;
  gap: 12px;
  font-size: 11px;
}
.footer_col_right_br {
  display: none;
}
@media (max-width: 575px) {
  .footer_col_right_br {
    display: block;
  }
}

.footer_logo {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .footer_logo {
    justify-content: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_logo_anchor {
    transition: 0.2s;
  }
  .footer_logo_anchor:hover {
    opacity: 0.8;
  }
}

.footer_links {
  display: flex;
  gap: 16px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer_links {
    flex-direction: column;
    align-items: center;
  }
}
.footer_links_anchor {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .footer_links_anchor:hover {
    text-decoration: underline;
  }
}

.pages_section {
  padding-block: 80px;
}
@media (max-width: 1023px) {
  .pages_section {
    padding-block: 40px;
  }
}
.pages_container {
  max-width: var(--container-xl);
  padding-inline: 40px;
  margin: auto;
}
@media (max-width: 1023px) {
  .pages_container {
    max-width: initial;
    padding-inline: 24px;
  }
}
@media (max-width: 575px) {
  .pages_container {
    padding-inline: 16px;
  }
}
.pages_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .pages_heading {
    margin-bottom: 24px;
  }
}

.pages_heading_text_en {
  color: var(--color-primary);
  font-size: 18px;
}
@media (max-width: 1023px) {
  .pages_heading_text_en {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .pages_heading_text_en {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .pages_heading_text_en {
    font-size: 12px;
  }
}
.pages_heading_text_ja {
  font-size: 40px;
}
@media (max-width: 1023px) {
  .pages_heading_text_ja {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .pages_heading_text_ja {
    font-size: 32px;
  }
}
@media (max-width: 639px) {
  .pages_heading_text_ja {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .pages_heading_text_ja {
    font-size: 22px;
  }
}

.btn_gradient {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 416px;
  height: 72px;
  background: var(--gradient);
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn_gradient {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .btn_gradient:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(8px);
    transition: 0.5s;
  }
}
@media (max-width: 1023px) {
  .btn_gradient {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
}

.btn_border {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 416px;
  height: 72px;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid currentColor;
  color: var(--color-primary);
  outline: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn_border {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .btn_border:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(8px);
    transition: 0.5s;
  }
}
@media (max-width: 1279px) {
  .btn_border {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
}

.btn_icon_arrow {
  position: absolute;
  inset-block: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 17px;
  fill: currentColor;
}

.text_primary {
  color: var(--color-primary);
}
.text_secondary {
  color: var(--color-secondary);
}

.floating_btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-secondary);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px 0 rgba(0, 51, 102, 0.15);
}
@media screen and (max-width: 1023px) {
  .floating_btn {
    right: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
.floating_btn:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px 0 rgba(0, 51, 102, 0.3);
}
.floating_btn.is-show {
  opacity: 1;
  visibility: visible;
}
.floating_btn_icon {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(-90deg);
  fill: var(--color-secondary);
}
.floating_btn_text {
  font-size: 10px;
  font-weight: bold;
  margin-top: 2px;
  letter-spacing: 0.05em;
}