@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
}

:root {
    --white: #FFFFFF;
    --black: #333333;
    --primary: #0C5AA9;
    --secondary: #4D4D4D;
    --orange: #F18717;
    --orange-tag: #F28C15;
    --gray: #E6EFF7;
    --yellow: #FFF468;

    --primary-gradient-btn: linear-gradient(90deg, #FEB105 0%, #F08518 100%);
    --secondary-gradient-btn: linear-gradient(90deg, #299DDB 0%, #0261C3 100%);
    --primary-gradient-bg: linear-gradient(89.64deg, #2AA0DC 0.34%, #0160C3 99.73%);
    --hero-gradient-bg: linear-gradient(89.88deg, #6B97EC 2.49%, #3CECFC 99.86%);

    --drop-shadow: 0px 4px 4px 0px #00000040;

    --header-height-desktop: 80px;
    --header-height-tablet: 80px;
    --header-height-mobile: 64px;
}

html {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
}

* {
    box-sizing: border-box;
}
button {
    background: none;
    border: none;
    padding: 0;
    outline: none;
    width: 100%;
    height: 100%;
    cursor: pointer !important;
}
a, button {
    cursor: pointer !important;
}
.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-12 {
    gap: 12px;
}

.w-100 {
    width: 100%;
}

.number {
    font-family: "Open Sans", sans-serif;
}

.line {
    width: 34.82px;
    height: 66.65px;
}

.white-line {
    width: 12px;
    height: 20.65px;
}

.hide {
    display: none !important;
}

.show {
    display: block;
}

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

.overflow-hidden {
    overflow: hidden;
}

.bg-secondary {
    background: #F0F4FF;
}

.bg-primary-gradient {
    background: linear-gradient(90deg, #2AA0DC 0%, #0161C4 100%);
}


img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
  /* For iOS < 15 to remove gradient background */
    background-color: #fff;
  /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 28px;
    height: 28px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--white);
    transform-origin: bottom left;
    clip-path: polygon(20% 41%, 0 61%, 56% 100%, 100% 16%, 80% 0%, 45% 65%);
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form-control {
    font-size: 20px;
    font-weight: 500;
    display: grid;
    grid-template-columns: 35px auto;
    gap: 0.5em;
    width: fit-content;
    align-items: center;
    color: var(--secondary);
}

input:not([type="checkbox"]) {
    width: 100%;
    min-height: 54px;
    border-radius: 8px;
    border: 1px solid #BFC8D1;
    padding-left: 16px;
    background: #F5FAFF;
}

input::placeholder {
    color: #BBBBBB;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

h2 {
    font-weight: 700;
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 40px;
}

.bg-primary-gradient h2 {
    color: var(--white);
}

h2.title-underline {
    font-weight: 700;
    font-size: 32px;
    width: 100%;
    border-bottom: 4px solid var(--primary);
    text-align: left;
}

h4 {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
}

h5 {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.primary-link {
    background: var(--primary-gradient-btn);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    box-shadow: var(--drop-shadow);
}

.secondary-link {
    background: var(--secondary-gradient-btn);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 56px;
    box-shadow: var(--drop-shadow);
}

.primary-link a,
.primary-link button,
.secondary-link a,
.secondary-link button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.primary-link img,
.secondary-link img {
    width: 9.6px;
    height: 13.46px;
    margin-left: 16px;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

header {
    height: var(--header-height-desktop);
    max-width: 1280px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

header .logo {
    width: 288.85px;
    height: 53px;
}

header .contact-section {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.hero {
    background: #F0F4FF url('../img/banner-bg.png') no-repeat;
    background-size: 100vw 612px;
    width: 100%;
    height: 612px;
}

.hero-main {
    max-width: 1280px;
    margin: 0 auto;
}

.hero.container {
    max-width: 100% !important;
}

.contact-phone {
    width: 257.94px;
    height: 48px;
}

.book-now {
    width: 240px;
    height: 100%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.book-now a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;

    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.section-desc {
    font-weight: 500;
    font-size: 20px;
    color: var(--secondary);
}


.register-form {
    background: var(--primary-gradient-bg);
    padding: 80px 0;
    text-align: center;
}

.register-form h2 {
    font-weight: 700;
    font-size: 56px;
    color: var(--white);
    margin-bottom: 40px;
    height: 77px;
}

.register-form h2 img.line:first-of-type {
    margin-right: 24px;
}

.register-form h2 img.line:last-of-type {
    margin-left: 24px;
}

.register-form .small-text {
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}

.register-form form {
    max-width: 776px;
    width: 100%;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--orange-tag);
    padding: 40px 80px;
}

.register-form .col-1,
.register-form .col-2 {
    width: 100%;
}

.register-form .col-2 {
    display: flex;
    align-items: flex-start;
}

.register-form .col-2 .form-group:last-child {
    margin-left: 16px;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.register-form .form-group label {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    height: 21.61px;
}

.register-form .form-group label .required {
    font-weight: 400;
    font-size: 12px;
    color: var(--white);
    background: var(--orange-tag);
    height: 18px;
    padding: 0 4px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 8px;
}

.register-form .form-group input {
    width: 100%;
}

.register-form .register-submit {
    max-width: 292px;
    width: 100%;
    height: 66px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    border: none;
    margin-top: 0;
}

.header-menu,
.header-menu-btn {
    display: none;
    width: 24px;
    height: 24px;
}

.header-menu {
    z-index: 100;
    padding: 40px;
    border-top: 1px solid #DDE1E6;
}

.header-menu .primary-link {
    max-width: 688px;
    height: 100px;
    margin-top: 0;
    padding: 0 24px;
    width: 100%;
}

.header-menu .primary-link a {
    font-size: 24px;
    font-weight: 700;
    width: 100%;
}

.header-menu .primary-link img {
    margin-left: auto;
}

.header-menu .primary-link a p {
    text-align: center;
    width: 100%;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
    width: 100%;
    background: var(--white);
}

.footer p {
    font-size: 20px;
    font-weight: 400;
    color: #4D4D4D;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    h2 {
        margin-bottom: 32px;
    }

    .container {
        max-width: 768px;
        padding: 0 40px;
    }

    header {
        height: var(--header-height-tablet);
        padding: 0 40px !important;
    }

    header .logo {
        width: 263.87px;
        height: 48.43px;
    }

    .header-menu.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-menu {
        position: fixed;
        top: var(--header-height-tablet);
        right: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
    }

    .header-menu-btn img {
        width: 32px;
        height: 32px;
    }

    .hero {
        background: #F0F4FF url('../img/tablet-banner-bg.png') no-repeat;
        background-size: cover;
        width: 100%;
        height: 794px;
    }

    .register-form {
        padding: 80px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .register-form .form-group input {
        min-height: 40px;
    }
    header {
        height: var(--header-height-mobile);
        padding: 0 16px !important;
    }

    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    header .logo {
        width: 181.69px;
        height: 34px;
    }

    .header-menu.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-menu {
        position: fixed;
        top: var(--header-height-mobile);
        right: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        padding: 24px;
    }

    .header-menu .primary-link {
        width: 327px;
        height: 54px;
    }

    .header-menu .primary-link a {
        font-size: 16px;
    }

    .contact-section {
        display: none !important;
    }

    .header-menu-btn img {
        width: 24px;
        height: 24px;
    }

    .hero {
        background: #F0F4FF url('../img/tablet-banner-bg.png') no-repeat;
        background-size: cover;
        width: 100%;
        height: 576px;
    }

    .register-form {
        padding: 40px 24px;
    }

    .register-form .col-2 {
        display: block;
    }

    .register-form .col-2 .form-group:last-child {
        margin-left: 0;
        margin-top: 16px;
    }

    .register-form form {
        margin: 24px auto 0;
        padding: 40px 24px;
        gap: 16px;
    }

    .register-form .small-text {
        font-size: 16px;
    }

    .register-form .register-submit {
        font-size: 16px;
        max-width: 240px;
        height: 54px;
    }

    .service {
        padding: 40px 16px !important;
    }

    .line {
        width: 20px;
        height: 38.28px;
    }

    h2 {
        font-size: 24px !important;
        margin-bottom: 24px !important;
    }

    h4 {
        font-size: 18px;
        font-weight: 900;
    }

    h5 {
        font-size: 16px;
        font-weight: 700;
    }

    .section-desc {
        font-size: 16px;
        font-weight: 500;
    }

    .header-menu-btn {
        display: inline-block;
        margin-left: auto;
        background: transparent;
        outline: none;
        border: none;
    }

    .contact-section {
        display: none !important;
    }

    .footer {
        height: 89px;
    }

    .footer p {
        font-size: 18px;
    }
}


.notification {
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
    position: fixed;
    top: 10px;
    right: 10px;
    max-width: 395px;
    width: 100%;
    height: 85px;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notification-header-icon {
    width: 28px;
    height: 28px;
}

.notification-header-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000000D9;
}

.notification-header-message {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000D9;
}

.notification.success {
    background: #F6FFED;
    border-left: 4px solid #B7EB8F;
}

.notification.error {
    background: #FFF1F0;
    border-left: 4px solid #FFCCC7;
}

.notification .close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.notification .close img {
    width: 100%;
    height: 100%;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.input-error {
    border: 1px solid red !important;
}

@media only screen and (max-width: 351px) {
    .register-form h2 img.line:last-of-type{
        margin-left: 4px;
    }
    .register-form h2 img.line:first-of-type{
        margin-right: 4px;
    }
}