@charset "UTF-8";

/* reset */
:root {
  --font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --primary-blue-color: #005bac;
  --primary-gray-color: #5a5858;
  --secondary-orange-color: #fb7d5a;
  --secondary-support-color: #fda05b;
  --base-text-color: #252d34;
  --base-dark-color: #404040;
  --base-shape-color: #7d8791;
  --base-dotted-color: #bbc0c7;
  --base-line-color: #dce2eb;
  --base-gray-color: #f0f3f8;
  --base-white-color: #ffffff;
  --attention-color: #ed1818;
  --gradient-blue-color: #1a7bc3;
  --extended-yellow-color: #f8e977;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
}
@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
}
:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(button) {
  border-style: solid;
}
:where(a) {
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* global */
* {
  margin: 0;
  padding: 0;
}
input,
button,
textarea,
select {
  outline: 0;
  border: 0px;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button {
  background: none;
  overflow: visible;
}
@media screen and (min-width: 769px) {
  body {
    position: relative;
    top: 29px;
  }
}
.gmoGroupFooter {
  z-index: 1;
  position: relative;
}

/* header */
.site-header {
  position: fixed;
  top: 29px;
  left: 0;
  z-index: 9999;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--base-text-color);
  word-break: break-word;
  background: var(--base-white-color);
}
.site-header li {
  position: relative;
  list-style: none;
}
.site-header a {
  text-decoration: none;
  transition: 0.3s;
}
.site-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 16px;
  margin: 10px 12px 0 12px;
}
.site-header__top-text {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(1em + 0.5rem);
  color: var(--base-text-color);
}
.site-header__top-links {
  display: flex;
  align-items: center;
}
.site-header__top-links-item {
  font-size: 14px;
  font-weight: 500;
}
.site-header__top-links-item:first-child::after {
  margin: 0 16px;
  color: var(--base-text-color);
  content: "|";
}
.site-header__top-links-item:last-child {
  margin-right: 14px;
}
.site-header__top-links-anchor {
  font-size: 14px;
  font-weight: 500;
  color: var(--base-text-color);
}
.site-header__top-links-anchor:hover {
  text-decoration: underline;
}
.site-header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  margin: 0 12px;
}
.site-header__logo {
  width: 240px;
  height: auto;
}
.site-header__primary-nav,
.site-header__mobile-nav {
  display: flex;
  align-items: center;
  height: 36px;
}
.site-header__primary-list {
  display: flex;
  align-items: center;
}
.site-header__primary-item {
  margin-right: 24px;
  font-size: 16px;
}
.site-header__primary-link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--base-text-color);
  text-decoration: none;
}
.site-header__primary-link:hover {
  color: var(--primary-blue-color);
  text-decoration: none;
}
.site-header__primary-link::before {
  position: absolute;
  bottom: -22px;
  left: -13%;
  width: 0;
  height: 3px;
  background-color: var(--primary-blue-color);
  transition: width 0.3s;
  content: "";
}
.site-header__primary-link:hover::before {
  width: 130%;
}
.site-header__contact {
  display: flex;
  flex-direction: column;
  margin-right: 24px;
}
.site-header__contact-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--base-text-color);
}
.site-header__contact-phone {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--base-text-color);
}
.site-header__contact-phone:hover {
  color: var(--primary-blue-color);
}
.site-header__contact-phone::before {
  position: absolute;
  top: 0;
  left: 4px;
  width: 20px;
  height: 20px;
  background-image: url(https://gmo-app.jp/assets/img/common/contact_3_icon.svg);
  background-size: 200% auto;
  background-position: center;
  content: "";
}
.site-header__action {
  margin-right: 12px;
}
.site-header__action-button-primary,
.site-header__action-button-secondary {
  display: grid;
  place-items: center;
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 18px;
  transition: 0.3s;
}
.site-header__action-button-primary:hover,
.site-header__action-button-secondary:hover {
  text-decoration: none;
}
.site-header__action-button-primary {
  width: 175px;
  color: var(--base-white-color);
  background: var(--primary-blue-color);
}
.site-header__action-button-primary:hover {
  opacity: 0.6;
}
.site-header__action-button-secondary {
  width: 160px;
  color: var(--primary-blue-color);
  background: var(--base-white-color);
  border: 2px solid var(--primary-blue-color);
}
.site-header__action-button-secondary:hover {
  opacity: 0.6;
}
.site-header__mobile-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 24px;
  margin: 0 4px 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--base-white-color);
  background: var(--primary-blue-color);
  border-radius: 18px;
  transition: 0.5s;
}
.site-header__mobile-icon {
  width: 32px;
  height: 30px;
}
@media screen and (min-width: 769px) {
  .site-header__mobile-nav {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .site-header {
    min-width: 100%;
  }
  .site-header__primary-item {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-header {
    top: 0;
    min-width: 100%;
  }
  .site-header__top {
    display: block;
    height: 14px;
    margin: 6px 0;
    text-align: center;
  }
  .site-header__top-text {
    font-size: 10px;
    font-weight: 500;
  }
  .site-header__top-links {
    display: none !important;
  }
  .site-header__body {
    height: 43px;
    margin: 0 6px;
  }
  .site-header__logo {
    width: 200px;
  }
  .site-header__primary-nav {
    display: none !important;
  }
  .site-header__drawer {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 91, 172, 0.95);
    transition: 0.5s;
    pointer-events: none;
  }
  .site-header__drawer.is-open {
    right: -5%;
    pointer-events: all;
  }
  .site-header__drawer-close {
    display: block;
    width: 32px;
    height: 32px;
    margin: 12px 12px 0 auto;
    background: var(--base-white-color);
    border-radius: 50%;
  }
  .site-header__drawer-close-icon {
    width: 50%;
    height: auto;
    margin: auto;
  }
  .site-header__drawer-list {
    margin-top: 24px;
  }
  .site-header__drawer-item {
    margin: 0 0 16px 74px;
    color: var(--base-white-color);
  }
  .site-header__drawer-link {
    display: flex;
    align-items: center;
    color: var(--base-white-color);
  }
  .site-header__drawer-button-primary,
  .site-header__drawer-button-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 42px;
    padding: 12px;
    border-radius: 18px;
  }
  .site-header__drawer-button-primary {
    color: var(--primary-blue-color);
    background: var(--base-white-color);
    border: 2px solid var(--primary-blue-color);
  }
  .site-header__drawer-button-secondary {
    color: var(--base-white-color);
    background: var(--secondary-orange-color);
    border: 2px solid var(--secondary-orange-color);
  }
  .site-header__drawer-contact {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin: 0 0 0 74px;
    padding: 10px;
    color: var(--base-white-color);
    border: 1px solid var(--base-white-color);
    border-radius: 8px;
  }
  .site-header__drawer-caption {
    margin: 4px 0;
    text-align: center;
  }
  .site-header__drawer-phone {
    color: var(--primary-blue-color);
    text-align: center;
    background: var(--base-white-color);
    border: 2px solid var(--primary-blue-color);
    border-radius: 18px;
  }
}

/* footer */
.site-footer {
  z-index: 1;
  width: 100%;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--base-white-color);
  background: var(--base-white-color);
}
.site-footer__container {
  background: var(--base-dark-color);
}
.site-footer__primary,
.site-footer__bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.site-footer__primary {
  padding: 80px clamp(24px, 5vw, 60px) 60px;
}
.site-footer__menu {
  display: grid;
  row-gap: 14px;
}
.site-footer__bottom {
  align-items: center;
  padding: 0 clamp(24px, 5vw, 60px) 80px;
  font-size: 14px;
  font-weight: 400;
}
.site-footer__share {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  column-gap: 12px;
}
.site-footer__share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--base-white-color);
  white-space: nowrap;
}
.site-footer__share-list {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  column-gap: 10px;
}
.site-footer__share-item {
  display: contents;
}
.site-footer__share-icon {
  width: 36px;
}
.site-footer a,
.site-footer button {
  color: var(--base-white-color);
  text-decoration: none;
}
.site-footer a:hover,
.site-footer button:hover {
  text-decoration: underline;
}
.site-footer__menu a,
.site-footer__menu button,
.site-footer__bottom a,
.site-footer__bottom button {
  display: block;
}
.site-footer img {
  transition: opacity 0.3s ease;
}
.site-footer img:hover {
  opacity: 0.6;
}
.site-footer__banner-image {
  width: 160px;
  height: auto;
}
.site-footer__banner-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 0;
  background-color: var(--base-white-color);
}
.site-footer__text {
  margin: 0 0 14px 0;
  font-size: 14px;
  color: var(--base-shape-color);
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .site-footer {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
  }
  .site-footer__primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    padding: 60px 16px 40px;
    text-align: center;
    place-items: center;
  }
  .site-footer__bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px 60px;
    text-align: center;
    place-items: center;
  }
  .site-footer__bottom .site-footer__column:nth-child(3) {
    display: none;
  }
  .site-footer__bottom .site-footer__column:last-child {
    grid-column: 1 / -1;
  }
  .site-footer__share {
    grid-auto-flow: row;
    row-gap: 12px;
    justify-items: center;
  }
  .site-footer__share-list {
    justify-content: center;
  }
}

/* site-cta */
.site-cta {
  padding: 56px;
  background: linear-gradient(to right, var(--primary-blue-color) 0%, var(--gradient-blue-color) 100%);
}
.site-cta__heading {
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: var(--base-white-color);
}
.site-cta__menu {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
}
.site-cta__menu-item {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  width: 420px;
  min-width: 350px;
  height: 180px;
  margin: 10px;
  padding: 24px;
  background-color: var(--base-white-color);
  border-radius: 16px;
}
.site-cta__menu-icon {
  width: 60px;
  height: auto;
}
.site-cta__menu-column {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  width: 240px;
  height: 100px;
  margin: 16px;
}
.site-cta__menu-note {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--base-text-color);
}
.site-cta__menu-annotation {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--base-text-color);
}
.site-cta__menu-telephone {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8;
  color: var(--base-text-color);
  text-decoration: none;
}
.site-cta__menu-telephone:hover {
  color: var(--secondary-orange-color);
  text-decoration: none;
}
.site-cta__menu-link {
  width: 220px;
  margin: 10px;
  padding: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  color: var(--primary-blue-color);
  text-decoration: none;
  border: 2px solid var(--primary-blue-color);
  border-radius: 200px;
  transition: transform 0.3s ease;
}
.site-cta__menu-link:hover {
  color: var(--base-white-color);
  text-decoration: none;
  background-color: var(--secondary-orange-color);
  border-color: var(--secondary-orange-color);
  transform: scale(1.1);
}
@media (max-width: 769px) {
  .site-cta {
    padding: 44px 16px;
  }
  .site-cta__heading {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .site-cta__menu {
    grid-template-columns: 1fr;
  }
  .site-cta__menu-item {
    width: 100%;
    min-width: 0;
    height: 144px;
    margin: 10px auto;
    padding: 0;
  }
  .site-cta__menu-icon {
    width: 50px;
  }
  .site-cta__menu-column {
    width: 236px;
    height: 128px;
  }
  .site-cta__menu-note,
  .site-cta__menu-annotation {
    font-size: 16px;
  }
  .site-cta__menu-link {
    font-size: 16px;
  }
  .site-cta__menu-telephone {
    font-size: 20px;
  }
}

/* security-footer */
.security-footer {
  max-width: 1040px;
  margin: 20px auto;
}
.security-footer__logo {
  display: block;
  width: max-content;
  margin: 0 0 20px 10px;
}
.security-footer__logo-image {
  display: block;
  width: auto;
  height: 20px;
}
.security-footer__seals {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 10px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.security-footer .gmoGroupSecurity * {
  line-height: 1;
}
.security-footer__seals img {
  vertical-align: top;
}
@media (max-width: 768px) {
  .security-footer__logo {
    margin: 0 auto 20px;
  }
}