@charset "utf-8";

/*================================================================
# 全ページ共通スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    z-index: 50;
    transition: ease-in 0.2s;
}

.header .header__inner {
    padding: 9px 16px 7px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}

.header.fixed .header__inner {
    background: var(--white);
}

.top-page .header .header__inner {
    background-color: var(--bg03);
}

.header .header__inner.hidden {
    opacity: 0;
    visibility: hidden;
}

.header .left h1 {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header .left h1 a {
    display: block;
}

.header .left h1 a img {
    width: auto;
    height: 48px;
}

.gnav_pc {
    display: none;
}

.nav-toggle {
    width: 64px;
    height: 64px;
    cursor: pointer;
    position: absolute;
    z-index: 50;
    inset: 0 0 auto auto;
}

.nav-toggle.active {
    background: var(--bg01);
}

.nav-toggle span {
    width: 56%;
    height: 2px;
    background: var(--secondary);
    position: absolute;
    display: inline-block;
    transition: 0.4s;
    inset: auto auto auto 13px;
}

.nav-toggle span:nth-of-type(1) {
    top: 20px;
}

.nav-toggle span:nth-of-type(2) {
    top: 29px;
}

.nav-toggle span:nth-of-type(3) {
    top: 39px;
}

.nav-toggle.active span:nth-of-type(1) {
    width: 50%;
    transform: translateY(6px) rotate(24deg);
    inset: 24px auto auto 16px;
}

.nav-toggle.active span:nth-of-type(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-of-type(3) {
    width: 50%;
    transform: rotate(-24deg);
    inset: 30px auto auto 16px;
}

/* gnav_sp
------------------------------------------------------ */
.gnav_sp {
    width: 100%;
    height: 100dvh;
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    overflow-y: scroll;
    z-index: 40;
    transition: all 0.5s;
    -webkit-overflow-scrolling: touch;
}

.gnav_sp.panel-active {
    right: 0;
}

.gnav-list_sp {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.gnav-list_sp .primary {
    padding: 40px 24px 0;
}

.gnav-list_sp .primary li {
    border-bottom: solid 1px var(--gray02);
}

.gnav-list_sp .primary li a {
    padding: 20px;
    display: block;
    font-weight: 700;
}

.gnav-list_sp .primary li.has-submenu {
    position: relative;
}

.gnav-list_sp .primary li.has-submenu>a::before {
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 32px;
    right: 16px;
    transition: 0.3s;
    transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a::after {
    width: 2px;
    height: 20px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 32px;
    right: 25px;
    transition: 0.3s;
    transform: translateY(-50%);
}

.gnav-list_sp .primary li.has-submenu>a.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.gnav-list_sp .submenu {
    padding: 16px;
    display: none;
}

.gnav-list_sp .submenu.active {
    display: block;
}

.gnav-list_sp .submenu .col:nth-child(n + 2) {
    margin: 16px 0 0;
}

.gnav-list_sp .submenu .title {
    margin: 0 0 8px;
    padding: 12px 16px;
    background: var(--primary);
    font-family: var(--mincho);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

.gnav-list_sp .submenu .col:nth-child(2) .title {
    background-color: var(--secondary);
}

.gnav-list_sp .primary .submenu li {
    border-bottom: 0;
}

.gnav-list_sp .primary .contact-nav {
    margin: 24px 0 0;
    border: 0;
}

.gnav-list_sp .primary .contact-nav a {
    padding: 16px;
    border-radius: 9999px;
    background: var(--primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.gnav-list_sp .primary .contact-nav .icon {
    margin: 0 16px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.gnav-list_sp .primary .contact-nav .icon svg {
    width: 20px;
    transition: 0.3s;
}

.gnav-list_sp .submenu li a {
    padding: 8px 16px;
    position: relative;
    font-size: 14px;
}

.gnav-list_sp .submenu li a:before {
    width: 10px;
    height: 1px;
    margin: auto;
    background-color: var(--gray02);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
}

.gnav-footer_sp {
    margin: 0;
    padding: 40px 24px;
    background-color: var(--bg01);
}

.gnav-footer_sp h1 {
    max-width: 240px;
    margin-bottom: 15px;
}

.gnav-footer_sp h1 img {
    width: 100%;
}

.gnav-footer_sp .address {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.gnav-footer_sp .tel,
.gnav-footer_sp .fax {
    font-size: 13px;
}

.gnav-footer_sp .copyright {
    margin: 16px 0 0;
    font-size: 10px;
}

/* submenu
------------------------------------------------------ */
.header .gnav_sp ul {
    padding: 0 20px;
    list-style: none;
}

.header .gnav_sp li {
    margin-bottom: 10px;
}

.header .gnav_sp li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    font-size: 16px;
    color: #fff;
}

.header .gnav_sp li .submenu {
    max-height: 0;
    padding-left: 20px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.header .gnav_sp li .submenu.active {
    max-height: 500px;
}

.header .gnav_sp li .submenu li a {
    padding: 10px 0;
    font-size: 14px;
}

.header .gnav_sp li.has-submenu>a {
    position: relative;
}

.header .gnav_sp li.has-submenu>a::after {
    position: absolute;
    content: "+";
    top: 50%;
    right: 0;
    font-size: 18px;
    transform: translateY(-50%);
}

.header .gnav_sp li.has-submenu>a.active::after {
    content: "-";
}

/* footer
------------------------------------------------------ */
.footer {
    background-color: var(--bg04);
}

.footer .contact-box {
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.footer .contact-box:before {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust02.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: 24px;
    left: 24px;
    z-index: 0;
}

.footer .contact-box::after {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust02.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    right: -21px;
    bottom: 31px;
    z-index: 0;
}

.footer .contact-box h2 {
    position: relative;
    font-size: 28px;
    font-weight: 600;
}

.footer .contact-box .desc {
    margin: 24px 0 0;
}

.footer .contact-box .highlight {
    margin: 30px auto 0;
    padding: 0 30px;
}

.footer .contact-box .highlight span {
    padding: 0 16px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-align: center;
}

.footer .contact-box .highlight span::before,
.footer .contact-box .highlight span::after {
    width: 2px;
    height: 30px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.footer .contact-box .highlight span::before {
    left: 0;
    transform: translateY(-50%) rotate(-20deg);
    transform-origin: left center;
}

.footer .contact-box .highlight span::after {
    right: 0;
    transform: translateY(-50%) rotate(20deg);
    transform-origin: right center;
}

.footer .contact-box .contact-btn {
    width: 100%;
    max-width: 300px;
    height: 56px;
    margin: 24px auto 0;
    padding: 0 16px 4px;
    border-radius: 9999px;
    background-color: var(--primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    z-index: 1;
    transition: 0.3s;
}

.footer .contact-box .contact-btn .icon {
    margin: 0 16px 0 0;
}

.footer .contact-box .contact-btn .icon svg {
    width: 20px;
}

.footer .contact-box .tel-info {
    margin: 16px 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.footer .contact-box .tel-info img {
    width: 20px;
    margin: 0 8px 0 0;
}

.footer .contact-box .tel-info .number {
    font-family: var(--number);
    font-size: 20px;
    font-weight: 500;
}

.footer .contact-box .note {
    font-size: 13px;
    text-align: center;
}

.footer-nav {
    padding: 56px 2.4rem;
    background-color: var(--bg02);
}

.footer-nav .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-nav .nav-links a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.footer-nav .logo {
    margin: 40px 0 0;
}

.footer-nav .logo a {
    display: block;
}

.footer-nav small {
    margin: 40px 0 0;
    display: block;
    font-size: 10px;
}

/* ページトップ
------------------------------------------------------ */
.scroll-to-top {
    cursor: pointer;
    position: fixed;
    right: 48px;
    bottom: 0;
    z-index: 9;
}

.scroll-to-top a {
    padding: 16px;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--number);
    font-size: 12px;
    font-weight: 600;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    transition: 0.3s;
}

.scroll-to-top a svg {
    height: 20px;
    margin: 0 0 8px;
    color: var(--black);
    transition: 0.3s;
}

/* 右サイド固定_お問い合わせボタン
------------------------------------------------------ */
.right-fixed-button a {
    width: 56px;
    padding: 28px 0 32px;
    border-radius: 12px 0 0 0;
    background: var(--primary);
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.15em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    z-index: 9;
    transition: all 0.3s;
    text-orientation: upright;
}

.right-fixed-button a:hover {
    background-color: var(--secondary);
}

.right-fixed-button span {
    position: relative;
    z-index: 1;
}

.right-fixed-button .icon {
    width: 24px;
    height: 24px;
    margin: 0 0 12px;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.right-fixed-button .icon svg {
    width: 25px;
    transition: 0.3s;
}

/* heading
------------------------------------------------------ */
.heading01 {
    text-align: center;
}

.heading01 .icon {
    width: 48px;
    margin: auto;
    text-align: center;
}

.heading01 .title {
    margin: 16px 0 0;
    position: relative;
    font-family: var(--mincho);
    font-size: 24px;
    font-weight: 600;
}

.heading01 .title.top {
    margin: 0;
}

/* text
------------------------------------------------------ */
.text01 {
    margin: 32px 0 0;
    font-size: 15px;
    line-height: 2;
}

.text01.center {
    text-align: center;
}

.text01 p:nth-child(n + 2) {
    margin: 32px 0 0;
}

/* btn
------------------------------------------------------ */
.section .contact-btn {
    width: 100%;
    height: 56px;
    margin: 24px auto 0;
    padding: 0 16px 4px;
    border-radius: 9999px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: 0.3s;
}

.section .contact-btn .icon {
    margin: 0 16px 0 0;
}

.section .contact-btn .icon svg {
    width: 20px;
}

/* 中面page-title
------------------------------------------------------ */
.page-title {
    width: 100%;
    padding: 80px 0 32px;
    background-color: var(--bg03);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 600;
}

/* section背景スタイルと余白
------------------------------------------------------ */
.section-wrap .section:nth-child(odd) {
    padding: 64px 0 80px;
    background: var(--bg01);
}

.section-wrap .section:nth-child(even) {
    margin: 0 0 24px;
    padding: 64px 0 80px;
    background: var(--bg02);
    position: relative;
}

.section-wrap .section:nth-child(even):before {
    width: 100%;
    height: 16px;
    background: url(../img/pat01.png) repeat-x center bottom / contain;
    position: absolute;
    content: "";
    top: -16px;
    left: 0;
}

.section-wrap .section:nth-child(even)::after {
    width: 100%;
    height: 16px;
    background: url(../img/pat01.png) repeat-x center bottom / contain;
    position: absolute;
    content: "";
    bottom: -16px;
    left: 0;
    transform: scale(1, -1);
}

.unit+.unit {
    margin: 32px 0 0;
}

/*================================================================
# トップページ
================================================================ */
/* mv
------------------------------------------------------ */
.top-page .mv {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: var(--bg03);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.top-page .mv img {
    width: 100%;
    max-width: 1920px;
}

/* hero
------------------------------------------------------ */
.top-page .hero {
    text-align: center;
}

.top-page .hero .wrap {
    position: relative;
}

.top-page .hero .wrap:before {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust01.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: -20px;
    left: -30px;
    z-index: 0;
}

.top-page .hero .wrap::after {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust01.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    right: -15px;
    bottom: -20px;
    z-index: 0;
}

.top-page .hero .hero-title {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary);
}

.top-page .hero .highlight-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.top-page .hero .hero-description {
    margin: 32px 0 0;
    font-size: 16px;
    line-height: 1.8em;
}

.top-page .hero .hero-description p+p {
    margin: 16px 0 0;
}

/* features
------------------------------------------------------ */
.top-page .features .heading01 {
    padding: 0 0 4px;
    position: relative;
}

.top-page .features .heading01 .img {
    width: 88px;
    position: absolute;
    right: 18px;
    bottom: -83px;
}

.top-page .features .feature {
    margin: 64px 0 0;
    padding: 48px 24px;
    border-radius: 16px;
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.top-page .features .feature-badge {
    width: 80px;
    height: 80px;
    padding: 4px 0 0;
    background: url(../img/popup01.png) no-repeat center top / contain;
    position: absolute;
    top: -55px;
    left: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: var(--white);
    text-align: center;
    letter-spacing: 0;
}

.top-page .features .feature-badge em {
    margin: 0 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    vertical-align: -0.05em;
}

.top-page .features .feature:nth-child(even) .feature-badge {
    background: url(../img/popup02.png) no-repeat center top / contain;
    right: 40px;
    left: auto;
}

.top-page .features .feature-content {
    margin: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.top-page .features .feature-image {
    width: 88%;
    margin: 0 auto;
}

.top-page .features .feature h2 {
    position: relative;
    display: inline-block;
    font-size: 19px;
    text-align: center;
}

.top-page .features .feature h2 span {
    position: relative;
    font-size: 22px;
    z-index: 1;
}

.top-page .features .feature h2 span::before {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #fbc4a5;
    position: absolute;
    content: "";
    bottom: 2px;
    left: 0;
    z-index: -1;
}

.top-page .features .feature p {
    width: 100%;
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

/* point
------------------------------------------------------ */
.top-page .point .heading01 .title {
    font-size: 23px;
    letter-spacing: -0.02em;
}

.top-page .point .heading01 .title strong {
    position: relative;
    font-weight: 600;
}

.top-page .point .heading01 .title strong::before {
    width: 100%;
    height: 10px;
    margin: auto;
    border-radius: 4px;
    background: #fbc4a5;
    position: absolute;
    content: "";
    right: 0;
    bottom: 4px;
    left: 0;
    z-index: 0;
}

.top-page .point .heading01 .title span {
    position: relative;
    z-index: 1;
}

.top-page .point .heading01 .title em {
    position: relative;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.24;
}

.top-page .point .heading01 .title .dots {
    padding: 12px 0 0;
    background-image: radial-gradient(circle at center, var(--primary) 20%, transparent 20%);
    background-repeat: repeat-x;
    background-position: top right;
    background-size: 1em 0.5em;
}

.top-page .point .heading01 .title img {
    width: 40px;
    position: absolute;
    right: -48px;
    bottom: 2px;
}

.top-page .points-grid {
    margin: 40px 0 0;
}

.top-page .points-grid .point-card {
    margin: 40px 0 0;
}

.top-page .points-grid .point-img img {
    width: 100%;
}

.top-page .point-card .title-area {
    display: flex;
    flex-wrap: wrap;
}

.top-page .point-number {
    width: 36px;
    height: 36px;
    margin: 16px 12px 0 0;
    padding: 2px 0 0;
    border-radius: 5px;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--number);
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    color: var(--white);
}

.top-page .point-title {
    width: calc(100% - 36px - 12px);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.top-page .point-title .highlight {
    color: var(--primary);
}

.top-page .point-description {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.8;
}

.top-page .point .contact-box {
    margin: 40px auto 0;
    padding: 32px 20px;
    border: 2px solid var(--secondary);
    border-radius: 16px;
    position: relative;
    text-align: center;
}

.top-page .point .contact-box:before {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust01.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: -80px;
    left: -6px;
}

.top-page .point .contact-box::after {
    width: calc(230px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust01.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    right: 0px;
    bottom: -41px;
}

.top-page .point .contact-box h2 {
    font-size: 24px;
    font-weight: 600;
}

.top-page .point .contact-box .desc {
    margin: 24px 0 0;
    font-size: 16px;
}

.top-page .point .contact-box .highlight {
    margin: 16px auto 0;
}

.top-page .point .contact-box .highlight span {
    padding: 0 16px;
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-align: center;
}

.top-page .point .contact-box .highlight span::before,
.top-page .point .contact-box .highlight span::after {
    width: 2px;
    height: 30px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
}

.top-page .point .contact-box .highlight span::before {
    left: 0;
    transform: translateY(-50%) rotate(-20deg);
    transform-origin: left center;
}

.top-page .point .contact-box .highlight span::after {
    right: 0;
    transform: translateY(-50%) rotate(20deg);
    transform-origin: right center;
}

.top-page .point .tel-info {
    margin: 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-page .point .tel-info img {
    width: 20px;
    margin: 0 8px 0 0;
}

.top-page .point .tel-info .number {
    font-family: var(--number);
    font-size: 20px;
    font-weight: 500;
}

.top-page .point .note {
    font-size: 13px;
    text-align: center;
}

/* function
------------------------------------------------------ */
.top-page .function-grid {
    margin: 40px 0 0;
}

.top-page .function-item {
    margin: 8px 0 0;
    padding: 16px 8px;
    border-radius: 10px;
    background-color: var(--white);
    display: flex;
    align-items: center;
}

.top-page .function-item .icon {
    width: 48px;
    height: 32px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-page .function-item .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.top-page .function-item .text {
    width: calc(100% - 48px);
    margin: 0 0 4px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary);
}

/* support
------------------------------------------------------ */
.top-page .support-grid {
    margin: 56px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 8px;
}

.top-page .support-item {
    text-align: center;
}

.top-page .support-item .icon {
    margin: auto;
}

.top-page .support-item .text {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* price-plan
------------------------------------------------------ */
.top-page .price-plan .wrap {
    position: relative;
}

.top-page .price-plan .wrap:before {
    width: calc(231px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust02.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: -20px;
    right: -166px;
}

.top-page .price-plan .wrap::after {
    width: calc(231px / 1.5);
    height: calc(201px / 1.5);
    background: url(../img/illust02.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    bottom: 90px;
    left: -170px;
    z-index: 0;
}

.top-page .price-plan .price {
    margin: 40px 0 0;
    font-size: 28px;
    text-align: center;
}

.top-page .price-plan .price span {
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.top-page .price-plan .price span::before {
    width: 100%;
    height: 8px;
    margin: auto;
    border-radius: 9999px;
    background: var(--primary);
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.top-page .price-plan .price em {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-page .price-plan .price-num {
    font-family: var(--number);
    font-size: 56px;
    font-weight: 700;
}

.top-page .price-plan .note {
    margin: 24px 0 0;
    font-size: 14px;
    text-align: center;
}

.top-page .price-plan .highlight {
    font-size: 16px;
    color: var(--primary);
}

.top-page .price-plan .highlight strong {
    font-size: 24px;
    font-weight: 500;
}

.top-page .price-plan .box {
    margin: 24px 0 0;
    position: relative;
    z-index: 1;
}

.top-page .price-plan_title {
    width: 64px;
    position: absolute;
    top: -82px;
    right: 10px;
}

.top-page .price-plan .box-title {
    padding: 12px;
    border-radius: 22px 22px 0 0;
    background-color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.top-page .price-plan .box__inner {
    padding: 24px 16px 24px;
    background-color: #fcf1ab;
}

.top-page .price-plan .grid {
    margin: 0 0 0 -8px;
    display: flex;
    flex-wrap: wrap;
}

.top-page .price-plan .item {
    width: calc(100% / 2 - 8px);
    margin: 24px 0 0 8px;
    padding: 32px 10px 24px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
}

.top-page .price-plan .item .number {
    margin: auto;
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    font-family: var(--number);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
}

.top-page .price-plan .item .icon {
    width: 20px;
}

.top-page .price-plan .option-note {
    margin: 24px 0 0;
    font-size: 11px;
    text-align: center;
}

.top-page .price-plan .btn-area {
    margin: 40px 0 0;
    display: flex;
    justify-content: center;
}

.top-page .price-plan .btn {
    width: 80%;
    height: 64px;
    margin: auto;
    padding: 14px 32px;
    border-radius: 9999px;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.top-page .price-plan .btn img {
    margin: 0 0 0 24px;
    transition: 0.3s;
}

/* work
------------------------------------------------------ */
.top-page .work .splide {
    width: 80%;
    margin: 64px auto 0;
}

.top-page .work .splide__track {
    padding: 8px 0 0;
}

.top-page .work .work-item {
    text-align: center;
}

.top-page .work .splide__slide a {
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-page .work .splide__slide a:hover {
    transform: translateY(-8px);
}

.top-page .work .work-item img {
    width: 100%;
    height: auto;
}

.top-page .work .work-item p {
    margin: 8px 0 0;
}

.top-page .work .splide__arrow {
    width: 44px;
    height: 44px;
    cursor: pointer;
    opacity: 1;
    border: none;
    border-radius: 50%;
    background-color: var(--secondary);
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: 0.3s ease;
    transform: translateY(-50%);
}

.top-page .work .splide__arrow img {
    width: 10px;
    height: auto;
    transition: transform 0.3s ease;
    transform: translateX(2px);
}

.top-page .work .splide__arrow--prev {
    left: -40px;
}

.top-page .work .splide__arrow--prev img {
    transform: scale(-1, 1) translateX(2px);
}

.top-page .work .splide__arrow--next {
    right: -40px;
}

/* flow
------------------------------------------------------ */
.top-page .flow .title {
    margin: 0;
}

.top-page .flow .flow-heading {
    margin: 24px 0 0;
    text-align: center;
}

.top-page .flow .flow-label {
    padding: 0 16px;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.flow-label::before,
.top-page .flow .flow-label::after {
    width: 4px;
    height: 40px;
    border-radius: 9999px;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.top-page .flow .flow-label::before {
    left: 0;
    transform: translateY(-50%) rotate(-20deg);
}

.top-page .flow .flow-label::after {
    right: 0;
    transform: translateY(-50%) rotate(20deg);
}

.top-page .flow .flow-label strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--secondary);
}

.top-page .flow .flow-label .circle {
    width: 56px;
    height: 56px;
    margin: 0 8px;
    border-radius: 9999px;
    background-color: var(--secondary);
    display: inline-block;
    font-family: var(--number);
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.top-page .flow .subtext {
    margin: 24px 0 0;
}

.top-page .flow .flow-steps {
    margin: 24px 0 0;
}

.top-page .flow .step-box {
    margin: 40px 0 0;
    padding: 16px 32px;
    border: 3px solid var(--secondary);
    border-radius: 12px;
    background-color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
}

.top-page .flow .step-box::after {
    width: 0;
    height: 0;
    margin: auto;
    border-top: 12px solid var(--secondary);
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    content: "";
    right: 0;
    bottom: -28px;
    left: 0;
    z-index: 1;
}

.top-page .flow .step-box:last-child::after {
    display: none;
}

.top-page .flow .step-box .text {
    flex: 1;
}

.top-page .flow .step-box h2 {
    font-family: var(--number);
    font-size: 28px;
    font-weight: 700;
}

.top-page .flow .step-box .title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0;
}

.top-page .flow .step-box p {
    margin: 8px 0 0;
    font-size: 13px;
    letter-spacing: -0.05em;
}

/* faq
------------------------------------------------------ */
.top-page .section-wrap .section.faq {
    padding: 64px 0 110px;
    position: relative;
}

.top-page .faq .faq_illust {
    width: 88px;
    position: absolute;
    bottom: 4px;
    left: 24px;
}

.top-page .faq-list {
    margin: 40px 0 0;
}

.top-page .faq-list .faq-item {
    margin: 16px 0 0;
}

.top-page .faq-item dt button {
    width: 100%;
    padding: 24px 40px 24px 58px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: var(--bg02);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: background-color 0.3s ease;
}

.top-page .faq-item dt button::before {
    width: 32px;
    height: 32px;
    margin: 0 10px 0 0;
    border-radius: 50%;
    background: var(--secondary);
    position: absolute;
    content: "Q";
    top: 24px;
    left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--number);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.top-page .faq-item dt button .icon {
    width: 24px;
    height: 24px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
}

.faq-item dt button .icon::before,
.top-page .faq-item dt button .icon::after {
    width: 16px;
    height: 4px;
    border-radius: 9999px;
    background-color: var(--black);
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.top-page .faq-item dt button .icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.top-page .faq-item dt button .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.top-page .faq-item.active dt button .icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.top-page .faq-item dd {
    max-height: 0;
    padding: 0 16px 0 56px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.top-page .faq-item dd::before {
    width: 32px;
    height: 32px;
    margin: 0 10px 0 0;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    content: "A";
    top: 16px;
    left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--number);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.top-page .faq-item.active dd {
    max-height: 100vh;
    padding: 20px 16px 16px 56px;
    font-size: 14px;
}

.top-page .faq-item.active dd::before {
    opacity: 1;
}

/*================================================================
# 料金プランページ
================================================================ */
/* 初期制作プラン
------------------------------------------------------ */
.price-page .plan .plan-list {
    margin: 24px 0 0;
}

.price-page .plan .plan-list .plan-item {
    margin: 30px 0 0;
}

.price-page .plan .plan-title {
    padding: 4px 0 2px;
    border: 3px solid var(--bg02);
    border-radius: 10px 10px 0 0;
    background: var(--bg02);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.price-page .plan .plan-box {
    margin: 0 auto;
    padding: 16px 24px 40px;
    border: 3px solid var(--bg02);
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}

.price-page .plan .plan-caption {
    font-size: 18px;
    text-align: center;
}

.price-page .plan .plan-price {
    height: 56px;
    margin: 24px 0 0;
    padding: 0 16px 2px;
    border-radius: 9999px;
    background: var(--bg02);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price-page .plan .plan-price .yen {
    font-size: 30px;
    line-height: 1;
}

.price-page .plan .plan-price .price {
    margin: 4px 0 0 4px;
    font-family: var(--number);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
}

.price-page .plan .plan-price .tax {
    margin: 6px 0 0 4px;
    font-size: 16px;
    line-height: 1;
}

.price-page .plan .check-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.price-page .plan .check-list li {
    margin: 16px 0 0;
    padding: 0 0 0 28px;
    position: relative;
    font-size: 16px;
}

.price-page .plan .check-list li.check::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
}

.price-page .plan .check-list li.check::after {
    width: 11px;
    height: 7px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    position: absolute;
    content: "";
    top: 8px;
    left: 5px;
    display: block;
    transform: rotate(-45deg);
}

.price-page .plan .check-list li.minus::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--secondary);
    position: absolute;
    content: "";
    top: 6px;
    left: 0;
}

.price-page .plan .check-list li.minus::after {
    width: 10px;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    content: "";
    top: 15px;
    left: 5px;
}

.price-page .plan .check-list li strong {
    font-weight: 500;
    color: var(--primary);
}

.price-page .plan .plan-item.popular {
    margin: 80px 0 0;
    position: relative;
}

.price-page .plan .plan-item.popular .plan-title {
    padding: 16px 0 14px;
    border: 3px solid var(--secondary);
    background: var(--secondary);
    color: var(--white);
}

.price-page .plan .plan-item.popular .plan-box {
    margin: 0 auto;
    border: 3px solid var(--secondary);
}

.price-page .plan .plan-item.popular .plan-price {
    background: var(--secondary);
    color: var(--white);
}

.price-page .plan .popular .plan-badge {
    width: 96px;
    height: 96px;
    margin: 0;
    padding: 0 5px;
    border-radius: 9999px;
    background: #fcf1ab;
    position: absolute;
    top: -64px;
    left: -24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.price-page .plan .popular .plan-badge:before {
    margin: 0;
    border: 5px solid transparent;
    border-left: 15px solid #fcf1ab;
    position: absolute;
    content: "";
    right: -8px;
    bottom: 10px;
    z-index: 0;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}

.price-page .plan .popular .plan-badge strong {
    margin: 0 0 0 2px;
    padding: 0 0 3px;
    font-family: var(--number);
    font-size: 16px;
    font-weight: 500;
}

.price-page .plan .popular .plan-badge strong span {
    margin: 3px 3px 0 0;
    font-size: 24px;
}

.price-page .plan .plan-item.order-made .plan-price {
    font-size: 25px;
}

.price-page .plan .contact-btn {
    width: 80%;
    margin: 40px auto 0;
}

/* ２園目以降
------------------------------------------------------ */
.price-page .multiple-projects .price-section {
    margin: 40px 0 0;
}

.price-page .multiple-projects .price-heading {
    padding: 12px;
    border-radius: 10px 10px 0 0;
    background: var(--secondary);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.price-page .multiple-projects .price-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 20px 40px;
    border-radius: 0 0 10px 10px;
    background: var(--white);
    text-align: center;
}

.price-page .multiple-projects .plan-price {
    height: 56px;
    margin: 24px auto 0;
    padding: 0 16px 2px;
    border-radius: 9999px;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.price-page .multiple-projects .plan-price .yen {
    font-size: 30px;
    line-height: 1;
}

.price-page .multiple-projects .plan-price .price {
    margin: 4px 0 0 4px;
    font-family: var(--number);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
}

.price-page .multiple-projects .plan-price .tax {
    margin: 6px 0 0 4px;
    font-size: 16px;
    line-height: 1;
}

.price-page .multiple-projects .price-note {
    margin: 24px 0 0;
    font-size: 14px;
    color: var(--secondary);
}

/* 保守・管理
------------------------------------------------------ */
.price-page .management .management-heading {
    padding: 12px 0 10px;
    border: 3px solid var(--bg02);
    border-radius: 10px 10px 0 0;
    background: var(--bg02);
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.price-page .management .management-section {
    margin: 40px 0 0;
}

.price-page .management .management-box {
    margin: 0 auto;
    padding: 16px 22px 40px;
    border: 3px solid var(--bg02);
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}

.price-page .management .management-price {
    margin-bottom: 20px;
    padding: 20px 40px;
    border-radius: 40px;
    background: #d4eeec;
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

.price-page .management .management-price .tax {
    margin-left: 8px;
    font-size: 18px;
    font-weight: normal;
}

.price-page .management .management-note {
    margin: 24px 0 0;
    font-size: 14px;
    color: var(--secondary);
    text-align: center;
}

.price-page .management .plan-price {
    height: 56px;
    margin: 24px auto 0;
    padding: 0 16px 2px;
    border-radius: 9999px;
    background: var(--bg03);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price-page .management .plan-price .yen {
    font-size: 30px;
    line-height: 1;
}

.price-page .management .plan-price .price {
    margin: 4px 0 0 4px;
    font-family: var(--number);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.price-page .management .plan-price .tax {
    margin: 6px 0 0 4px;
    font-size: 16px;
    line-height: 1;
}

.price-page .management .check-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 80px;
}

.price-page .management .check-list li {
    margin: 10px 0 0;
    padding: 0 0 0 28px;
    position: relative;
    font-size: 16px;
    letter-spacing: 0;
}

.price-page .management .check-list li.check::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
}

.price-page .management .check-list li.check::after {
    width: 11px;
    height: 7px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    display: block;
    transform: rotate(-45deg);
}

/* オプション
------------------------------------------------------ */
.price-page .section.option {
    margin: 0;
    padding: 40px 0 80px;
}

.section-wrap .section.option:nth-child(even)::after {
    display: none;
}

.price-page .option .price-box {
    margin: 40px 0 0;
    padding: 20px;
    border: 3px solid var(--secondary);
    border-radius: 10px;
    background: var(--white);
}

.price-page .option .price-list {
    margin: 0;
}

.price-page .option .price-row {
    padding: 20px 0;
    border-bottom: 3px solid var(--bg02);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-page .option .price-row:last-child {
    border-bottom: none;
}

.price-page .option .price-row dt {
    max-width: 70%;
    font-size: 15px;
    font-weight: 600;
}

.price-page .option .price-row dt small {
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.price-page .option .price-row dd {
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0;
}

.price-page .option .price-row dd .yen {
    margin: 2px 0 0 4px;
    font-size: 16px;
    line-height: 1;
}

.price-page .option .price-row dd .price {
    margin: 0 0 0 2px;
    font-family: var(--number);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.price-page .option .price-row dd .tax {
    margin: 6px 0 0 2px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.price-page .option .tax {
    margin-left: 4px;
    font-size: 12px;
    font-weight: 400;
}

.price-page .option .desc {
    margin: 20px 0 0;
    font-size: 14px;
}

/*================================================================
# お問い合わせページ
================================================================ */
.contact-page .section {
    margin: 0;
    padding: 64px 0 100px;
}

.contact-form {
    width: 100%;
    margin: 40px auto 0;
}

.contact-table {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 2;
}

.contact-table>tbody>tr {
    margin: 16px 0 0;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
}

.contact-table>tbody>tr>th {
    width: 100%;
    padding: 0 0 0 48px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--blue04);
    text-align: left;
    white-space: nowrap;
}

.contact-table>tbody>tr>.no-label {
    padding: 0;
}

.contact-table>tbody>tr>td {
    width: 100%;
    margin: 8px 0 0;
    padding: 0;
}

.contact-table>tbody>tr>td .note {
    margin-top: 4px;
    font-size: 11px;
    color: var(--gray03);
}

.contact-form .form-tag {
    width: 40px;
    height: 20px;
    background-color: var(--gray02);
    position: absolute;
    top: 4px;
    bottom: 0;
    left: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--white);
    text-align: center;
}

.contact-form .form-tag.-required {
    background-color: var(--primary);
}

.contact-form .kojin-checkbox .form-tag {
    top: 12px;
    left: -47px;
}

.contact-form__footer {
    margin: 40px 0 0;
}

.contact-form__footer .title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.privacy-box {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    padding: 24px;
    background: var(--gray01);
    overflow: auto;
    font-size: 12px;
}

.privacy-box .unit {
    margin: 16px 0 0;
}

.privacy-box .unit__title {
    font-size: 12px;
    font-weight: 600;
}

.privacy-box .unit__text {
    margin: 8px 0 0;
    font-size: 12px;
}

.privacy-text {
    font-size: 12px;
}

/*-----------
form
------------*/
::placeholder {
    font-size: 14px;
    color: var(--gray02);
}

.contact-table select,
.contact-table input,
.contact-table textarea,
.contact-table button,
.contact-table option {
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.contact-table input,
.contact-table textarea {
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: var(--gray01);
    font-size: 16px;
    line-height: normal;
    box-sizing: border-box;
    transition: all 0.5s;
}

.contact-table input:focus,
.contact-table textarea:focus {
    background: var(--gray01);
}

.contact-table input:focus::placeholder,
.contact-table textarea:focus::placeholder {
    color: var(--gray02);
}

.select-wrap {
    width: 100%;
    border-radius: 0;
    background: var(--gray01);
    position: relative;
    overflow: hidden;
}

.select-wrap::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border: 0;
    border-right: solid 2px var(--gray02);
    border-bottom: solid 2px var(--gray02);
    position: absolute;
    content: "";
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    font-size: 16px;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    appearance: none;
}

.select-wrap select::-ms-expand {
    display: none;
}

/* チェックボックス */
.checkbox-list {
    list-style: none;
}

input[type="checkbox"] {
    width: auto;
    margin: 0 4px 0 0;
    padding: 0;
}

.wpcf7-checkbox {
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox {
    width: auto;
    padding: 0.5rem 3rem;
    cursor: pointer;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

/* ラジオボタン */
input[type="radio"] {
    display: none;
}

.radio03 {
    width: auto;
    padding: 5px 30px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

.radio03::before {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    content: "";
    top: 50%;
    left: 5px;
    display: block;
}

.radio03::after {
    width: 10px;
    height: 10px;
    margin-top: -4px;
    opacity: 0;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    content: "";
    top: 50%;
    left: 9px;
    display: block;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transform: scale3d(0.3, 0.3, 1);
}

input[type="radio"]:checked+.radio03::before {
    border-color: #666;
}

input[type="radio"]:checked+.radio03::after {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.kojin-checkbox {
    margin: 24px 0 0;
    font-weight: 600;
    text-align: center;
}

.kojin-checkbox label {
    padding: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.kojin-checkbox label::before {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    display: block;
}

.kojin-checkbox input {
    margin: 0 10px 0 0;
}

.submit-btn {
    width: 100%;
    margin: 40px auto 0;
}

.submit-btn input {
    width: 88%;
    height: 56px;
    margin: 8px auto 0;
    padding: 0 16px 4px;
    border-radius: 9999px;
    background-color: var(--secondary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}