<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* movement fadeIn */

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.delay1 {
    animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.3s;
}

.delay3 {
    animation-delay: 0.4s;
}

.delay4 {
    animation-delay: 0.5s;
}

.delay5 {
    animation-delay: 0.6s;
}

.delay6 {
    animation-delay: 0.7s;
}

:root {
    --header-height: 0px;
    --tl-text-height: 0px;
    --noto-font: "Noto Sans JP", sans-serif;
}

body {
    color: #2f2f2f;
    background: #fafafa;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
a,
li,
p,
dt,
dd,
span,
input,
textarea {
    font-family: var(--noto-font);
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt" !important;
    -webkit-font-feature-settings: "palt" !important;
}

.sp-indent {
    display: none;
}

.pc-indent {
    display: block;
}

@media screen and (max-width: 1024px) {
    .sp-indent {
        display: block;
    }
    .pc-indent {
        display: none;
    }
}


/* Loading Block */

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../a-img/back.webp") no-repeat center / cover;
}

.loading-logo {
    width: 180px;
    height: auto;
    margin: auto;
}


/* Hide Loading Block */

.loaded {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 1024px) {
    #loading {
        height: 100svh;
    }
}

header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 25px 40px 25px 60px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

header .header-logo {
    display: block;
    width: 160px;
    height: auto;
    transition: all 0.3s ease;
}

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

#headerMenuBtn {
    display: none;
}

.header-area {
    width: calc(100% - 200px);
}

.header-menu {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: auto;
}

.header-menu li {
    font-size: 18px;
}

.header-menu li a {
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-menu .contact-btn a {
    display: block;
    padding: 14px 36px;
    border-radius: 5rem;
}

@media screen and (min-width: 1100px) {
    .header-area {
        display: flex;
        justify-content: end;
    }
    header .header-logo:hover {
        opacity: 0.7;
    }
    .header-menu li a:hover {
        opacity: 0.7;
    }
    .header-menu li a {
        color: #fff;
    }
    .header-menu {
        padding: 25px 40px;
        background: #f2b3c0;
        border-radius: 10px;
    }
}

@media screen and (max-width: 1100px) {
    header {
        height: auto;
        padding: 15px 20px 15px 10px;
        align-items: start;
    }
    header .header-logo {
        width: 100px;
        height: auto;
    }
    header .header-logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    #headerMenuBtn {
        margin-top: 10px;
        z-index: 9999;
        position: absolute;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 40px;
        padding: 5px;
        cursor: pointer;
        background-color: #f2b3c0;
        border-radius: 4px;
    }
    #headerMenuBtn span {
        position: absolute;
        display: block;
        width: 60%;
        height: 2px;
        background-color: #fff;
        border-radius: 5rem;
        transition: all 0.3s ease;
    }
    #headerMenuBtn span:nth-of-type(1) {
        top: 25%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #headerMenuBtn span:nth-of-type(2) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #headerMenuBtn span:nth-of-type(3) {
        bottom: 25%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    #headerMenuBtn.active span:nth-of-type(2n-1) {
        position: absolute;
        top: 50%;
        left: 50%;
    }
    #headerMenuBtn.active span:nth-of-type(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    #headerMenuBtn.active span:nth-of-type(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    #headerMenuBtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-area {
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        /* min-height: 100vh; */
        height: 100vh;
        padding: 60px 20px;
        transition: all 0.3s ease;
        background-image: radial-gradient(rgba(255, 255, 255, 0.3) 30%, transparent 36%);
        background-color: #f8f5ee;
        background-size: 8px 8px;
        background-position: 4px 4px, 5px 5px;
        background-repeat: repeat;
    }
    .header-area.active {
        pointer-events: auto;
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .header-area.active nav {
        max-width: 308px;
        width: 100%;
        height: auto;
        margin: auto;
    }
    .header-menu {
        position: relative;
        width: calc(100% - 40px);
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin: auto;
    }
    .header-menu:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 40px);
        height: calc(100% + 60px);
        border-radius: 8px;
        background-color: #f2b3c0;
    }
    .header-menu:after {
        content: 'MENU';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translate(-50%, 0);
        font-family: var(--noto-font);
        font-size: 15px;
        color: #f2b3c0;
        text-decoration: underline;
        font-weight: 700;
    }
    .header-menu li {
        font-size: 20px;
        line-height: 140%;
        letter-spacing: 0.01rem;
        padding-bottom: 25px;
        position: relative;
        color: #fff;
    }
    .header-menu li::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        border-radius: 5rem;
    }
    .header-menu li::before {
        width: 40px;
        background-color: #fff;
        opacity: .5;
    }
}

.contact-banner {
    z-index: 999;
    position: fixed;
    right: 0;
    bottom: 60px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px 0 0 15px;
    transition: all .3s ease;
}

.contact-banner.transparent {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cb-container {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.cb-container div {
    position: relative;
}

.cb-container div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all .3s ease;
}

.cb-container .cd-line::before {
    content: '';
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    height: 1px;
    background-color: #2f2f2f;
}

.cb-container .cd-line img {
    width: 38px;
    height: auto;
    object-fit: contain;
}

.cb-container .cd-tel img {
    width: 34px;
    height: auto;
    object-fit: contain;
}

.cb-container .cd-app img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.cb-container .cd-line p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    color: #4CC764;
    text-align: center;
}

.cb-container .cd-tel p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    text-align: center;
}

.cb-container .cd-app p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    text-align: center;
}

@media screen and (min-width: 1024px) {
    .cb-container div a:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    .contact-banner {
        z-index: 999;
        position: fixed;
        right: 0;
        bottom: 60px;
        padding: 12px;
        background-color: #fff;
        border-radius: 15px 0 0 15px;
    }
    .cb-container {
        display: flex;
        flex-direction: column;
        gap: 44px;
    }
    .cb-container div {
        position: relative;
    }
    .cb-container div a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .cb-container .cd-line::before {
        content: '';
        position: absolute;
        bottom: -22px;
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        height: 1px;
        background-color: #2f2f2f;
    }
    .cb-container .cd-line img {
        width: 38px;
        height: auto;
        object-fit: contain;
    }
    .cb-container .cd-tel img {
        width: 34px;
        height: auto;
        object-fit: contain;
    }
    .cb-container .cd-line p {
        display: block;
        font-size: 16px;
        line-height: 120%;
    }
    .cb-container .cd-line p span {
        display: none;
    }
    .cb-container .cd-tel p {
        font-size: 14px;
        display: block;
    }
    .cb-container .cd-app p {
        display: block;
        font-size: 16px;
        line-height: 120%;
    }
}


/* mv */

#mv {
    width: 100%;
    height: 100vh;
}

.mv-container {
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: end;
}

.mv-container .mv-main {
    max-width: 1030px;
    width: 62%;
    height: auto;
    aspect-ratio: 9 / 7;
    object-fit: cover;
    border: 3px solid #f2b3c0;
    border-radius: 0px 30px 30px 0px;
}

.mv-container h1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 48px;
    margin-left: 40px;
}

.mv-container h1 .back-texture {
    font-size: 23.78px;
    font-weight: 700;
    line-height: 34.44px;
    padding: 14px 21px;
    color: #fff;
    border-radius: 5px;
    &amp;:nth-of-type(1) {
        background-color: #f2b3c0;
    }
    &amp;:nth-of-type(2) {
        background-color: #73c3e7;
    }
    &amp;:nth-of-type(3) {
        background-color: #90e462;
    }
}

.mv-container h1 .font-size {
    display: inline-block;
    margin-left: 15px;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1;
}

.mv-img-area {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 27%;
    height: fit-content;
    aspect-ratio: 4 / 5.5;
}

.mv-img-area .mv-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 30px;
    border: 3px solid #f2b3c0;
}

.mv-img-area .mv-icon {
    position: absolute;
    bottom: 100px;
    left: -150px;
    width: 200px;
}

@media screen and (max-width: 1024px) {
    #mv {
        width: 100%;
        height: auto;
    }
    .mv-container {
        height: auto;
        flex-direction: column-reverse;
        align-items: start;
        justify-content: end;
    }
    .mv-container .mv-main {
        width: 90%;
        aspect-ratio: 16 / 11;
        border-radius: 0 10px 10px 0;
    }
    .mv-container h1 {
        position: relative;
        z-index: 1;
        gap: 7px;
        margin-top: 30px;
        margin-bottom: 25px;
        margin-left: 20px;
    }
    .mv-container h1 .back-texture {
        font-size: 18px;
        line-height: 22px;
        padding: 7px 10px;
        width: fit-content;
    }
    .mv-container h1 .font-size {
        margin-left: 5px;
        font-size: 38px;
        line-height: 1;
    }
    .mv-img-area {
        position: relative;
        margin-left: auto;
        z-index: 0;
        top: auto;
        right: auto;
        width: 70%;
        height: auto;
        aspect-ratio: auto;
        margin-top: var(--header-height);
    }
    .mv-img-area .mv-sub {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 30px 0 0 30px;
    }
    .mv-img-area .mv-icon {
        position: absolute;
        bottom: -80px;
        left: auto;
        right: 20px;
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .mv-container .mv-main {
        aspect-ratio: 16 / 19;
    }
    .mv-container h1 {
        margin-top: calc((var(--header-height)) + 20px);
    }
    .mv-img-area {
        display: none;
    }
    .mv-img-area .mv-icon {
        bottom: -100px;
        left: auto;
        right: 20px;
        width: 100px;
    }
}

#top-about {
    width: 100%;
    height: auto;
    padding: 250px 40px 120px 40px;
    overflow: hidden;
}

.top-about-container {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin: auto;
}

.top-about-images {
    z-index: 3;
    position: relative;
    width: 44%;
    aspect-ratio: 1 / 1;
}

.top-about-images img {
    position: absolute;
    object-fit: cover;
    border-radius: 20px;
}

.top-about-images img:nth-of-type(1) {
    top: -35%;
    left: 0;
    width: 58%;
    aspect-ratio: 5 / 5.5;
}

.top-about-images img:nth-of-type(2) {
    top: -2%;
    right: -5%;
    width: 36%;
    aspect-ratio: 2.3 / 2.4;
}

.top-about-images img:nth-of-type(3) {
    bottom: 16%;
    left: 10%;
    width: 36%;
    aspect-ratio: 2.3 / 2.4;
}

.top-about-images img:nth-of-type(4) {
    right: -5%;
    bottom: -5%;
    width: 47%;
    aspect-ratio: 3 / 4;
}

.top-about-textarea {
    width: 56%;
    padding: 65px 0 60px 10%;
    background-color: #fff;
    border-radius: 30px 0 0 30px;
    position: relative;
}

.top-about-textarea::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-color: #fff;
    border-radius: 50px;
}

.top-about-textarea .texture {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-10%, -90%);
    width: 120%;
    height: auto;
    opacity: .4;
}

.top-about-textarea .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    width: 250px;
    height: 38px;
    color: #fff;
    background-color: #f2b3c0;
    border-radius: 5rem;
}

.top-about-textarea h3 {
    font-size: 36px;
    line-height: 1.8;
    font-weight: 500;
    margin-top: 20px;
}

.top-about-textarea p {
    font-size: 16px;
    font-weight: 400;
    line-height: 42px;
    margin-top: 30px;
}

@media screen and (max-width: 1024px) {
    #top-about {
        padding: 120px 40px 120px 40px;
    }
    .top-about-container {
        position: relative;
        max-width: 100%;
        flex-direction: column;
        align-items: start;
        padding: 25px;
        background-color: #fff;
        border-radius: 15px;
    }
    .top-about-images {
        order: 1;
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        margin: 30px 0;
    }
    .top-about-images img {
        position: absolute;
        object-fit: cover;
        border-radius: 20px;
    }
    .top-about-images img:nth-of-type(1) {
        top: 0;
        left: -1%;
        width: 62%;
        aspect-ratio: 1.8 / 1.2;
    }
    .top-about-images img:nth-of-type(2) {
        top: 5%;
        right: 3%;
        width: 30%;
        aspect-ratio: 1 / 1;
    }
    .top-about-images img:nth-of-type(3) {
        bottom: 0;
        left: 3%;
        width: 33%;
        aspect-ratio: 1 / 1.2;
    }
    .top-about-images img:nth-of-type(4) {
        right: -5%;
        bottom: 15%;
        width: 62%;
        aspect-ratio: 1.8 / 1;
    }
    .top-about-textarea {
        display: contents;
    }
    .top-about-textarea::before {
        display: none;
    }
    .top-about-textarea .texture {
        position: absolute;
        left: auto;
        right: 0;
        top: 0;
        transform: translate(0, -50%);
        min-width: 300px;
        width: 60%;
    }
    .top-about-textarea .heading {
        order: -1;
        margin: 0;
    }
    .top-about-textarea p {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    #top-about {
        padding: 60px 20px;
    }
    .top-about-textarea .textarea {
        left: auto;
        right: 0;
        top: 0;
        transform: translate(0, -50%);
    }
    .top-about-textarea h3 {
        font-size: 26px;
        line-height: 36px;
        margin-top: 10px;
    }
    .top-about-textarea .heading {
        font-size: 13px;
        width: 125px;
        height: 25px;
    }
    .top-about-textarea p {
        font-size: 15;
        line-height: 32px;
        margin-top: 25px;
    }
}


/* strength */

#strength {
    width: 100%;
    height: auto;
    padding: 0 40px 0 40px;
    overflow: hidden;
}

.strength-container {
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 120px 0 120px 0;
    position: relative;
}

.strength-container::before {
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #F8F5EE;
}

.strength-container h2 {
    text-align: center;
    font-size: 32px;
    line-height: 140%;
}

.strength-container h2 span {
    display: inline-block;
    font-size: 49px;
    line-height: 140%;
    color: #FF6B00;
    margin: 3px 0;
}

.strength-list {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 26px;
}

.strength-item {
    width: 31%;
    height: auto;
    padding: 12px 14px 25px 14px;
    background-color: #fff;
    border-radius: 15px;
}

.strength-item h3 {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.03rem;
    width: 100%;
    height: auto;
    color: #fff;
    padding: 14px 20px 15px 20px;
    border-radius: 8px;
}

.strength-item.--01 h3 {
    background-color: #f2b3c0;
}

.strength-item.--02 h3 {
    background-color: #73c3e7;
}

.strength-item.--03 h3 {
    background-color: #90e462;
}

.strength-item img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.strength-item h4 {
    z-index: 2;
    position: relative;
    text-align: center;
    font-size: 22px;
    line-height: 144%;
    letter-spacing: 0.03rem;
    margin-top: 15px;
}

.strength-item h4 span {
    position: relative;
    display: inline-block;
}

.strength-item h4 span::before {
    z-index: -1;
    content: '';
    width: 102%;
    height: 8px;
    border-radius: 2px;
    background-color: #FFD600;
    opacity: .5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.strength-item p {
    font-size: 15px;
    line-height: 160%;
    margin-top: 17px;
}

.data-container {
    position: relative;
    width: 100%;
    height: auto;
    padding: 125px 40px 80px 40px;
}

.data-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 70px solid #F8F5EE;
    border-right: 100vw solid transparent;
    border-bottom: 70px solid transparent;
    border-left: 100vw solid transparent;
}

.data-content {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 695px;
    width: 100%;
    margin: auto;
}

.data-content h3 {
    font-size: 45px;
    line-height: 140%;
}

.data-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: auto;
    width: 100%;
}

.data-area img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.data-area .textarea {
    text-align: center;
    width: calc(100% - 125px);
    height: auto;
}

.data-area .textarea .data-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.03rem;
    width: 100%;
    height: 39px;
    border-radius: 9px;
    background-color: #FF6B00;
}

.data-area .textarea .data-strength1 {
    font-size: 62px;
    line-height: 140%;
    color: #FF6B00;
}

.data-area .textarea .data-strength1 span {
    font-size: 89px;
    line-height: 100%;
}

.man,
.woman {
    position: absolute;
    top: 0;
    width: 146px;
    height: auto;
    object-fit: contain;
}

.man {
    left: -9px;
    transform: translateX(-100%);
}

.woman {
    right: 0;
    transform: translateX(100%);
}

@media screen and (max-width: 1024px) {
    #strength {
        padding: 0 20px;
    }
    .strength-container {
        max-width: 335px;
        padding: 60px 0 37px 0;
    }
    .strength-container h2 {
        text-align: center;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0.01rem;
    }
    .strength-container h2 span {
        display: inline-block;
        font-size: 27px;
        line-height: 120%;
        margin: 5px 0;
    }
    .strength-container h2 .plus-icon {
        width: 28px;
        height: 28px;
        display: block;
        transform: translateY(0);
        margin: 0 auto;
    }
    .strength-container h2 .plus-icon::before {
        height: 3px;
    }
    .strength-container h2 .plus-icon::after {
        width: 3px;
    }
    .strength-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    .strength-item {
        width: 100%;
        padding: 10px 10px 26px 10px;
    }
    .strength-item h3 {
        font-size: 18px;
        padding: 15px;
    }
    .strength-item img {
        margin-top: 20px;
    }
    .strength-item h4 {
        font-size: 20px;
        margin-top: 20px;
    }
    .strength-item h4 span::before {
        height: 6px;
    }
    .strength-item p {
        max-width: 285px;
        width: 100%;
        height: auto;
        margin: auto;
        font-size: 14px;
        margin-top: 12px;
    }
    .data-container {
        position: relative;
        max-width: 375px;
        width: 100%;
        margin: auto;
        height: auto;
        padding: 55px 0 47px 0;
    }
    .data-container::before {
        border-top: 25px solid #F8F5EE;
        border-right: 100vw solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 100vw solid transparent;
    }
    .data-content h3 {
        font-size: 24px;
        line-height: 120%;
        letter-spacing: 0.03rem;
        margin-top: 18px;
    }
    .data-area {
        gap: 5px;
    }
    .data-area img {
        width: 29px;
    }
    .data-area .textarea {
        width: calc(100% - 68px);
    }
    .data-area .textarea .data-heading {
        font-size: 11px;
        line-height: 140%;
        height: 19px;
        border-radius: 4px;
    }
    .data-area .textarea .data-strength1 {
        font-size: 30px;
    }
    .data-area .textarea .data-strength1 span {
        font-size: 43px;
    }
    .man,
    .woman {
        top: auto;
        bottom: -17px;
        width: 50px;
    }
    .man {
        left: 0;
        transform: translateX(0);
    }
    .woman {
        right: 0;
        transform: translateX(0);
    }
}


/* top-service */

#top-service {
    width: 100%;
    height: auto;
    padding: 120px 40px;
}

.ts-container {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
}

.top-heading {
    width: 100%;
    height: auto;
    text-align: center;
}

.top-heading p {
    margin-top: 27px;
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 26.06px;
    color: #f2b3c0;
}

.top-heading h2 {
    margin-top: 7px;
    font-size: 39px;
    font-weight: 700;
    line-height: 56.47px;
}

.ts-area {
    margin-top: 60px;
    padding-bottom: 20px;
    padding-right: max(calc(50vw - 600px), 40px);
    padding-left: max(calc(50vw - 600px), 40px);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
    height: auto;
    overflow: scroll;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

.ts-area li {
    min-width: 260px;
    width: 24.5%;
    height: auto;
    border-radius: 10px;
    padding: 15px 20px;
    border: 3px solid #f2b3c0
}

.ts-area li:nth-child(2n+1) {
    background-color: #f2b3c0;
    color: #fff;
}

.ts-area li:nth-child(2n) {
    background-color: #fff;
    color: #f2b3c0;
}

.ts-area li h3 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 43.44px;
}

.ts-area li img {
    margin-top: 25px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.ts-area li p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.ts-area li a {
    position: relative;
    margin: 20px auto 0 auto;
    max-width: 288px;
    width: 100%;
    height: auto;
    padding: 12px 20px 13px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 26.06px;
    text-align: center;
    border-radius: 5rem;
    transition: all .3s ease;
}

.ts-area li:nth-child(2n+1) a {
    border: 1px solid #FFFFFF;
}

.ts-area li:nth-child(2n) a {
    border: 1px solid #f2b3c0;
}

.ts-area li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-radius: .3px;
}

.ts-area li:nth-child(2n+1) a::before {
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
}

.ts-area li:nth-child(2n) a::before {
    border-top: 1.5px solid #f2b3c0;
    border-right: 1.5px solid #f2b3c0;
}

@media screen and (min-width: 1024px) {
    .ts-area li:nth-child(2n+1) a:hover {
        background-color: #fff;
        color: #f2b3c0;
    }
    .ts-area li:nth-child(2n) a:hover {
        background-color: #f2b3c0;
        color: #fff;
    }
    .ts-area li:nth-child(2n+1) a:hover::before {
        border-top: 1.5px solid #f2b3c0;
        border-right: 1.5px solid #f2b3c0;
    }
    .ts-area li:nth-child(2n) a:hover::before {
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
    }
}

@media screen and (max-width: 768px) {
    #top-service {
        padding: 60px 20px;
    }
    .top-heading svg {
        width: 40px;
    }
    .top-heading p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 100%;
    }
    .top-heading h2 {
        margin-top: 7px;
        font-size: 26px;
        line-height: 180%;
    }
    .ts-area {
        margin-top: 40px;
        padding-right: max(calc(50vw - 600px), 20px);
        margin-right: calc(((100vw - 100%) / 2) * -1);
        padding-left: max(calc(50vw - 600px), 20px);
        margin-left: calc(((100vw - 100%) / 2) * -1);
        gap: 20px;
    }
    .ts-area li {
        min-width: 280px;
        border-radius: 15px;
        padding: 10px;
    }
    .ts-area li h3 {
        font-size: 22px;
        line-height: 160%;
    }
    .ts-area li img {
        margin-top: 25px;
        border-radius: 5px;
    }
    .ts-area li p {
        font-size: 15px;
        font-weight: 500;
        line-height: 180%;
    }
    .ts-area li a {
        margin: 25px auto 0 auto;
        max-width: 288px;
        width: 100%;
        height: auto;
        padding: 10px 20px 9px 20px;
        font-size: 16px;
        line-height: 100%;
    }
}

@media screen and (max-width: 370px) {
    .ts-area li {
        min-width: 90%;
    }
}


/* top-event */

#top-event {
    width: 100%;
    height: auto;
    padding: 120px 40px;
}

.te-container {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
}

.wite-txt {
    margin-top: 60px;
    text-align: center;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    #top-event {
        padding: 30px 20px 90px 20px;
    }
    .top-heading svg {
        width: 40px;
    }
    .top-heading p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 100%;
    }
    .top-heading h2 {
        margin-top: 7px;
        font-size: 26px;
        line-height: 180%;
    }
}


/* gallery */

.img-gallery {
    background: url("../a-img/border.png") repeat-x top left, url("../a-img/border.png") repeat-x bottom left;
    background-size: 50px 16px;
    padding: 50px 0;
    margin: 0 0 100px 0;
}

.img-gallery img {
    border-radius: 10px;
}

.top-swiper,
.top-swiper-reverse {
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.top-swiper .swiper-wrapper,
.top-swiper-reverse .swiper-wrapper {
    transition-timing-function: linear;
}

.top-swiper .swiper-slide,
.top-swiper-reverse .swiper-slide {
    aspect-ratio: 16 / 9;
    height: auto;
    padding: 0 10px;
}

.top-swiper .swiper-slide img,
.top-swiper-reverse .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 756px) {
    .img-gallery {
        margin: 0;
    }
    .top-swiper .swiper-slide,
    .top-swiper-reverse .swiper-slide {
        padding: 0 3px;
    }
}


/* access */

#access {
    width: 100%;
    height: auto;
    padding: 60px 40px;
}

.access-container {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
}

.access-area {
    margin-top: 75px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
}

.access-detail {
    width: 48%;
    height: auto;
}

.access-detail .ad-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-detail .ad-heading p {
    display: inline-block;
    padding: 4px 20px 4px 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26.06px;
    color: #fff;
    background-color: #f2b3c0;
    border-radius: 5rem;
    width: fit-content;
}

.access-detail .ad-heading h3 {
    font-size: 33px;
    font-weight: 700;
    line-height: 47.78px;
}

.ad-list {
    margin-top: 25px;
}

.ad-list div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 80px;
    padding-bottom: 7px;
    border-bottom: 1px solid #000000;
    margin-top: 7px;
}

.ad-list div dt {
    width: 100px;
    height: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 41.4px;
}

.ad-list div dd {
    width: auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
}

.access-area iframe {
    width: 47%;
}

@media screen and (max-width: 1024px) {
    .access-container {
        max-width: 700px;
    }
    .access-area {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .access-detail {
        width: 100%;
    }
    .access-area iframe {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #access {
        padding: 60px 20px;
    }
    .access-container {
        max-width: 700px;
    }
    .access-area {
        margin-top: 30px;
        gap: 25px;
    }
    .access-detail .ad-heading {
        gap: 6px;
    }
    .access-detail .ad-heading p {
        padding: 3px 15px;
        font-size: 14px;
        line-height: 180%;
    }
    .access-detail .ad-heading h3 {
        font-size: 26px;
        line-height: 180%;
    }
    .ad-list {
        margin-top: 15px;
    }
    .ad-list div {
        gap: 10px;
        padding-bottom: 7px;
        margin-top: 7px;
    }
    .ad-list div dt {
        font-size: 15px;
        line-height: 180%;
        width: 90px;
    }
    .ad-list div dd {
        width: calc(100% - 100px);
        font-size: 15px;
        line-height: 180%;
    }
    .access-area iframe {
        height: auto;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover;
    }
}


/* salon */

#salon {
    width: 100%;
    height: auto;
    padding: 60px 40px;
}

.salon-container {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.salon-container img {
    width: 51.4%;
    height: auto;
    aspect-ratio: 6 / 3.4;
    object-fit: cover;
    border-radius: 20px;
}

.salon-textarea {
    width: 37.5%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.salon-textarea h2 {
    font-size: 33px;
    font-weight: 700;
    line-height: 47.78px;
}

.salon-textarea p {
    font-size: 16px;
    font-weight: 700;
    line-height: 33.6px;
}

@media screen and (max-width: 1024px) {
    .salon-container {
        max-width: 700px;
        flex-direction: column;
        gap: 30px;
    }
    .salon-container img {
        width: 100%;
    }
    .salon-textarea {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #salon {
        padding: 0 20px 60px 20px;
    }
    .salon-container {
        max-width: 700px;
        gap: 20px;
    }
    .salon-container img {
        border-radius: 15px;
    }
    .salon-textarea {
        gap: 7px;
    }
    .salon-textarea h2 {
        font-size: 26px;
        line-height: 180%;
    }
    .salon-textarea p {
        font-size: 15px;
        font-weight: 500;
        line-height: 180%;
    }
}

.salon-textarea a {
    position: relative;
    margin: 30px auto 0 0;
    max-width: 288px;
    width: 100%;
    height: auto;
    padding: 12px 20px 13px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 26.06px;
    text-align: center;
    border-radius: 5rem;
    transition: all .3s ease;
    border: 1px solid #f2b3c0;
    color: #f2b3c0;
}

.salon-textarea a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-radius: .3px;
    border-top: 1.5px solid #f2b3c0;
    border-right: 1.5px solid #f2b3c0;
}

@media screen and (min-width: 1024px) {
    .salon-textarea a:hover {
        background-color: #f2b3c0;
        color: #fff;
    }
    .salon-textarea a:hover::before {
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
    }
}

@media screen and (max-width: 768px) {
    .salon-textarea li a {
        margin: 25px auto 0 auto;
        max-width: 288px;
        width: 100%;
        height: auto;
        padding: 10px 20px 9px 20px;
        font-size: 16px;
        line-height: 100%;
    }
}


/* /* footer */

#footer {
    padding: 90px 40px;
    background: url("../a-img/back.webp") no-repeat center / cover;
    color: #212121;
}

#footer a {
    color: #212121;
}

.footer-area {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.school-info {
    width: 30%;
}

.school-info span {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.5;
}

.school-info dt.footer-title,
.school-info li:first-of-type {
    margin: 0 0 10px 0;
}

.school-info li dt {
    margin: 0 10px 0 0;
}

.school-info li dt,
.school-info li dd {
    display: inline-block;
}

.footer-sitemap {
    width: 65%;
}

.footer-sitemap ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 50px 0;
    font-size: 0.9rem;
}

.footer-sitemap li {
    padding: 10px 20px;
}

.footer-sitemap li a {
    position: relative;
    padding: 0 10px;
}

.footer-sitemap li a:before {
    position: absolute;
    top: 40%;
    left: -10px;
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
    transform: rotate(45deg);
}

small {
    display: block;
    text-align: right;
}

@media screen and (max-width:1090px) {
    .footer-area {
        align-items: flex-start;
    }
    .school-info {
        width: 40%;
    }
    .footer-sitemap {
        width: 56%;
    }
}

@media screen and (max-width:940px) {
    small {
        text-align: center;
    }
    #page-top {
        position: relative;
        text-align: center;
        right: inherit;
        bottom: inherit;
        margin: 50px auto 30px auto;
        width: 80px;
        animation: none!important;
        transform: none!important;
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    .school-info,
    .footer-sitemap {
        width: 100%;
    }
    .school-info {
        text-align: center;
        margin: 0 0 70px 0;
        padding: 0 0 70px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }
    .school-info span {
        font-size: 1.3rem;
    }
}


/* contact */

#contact {
    position: relative;
    background: rgba(0, 0, 0, .9) url("../a-img/mv-main.JPG") no-repeat center;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
    &amp;::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
    }
}

#contact h2 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    position: relative;
    margin: 0 0 50px 0;
    text-align: center;
}

#contact p {
    font-size: 16px;
    position: relative;
    margin: 0 0 30px 0;
    text-align: center;
}

#contact .contact-detail br {
    display: none;
}

#contact h2::after {
    content: "";
    background: #fff;
    width: 15%;
    height: 2px;
    position: absolute;
    left: 40%;
    bottom: -20px;
}


/* ボタン共通設定 */

.btn06 {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    background: #ffec04;
    color: #333;
    padding: 10px;
    width: 230px;
    border-radius: 25px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btnarrow2::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 50%;
    right: 25px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg) translateY(-50%);
}


/*hoverした際のアニメーション*/

.btnarrow2:hover::after {
    animation: arrow .5s;
}

@keyframes arrow {
    50% {
        right: 20px;
    }
    100% {
        right: 25px;
    }
}

@media screen and (max-width:1090px) {
    #contact h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width:600px) {
    #contact .contact-detail h2 br {
        display: block;
    }
}

@media screen and (max-width:400px) {
    #contact .contact-detail h2 {
        font-size: 1.3rem;
    }
    #contact .contact-detail p br {
        display: block;
    }
}

#contact ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#contact ul li {
    padding: 0 20px 20px 0;
}</pre></body></html>