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

:root {
    --main-color: #076CB9;
    --second-color: #F2EA67;
    --bg-color: #EDF6FC;
    --text-color: #333;
}

/* a {
    color: var(--main-color);
  } */

/*--------------------------------
全体
---------------------------------*/
* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: top;
    height: auto;
    border: 0px;
}

li {
    list-style-type: none;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    font-size: 100%;
    line-height: inherit;
}

p {
    margin: 0px;
    padding: 0px;
}

* {
    margin: 0px;
    padding: 0px;
}

dl,
dt,
dd,
ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

label {
    font-weight: normal;
}

iframe {
    vertical-align: bottom;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
} */

/*--------------------------------
レイアウト
---------------------------------*/
.wrapper {
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.br-pc {
    display: block;
}

.br-pc_tab {
    display: block;
}
@media screen and (max-width: 575px) {
    .br-pc_tab {
        display: none;
    }
}

.br-tab {
    display: none;
}

@media screen and (max-width: 767px) {
    .br-tab {
        display: block;
    }
}

.br-sp {
    display: none;
}

@media screen and (max-width: 575px) {
    .br-sp {
        display: block;
    }
}

/*--------------------------------
共通
---------------------------------*/
/* 最大2000pxの時42px、最初575の時34px */
.title {
    font-size: calc(34px + 8 * (100vw - 575px) / 1425);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-style: normal;
    transform: rotate(0.05deg);
}
.title-deco {
    margin: 25px 0;
    height: 11px;
}
@media screen and (max-width: 575px) {
    .title-deco {
        margin: 15px 0;
        height: 11px;
    }
}
/*--------------------------------
固定ヘッダー
---------------------------------*/
.header {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #fff;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:80px;
    padding: 0 1%;

    max-width: 1170px;
    margin: 0 auto;
    /* align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px; */

}
.header__tel {
    height: 50px;
    display: flex;
    align-items: center;
}
.header__tel-sp{
    display: none;
}
.header__list {
    display: flex;
    gap: 10px;
}
.header__anchor {
    height: 50px;
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    transform: rotate(0.05deg);
    font-size: calc(15px + 3*(100vw - 575px) / 1425);
    background-color: #F8A52A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 100px;
    border-bottom: solid 6px#D78811;
    text-align: center;
    transition: .3s;
    letter-spacing: 0.03em;
}
.header__anchor:hover {
    background-color: #FFB850;
    border-bottom: solid 6px#FF9900;
}
.header__anchor:active {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    border-bottom: none;
}
.header__join {
    height: 50px;
    color: #fff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    transform: rotate(0.05deg);
    font-size: 15px;
    background-color: #E9626A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 100px;
    border-bottom: solid 6px #C0595D;
    text-align: center;
    transition: .3s;
    letter-spacing: 0.03em;
}
.header__join:hover {
    background-color: #FF7981;
    border-bottom: solid 6px #FF4A52;
}

.header__join:active {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    border-bottom: none;
}
@media screen and (max-width: 767px) {
    .header {
        display: none;
        justify-content: center;
        bottom: 0;
    }
    .header.move {
        display: block;
    } 
    .header__logo {
        display: none;
    }
    .header__inner {
        justify-content: center;
    }
    .header__list {
        display: flex;
        gap: 5px;
    }
    .header__tel-pc{
        display: none;
    }
    .header__tel-sp{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        border-radius: 100px;
        color: var(--main-color);
        font-size: 24px;
        background:#fff;
        border-radius: 50%;
        border: var(--main-color) solid 3px;
    }
}
/*--------------------------------
FV
---------------------------------*/
.fv {
    margin-top: 80px;
    width: 100%;
    display: flex;
    position: relative;
    height: 35vw;
    margin-bottom: 20px;
}

.fv__text-wrap {
    margin-top: 3%;
    z-index: 1;
    width: 70%;
}

.fv__title {
    width: 85%;
    margin-left: 3%;
}

.fv__copy {
    position: relative;
    margin-bottom: 5%;
}

.fv__img {
    width: 100%;
    margin-left: -30px;
}

.fv__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    border-radius: 0 0 0 30px;
}
@media screen and (max-width: 767px) {
    .fv {
        margin-top: 0;
    }
}
@media screen and (max-width: 575px) {
    .fv {
        height: auto;
        flex-direction: column;
    }
    .fv__title {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -10%;
        margin-bottom: -50px;
    }

    .fv__img {
        margin-left: auto;
        height: 50vw;
        margin-bottom: -20px;

    }

    .fv__img img {
        border-radius: 0;
    }

    .fv__text-wrap {
        width: 100%;
    }
}

.fv-trial {
    background-color: #0084B9;
    display: flex;
    align-items: center;
    padding: 2% 0;
}

.fv-trial__inner {
    max-width: 1170px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 15px;
}

.fv-trial__text-wrap {
    color: #fff;
    text-align: center;
}

.fv-trial__l {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.fv-trial__l::before,
.fv-trial__l::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 40px;
    background-color: #fff;
    z-index: 1;
}

.fv-trial__l::before {
    left: -20px;
    bottom: 10%;
    transform: rotate(-35deg);
}

.fv-trial__l::after {
    right: -10px;
    bottom: 10%;
    transform: rotate(35deg);
}

.fv-trial__s {
    font-weight: 400;
    font-size: 16px;
}

.fv-trial__btn {
    color: var(--main-color);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    transform: rotate(0.05deg);
    font-size: 16px;
    background-color: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 230px;
    border-radius: 200px;
    border-bottom: solid 6px#d9a900;
    transition: .3s;
}
.fv-trial__btn:hover{
    background-color: yellow;
}

.fv-trial__btn:active {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    /*下に動く*/
    border-bottom: none;
    /*線を消す*/
}

@media screen and (max-width: 767px) {
    .fv-trial {
        padding: 5% 0;
    }

    .fv-trial__inner {
        flex-direction: column;
    }

    .fv-trial__btn {
        width: 60%;
    }
}

@media screen and (max-width: 575px) {
    .fv-trial {
        padding: 5% 0 40px;
    }

    .fv-trial__l::before,
    .fv-trial__l::after {
        position: absolute;
        content: '';
        width: 2px;
        height: 60px;
        background-color: #fff;
        z-index: 1;
    }

    .fv-trial__l::before {
        left: -7%;
        bottom: 0;
    }

    .fv-trial__l::after {
        right: -5%;
        bottom: 0;
    }

    .fv-trial__btn {
        width: 100%;
    }
}

/*--------------------------------
ABOUT
---------------------------------*/
.about {
    position: relative;
}

.about__inner {
    padding-top: 10%;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
    position: relative;
}

.about__cloud01 {
    position: absolute;
    z-index: -1;
    bottom: 5%;
    left: -3%;
}

.about__cloud02 {
    position: absolute;
    z-index: -1;
    top: 16%;
    right: 0%;
}

.about__drone {
    position: absolute;
    top: 4%;
    left: -3%;
    width: 18%;
    z-index: 5;
}

.about__text-wrap {
    padding-left: 5%;
    min-width: 390px;
    padding-bottom: 30px;
}
.about__title {
    color: var(--main-color);
    font-size: calc(34px + 8 * (100vw - 575px) / 1425);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-style: normal;
    transform: rotate(0.05deg);
    position: relative;
    z-index: 1;
    line-height: 1;
}

.about__title::after {
    position: absolute;
    content: 'ABOUT';
    color: var(--second-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: calc(60px + 52*(100vw - 575px) / 1425);
    bottom: 40px;
    left: -46px;
    opacity: 0.7;
    z-index: -10;
    letter-spacing: 0.14em;
}

.title-deco {
    margin: 25px 0;
    height: 11px;
}

.about__text {
    line-height: 1.8;
    letter-spacing: 0.05em;

}

.title-deco img {
    display: inline-block;
}

.about__img {
    display: flex;
    align-items: end;
}


@media screen and (max-width: 767px) {
    .about__inner {
        padding-top: 10%;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }
    .about__text-wrap {
        padding-bottom: 15px;
    }
    .about__title::after {
        bottom: 70%;
        letter-spacing: 0.1em;
        left:-10px;
    }
    .about__img {
        justify-content: flex-end;
        width: 320px;
        margin-left: auto;

    }
    .about__cloud01 {
        bottom: 10%;
        width: 30%;
    }
    .about__cloud02 {
        width: 30%;
        top: 16%;
        right: -5%;
    }
    .about__drone {
        position: absolute;
        top: 10px;
        left: -3%;
        width: 150px;
    }
    
}
@media screen and (max-width: 575px) {
    .about__inner{
        padding-top: 20%;
    }
    .about__text-wrap {
        min-width: auto;
        padding-left: 0;
    }
}

@media screen and (max-width: 450px) {
    .about__inner {
        padding-top: 100px;
    }
}

/*--------------------------------
FEATURE
---------------------------------*/
.feature {
    background: var(--bg-color);
    padding: 10% 0;
}

.feature__title {
    color: var(--main-color);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.feature__title::after {
    position: absolute;
    content: 'FEATURE';
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    z-index: -1;
    font-size: calc(60px + 52*(100vw - 575px) / 1425);
    bottom: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    letter-spacing: 0.14em;
}

.feature__inner {
    max-width: 890px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.feature__list {
    display: grid;
    gap: 15px 30px;
    grid-template-columns: repeat(2, 1fr);
}

.feature__item {
    text-align: center;
}
@media screen and (max-width: 575px) {
    .feature {
        padding: 20% 0;
    }
    .feature__list {
        grid-template-columns: 1fr;
        justify-content: center;
    }
}

/*--------------------------------
TRIAL
---------------------------------*/
.trial {
    background: var(--bg-color);
    text-align: center;
    padding: 0 5%;
}

.trial__box {
    background: #fff;
    border: #2981C5 3px solid;
    text-align: center;
    max-width: 1170px;
    margin: 0 auto;
    align-items: center;
    padding: 5% 2%;
    border-radius: 20px;
}

.trial__title {
    margin-bottom: 50px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.trial__list {
    display: flex;
}

.trial__item {
    padding: 0 2%;
}

.trial__item:nth-child(2) {
    border-left: #2981C5 4px dotted;
    border-right: #2981C5 4px dotted;
}

.trial__img-pc{
display: block;
}

.trial__img-sp{
    display: none;
}

.trial__arrow {
    padding: 30px 0;
}

@media screen and (max-width: 575px) {
    .trial__box {
        padding: 8% 10%;
    }

    .trial__title {
        margin-bottom: 0;
        max-width: 100%;
    }

    .trial__list {
        flex-direction: column;
        max-width: 350px;
        margin: 0 auto;
    }

    .trial__item {
        padding: 10% 0;
    }

    .trial__item:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: #2981C5 5px dotted;
        border-bottom: #2981C5 5px dotted;
    }

    .trial__img-pc{
        display: none;
        }
        
        .trial__img-sp{
            display: block;
        } 
}

/*--------------------------------
CTA
---------------------------------*/
.cta {
    background: url(../img/cta-bg.jpg);
    background-position: 85% 52%;
    background-repeat: no-repeat;
    object-fit: cover;
    padding: 50px 0;
}

.cta__title {
    color: #fff;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.cta__inner {
    max-width: 890px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
}

.cta__btn {
    color: var(--main-color);
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-style: normal;
    transform: rotate(0.05deg);
    font-size: calc(15px + 3*(100vw - 575px) / 1425);
    background-color: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 200px;
    border-bottom: solid 6px#d9a900;
    text-align: center;
    width: calc((100% / 2) - 10px);
    transition: .3s;
}

.cta__btn:hover{
    background-color: yellow;
}

.cta__btn:active {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    /*下に動く*/
    border-bottom: none;
    /*線を消す*/
}
.cta__btn i {
    font-size: 1.5em;
    padding-right: 5px;
}

.cta__s {
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    display: block;
}

.cta__btn-text {
    color: var(--main-color);
}
.cta__btn-text a {
    color: var(--main-color);
    display: block;
}
@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
    }
@media screen and (max-width: 575px) {
    .cta__title{
        line-height: 1.3;
    }
    .cta__inner {
        flex-direction: column;
        gap: 15px;
        max-width: 500px;
    }

    .cta__btn {
        width: 100%;
        height: 40px;

    }
}

/*--------------------------------
CURRICULUM
---------------------------------*/
.curriculum {
    background: var(--bg-color);
    padding: 10% 0 15%;
}

.curriculum__box {
    background: #fff;
    border: #2981C5 3px solid;
    max-width: 1170px;
    width: 80%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
    align-items: center;
    border-radius: 20px;
    padding: 5%;
    overflow: hidden;
}

.curriculum__title {
    color: var(--main-color);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
    margin-top: 8%;
}

.curriculum__title::after {
    position: absolute;
    content: 'CURRICULUM';
    color: var(--second-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: calc(45px + 52 * (100vw - 575px) / 1425);
    opacity: 0.7;
    z-index: -1;
    letter-spacing: 0.1em;
    bottom: 50px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.curriculum__price {
    background: #2981C5;
    width: 100%;
    color: #fff;
    font-size: calc(18px + 10 * (100vw - 575px) / 1425);
    border-radius: 50px;
    text-align: center;
    margin-bottom: 25px;
}

.curriculum__price-num {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--second-color);
    font-size: 1.429em;
    letter-spacing: 0.05em;
}

.curriculum__taxin {
    font-size: 0.7em;
}

.curriculum__overview {
    text-align: center;
    font-size: 20px;
    font-size: calc(17px + 3 * (100vw - 575px) / 1425);
    margin-bottom: 25px;
    font-weight: 600;
}

.curriculum__cont-box {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 4%;
    display: flex;
    justify-content: flex-start;
}

.curriculum__cont-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.curriculum__cont-title {
    font-size: 25px;
    line-height: 1;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.curriculum__time {
    font-size: 14px;
    margin-bottom: 18px;
}

.curriculum__time i {
    color: var(--main-color);
    margin-right: 5px;
}

.curriculum__cont-item {
    position: relative;
    /* リストアイコンの左端からテキストの距離 */
    padding-left: 1.5em;
    line-height: 1.4;
    margin-bottom: 5px;
}

.curriculum__cont-item::before {
    /* liをrelativeにするのを忘れない */
    position: absolute;
    font-family: "Font Awesome 6 Free";
    /* Solidの時はweightを900、Regularは400 */
    font-weight: 900;
    content: "\f0c8";
    /*アイコンの種類*/
    /*左端からのアイコンまでの距離*/
    left: 0;
    color: var(--main-color);
}

.curriculum__plus {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--main-color);
    font-size: 80px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .curriculum__price {
        line-height: 1.3;
        padding: 10px 0;
    }

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

    .curriculum__text-wrap {
        max-width: 450px;
    }

    .curriculum__cont-box {
        padding: 8%;
        display: block;
    }
}

.curriculum__summary {
    text-align-last: left;
}

.curriculum__summary-title {
    color: var(--main-color);
    font-weight: 700;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.curriculum__summary-title i {
    margin-right: 7px;
}

.curriculum__summary-item {
    font-size: calc(14px + 4 * (100vw - 575px) / 1425);
    color: var(--main-color);
    background: var(--second-color);
    display: inline-block;
    padding: 5px 25px;
    border-radius: 30px;
    font-weight: 700;
}

.curriculum__summary-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .curriculum__summary-title {
        font-size: 20px;
    }
}

/*--------------------------------
STAFF
---------------------------------*/
.staff {
    background: var(--bg-color);
    padding-bottom: 10%;
}

.staff__title {
    color: var(--main-color);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.staff__title::after {
    position: absolute;
    content: 'STAFF';
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.14em;
    font-size: calc(60px + 52*(100vw - 575px) / 1425);
    bottom: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.staff__inner {
    max-width: 910px;
    width: 90%;
    margin: 0 auto;
}

.staff__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.staff__item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.staff__img {
    margin-bottom: 20px;
}

.staff__position {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}

.staff__name {
    font-size: 28px;
    color: var(--main-color);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.staff__comment {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

.staff__movie {
position: relative;
    text-align: center;
}

.staff__movie iframe {
    max-width: 600px;
    vertical-align: bottom;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 611px) {
    .staff__name {
        font-size: 24px;
    }

    .staff__comment {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*--------------------------------
FAQ
---------------------------------*/
.faq {
    padding: 10% 0 0;
}

.faq__title {
    color: var(--main-color);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.faq__title::after {
    position: absolute;
    content: 'FAQ';
    color: var(--second-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    opacity: 0.7;
    z-index: -1;
    letter-spacing: 0.14em;
    font-size: calc(60px + 52*(100vw - 575px) / 1425);
    bottom: 70%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.faq__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.faq__category {
    text-align: center;
    color: #2981C5;
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
    .faq {
        padding: 80px 0 0;
    }
}

/* FAQアコーディオン------------------ */

.accordion {
    max-inline-size: 40rem;
}

/* Chrome/Firefox/Edge */
summary {
	list-style: none;
}
/* Safari/Opera */
summary::-webkit-details-marker {
	display: none;
}

.faq__summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1em;
    align-items: center;
    padding-block: 10px;
    padding-inline: 40px;
    color: var(--text-color);
    cursor: pointer;
    background-color: var(--bg-color);
    border-radius: 50px;
}

.faq__summary .question {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.faq__summary .question span {
    font-family: "Poppins", sans-serif;
    margin-right: 20px;
    color: var(--main-color);
    font-weight: bold;
    font-size: 36px;
}


.faq__icon {
    position: relative;
    display: inline-block;
    inline-size: 1em;
}

.faq__icon::before,
.faq__icon::after {
    position: absolute;
    inset: 0;
    inline-size: 100%;
    block-size: 3px;
    margin: auto;
    content: "";
    background-color: var(--main-color);
}

.faq__icon::after {
    transition: opacity 0.3s;
    rotate: 90deg;
}

.faq__icon:where(.faq__acc[open] *)::after {
    opacity: 0;
}

.faq__acc {
    margin-top: 20px;
}

.faq__acc-a {
    padding: 24px;
    line-height: 1.5;
}

.faq__acc-a .answer {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-left: 3px;
}

.faq__acc-a .answer span {
    font-family: "Poppins", sans-serif;
    margin-right: 20px;
    color: var(--second-color);
    font-weight: bold;
    font-size: 36px;
}

@media screen and (max-width: 575px) {

    .faq__summary .question {
        font-size: 16px;

    }

    .faq__summary .question span {
        font-size: 28px;
    }

    .faq__acc-a .answer {
        font-size: 16px;

    }

    .faq__acc-a .answer span {

        font-size: 28px;
    }

}

/*--------------------------------
アクセス
---------------------------------*/

.access {
    padding: 10% 0 3%;
}

.access__title {
    color: var(--main-color);
    position: relative;
    z-index: 1;
    line-height: 1;
    text-align: center;
}

.access__inner {
    max-width: 890px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.access__list {
    padding: 60px 80px;
    border: #076CB9 solid 3px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.access__item-title {
    color: var(--main-color);
    font-size: 24px;
    padding-bottom: 5px;
    border-bottom: #076CB9 solid 3px;
    word-break: normal;
    font-weight: bold;
}

.fa-location-dot {
    margin-right: 10px;
}

.access__item-place {
    font-size: 20px;
    margin: 20px 0 10px;
}

.access__item .flex {
    display: flex;
}

.access__item .flex .access__img {
    width: 50%;
    margin-right: 20px;
}

.access__item .flex .access__text-box {
    width: 50%;
}

.access__item .flex .access__text-box .access__text-heading {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.access__item .flex .access__text-box .access__text-cont {

    margin-bottom: 20px;
}

.access__map-link {
    color: var(--text-color);
    font-size: 15px;
    margin-left: 5px;
}
.access__map-link:hover {
    /* color: #3CAFCE; */
    color: var(--main-color);
}

@media screen and (max-width: 768px) {
    .access__item .flex {
        flex-direction: column;
    }

    .access__item .flex .access__img {
        width: 100%;
        margin-right: 0px;
    }

    .access__item .flex .access__text-box {
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {

    .access {
        padding: 80px 0 1%;
    }
    

    .access__list {
        padding: 30px 40px;
    }
}

/*--------------------------------
フッター
---------------------------------*/
.footer {
    text-align: center;
    padding: 20px 0;
}

.footer__text {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transform: rotate(0.05deg);
}</pre></body></html>