@charset "UTF-8";

:root {
  --color-base: #333;
  --color-blue-2d7: #2D74E7;
  --gradient: linear-gradient(90deg, #EF4C62 0%, #F6A28A 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);
}

body {
  position: relative;
}

img {
  max-height: 100%;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 6px 0px #00000014;
  @media (max-width: 1023px) {
    position: initial;
    box-shadow: initial;
  }
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  @media (max-width: 767px) {
    padding: 20px;
  }
  @media (max-width: 575px) {
    padding: 18px 16px;
  }
}
.header_logo {
  @media (max-width: 575px) {
    width: 180px;
  }
}
.header_btns {
  display: flex;
  gap: 16px;
}
.header_btns {
  @media (max-width: 1023px) {
    display: none;
  }
}
.header_btn {
  display: grid;
  place-items: center;
  width: 200px;
  height: 48px;
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px #0000001A;
  text-decoration: none;
  transition: 0.2s;
  color: #fff;
  font-weight: bold;
}
.header_btn:hover {
  opacity: 0.8;
}

.main {
  margin-top: 88px;
  @media (max-width: 1023px) {
    margin-top: initial;
  }
}

.footer_row {
  display: flex;
  align-items: center;
  padding-block: 40px;
  @media (max-width: 1023px) {
    flex-direction: column;
    gap: 40px;
  }
}
.footer_col {
  flex: 1;
}
.footer_col_right {
  display: flex;
  gap: 12px;
  font-size: 11px;
}
.footer_col_right_br {
  display: none;
  @media (max-width: 575px) {
    display: block;
  }
}
.footer_logo_anchor {
  display: flex;
  margin-bottom: 20px;
  &:hover {
    opacity: 0.8;
  }
  @media (max-width: 1023px) {
    justify-content: center;
  }
}
.footer_links {
  display: flex;
  gap: 16px;
  font-size: 12px;
  @media (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }
}
.footer_links_anchor {
  text-decoration: none;
  color: inherit;
  &:hover {
    text-decoration: underline;
  }
}
.footer_copy {
  display: block;
  background-color: #494949;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  color: #fff;
  @media (max-width: 767px) {
    font-size: 12px;
  }
}

.pages_section {
  padding-block: 80px;
  @media (max-width: 1023px) {
    padding-block: 40px;
  }
}

.pages_container {
  max-width: var(--container-xl);
  padding-inline: 40px;
  margin: auto;
  @media (max-width: 1023px) {
    max-width: initial;
    padding-inline: 24px;
  }
  @media (max-width: 575px) {
    padding-inline: 16px;
  }
}

.pages_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  @media (max-width: 767px) {
    margin-bottom: 24px;
  }
}
.pages_heading_text_en {
  color: #F76855;
  font-size: 18px;
  @media (max-width: 1023px) {
    font-size: 16px;
  }
  @media (max-width: 767px) {
    font-size: 14px;
  }
  @media (max-width: 575px) {
    font-size: 12px;
  }
}
.pages_heading_text_ja {
  font-size: 40px;
  @media (max-width: 1023px) {
    font-size: 34px;
  }
  @media (max-width: 767px) {
    font-size: 32px;
  }
  @media (max-width: 639px) {
    font-size: 28px;
  }
  @media (max-width: 575px) {
    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;
  transition: 0.2s;
  @media (max-width: 1279px) {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
  &:hover {
    opacity: 0.8;
  }
}

.btn_border_red-ff6 {
  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;
  color: var(--color-red-ff6);
  transition: 0.2s;
  border: 2px solid currentColor;
  @media (max-width: 1279px) {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
  &:hover {
    opacity: 0.8;
  }
}

.btn_border_blue-2d7 {
  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;
  color: var(--color-blue-2d7);
  transition: 0.2s;
  border: 2px solid currentColor;
  @media (max-width: 1279px) {
    width: 300px;
    height: 56px;
    font-size: 16px;
  }
  &:hover {
    opacity: 0.8;
  }
}

.btn_icon_arrow_next,
.btn_icon_arrow_prev {
  position: absolute;
  inset-block: 0;
  margin: auto;
  width: 10px;
  height: 17px;
  fill: currentColor;
}
.btn_icon_arrow_next {
  right: 20px;
}
.btn_icon_arrow_prev {
  left: 20px;
  rotate: 180deg;
}

.text_blue-2d7 {
  color: var(--color-blue-2d7);
}
.bg_blue-2d7 {
  background-color: var(--color-blue-2d7);
}
.bg_red-ff6 {
  background-color: #FF6D6D;
}
