@charset "UTF-8";

/*------------------------
resmin
----------------------------*/
html {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -moz-tab-size: 4;
    tab-size: 4;
    word-break: normal
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit
}

:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    margin: 0;
    padding: 0
}

hr {
    color: inherit;
    height: 0;
    overflow: visible
}

details,
main {
    display: block
}

summary {
    display: list-item;
}

small {
    font-size: 80%
}

[hidden] {
    display: none
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

pre {
    font-size: 1em
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    border-color: inherit;
    text-indent: 0
}

iframe {
    border-style: none
}

input {
    border-radius: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline-width: 0
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    color: inherit;
    font: inherit
}

[disabled] {
    cursor: default
}

img {
    border-style: none
}

progress {
    vertical-align: baseline
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled=true] {
    cursor: default
}

/*-----------------------------------------------------------------------
:root
-------------------------------------------------------------------------*/
:root {
    --main-color: #8EC6E8;
    --sab-color: #fde16e;
    --border-color: #5C95B8;
    --background-color: #fff;
    --title: clamp(2rem, 2.128vw, 4rem);
    --section-title: 3rem;
}

/*-----------------------------------------------------------------------
共通css
-------------------------------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-size: 1.8rem;
    color: #2c2c2c;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: var(--main-color);
    outline: 3px solid #bc2a2a;
}

a {
    text-decoration: none;
    color: #2c2c2c;
}

li {
    list-style: none;
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

/*------------------------
header
----------------------------*/
.header-container {
    text-align: center;
    padding-top: 40px;
}

.header-nav__wrapper {
    display: inline-flex;
    justify-content: center;
    background: var(--background-color);
    align-items: center;
    gap: clamp(40px, 4.255vw, 80px);
    border-radius: 100px;
    padding-left: 80px;
    /* max-width: 80%; */
    /* width: 100%; */
}

.header-nav__wrapper.is-show {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    border-radius: 0 0 100px 100px;
    z-index: 9999;
    /* overflow: hidden; */
}

.header-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.header-nav a {
    transition: 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.5;
}

.header-nav__accordion span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    transition: 0.3s ease;

}

.header-nav__accordion summary {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.header-nav__accordion[open] summary {
    margin-bottom: 8px;
    border-bottom: 3px solid;
    border-color: #5c95b857;
    padding-bottom: 8px;
}

.header-nav__accordion[open] span {
    transform: rotate(-135deg);
}

.header-nav__accordion a {
    margin-right: 16px;
}

.header-nav__accordion a:nth-child(4) {
    margin-right: 0;
}

.header-cta {
    height: stretch;
}

.header-cta a {
    height: 100%;
    border: 10px solid;
    width: 100%;
    display: flex;
    align-items: center;
    padding-inline: clamp(40px, 4.255vw, 80px);
    border-radius: 100px;
    border-color: var(--sab-color);
    transition: 0.3s ease;
    white-space: nowrap;
}

.header-cta a:hover {
    background: var(--sab-color);
}

/*================
=================*/
@media (max-width: 1899px) {
    .header-cta a {
        background: unset;
        border: none;
        color: var(--sab-color);
    }

    .header-nav__wrapper {
        /* padding-left: 0; */
    }

    .header-nav__wrapper.is-show {
        width: stretch;
        border-radius: 0 0 20px 20px;
        /* max-width: 100%; */
        /* display: flex; */
    }
}

/*================
=================*/
@media (max-width: 899px) {}

/*------------------------
hero
----------------------------*/

.hero-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 40px;
    padding-bottom: 80px;
    position: relative;
    height: calc(100vh - 165px);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 285px);
    /* transition: 0.3s ease; */
    /* z-index: -10; */
    filter: blur(2px);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1s ease;
}

.hero-text__wrapper {
    position: absolute;
    top: 20vh;
    left: 270px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
    object-position: center;
}

.hero-title {
    display: flex;
    font-size: var(--title);
    z-index: 10;
}

.hero-title h1 {
    position: relative;
    z-index: 10;
}

.hero-title h1:nth-child(1)::before {
    position: absolute;
    content: "家族みんなの、";
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: -1;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #ffffff;
}

.hero-title h1:nth-child(2)::before {
    position: absolute;
    content: "かかりつけ歯科。";
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: -1;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #ffffff;
}

.hero-text h2 {
    position: relative;
    font-size: clamp(1.8rem, 1.596vw, 3rem);
    z-index: 10;
}

.hero-text h2::after {
    position: absolute;
    content: "お子様からご高齢の方まで、安心して通える環境を整えています。";
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: -1;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    top: 0;
    left: 0;
}

.hero-time {
    position: absolute;
    bottom: 100px;
    left: 0;
    padding-inline: 80px;
    padding-block: 40px;
    border: 10px solid;
    /* max-width: 40%; */
    width: fit-content;
    border-radius: 0 100px 100px 0;
    border-color: var(--sab-color);
    background: var(--background-color);
}

.hero-time.is-show {
    position: fixed;
    left: 0;
    bottom: 160px;
    z-index: 9999;
    width: auto;
    /* overflow: hidden; */
    /* padding: 0; */
    padding-inline: 8px;
    padding-block: 40px;
    border-radius: 0 20px 20px 0;
}

.hero-time.is-show .day,
.hero-time.is-show .time {
    display: none;
}

.hero-time.is-show .hero-time__item {
    writing-mode: vertical-lr;
    border: none;
    width: auto;
}

.hero-time__wrapper {
    border: 5px solid;
    border-color: var(--main-color);
    width: fit-content;
    margin-inline: auto;
}

.hero-time.is-show .hero-time__wrapper {
    border: none;
    width: auto;
}

.hero-time__inner {
    display: flex;
    align-items: center;
}

.hero-time__item {
    border-right: 3px solid;
    padding-inline: 24px;
    padding-block: 8px;
    border-color: var(--main-color);
    max-width: 200px;
    text-align: center;
    width: 100%;
}

.day {
    border-right: 2px solid;
    padding-block: 8px;
    text-align: center;
    border-color: var(--main-color);
    width: 80px;
    height: stretch;
    /* width: 100%; */
    /* width: stretch; */
}

.day:nth-child(8) {
    border-right: none;
}

.hero-time__inner:nth-child(1),
.hero-time__inner:nth-child(2) {
    border-bottom: 3px solid;
    border-color: var(--main-color);
}

.hero-time__inner:nth-child(2) .day,
.hero-time__inner:nth-child(3) .day {
    position: relative;
}

.hero-time__inner:nth-child(2) .day::before,
.hero-time__inner:nth-child(3) .day::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--sab-color);
    border-radius: 50%;
}

.hero-scroll {
    position: absolute;
    bottom: 80px;
    right: 300px;
    padding-bottom: 180px;
    z-index: 10;
}

.hero-scroll__img {
    width: 50px;
    height: 50px;
}

.hero-scroll__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scroll__bar {
    width: 3px;
    height: 200px;
    background: #2c2c2c5c;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.hero-scroll__bar::before {
    position: absolute;
    width: 100%;
    height: 20px;
    background: #2c2c2c;
    content: "";
    overflow-y: hidden;
    animation: scrollbar 1.8s ease infinite;
    opacity: 0;
}

@keyframes scrollbar {
    0% {
        height: 20px;
        opacity: 1;
    }

    75% {
        height: 200px;
        opacity: 1;
    }

    100% {
        height: 200px;
        opacity: 0;
    }
}

.hero-scroll__text {
    writing-mode: vertical-lr;
    position: absolute;
    right: 0;
    bottom: 0;
}

.hero-time.is-show .hero-time__inner:nth-child(1),
.hero-time.is-show .hero-time__inner:nth-child(2) {
    border: none;
}

.hambarger-line__wrapper {
    display: none;
}

.sp-fixed__wrapper {
    display: none;
}

.sp-hero__cta {
    display: none;
}

/*================
=================*/
@media (max-width: 1899px) {
    .hero-container {
        padding-inline: 40px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-text__wrapper {
        left: 100px;
    }

}

/*================
=================*/
@media (max-width: 899px) {
    .hambarger-line__wrapper {
        display: inline-block;
        width: 60px;
        height: 57px;
        position: fixed;
        border: 5px solid;
        border-radius: 50%;
        border-color: var(--border-color);
        right: 40px;
        top: 61px;
        background: var(--background-color);
        z-index: 9999;
    }

    .hambarger-line {
        position: absolute;
        width: 20px;
        height: 5px;
        background: var(--border-color);
        left: 15px;
        transition: 0.5s ease;
    }

    .hambarger-line:nth-child(1) {
        top: 10px;
        /* left: 7px; */
    }

    .hambarger-line:nth-child(2) {
        top: 21px;
        /* transform: translateY(-50%); */
        /* left: 11px; */
    }

    .hambarger-line:nth-child(3) {
        bottom: 10px;
        /* left: 7px; */
    }

    .hambarger-line__wrapper.active .hambarger-line:nth-child(1) {
        top: 22px;
        transform: rotate(45deg);
    }

    .hambarger-line__wrapper.active .hambarger-line:nth-child(2) {
        opacity: 0;
    }

    .hambarger-line__wrapper.active .hambarger-line:nth-child(3) {
        top: 22px;
        transform: rotate(-45deg);
    }

    .header-logo {
        position: fixed;
        left: 5px;
        top: 0;
        width: 200px;
        height: 200px;
        z-index: 9999;
    }

    .header-cta {
        display: none;
    }

    .header-nav__wrapper {
        background: unset;
        padding: 0;
        border-radius: unset;
    }

    .header-nav ul {
        flex-direction: column;
        position: absolute;
        top: 10%;
        left: 40px;
        align-items: flex-start;
    }

    .header-nav {
        background: var(--background-color);
        width: 50vw;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        border: 10px solid;
        border-radius: 100px 0 0 100px;
        border-color: var(--border-color);
        border-right: none;
        z-index: 9998;
        transform: translateX(50vw);
        transition: 0.5s ease;
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .hero-time {
        position: relative;
        border: none;
        padding-inline: 0;
        border-radius: unset;
        left: unset;
        bottom: unset;
        /* width: 100%; */
        padding-block: 0;
        margin-top: 40px;
        margin-inline: auto;
    }

    .hero-time__wrapper {
        width: 100%;
        border-color: var(--border-color);
        max-width: 100%;
    }

    .hero-title {
        flex-direction: column;
        font-size: clamp(2rem, 3.893vw, 3.5rem);
    }

    .hero-container {
        padding-top: 120px;
        height: auto;
    }

    .hero-slide img {
        border: 10px solid;
        border-color: var(--border-color);
    }

    .hero-slider {
        filter: none;
        height: 65vh;
    }

    .hero-text h2 {
        font-size: clamp(1.8rem, 2.781vw, 2.5rem);
    }

    .hero-text {
        max-width: 100%;
        width: 100%;
    }

    .hero-text__wrapper {
        padding-inline: 40px;
        left: 40px;
        top: 20vh;
    }

    .sp-hero__cta {
        display: inline-block;
        position: absolute;
        bottom: 90px;
        left: 50%;
        background: var(--background-color);
        border: 10px solid;
        border-color: var(--sab-color);
        border-radius: 100px;
        padding-left: 40px;
        padding-right: 100px;
        padding-block: 16px;
        transform: translateX(-50%);
        align-items: center;
        z-index: 9997;
        /* margin-right: 40px; */
        /* justify-content: center; */
        white-space: nowrap;
    }

    .sp-hero__cta span {
        display: inline-block;
        width: 20px;
        height: 3px;
        background: #2c2c2c;
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
    }

    .sp-hero__cta span::before {
        position: absolute;
        content: "";
        width: 10px;
        height: 10px;
        border-right: 3px solid;
        border-bottom: 3px solid;
        border-color: #2c2c2c;
        top: -3px;
        right: 0;
        transform: rotate(-45deg);
    }

    .sp-hero__cta span::after {
        position: absolute;
        content: "";
        width: 13px;
        height: 3px;
        border-bottom: 3px dashed;
        border-color: #2c2c2c;
        left: -16px;
        top: 0;
    }

    .sp-fixed__wrapper {
        display: flex;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 9999;
        align-items: center;
        justify-content: center;
        background: var(--background-color);
        left: 0;
        border: 10px solid;
        border-color: var(--sab-color);
        border-radius: 100px;
        padding-block: 20px;
    }

    .sp-fixed__wrapper img {
        width: 50px;
    }

    .sp-fixed__wrapper a {
        display: flex;
        align-items: center;
        /* padding-inline: clamp(60px, 13.348vw, 120px); */
        gap: 16px;
    }

    .sp-fixed__wrapper a:nth-child(1) {
        padding-right: clamp(30px, 6.674vw, 60px);
        /* margin-right: clamp(60px, 13.348vw, 120px); */
        border-right: 5px solid;
        border-color: var(--sab-color);
        padding-left: clamp(30px, 6.674vw, 60px);
    }

    .sp-fixed__wrapper a:nth-child(2) {
        padding-left: clamp(30px, 6.674vw, 60px);
        padding-right: clamp(30px, 6.674vw, 60px);
    }

    .day {
        width: 40px;
    }
}

/*================
=================*/
@media (max-width: 699px) {
    .sp-fixed__wrapper img {
        width: 25px;
    }

    .sp-fixed__wrapper a {
        font-size: 1.5rem;
    }

    .hero-text__wrapper {
        padding-right: 80px;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .hero-container {
        padding-inline: 20px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .hero-text__wrapper {
        padding-inline: 0;
        padding-right: 40px;
        top: 18vh;
    }

    .header-logo {
        width: 100px;
        height: 100px;
        top: 20px;
    }

    .hambarger-line__wrapper {
        top: 37px;
        right: 20px;
    }

    .hero-time {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .sp-hero__cta {
        padding-left: 20px;
        padding-right: 80px;
        border-width: 5px;
    }

    .sp-hero__cta span {
        right: 20px;
    }

    .sp-fixed__wrapper img {
        display: none;
    }

    .sp-fixed__wrapper a {
        font-size: 1.2rem;
    }

    .hero-slide img {
        border-width: 5px;
    }

    .sp-fixed__wrapper {
        border-width: 5px;
    }

    .header-nav {
        border-width: 5px;
    }

    .hero-slider::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1;
        border-radius: 100px;
        opacity: 0.2;
        top: 0;
        left: 0;

    }
}

/*------------------------
section title
----------------------------*/
.about-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 80px;
    padding-bottom: 80px;
    /* height: 60vh; */
    position: relative;
}

.section-title {
    font-size: var(--section-title);
    border: 10px solid;
    display: inline-block;
    padding-inline: 40px;
    padding-block: 8px;
    border-radius: 100px;
    background: var(--background-color);
    border-color: var(--border-color);
}

.about-container .section-title {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 80px;
    transform: translateY(50%);
}

.about-inner {
    display: flex;
    align-items: center;
    position: relative;
    /* height: stretch; */
    border: 10px solid;
    gap: clamp(40px, 4.255vw, 80px);
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 100px;
    background: var(--background-color);
    border-color: var(--border-color);
    padding-bottom: 8px;
    padding-inline: clamp(40px, 4.255vw, 80px);
}

.about-inner__img {
    width: 800px;
    height: 500px;
    margin-left: -160px;
}

.about-inner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid;
    border-radius: 0 100px 100px 0;
    border-color: var(--border-color);
}

.about-inner__text {
    line-height: 3;
}

/*================
=================*/
@media (max-width: 1899px) {
    .about-container {
        padding-inline: 40px;
    }
}

/*================
=================*/
@media (max-width: 899px) {
    .about-inner {
        flex-direction: column;
        background: unset;
        border: none;
    }

    .about-inner__img {
        height: 20vh;
        width: 90vw;
        margin-left: 0;
    }

    .about-container .section-title {
        position: relative;
        left: 0;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .about-container {
        padding-inline: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about-inner {
        padding-inline: 0;
    }

    .section-title {
        font-size: 2rem;
        border-width: 5px;
    }

    .about-inner__img img {
        border-width: 5px;
    }
}

/*------------------------
service
----------------------------*/

.service-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 80px;
    padding-bottom: 80px;
}

.service-inner__item img {
    width: 150px;
}

.service-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(40px, 4.255vw, 80px);
    padding-top: 40px;
}

.service-inner__item {
    border: 10px solid;
    border-radius: 100px;
    border-color: var(--border-color);
    background: var(--background-color);
    padding-inline: 80px;
    padding-block: 80px;
    text-align: center;
    width: stretch;
}

.service-inner__item h2 {
    margin-bottom: 32px;
    font-size: var(--section-title);
}

.service-inner__item p {
    margin-bottom: 32px;
}

/*================
=================*/
@media (max-width: 1899px) {
    .service-container {
        padding-inline: 40px;
    }

    .service-inner {
        flex-direction: column;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .service-container {
        padding-inline: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .service-inner {
        gap: 20px;
    }

    .service-inner__item {
        padding-inline: 40px;
        padding-block: 40px;
        border-width: 5px;
    }

    .service-inner__item img {
        width: 100px;
    }
}

/*------------------------
feature
----------------------------*/
.feature-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 80px;
    padding-bottom: 80px;
}

.feature-inner {
    padding-top: 80px;
}

.feature-inner__item {
    position: relative;
    margin-bottom: 280px;
}

.feature-inner__title {
    color: var(--main-color);
    background: var(--background-color);
    border: 10px solid;
    border-color: var(--border-color);
    border-radius: 100px;
    padding-inline: 80px;
    padding-block: 8px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
}

.feature-inner__title span {
    font-size: var(--section-title);
    margin-right: 24px;
}

.feature-inner__text {
    background: var(--background-color);
    padding-inline: 160px;
    border: 10px solid;
    border-radius: 100px;
    padding-block: 80px;
    border-color: var(--border-color);
    width: 95%;
    margin-inline: auto;
}

.feature-inner__img {
    width: 50%;
    height: 25vh;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(65%);
}

.feature-inner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid;
    border-color: var(--border-color);
    border-radius: 100px;
}

/*================
=================*/
@media (max-width: 1899px) {
    .feature-container {
        padding-inline: 40px;
    }
}

/*================
=================*/
@media (max-width: 899px) {
    .feature-inner__img {
        display: none;
    }

    .feature-inner__item {
        margin-bottom: 80px;
    }

    .feature-container {
        padding-inline: 0;
    }

    .feature-container .section-title {
        /* padding-inline: 40px; */
        margin-left: 40px;
    }

    .feature-inner__title {
        border-radius: 0 100px 100px 0;
        border-left: none;
    }

    .feature-inner__text {
        border-radius: 0;
        border-right: none;
        border-left: none;
        width: 100%;
        padding-inline: 40px;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .feature-container {
        /* padding-inline: 20px; */
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .feature-inner__title {
        padding-inline: 20px;
        border-width: 5px;
        /* font-size: 1.8rem; */
    }

    .feature-container .section-title {
        margin-left: 20px;
    }

    .feature-inner__text {
        padding-inline: 20px;
        border-width: 5px;
        padding-block: 50px;
    }

    .feature-inner__title h2 {
        font-size: 2rem;
    }

    .feature-inner__title span {
        font-size: 2rem;
    }

    .feature-inner__text h2 {
        font-size: 1.8rem;
    }

    .feature-inner__item:nth-child(2) {
        margin-bottom: 0;
    }
}

/*------------------------
flow
----------------------------*/
.flow-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.flow-carousel {
    overflow-x: auto;
    display: flex;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    margin-top: 40px;
    border: 10px solid;
    border-color: var(--border-color);
    border-radius: 100px;
    position: relative;
}

.flow-carousel__item {
    flex: 0 0 100%;
    height: 70vh;
    object-position: center;
    scroll-snap-align: start;
    position: relative;
}

.flow-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-carousel__text {
    position: absolute;
    top: 80px;
    left: 80px;
    font-size: var(--title);
    background: #ffffffbf;
    border-radius: 100px;
    padding-inline: 16px;
    box-shadow: 0 0 20px 20px #ffffffbf;
}

.flow-carousel__text span {
    font-size: 4.5rem;
    margin-right: 24px;
}

.carousel-btn__wrapper {
    border: 10px solid;
    border-color: var(--border-color);
    border-radius: 100px;
    padding-inline: 40px;
    padding-block: 24px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    transform: translateY(-50%) translateX(-50%);
}

.prev {
    width: 0px;
    height: 0px;
    border: 10px solid transparent;
    border-right: 15px solid var(--border-color);
    transition: 0.3s ease;
}

.next {
    width: 0px;
    height: 0px;
    border: 10px solid transparent;
    border-left: 15px solid var(--border-color);
    transition: 0.3s ease;
}

.carousel-btn {
    width: 10px;
    height: 10px;
    border: 2px solid var(--sab-color);
    border-radius: 50%;
}

.prev:hover,
.next:hover {
    opacity: 0.5;
}

.carousel-btn.is-active {
    background: var(--sab-color);
    border: 2px solid transparent;
}

/*================
=================*/
@media (max-width: 1899px) {
    .flow-container {
        padding-inline: 40px;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .flow-container {
        padding-inline: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .flow-carousel__text {
        left: 50%;
        top: unset;
        bottom: 60px;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .flow-carousel__item {
        height: 70vh;
    }

    .carousel-btn__wrapper {
        transform: translateX(-50%) translateY(0);
        gap: 20px;
        border-width: 5px;
    }

    .flow-carousel {
        border-width: 5px;
    }
}


/*------------------------
contact
----------------------------*/
.contact-container {
    padding-inline: clamp(80px, 8.511vw, 160px);
    padding-top: 80px;
    padding-bottom: 80px;
    /* position: relative; */
}

.contact-inner__wrapper {
    padding-top: 160px;
    border: 10px solid;
    border-radius: 100px;
    border-color: var(--border-color);
    position: relative;
    background: var(--background-color);
    display: flex;
    align-items: stretch;
    /* gap: 160px; */
    padding-inline: 160px;
    justify-content: center;
    padding-bottom: 80px;
    margin-top: 80px;
}

.contact-inner__text {
    position: absolute;
    background: var(--background-color);
    padding-inline: 80px;
    padding-block: 40px;
    border: 10px solid;
    border-color: var(--sab-color);
    border-radius: 100px;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}

.contact-inner__text::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    border-bottom: 10px solid;
    border-right: 10px solid;
    bottom: -25px;
    right: 80px;
    rotate: 45deg;
    border-color: var(--sab-color);
}

.contact-inner__text::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border: 19px solid transparent;
    border-top: 20px solid var(--background-color);
    bottom: -39px;
    right: 79px;
}

.contact-inner:nth-child(2) {
    padding-right: 160px;
    margin-right: 160px;
    position: relative;
}

.contact-inner:nth-child(2)::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 140%;
    background: #5c95b85e;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.contact-inner__title {
    display: flex;
    align-items: center;
    font-size: var(--section-title);
    gap: 40px;
    padding-bottom: 80px;
}

.contact-inner__title img {
    width: 80px;
    height: 80px;
}

.contact-inner a {
    font-size: 4rem;
    color: var(--border-color);
}

.contact-inner {
    text-align: center;
}

.contact-inner:nth-child(3) a {
    border: 10px solid transparent;
    background: var(--sab-color);
    display: flex;
    width: 100%;
    height: auto;
    padding-inline: clamp(40px, 4.255vw, 80px);
    padding-block: 24px;
    border-radius: 100px;
    position: relative;
    transition: 0.3s ease;
    /* text-align: center; */
    align-items: center;
    gap: 40px;
}

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

.web p {
    color: #2c2c2c;
    font-size: 1.8rem;
    /* margin-right: 32px; */
    white-space: nowrap;
}

.contact-inner:nth-child(3) a:hover {
    background: var(--background-color);
    border: 10px solid var(--sab-color);
}

.contact-btn__arrow {
    position: relative;
    width: 50px;
    height: 3px;
    background: #2c2c2c;
    /* top: 51%; */
    /* right: 40px; */
    /* transform: translateY(-50%); */
    transition: 0.3s ease;
}

.contact-btn__arrow::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 3px solid;
    border-right: 3px solid;
    border-color: #2c2c2c;
    top: -3px;
    right: 0;
    transform: rotate(-45deg);
}

.contact-btn__arrow::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    border-bottom: 3px dashed;
    border-color: #2c2c2c;
    left: -21px;
    top: 0;
}

.contact-inner:nth-child(3) a:hover .contact-btn__arrow {
    transform: translateX(15px) translateY(-50%);
}

/*================
=================*/
@media (max-width: 1899px) {
    .contact-container {
        padding-inline: 40px;
    }

    .web p {
        margin-right: 0;
    }

    .contact-btn__arrow {
        position: relative;
        /* width: 30%; */
        display: inline-block;
        text-align: center;
        top: unset;
        right: unset;
        left: 0;
        transform: translateY(0);
    }

    .contact-inner:nth-child(3) a {
        display: flex;
        /* flex-direction: column; */
        gap: 40px;
        align-items: center;
    }

    .contact-inner__wrapper {
        flex-direction: column;
        padding-inline: 40px;
    }

    .contact-inner:nth-child(2) {
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 40px;
        margin-bottom: 40px;
        border-bottom: 3px solid;
        border-color: #5c95b847;
    }

    .contact-inner:nth-child(2)::before {
        display: none;
    }

    .contact-inner__title {
        padding-bottom: 40px;
        justify-content: center;
    }
}

/*================
=================*/
@media (max-width: 899px) {
    .contact-inner__title {
        flex-direction: column;
    }

    .contact-inner:nth-child(3) a {
        width: 40vw;
        margin-inline: auto;
    }

    .contact-inner__text {
        padding-inline: 40px;
    }

    .contact-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .contact-container {
        padding-inline: 20px;
    }

    .contact-inner__text {
        padding-inline: 20px;
        padding-block: 20px;
        border-width: 5px;
        font-size: 1.5rem;
    }

    .contact-inner:nth-child(3) a {
        width: 100%;
        padding-block: 8px;
    }

    .contact-inner__wrapper {
        padding-top: 120px;
        border-width: 5px;
    }

    .contact-inner__title img {
        width: 50px;
    }

    .contact-inner__title {
        gap: 0;
        font-size: 2rem;
        padding-bottom: 20px;
    }

    .contact-inner a {
        font-size: 2rem;
    }

    .contact-inner__text::before {
        bottom: -20px;
        border-width: 4px;
    }

    .contact-inner__text::after {
        bottom: -39px;
    }
}

/*------------------------
footer
----------------------------*/
.footer-container {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: clamp(80px, 8.511vw, 160px);
}

.footer-inner__wrapper {
    background: var(--background-color);
    border: 10px solid;
    border-color: var(--border-color);
    border-radius: 100px;
    text-align: center;
    padding-block: 80px;
    padding-inline: 80px;
}

.footer-inner__wrapper img {
    width: 200px;
}

.footer-inner__wrapper h1 {
    font-size: var(--title);
    margin-bottom: 16px;
}

.footer-inner__wrapper p {
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 80px;
    flex-wrap: wrap;
    row-gap: 40px;
}

.footer-nav__accordion {
    border: 5px solid;
    border-radius: 100px;
    border-color: var(--border-color);
    padding-inline: 24px;
    padding-block: 8px;
    white-space: nowrap;
}

.footer-nav__accordion span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.footer-nav__accordion[open] span {
    transform: rotate(-135deg);
}

.footer-nav__accordion summary {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.footer-nav__accordion[open] summary {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid;
    border-color: #5c95b84d;
}

.footer-nav__accordion a {
    margin-right: 24px;
}

.footer-nav__accordion a:nth-child(4) {
    margin-right: 0;
}

.footer-nav a {
    transition: 0.3s ease;
    border: 5px solid;
    border-radius: 100px;
    border-color: var(--border-color);
    padding-inline: 24px;
    padding-block: 8px;
    white-space: nowrap;
}

.footer-nav a:hover {
    opacity: 0.5;
}

.footer-nav__accordion a {
    border: none;
}

/*================
=================*/
@media (max-width: 1899px) {
    .footer-container {
        padding-inline: 40px;
    }
}

/*================
=================*/
@media (max-width: 899px) {
    .footer-inner__wrapper {
        padding-inline: 20px;
    }

    .footer-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/*================
=================*/
@media (max-width: 499px) {
    .footer-container {
        padding-inline: 20px;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-inner__wrapper {
        border-width: 5px;
    }

    .footer-nav a {
        border-width: 3px;
        display: block;
        text-align: left;
    }

    .footer-nav__accordion {
        border-width: 3px;
    }

    .footer-nav__accordion[open] {
        border-radius: 50px;
    }

    .footer-inner__wrapper h1 {
        font-size: 1.8rem;
    }
}