@charset "utf-8";

html {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: min(max(20px, 4vw), max(20px, 2.1vw, 2.1vh));
    text-align: justify;
    /*******************************　06　其他　*/
    scroll-behavior: smooth;
    scroll-padding-top: 4.6rem;
}

@media screen and (max-width: 775px) {
    html {
        /***************************　06　其他　*/
        scroll-padding-top: 6.5rem;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    html {
        /***************************　06　其他　*/
        scroll-padding-top: 6.5rem;
    }
}

body {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: 100%;
    min-width: 300px;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* font-family: "Roboto", "Noto Serif JP", serif; */
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-style: normal;
    /*******************************　06　其他　*/
}

/***********************************　header.a01　*/
.a01 {
    /*******************************　01　配置　*/
    /* 自要素を固定 */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    /* 子要素を横並びして両端揃え */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*******************************　02　領域　*/
    width: 100%;
    height: fit-content;
    padding: 0.3rem 0 0.3rem 0;
    /*******************************　03　背景　*/
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(0.15rem);
    -webkit-backdrop-filter: blur(0.15rem);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 775px) {
    .a01 {
        /***************************　01　配置　*/
        flex-direction: column;
        /***************************　02　領域　*/
        /* 既定したpadding-bottomを0.05に */
        padding: 0.3rem 0 0.05rem 0;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a01 {
        /***************************　01　配置　*/
        flex-direction: column;
        /***************************　02　領域　*/
        /* 既定したpadding-bottomを0.05に */
        padding: 0.3rem 0 0.05rem 0;
    }
}

/***********************************　header.a01 > h1.b01 */
.a01 .b01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: fit-content;
    height: fit-content;
    margin: 0 0.5rem 0 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* 改行禁止 */
    white-space: nowrap;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 775px) {
    .a01 .b01 {
        /***************************　02　領域　*/
        margin: 0 0 0.2rem 0;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a01 .b01 {
        /***************************　02　領域　*/
        margin: 0 0 0.2rem 0;
    }
}

/***********************************　header.a01 > h1.b01 > a.c01 */
.a01 .b01 .c01 {
    /*******************************　01　配置　*/
    /* 子要素の2つを上下入れ替え */
    display: flex;
    flex-direction: column-reverse;
    /*******************************　02　領域　*/
    /* 文字数に合わせる。両端揃えの指定と連動 */
    width: 6.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* 文字数に合わせる　両端揃え */
    text-align-last: justify;
    /*******************************　06　其他　*/
}

/***********************************　header.a01 > h1.b01 > a.c01 > strong.d01 */
.a01 .b01 .c01 .d01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    margin: 0;
    /* 他の要素サイズとバランス調整 */
    width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    /*******************************　06　其他　*/
}

/***********************************　header.a01 > h1.b01 > a.c01 > em.d02 */
.a01 .b01 .c01 .d02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    /* 他の要素サイズとバランス調整 */
    width: 100%;
    padding: 0 0.1rem 0 0.1rem;
    margin: 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 0.7rem;
    font-weight: 500;
    /*******************************　06　其他　*/
}

/***********************************　header.a01 > nav.b02 */
.a01 .b02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    margin: 0;
    height: fit-content;
    /* 横スクロール */
    overflow: scroll;
    /* 横スクロールバー非表示　*/
    scrollbar-width: none;
    /* 横スクロールバー非表示 マイクロソフトのブラウザ　*/
    -ms-overflow-style: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a01 .b02::-webkit-scrollbar {
    /*******************************　02　領域　*/
    /* 横スクロールバー非表示 マイクロソフト以外のブラウザ　*/
    display: none;
}

@media screen and (max-width: 775px) {
    .a01 .b02 {
        /***************************　02　領域　*/
        /* borderとの距離を空ける */
        padding: 0.05rem 0;
        /* liのflex-grow: 1;を効かせるための幅指定 */
        width: 100%;
        /***************************　04　境界　*/
        border-top: 0.04rem solid #000;
        border-bottom: 0.04rem solid #000;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a01 .b02 {
        /***************************　02　領域　*/
        /* borderとの距離を空ける */
        padding: 0.05rem 0;
        /* liのflex-grow: 1;を効かせるための幅指定 */
        width: 100%;
        /***************************　04　境界　*/
        border-top: 0.04rem solid #000;
        border-bottom: 0.04rem solid #000;
    }
}

/***********************************　header.a01 > nav.b02 > ul */
.a01 .b02 ul {
    /*******************************　01　配置　*/
    /* 子要素を横並び、上下の中央配置 */
    display: flex;
    align-items: center;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　header.a01 > nav.b02 > ul > li */
.a01 .b02 ul li {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　 */
    flex-grow: 1;
    /* 他の要素サイズとバランス調整 */
    width: 100%;
    padding: 0;
    margin: 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    /* 改行禁止 */
    white-space: nowrap;
    /* 英語　大文字 */
    text-transform: uppercase;
    /*******************************　06　其他　*/
}

.a01 .b02 ul li::after {
    /*******************************　01　配置　*/
    content: "";
    /* 擬似要素を左右の右配置・上下の中央配置 */
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    width: 0.04rem;
    height: 70%;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a01 .b02 ul li:last-child::after {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: 0;
    height: 0;
    /*******************************　03　背景　*/
    background-color: unset;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　header.a01 > nav.b02 > ul > li > a */
.a01 .b02 ul li a {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    /* インラインをブロックに変換 */
    display: block;
    /* 他の要素サイズとバランス調整 */
    width: 100%;
    padding: 0 0.5rem 0 0.5rem;
    margin: 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: center;
    /*******************************　06　其他　*/
}

/***********************************　header.a01 > nav.b02 > ul > li > a > mark */
.a01 .b02 ul li a mark {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    /* インラインをブロックに変換して自要素を改行 */
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 400;
    font-size: 0.7rem;
    /* 自要素内の文字改行禁止 */
    white-space: nowrap;
    /*******************************　06　其他　*/
}

/***********************************　aside.bg（opening animation css + js） */
@keyframes bgAnime {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        pointer-events: none;
        z-index: -100;
    }
}

.bg {
    /*******************************　01　配置　*/
    position: fixed;
    z-index: 1000;
    inset: 0;

    /* 子要素を上下・左右の中央配置 */
    display: grid;
    align-content: center;
    justify-content: center;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/
    background: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    animation: bgAnime 0.3s linear 5.2s forwards;
}

/***********************************　aside.bg > h2.text */
@keyframes textAnime1 {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
        pointer-events: none;
        z-index: -100;
    }
}

/***********************************　aside.bg > h2.text　及び　p.text */
.bg .text {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: 11.25rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #000;
    text-align-last: justify;
    font-weight: 500;
    /*******************************　06　其他　*/
    animation: textAnime1 5s linear forwards;
}

/***********************************　aside.bg > h2.text　及び　p.text */
.bg .d01 {
    /*******************************　01　配置　*/
    order: 2;
    /*******************************　02　領域　*/
    padding: 0.3rem 0 0 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 1.5rem;
    /*******************************　06　其他　*/

}

.bg .d02 {
    /*******************************　01　配置　*/
    order: 1;
    /*******************************　02　領域　*/
    padding: 0 0.15rem 0 0.15rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 1.05rem;
    /*******************************　06　其他　*/
}


/* video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: auto;
    display: block;
    width: 100%;
    height: calc(100svh - 2.6rem);
    margin: 2.6rem 0 0 0;

    object-fit: cover;
    object-position: top right 20%;
    filter: grayscale(100%);
}

@media screen and (max-width: 775px) {
    video {
        margin: 4.5rem 0 0 0;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    video {
        margin: 4.5rem 0 0 0;
    }
} */

/***********************************　main.a02　*/
.a02 {
    /*******************************　01　配置　*/
    margin: 2.6rem 0 0;
    /*******************************　02　領域　*/
    width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 775px) {
    .a02 {
        /***************************　01　配置　*/
        margin: 4.5rem 0 0 0;
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 {
        /***************************　01　配置　*/
        margin: 4.5rem 0 0 0;
    }
}


/***********************************　main.a02 > section.b01　キーメッセージ　*/
.a02 .b01 {
    /*******************************　01　配置　*/
    margin: 0 0 30rem 0;
    /* 子要素の左右の中央配置 */
    display: grid;
    justify-content: center;
    align-content: center;

    position: relative;
    z-index: auto;
    /*******************************　02　領域　*/
    width: 100%;
    height: calc(100svh - 2.6rem);
    max-height: max(250vw, 800px);
    min-height: max(35vw, 320px);
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* 改行禁止 */
    white-space: nowrap;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 775px) {
    .a02 .b01 {
        /****************************　02　領域　*/
        height: calc(100svh - 4.5rem);
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 {
        /****************************　02　領域　*/
        height: calc(100svh - 4.5rem);
    }
}

/***********************************　main.a02 > section.b01 > h2.c01　*/
.a02 .b01 .c01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0em 0em 3rem 3rem rgba(255, 255, 255, 0.9);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: min(max(8cqw, 8cqh), 20cqw);
    line-height: 1.25;
    letter-spacing: min(max(1.5cqw, 1.5cqh), 3.75cqw);

    text-shadow: 0px 0px 0.5rem rgba(255, 255, 255, 1);

    /*******************************　06　其他　*/
}


@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 {
        /***************************　02　領域　*/
        padding-right: min(max(2cqw, 2cqh), 5cqw);
        line-height: 1.35;
        /***************************　05　文字　*/
        /* 文字の向き　縦　*/
        writing-mode: vertical-rl;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: vertical-rl;
    }
}

/***********************************　main.a02 > section.b01 > h2.c01 > strong.d01　*/
.a02 .b01 .c01 .d01 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 600;
    /*******************************　06　其他　*/
}

.a02 .b01 .c01 .d01::after {
    /*******************************　01　配置　*/
    /* content: "、"; */
    /* position: absolute; */
    /*******************************　02　領域　*/
    /* width: max(4cqw, 4cqh); */
    /* height: 100%; */
    /*******************************　05　文字　*/
    /* line-height: 1.5; */
}


@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 .d01::after {
        /***************************　02　領域　*/
        height: min(max(4cqw, 4cqh), 10cqw);
        width: 100%;
    }
}

/***********************************　main.a02 > section.b01 > h2.c01 > strong.d02　*/
.a02 .b01 .c01 .d02 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 600;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 775px) {
    .a02 .b01 .c01 .d02 {
        /***************************　02　領域　*/
        /* padding-top: min(max(4cqw, 4cqh), 10cqw); */
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 .d02 {
        /***************************　02　領域　*/
        padding-top: min(max(4cqw, 4cqh), 10cqw);
    }
}

.a02 .b01 .c01 .d02::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    /*******************************　05　文字　*/
    width: max(4cqw, 4cqh);
    height: 100%;
}

@media screen and (max-width: 775px) {
    .a02 .b01 .c01 .d02::after {
        /***************************　02　領域　*/
        /* height: min(max(4cqw, 4cqh), 10cqw); */
        /* width: 100%; */
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 .d02::after {
        /***************************　02　領域　*/
        height: min(max(4cqw, 4cqh), 10cqw);
        width: 100%;
    }
}

/***********************************　main.a02 > section.b01 > h2.c01 > em.d03　*/
.a02 .b01 .c01 .d03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 600;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 775px) {
    .a02 .b01 .c01 .d03 {
        /***************************　02　領域　*/
        /* padding-top: min(max(8cqw, 8cqh), 20cqw); */
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 .d03 {
        /***************************　02　領域　*/
        padding-top: min(max(8cqw, 8cqh), 20cqw);
    }
}

.a02 .b01 .c01 .d03::after {
    /*******************************　01　配置　*/
    content: "。";
    position: absolute;
    /*******************************　05　文字　*/
    width: max(4cqw, 4cqh);
    height: 100%;
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b01 .c01 .d03::after {
        /***************************　02　領域　*/
        height: min(max(4cqw, 4cqh), 10cqw);
        width: 100%;
    }
}


/***********************************　main.a02 > section.b02～section.b07 */
.a02 .b02,
.a02 .b03,
.a02 .b04,
.a02 .b05,
.a02 .b06 {
    /*******************************　01　配置　*/
    position: relative;
    z-index: auto;
    /*******************************　02　領域　*/
    margin: 0 0 30rem;
    padding: 5rem 0.5rem;
    width: 100%;
    /*******************************　03　背景　*/
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0em 0em 3rem 3rem rgba(255, 255, 255, 1);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02～section.b07 > h2 */
.a02 .b02 h2,
.a02 .b03 h2,
.a02 .b04 h2,
.a02 .b05 h2,
.a02 .b06 h2,
.a02 .b07 h2 {
    /*******************************　01　配置　*/
    position: relative;
    margin: 0 auto 1.5rem;
    /*******************************　02　領域　*/
    width: fit-content;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    font-size: 2.6rem;
    /* 英語　大文字 */
    text-transform: uppercase;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02～section.b07 > h2::beforeと::before 左の線 */
.a02 .b02 h2:before,
.a02 .b03 h2:before,
.a02 .b04 h2:before,
.a02 .b05 h2:before,
.a02 .b06 h2:before,
.a02 .b07 h2:before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    top: 1.4rem;
    left: -1.4rem;
    /*******************************　02　領域　*/
    /* 横の線の長さ＝四角形の横 */
    width: 1rem;
    /* 横の線の太さ＝四角形の縦 */
    height: 0.1rem;
    /*******************************　03　背景　*/
    /* 横の線の色＝四角形の背景色 */
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02～section.b07 > h2::beforeと::after 右の線 */
.a02 .b02 h2:after,
.a02 .b03 h2:after,
.a02 .b04 h2:after,
.a02 .b05 h2:after,
.a02 .b06 h2:after,
.a02 .b07 h2:after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    top: 1.4rem;
    right: -1.4rem;
    /*******************************　02　領域　*/
    /* 横の線の長さ＝四角形の横 */
    width: 1rem;
    /* 横の線の太さ＝四角形の縦 */
    height: 0.1rem;
    /*******************************　03　背景　*/
    /* 横の線の色＝四角形の背景色 */
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02～section.b07 > h2 > mark　*/
.a02 .b02 h2 mark,
.a02 .b03 h2 mark,
.a02 .b04 h2 mark,
.a02 .b05 h2 mark,
.a02 .b06 h2 mark,
.a02 .b07 h2 mark {
    /*******************************　01　配置　*/
    position: absolute;
    bottom: -0.8rem;
    right: 0;
    left: 0;
    /*******************************　02　領域　*/
    /* 自要素を改行効果 */
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 400;
    text-align: center;
    /* 親要素の指定を改定 */
    font-size: 1rem;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02（message ご挨拶）　*/
.a02 .b02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 2rem 1rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02 > p.c01　及び　p.c02*/
.a02 .b02 p {
    /*******************************　01　配置　*/
    margin: 0 auto;
    /*******************************　02　領域　*/
    width: max(610px, 80vw, 80vh);
    max-width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: max(16px, min(0.9rem, 5.5cqw));
    line-height: 2.5;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 650px) {
    .a02 .b02 p {
        /***************************　02　領域　*/
        width: 100%;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b02 p {
        /***************************　02　領域　*/
        max-width: 100%;
    }
}

/***********************************　main.a02 > section.b02 > div.hide-text 続きをみる */
.a02 .b02 .hide-text {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding-bottom: 3rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02 > button.readmore 続きをみる */
.a02 .b02 .readmore {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    display: block;
    width: 100%;
    height: 3rem;
    /*******************************　03　背景　*/
    background: #fff;
    /* ぼかし範囲 */
    box-shadow: 0 0 2rem 3rem rgba(255, 255, 255, 0.9);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    text-align: center;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    /* 英語　先頭を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
    cursor: pointer;
}

/***********************************　main.a02 > section.b02 > button.readmore:before 続きをみる */
.a02 .b02 .readmore:before {
    /*******************************　01　配置　*/
    content: "▲";
    /* 自要素を上下の上配置・左右の中央配置 */
    position: absolute;
    top: -1.5em;
    right: 0;
    left: 0;
    margin-inline: auto;
    /* 擬似要素（ここでは▲）を上下・左右の中央配置 */
    display: grid;
    justify-items: center;
    align-items: center;
    /*******************************　02　領域　*/
    width: 2rem;
    height: 2rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/
    border: 1px solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/
    /* 親要素の指定を解除 */
    letter-spacing: 0;
    /*******************************　06　其他　*/
    transition: 0.3s;
}

/***********************************　main.a02 > section.b02 > button.readmore.on-click:before 続きをみる */
.a02 .b02 .readmore.on-click:before {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/***********************************　main.a02 > section.b02 > button.readmore > span.open 続きをみる */
.a02 .b02 .readmore .open {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02 > button.readmore.on-click > span.open 続きをみる */
.a02 .b02 .readmore.on-click .open {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02 > button.readmore > span.close 続きをみる */
.a02 .b02 .readmore .close {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b02 > button.readmore.on-click > span.close 続きをみる */
.a02 .b02 .readmore.on-click .close {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03（terms 規約等） */

/***********************************　main.a02 > section.b03 > h2.c02 */

/***********************************　main.a02 > section.b03 */
.a02 .b03 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 2rem 1rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 */
.a02 .b03 .c02 {
    /*******************************　01　配置　*/
    margin: 0 auto 1rem;
    /*******************************　02　領域　*/
    width: max(610px, 70vw, 70vh);
    max-width: 100%;

    overflow: hidden;
    /*******************************　03　背景　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    text-align: justify;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

.a02 .b03 .c02:last-child {
    /*******************************　01　配置　*/
    margin: 0 auto 0;
}

@media screen and (max-width: 650px) {
    .a02 .b03 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b03 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b03 > details.c02 > summary.d01 */
.a02 .b03 .c02 .d01 {
    /*******************************　01　配置　*/
    position: relative;
    /* デフォルトの▲アイコンを非表示 display: block;の代替 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*******************************　02　領域　*/
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: min(1.1rem, 6cqw);
    font-weight: 400;
    /*******************************　06　其他　*/
    cursor: pointer;
    user-select: none;
}

.a02 .b03 .c02 .d01::-webkit-details-marker {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    /* デフォルトの▲アイコンを非表示 */
    display: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b03 .c02 .d01::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 1rem;
    height: 1rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transition: transform 0.3s;
}

/***********************************　main.a02 > section.b03 > details.c02.is-opened > summary.d01 */
.a02 .b03 .c02.is-opened .d01::after {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 */
.a02 .b03 .c02 .d02 {
    /*******************************　01　配置　*/

    /******************************　02　領域　*/
    padding: 1rem 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.01rem solid rgba(0, 0, 0, 0.8);
    /*******************************　05　文字　*/
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    /*******************************　06　其他　*/
    list-style-type: none;
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e01 */
.a02 .b03 .c02 .d02 .e01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    /*******************************　06　其他　*/

}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 */
.a02 .b03 .c02 .d02 .e02 {
    /*******************************　01　配置　*/
    margin-bottom: 2rem;
    /*******************************　02　領域　*/
    padding-left: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 300;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 */
.a02 .b03 .c02 .d02 .e02 .f01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/

}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 > ul.l01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 .l01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > li.e02 > ul.f01 > li.g01 > dl.h01とul.h01 > li.i01 > ul.j01 > li.k01 > ul.l01 > li.m01 */
.a02 .b03 .c02 .d02 .e02 .f01 .g01 .h01 .i01 .j01 .k01 .l01 .m01 {
    /*******************************　01　配置　*/
    margin-top: 0.5rem;
    margin-left: 0.85rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .increment */
.a02 .b03 .c02 .d02 .increment {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* カウンターをインクリメント */
    counter-increment: list-counter;
}

.a02 .b03 .c02 .d02 .increment::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.75;
    /*******************************　06　其他　*/
    /* カウンター番号を表示 */
    content: counter(list-counter) ")";
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .katakana-iroha */

.katakana-iroha {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: iroha-counter;
}

.katakana-iroha::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.65rem;
    line-height: 1.95;
    /*******************************　06　其他　*/
    /* カタカナイロハ形式で表示 */
    content: counter(iroha-counter, katakana-iroha);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal */
.decimal_01 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_01::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.65;
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal_02 */
.decimal_02 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_02::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.65;
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

.decimal_02:first-child::before {
    color: #fff;
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .decimal */
.decimal_03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    padding-left: 1em;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: section-counter;
}

.decimal_03::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: 0;
    /*******************************　02　領域　*/
    width: 1em;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 1em;
    /* line-height: 1.65; */
    /*******************************　06　其他　*/
    /* 算用数字を表示 */
    content: counter(section-counter);
}

/***********************************　main.a02 > section.b03 > details.c02 > ul.d02 > .cjk-ideographic */
.cjk-ideographic {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* デフォルトのリストスタイルを無効化 */
    list-style: none;
    /* カウンターをインクリメント */
    counter-increment: kanji-counter;
}

.cjk-ideographic::before {
    /*******************************　01　配置　*/
    /* 番号の位置を調整 */
    position: absolute;
    left: -0.85rem;
    /*******************************　02　領域　*/
    width: 0.85rem;
    height: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 600;
    font-size: 0.65rem;
    line-height: 1.95;
    /*******************************　06　其他　*/
    /* 漢数字を表示 */
    content: counter(kanji-counter, cjk-ideographic);
}

.disc {
    /*******************************　06　其他　*/
    list-style-type: disc;
}

.disclosure-closed {
    /*******************************　06　其他　*/
    list-style-type: disclosure-closed;
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl */
.a02 .b03 .c02 dl {
    /*******************************　01　配置　*/
    display: grid;
    grid-template-columns: 35% 65%;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl > dt */
.a02 .b03 .c02 dl dt {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.04rem solid #000;
    border-right: 0.04rem solid #000;
    border-left: 0.04rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b03 .c02 dl dt:first-of-type {
    /*******************************　05　文字　*/
    font-weight: 500;
    text-align: center;
}

.a02 .b03 .c02 dl dt:last-of-type {
    /*******************************　04　境界　*/
    border-bottom: 0.04rem solid #000;
}

/***********************************　main.a02 > section.b03 > details.c02 > > dl > dd */
.a02 .b03 .c02 dl dd {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.04rem solid #000;
    border-right: 0.04rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b03 .c02 dl dd:first-of-type {
    /*******************************　05　文字　*/
    font-weight: 500;
    text-align: center;
}

.a02 .b03 .c02 dl dd:last-of-type {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.04rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-modal-open {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
}

.js-modal {
    /*******************************　01　配置　*/
    z-index: 200;
    /* 自要素を上下・左右の中央配置 */
    position: fixed;
    inset: 0;
    /*******************************　02　領域　*/
    width: 100%;

    overflow: auto;
    /*******************************　03　背景　*/
    background: rgba(0, 0, 0, 0.7);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.js-modal.is-active {
    /*******************************　01　配置　*/
    z-index: 300;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    opacity: 1;
    visibility: visible;
}

.js-modal.is-active .js-modal-close {
    display: block;
    /* モーダルがアクティブになったときに表示 */
}

.js-modal-close {
    /*******************************　01　配置　*/
    /* 「.modal_content　z-index」よりも上に配置 */
    z-index: 500;
    /* ボタンの表示位置 */
    position: fixed;
    top: 1%;
    right: 1%;
    /*******************************　02　領域　*/
    width: 2.5rem;
    height: 2.5rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/
    border: 0.2rem solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
    /* 初期状態で非表示 */
    display: none;

}

.js-modal-close::before,
.js-modal-close::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    /*******************************　02　領域　*/
    width: 0.2rem;
    height: 80%;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-modal-close::before {
    /*******************************　01　配置　*/
    /* 角度調整 */
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-modal-close::after {
    /*******************************　01　配置　*/
    /* 角度調整 */
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.js-no-scroll {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    overflow: hidden;
    height: 100vh;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    touch-action: none;
}

/***********************************　main.a02 > section.b04（solution ご提供サービス）　*/
.a02 .b04 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 2rem 1rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 */
.a02 .b04 .c02 {
    /*******************************　01　配置　*/
    display: grid;
    /* 列 */
    grid-template-columns: repeat(auto-fit, minmax(13rem, 2fr));
    gap: 1rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 650px) {
    .a02 .b04 .c02 {
        /*******************************　01　配置　*/
        grid-template-columns: 1fr;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b04 .c02 {
        /*******************************　01　配置　*/
        grid-template-columns: 1fr;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dt.d01 */
.a02 .b04 .c02 .d01 {
    /*******************************　01　配置　*/
    /* グリッドアイテム　上下の両端配置 */
    display: grid;
    align-content: space-between;
    /*******************************　02　領域　*/
    /* 自要素（カード型レイアウト）の縦横比 */
    aspect-ratio: 5 / 2;
    /*******************************　03　背景　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: pointer;
    container-type: inline-size;
}

.a02 .b04 .c02 .d01:hover {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/
    opacity: 0.5;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transition: 0.3s;
}

/***********************************　main.a02 > section.b04 > dl.c01 > dt.d01 > p.e01 */
.a02 .b04 .c02 .d01 .e01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: 100%;
    padding: 1cqw 0 0 1cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 7cqw;
    font-weight: 500;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dt.d01 > p.e02 */
.a02 .b04 .c02 .d01 .e02 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    width: 100%;
    padding: 2.5cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 8cqw;
    font-weight: 500;
    letter-spacing: 0.2cqw;
    text-align: center;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d01 .e02::after {
    /*******************************　01　配置　*/
    content: "";
    /* 自要素を上下の下配置・左右の中央配置 */
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin-inline: auto;
    /*******************************　02　領域　*/
    width: 15%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.1rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dt.d01 > p.e03 */
.a02 .b04 .c02 .d01 .e03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    width: 100%;
    padding: 0 13cqw 0 0;
    height: 9.5cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    font-size: 6cqw;
    text-align: right;
    /* 英語　先頭を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d01 .e03::after {
    /*******************************　01　配置　*/
    content: "→";
    /* 自要素を上下の下配置・左右の右配置 */
    position: absolute;
    right: 2cqw;
    bottom: 1.3cqw;
    /* 擬似要素(ここでは→)を上下・左右の中央配置 */
    display: grid;
    align-content: center;
    justify-content: center;
    /*******************************　02　領域　*/
    width: 9cqw;
    height: 9cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.2cqw solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/
    font-size: 6cqw;
    font-weight: 900;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 */
.a02 .b04 .c02 .d02 {
    /*******************************　01　配置　*/
    /* z-index →　js-modalに指定*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > h3.e01 */
.a02 .b04 .c02 .d02 .e01 {
    /*******************************　01　配置　*/
    z-index: 500;
    margin: 5rem 0 0;
    position: sticky;
    top: 0;
    margin-inline: auto;
    /*******************************　02　領域　*/
    width: max(610px, 80vw);
    padding: 0.5rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b04 .c02 .d02 .e01 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 */
.a02 .b04 .c02 .d02 .e02 {
    /*******************************　01　配置　*/
    z-index: 400;
    margin: 0 auto 3.5rem;
    /*******************************　02　領域　*/
    width: max(610px, 80vw);
    padding: 2rem 0.5rem 5rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b04 .c02 .d02 .e02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dt.f01 */
.a02 .b04 .c02 .d02 .e02 .f01 {
    /*******************************　01　配置　*/
    margin: auto;
    position: relative;
    /*******************************　02　領域　*/
    padding-bottom: 0.75rem;
    width: fit-content;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    text-wrap: balance;
    word-break: auto-phrase;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f01::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /*******************************　02　領域　*/
    width: 3rem;
    height: 0.1rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 */
.a02 .b04 .c02 .d02 .e02 .f02 {
    /*******************************　01　配置　*/
    margin: auto;
    /*******************************　02　領域　*/
    width: max(531px, 90%);
    padding: 0 0 3rem;
    margin-top: 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 555px) {
    .a02 .b04 .c02 .d02 .e02 .f02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g01（サービスと料金について）*/
.a02 .b04 .c02 .d02 .e02 .f02 .g01 {
    /*******************************　01　配置　*/
    display: grid;
    grid-template-columns: max(8.5rem, 30%) max(8.5rem, 70%);
    /*******************************　02　領域　*/
    padding: 0 0 1rem;
    overflow-x: scroll;
    scrollbar-width: thin;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 0.9rem;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g01 > dt.h01 */
.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    /*******************************　02　領域　*/
    padding: 1rem 0.5rem 0 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: solid #ababab 0.035rem;
    /*******************************　05　文字　*/
    font-weight: 500;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h01:first-of-type {
    /*******************************　04　境界　*/
    border-top: unset;
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02 */
.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h02_01 {
    /*******************************　01　配置　*/
    grid-column: 2/3;
    /*******************************　02　領域　*/
    padding: 1rem 0.5rem 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: solid #ababab 0.035rem;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h02_01:first-of-type {
    /*******************************　04　境界　*/
    border-top: unset;
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02 */
.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h02_02 {
    /*******************************　01　配置　*/
    grid-column: 2/3;
    /*******************************　02　領域　*/
    padding: 1rem 0.5rem 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: solid #ababab 0.035rem;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h02_02:first-of-type {
    /*******************************　04　境界　*/
    border-top: unset;
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h03 */
.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h03 {
    /*******************************　01　配置　*/
    position: relative;
    grid-column: 2/3;
    /*******************************　02　領域　*/
    padding: 0.5rem 0.5rem 1rem 1.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g01 .h03::before {
    /*******************************　01　配置　*/
    content: "※";
    position: absolute;
    left: 0.5rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g02（サービスご提供の流れ）*/
.a02 .b04 .c02 .d02 .e02 .f02 .g02 {
    /*******************************　01　配置　*/
    display: grid;
    grid-template-columns: 5rem 1fr;
    row-gap: 1rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g02 > dt.h01 */
.a02 .b04 .c02 .d02 .e02 .f02 .g02 .h01 {
    /*******************************　01　配置　*/
    position: relative;
    /* 自要素配置 */
    grid-column: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    text-transform: uppercase;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g02 .h01::after {
    /*******************************　01　配置　*/
    content: "▼";
    position: absolute;
    right: 0;
    left: 1rem;
    top: 1.2rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;

    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g02 .h01:last-of-type::after {
    /*******************************　01　配置　*/
    content: unset;
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 */

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j01 */
.a02 .b04 .c02 .d02 .e02 .f02 .g02 .h02 .i01 .j01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    text-wrap: balance;
    text-align: left;
    word-break: auto-phrase;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > dl.g02 > dd.h02 > dl.i01 > j02 */
.a02 .b04 .c02 .d02 .e02 .f02 .g02 .h02 .i01 .j02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 0.8rem;
    text-align: left;
    text-align-last: left;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g03:last-child {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding-bottom: 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/


    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_01 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    margin-top: 1rem;
    /* padding: 0.175rem 0 0 0.8rem; */
    padding: 0.175rem 0 0 0.8rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* font-weight: 300; */
    line-height: 1.5;
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_01::before {
    /*******************************　01　配置　*/
    content: '';
    position: absolute;
    left: -0.1rem;
    top: 0.6rem;
    /*******************************　02　領域　*/
    width: 0.5rem;
    aspect-ratio: 1/1;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.2rem solid #000000;
    border-right: 0.2rem solid #000000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transform: rotate(-45deg);
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 > strong */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_01 strong {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    font-size: 1rem;
    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_02 */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_02 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    margin-top: 1rem;
    padding: 0.38rem 0 0 0.8rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* font-weight: 300; */
    line-height: 1.5;
    font-size: 0.8rem;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_02::before {
    /*******************************　01　配置　*/
    content: '→';
    position: absolute;
    left: -0.2rem;
    /* top: 0.65rem; */
    top: 0.55rem;

    display: grid;
    place-items: center;
    /*******************************　02　領域　*/
    width: 0.8rem;
    height: 0.8rem;
    /*******************************　03　背景　*/
    /* background-color: #000000; */
    /*******************************　04　境界　*/
    /* border-radius: 50%; */
    /*******************************　05　文字　*/
    color: #000;
    /* font-size: 0.56rem; */
    font-size: 0.8rem;
    font-weight: 900;
    /*******************************　06　其他　*/
}

.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_02 strong {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    font-size: 1rem;
    /*******************************　06　其他　*/
}





/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    padding: 0.175rem 0 0 0.8rem;
    margin-top: 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    /* font-weight: 300; */
    line-height: 1.5;
    font-size: 0.8rem;
    /*******************************　06　其他　*/

}

.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_03::before {
    /*******************************　01　配置　*/
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    /*******************************　02　領域　*/
    width: 0.35rem;
    aspect-ratio: 1/2;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.175rem solid #000000;
    border-right: 0.175rem solid #000000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transform: rotate(45deg) translateY(-1.5px);
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > ol.g03 > li.h01_01 > strong */
.a02 .b04 .c02 .d02 .e02 .f02 .g03 .h01_03 strong {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    font-size: 1rem;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > details.g04 */

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > details.g04 > summary */

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f02 > details.g04 */

.accordion-css {
    /*******************************　01　配置　*/
    margin: 0 0 1rem;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.05rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.accordion-css summary {
    /*******************************　01　配置　*/
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    /*******************************　02　領域　*/
    padding: 0.5rem 2.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #333333;
    /* font-weight: 400; */
    /*******************************　06　其他　*/
    cursor: pointer;
    user-select: none;
}

.accordion-css summary::before {
    /*******************************　01　配置　*/
    content: "Q.";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: grid;
    align-items: center;
    justify-content: center;
    /*******************************　02　領域　*/
    width: 2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    font-size: 1.2rem;
    /*******************************　06　其他　*/
}

.accordion-css summary::-webkit-details-marker {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: none;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.accordion-css summary::after {
    /*******************************　01　配置　*/
    content: '';
    position: absolute;
    right: 0.75rem;
    /*******************************　02　領域　*/
    width: 0.75rem;
    aspect-ratio: 1/1;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transform: translateY(-25%) rotate(45deg);
    transition: transform 0.3s;
}

.accordion-css[open] summary::after {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transform: rotate(225deg);
}

.accordion-css p {
    /*******************************　01　配置　*/
    position: relative;
    margin: 0;
    /*******************************　02　領域　*/
    padding: 1rem 2.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: solid #ababab 0.035rem;
    /*******************************　05　文字　*/
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.5;
    /*******************************　06　其他　*/
    /* transform: translateY(-0.5rem); */
    /* opacity: 0; */
    /* transition: transform 0.5s, opacity 0.5s; */
}

.accordion-css[open] p {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    /* transform: none; */
    /* opacity: 1; */
}

.accordion-css p::before {
    /*******************************　01　配置　*/
    content: "A.";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    display: grid;
    align-items: center;
    justify-content: center;
    /*******************************　02　領域　*/
    width: 2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 500;
    font-size: 1.2rem;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03（お問い合わせ・お申し込み）*/
.a02 .b04 .c02 .d02 .e02 .f03 {
    /*******************************　01　配置　*/
    margin: auto;
    /* 子要素配置 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    /*******************************　02　領域　*/
    width: max(531px, 90%);
    padding: 1rem 0 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 555px) {
    .a02 .b04 .c02 .d02 .e02 .f03 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g01 */
.a02 .b04 .c02 .d02 .e02 .f03 .g01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    /* 子要素を上下の中央配置　*/
    display: grid;
    align-items: center;
    /* 列 */
    grid-template-columns: 1fr;
    /* 行 */
    grid-template-rows: 1fr 1fr 1fr;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.1rem solid rgba(0, 0, 0, 1);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 1);
    /*******************************　05　文字　*/
    text-align: center;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b04 .c02 .d02 .e02 .f03 .g01 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        margin-bottom: 1rem;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g01 > h3.h01 */
.a02 .b04 .c02 .d02 .e02 .f03 .g01 .h01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 6cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g01 > p.h02 */
.a02 .b04 .c02 .d02 .e02 .f03 .g01 .h02 {
    /*******************************　01　配置　*/
    position: relative;
    grid-column: 1/2;
    grid-row: 2/3;
    /*******************************　02　領域　*/
    padding: 1cqw 0 2.7cqw 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 10cqw;
    font-weight: 500;
    line-height: 7cqw;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

.a02 .b04 .c02 .d02 .e02 .f03 .g01 .h02::before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    left: 5cqw;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 7cqw;
    height: 7cqw;
    /*******************************　03　背景　*/
    background-image: url(../img/icon_tel.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g01 > p.h03 */
.a02 .b04 .c02 .d02 .e02 .f03 .g01 .h03 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 3/4;
    /* ******************************　02　領域　 */

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g02 */
.a02 .b04 .c02 .d02 .e02 .f03 .g02 {
    /*******************************　01　配置　*/
    grid-column: 2/3;
    /* 子要素を上下の中央配置　*/
    display: grid;
    align-items: center;
    /* 列 */
    grid-template-columns: 1fr;
    /* 行 */
    grid-template-rows: 1fr 1fr 1fr;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.1rem solid rgba(0, 0, 0, 1);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 1);
    /*******************************　05　文字　*/
    text-align: center;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b04 .c02 .d02 .e02 .f03 .g02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
    }
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g02 > h3.h01 */
.a02 .b04 .c02 .d02 .e02 .f03 .g02 .h01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 6cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g02 > p.h02 */
.a02 .b04 .c02 .d02 .e02 .f03 .g02 .h02 {
    /*******************************　01　配置　*/
    position: relative;
    grid-column: 1/2;
    grid-row: 2/3;
    /*******************************　02　領域　*/
    padding: 1cqw 0 2.7cqw 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 10cqw;
    font-weight: 500;
    line-height: 7cqw;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

.a02 .b04 .c02 .d02 .e02 .f03 .g02 .h02::before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    left: 5cqw;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 7cqw;
    height: 7cqw;
    /*******************************　03　背景　*/
    background-image: url(../img/icon_mail.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > dl.c01 > dd.d02 > dl.e02 > dd.f03 > a.g02 > p.h03 */
.a02 .b04 .c02 .d02 .e02 .f03 .g02 .h03 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 3/4;
    /*******************************　02　領域　 */

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05(profile 事業者概要) */
.a02 .b05 {
    /*******************************　01　配置　*/
    display: grid;
    /* 列 */
    grid-template-columns: 1fr 1fr;
    /* 行 */
    grid-template-rows: 1fr;
    /*******************************　02　領域　*/
    padding: 2rem 1rem;
    column-gap: 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > h2.c01 */
.a02 .b05 .c01 {
    /*******************************　01　配置　*/
    grid-column: 1/3;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 */
.a02 .b05 .c02 {
    /*******************************　01　配置　*/
    position: relative;
    /* 自要素配置 */
    grid-column: 1/2;
    /* 子要素を上下の中央配置 */
    display: grid;
    align-content: center;
    grid-template-columns: 1fr 55%;
    grid-template-rows: 1fr 1fr 1fr 1fr 10% 10% 10% 10%;
    /*******************************　02　領域　*/
    height: fit-content;
    /* 縦横比 */
    aspect-ratio: 91 / 55;
    /*******************************　03　背景　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b05 .c02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        margin-bottom: 1rem;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b05 .c02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        margin-bottom: 1rem;
    }
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d01 */
.a02 .b05 .c02 .d01 {
    /*******************************　01　配置　*/
    margin: 0 auto;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 1/3;
    /* 子要素に指定 */
    display: grid;
    align-items: end;
    /*******************************　02　領域　*/
    width: 55cqw;
    padding-left: 0.5cqw;
    padding-right: 0.8cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 400;
    font-size: 4.5cqw;
    text-align: center;
    /* 最終行の両端揃え */
    text-align-last: justify;
    /* 英語　先頭を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d02 */
.a02 .b05 .c02 .d02 {
    /*******************************　01　配置　*/
    margin: 0 auto;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 3/5;
    /* 子要素に指定 */
    display: grid;
    align-items: start;
    /*******************************　02　領域　*/
    width: 55cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 400;
    font-size: 7cqw;
    text-align: center;
    text-align-last: justify;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d03 */
.a02 .b05 .c02 .d03 {
    /*******************************　01　配置　*/
    position: relative;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 5/7;
    /* 子要素に指定 */
    display: grid;
    align-items: center;
    /*******************************　02　領域　*/
    padding-left: 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4.4cqw;
    /*******************************　06　其他　*/
}

.a02 .b05 .c02 .d03::before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    top: -2cqw;
    left: 0;
    right: 0;
    /*******************************　02　領域　*/
    width: 100%;
    height: 0.1cqw;
    /*******************************　03　背景　*/
    background-color: rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d04 */
.a02 .b05 .c02 .d04 {
    /*******************************　01　配置　*/
    /* 自要素に指定 */
    grid-column: 1/2;
    grid-row: 7/8;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　領域　*/
    padding-left: 2.5cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4.4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d05 */
.a02 .b05 .c02 .d05 {
    /*******************************　01　配置　*/
    /* 自要素に指定 */
    grid-column: 1/2;
    grid-row: 8/9;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　領域　*/
    padding-left: 2.5cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4.4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d06 */
.a02 .b05 .c02 .d06 {
    /*******************************　01　配置　*/
    /* 自要素に指定 */
    grid-column: 2/3;
    grid-row: 7/8;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　領域　*/
    padding-left: 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4.4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d06 */
.a02 .b05 .c02 .d07 {
    /*******************************　01　配置　*/
    /* 自要素に指定 */
    grid-column: 2/3;
    grid-row: 8/9;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　領域　*/
    padding-left: 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4.4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > address.c02 > p.d04とp.d05とp.d06 > a.e01とspan.e01 */
.a02 .b05 .c02 .d04 .e01,
.a02 .b05 .c02 .d05 .e01,
.a02 .b05 .c02 .d07 .e01 {
    /*******************************　01　配置　*/
    display: inline-block;
    margin-left: 2cqw;
    /*******************************　02　領域　*/
    width: 30cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b05 .c02 .d06 .e01 {
    /*******************************　01　配置　*/
    display: inline-block;
    margin-left: 3.6cqw;
    /*******************************　02　領域　*/
    width: fit-content;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > dl.c03 */
.a02 .b05 .c03 {
    /*******************************　01　配置　*/
    /* 自要素配置 */
    grid-column: 2/3;
    /*******************************　02　領域　*/
    /* 縦横比 */
    aspect-ratio: 91 / 55;

    overflow: hidden;
    /*******************************　03　背景　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　境界　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

@media screen and (max-width: 650px) {
    .a02 .b05 .c03 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        margin-bottom: 2rem;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b05 .c03 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        margin-bottom: 2rem;
    }
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d01 */
.a02 .b05 .c03 .d01 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    /* 高さを指定してalign-content: center;を有効 */
    height: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    container-type: inline-size;
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d01 > dl.e01 */
.a02 .b05 .c03 .d01 .e01 {
    /*******************************　01　配置　*/
    /* 子要素の配置指定 */
    display: grid;
    align-content: center;
    grid-template-columns: 25% 1fr;
    /*******************************　02　領域　*/
    padding: 4cqw 4cqw 0cqw 4cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d01 > dl.e01 > dt.f01 */
.a02 .b05 .c03 .d01 .e01 .f01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    /*******************************　02　領域　*/
    padding: 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/
    text-align: left;
    font-weight: 400;
    /* 英語　先頭文字を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 435px) {
    .a02 .b05 .c03 .d01 .e01 .f01 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        padding: 3cqw 2cqw 1cqw 2cqw;
        border-bottom: unset;
    }
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d01 > dl.e01 > dd.f02 */
.a02 .b05 .c03 .d01 .e01 .f02 {
    /*******************************　01　配置　*/
    grid-column: 2/3;
    /*******************************　02　領域　*/
    padding: 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　文字　*/
    /* 英語　先頭文字を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 435px) {
    .a02 .b05 .c03 .d01 .e01 .f02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
        padding: 0cqw 2cqw 3cqw 2cqw;
    }
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d01 > p.e02 */
.a02 .b05 .c03 .d01 .e02 {
    /*******************************　01　配置　*/
    position: absolute;
    bottom: 2.5cqw;
    right: 1cqw;
    /*******************************　02　領域　*/
    width: 100%;
    padding: 0 12cqw 0 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    font-size: 6cqw;
    text-align: right;
    /* 英語　先頭を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

.a02 .b05 .c03 .d01 .e02::after {
    /*******************************　01　配置　*/
    content: "→";
    /* 自要素を上下の下配置・左右の右配置 */
    position: absolute;
    right: 1cqw;
    bottom: -1cqw;
    /* 擬似要素(ここでは→)を上下・左右の中央配置 */
    display: grid;
    align-content: center;
    justify-content: center;
    /*******************************　02　領域　*/
    width: 9cqw;
    height: 9cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.2cqw solid #000;
    border-radius: 50%;
    /*******************************　05　文字　*/
    font-size: 6cqw;
    font-weight: 900;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 */
.a02 .b05 .c03 .d02 {
    /*******************************　01　配置　*/
    /* z-index →　js-modalに指定*/
}

/***********************************　main.a02 > section.b05 > ul.c03 > li.d02 > h3.e01 */
.a02 .b05 .c03 .d02 .e01 {
    /*******************************　01　配置　*/
    z-index: 500;
    margin: 5rem 0 0;
    position: sticky;
    top: 0;
    margin-inline: auto;
    /*******************************　02　領域　*/
    width: max(610px, 80vw);
    padding: 0.5rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b05 .c03 .d02 .e01 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 */
.a02 .b05 .c03 .d02 .e02 {
    /*******************************　01　配置　*/
    z-index: 400;
    margin: 0 auto 3.5rem;
    /*******************************　02　領域　*/
    width: max(610px, 80vw);
    padding: 2rem 0.5rem;
    /*******************************　03　背景　*/
    background-color: #fff;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    cursor: default;
}

@media screen and (max-width: 610px) {
    .a02 .b05 .c03 .d02 .e02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dt.f01 */
.a02 .b05 .c03 .d02 .e02 .f01 {
    /*******************************　01　配置　*/
    margin: auto;
    position: relative;
    /*******************************　02　領域　*/
    padding-bottom: 0.75rem;
    width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    text-wrap: balance;
    word-break: auto-phrase;
    /*******************************　06　其他　*/
}

.a02 .b05 .c03 .d02 .e02 .f01::before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: left;
    /*******************************　02　領域　*/
    width: 3rem;
    height: 0.1rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

.a02 .b05 .c03 .d02 .e02 .f01::after {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    /*******************************　02　領域　*/
    width: calc(100% - 3rem);
    height: 0.1rem;
    /*******************************　03　背景　*/
    background-color: #d9d9d9;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 */
.a02 .b05 .c03 .d02 .e02 .f02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 1rem 0 3rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > dl.g01 */
.a02 .b05 .c03 .d02 .e02 .f02 .g01 {
    /*******************************　01　配置　*/
    /* 子要素の配置指定 */
    display: grid;
    align-content: center;
    grid-template-columns: max(25%, 7rem) 1fr;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > dl.g01 > dt.h01 */
.a02 .b05 .c03 .d02 .e02 .f02 .g01 .h01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.025rem solid #000;
    /*******************************　05　文字　*/
    font-weight: 400;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02 */
.a02 .b05 .c03 .d02 .e02 .f02 .g01 .h02 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 0.5rem 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-bottom: 0.025rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > dl.g01 > dd.h02 > a > em */
.a02 .b05 .c03 .d02 .e02 .f02 .g01 .h02 a em {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 300;
    /*******************************　06　其他　*/
}

.a02 .b05 .c03 .d02 .e02 .f02 .g01 .h02 a em::after {
    /*******************************　01　配置　*/
    content: "→";
    position: absolute;
    right: -1.3rem;
    top: 0;
    bottom: 0;
    margin-block: auto;

    display: grid;
    place-items: center;
    /*******************************　02　領域　*/
    width: 1.2rem;
    height: 1.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-radius: 50%;
    border: 0.05rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    /*******************************　06　其他　*/
    transform: rotate(-45deg);
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > ul.g02 */
.a02 .b05 .c03 .d02 .e02 .f02 .g02 {
    /*******************************　01　配置　*/
    /* 子要素の配置指定 */
    display: flex;
    flex-wrap: wrap;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b04 > ul.c03 > li.d02 > dl.e02 > dd.f02 > ul.g02 > li.h01 */
.a02 .b05 .c03 .d02 .e02 .f02 .g02 .h01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    width: fit-content;
    padding: 0.5rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-wrap: nowrap;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b06（sns 情報発信）*/
.a02 .b06 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 2rem 1rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b06 > h2.c01 */

/***********************************　main.a02 > section.b06 > h3.c02 */
.a02 .b06 .c02 {
    /*******************************　01　配置　*/
    margin: 0 auto;
    /*******************************　02　領域　*/
    width: max(610px, 70vw, 70vh);
    max-width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    /* border-top: 0.1rem solid #000; */
    /* border-right: 0.1rem solid #000; */
    /* border-left: 0.1rem solid #000; */
    /*******************************　05　文字　*/
    text-align: left;
    font-size: 2rem;
    font-weight: 900;
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 650px) {
    .a02 .b06 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b06 .c02 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

/***********************************　main.a02 > section.b06 > h3.c02 > span.e01*/
.a02 .b06 .c02 .e01 {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    display: inline-block;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    text-transform: capitalize;
    /*******************************　06　其他　*/
}


/***********************************　main.a02 > section.b06 > a.c03 */
.a02 .b06 .c03 {
    /*******************************　01　配置　*/
    position: relative;
    margin: 0 auto 1.5rem;
    /*******************************　02　領域　*/
    display: block;
    width: max(610px, 70vw, 70vh);
    max-width: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    border-left: 0.1rem solid #000;
    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b06 .c03 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b06 .c03 {
        /***************************　02　領域　*/
        width: 100%;
    }
}

.a02 .b06 .c03::after {
    /*******************************　01　配置　*/
    content: "▶︎";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;

    /* 子要素（ここでは「▶︎」）の上下位置の中央配置 */
    display: grid;
    place-items: center;
    /*******************************　02　領域　*/
    width: 8cqw;
    height: 100%;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #fff;
    font-size: 5cqw;
    /*******************************　06　其他　*/
}

.a02 .b06 .c03:hover {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/
    background-color: #333333;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    transition: 0.5s;
}

.a02 .b06 .c03:hover .d01 li {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.075rem solid #fff;
    /*******************************　05　文字　*/
    color: #fff;
    /*******************************　06　其他　*/
    transition: 0.5s;

}

.a02 .b06 .c03:hover:after {
    /*******************************　04　境界　*/
    border-left: 0.075rem solid #fff;
    /*******************************　03　背景　*/
    background-color: #333333;
    /*******************************　06　其他　*/
    transition: 0.5s;
}

/***********************************　main.a02 > section.b05 > a.03 > ul.01 */
.a02 .b06 .c03 .d01 {
    /*******************************　01　配置　*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2cqw;
    row-gap: 2cqw;
    /*******************************　02　領域　*/
    padding: 2cqw calc(2cqw + 8cqw) 2cqw 2cqw;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b06 .c03 .d01 {
        /***************************　02　領域　*/
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b06 .c03 .d01 {
        /***************************　02　領域　*/
        grid-template-columns: 1fr 1fr;
    }
}

/***********************************　main.a02 > section.b05 > dl.c02 > dd.d02 > dl.e01 > li */
.a02 .b06 .c03 .d01 li {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/
    padding: 1.2cqw 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border: 0.075rem solid #000;
    border-radius: 3cqw;
    /*******************************　05　文字　*/
    font-size: 3cqw;
    text-align: center;
    /* 改行禁止 */
    white-space: nowrap;
    /*******************************　06　其他　*/
}

@media screen and (max-width: 650px) {
    .a02 .b06 .c03 .d01 li {
        /***************************　02　領域　*/
        padding: 2cqw 0;
        /***************************　03　背景　*/

        /***************************　04　境界　*/
        border-radius: 5cqw;
        /***************************　05　文字　*/
        font-size: 5cqw;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b06 .c03 .d01 li {
        /***************************　02　領域　*/
        padding: 2cqw 0;
        /***************************　04　境界　*/
        border-radius: 5cqw;
        /***************************　05　文字　*/
        font-size: 5cqw;
    }
}

/***********************************　main.a02 > section.b07（contact お問い合わせ）*/
.a02 .b07 {
    /*******************************　01　配置　*/
    display: grid;
    align-content: center;
    justify-content: center;
    /* 列 */
    grid-template-columns: 1fr 1fr;

    position: relative;
    z-index: auto;
    /*******************************　02　領域　*/
    gap: 1rem 1.5rem;
    min-height: calc(100svh - 2.6rem - 3rem);
    padding: 0 1rem 1rem;
    /*******************************　03　背景　*/
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0em 0em 3rem 3rem rgba(255, 255, 255, 0.95);
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 775px) {
    .a02 .b07 {
        /****************************　02　領域　*/
        min-height: calc(100svh - 2.6rem 1.9rem - 3rem);
    }
}

@media screen and (max-aspect-ratio: 775/1000) {
    .a02 .b07 {
        /****************************　02　領域　*/
        min-height: calc(100svh - 2.6rem 1.9rem - 3rem);
    }
}

/***********************************　main.a02 > section.b07 > h2.c01 */
.a02 .b07 .c01 {
    /*******************************　01　配置　*/
    grid-column: 1/3;
    align-self: start;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c02 */
.a02 .b07 .c02 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 2/3;
    /* 子要素を上下の中央配置　*/
    display: grid;
    align-items: center;
    /* 列 */
    grid-template-columns: 1fr;
    /* 行 */
    grid-template-rows: 1fr 1fr 1fr;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.1rem solid rgba(0, 0, 0, 1);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 1);
    /*******************************　05　文字　*/

    text-align: center;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    .a02 .b07 .c02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b07 .c02 {
        /***************************　01　配置　*/
        grid-column: 1/3;
        /***************************　02　領域　*/
    }
}

/***********************************　main.a02 > section.b07 > a.c02 > h3.d01 */
.a02 .b07 .c02 .d01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 6cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c02 > p.d02 */
.a02 .b07 .c02 .d02 {
    /*******************************　01　配置　*/
    position: relative;
    grid-column: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 10cqw;
    font-weight: 500;
    /*******************************　06　其他　*/
}

.a02 .b07 .c02 .d02::before {
    /*******************************　01　配置　*/
    content: "";
    /* 擬似要素を左右の左配置・上下の中央配置 */
    position: absolute;
    left: 6cqw;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 7cqw;
    height: 7cqw;
    /*******************************　03　背景　*/
    background-image: url(../img/icon_tel.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c02 > p.d03 */
.a02 .b07 .c02 .d03 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c03 */
.a02 .b07 .c03 {
    /*******************************　01　配置　*/
    grid-column: 2/3;
    /* 子要素を上下の中央配置　*/
    display: grid;
    align-items: center;
    /* 列 */
    grid-template-columns: 1fr;
    /* 行 */
    grid-template-rows: 1fr 1fr 1fr;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/
    border-top: 0.1rem solid rgba(0, 0, 0, 1);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 1);
    /*******************************　05　文字　*/
    text-align: center;
    /*******************************　06　其他　*/
    container-type: inline-size;

}

@media screen and (max-width: 650px) {
    .a02 .b07 .c03 {
        /***************************　01　配置　*/
        grid-column: 1/3;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    .a02 .b07 .c03 {
        /***************************　01　配置　*/
        grid-column: 1/3;
    }
}

/***********************************　main.a02 > section.b07 > a.c03 > p.d01 */
.a02 .b07 .c03 .d01 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 1/2;
    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 6cqw;
    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c03 > p.d02 */
.a02 .b07 .c03 .d02 {
    /*******************************　01　配置　*/
    position: relative;
    grid-column: 1/2;
    grid-row: 2/3;
    /*******************************　02　領域　*/
    padding: 1cqw 0 2.7cqw 0;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 10cqw;
    font-weight: 500;
    line-height: 7cqw;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

.a02 .b07 .c03 .d02::before {
    /*******************************　01　配置　*/
    content: "";
    position: absolute;
    left: 5cqw;
    top: 0;
    bottom: 0;
    margin-block: auto;
    /*******************************　02　領域　*/
    display: block;
    width: 7cqw;
    height: 7cqw;
    /*******************************　03　背景　*/
    background-image: url(../img/icon_mail.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}

/***********************************　main.a02 > section.b07 > a.c03 > p.d03 */
.a02 .b07 .c03 .d03 {
    /*******************************　01　配置　*/
    grid-column: 1/2;
    grid-row: 3/4;
    /* ******************************　02　領域　 */

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 4cqw;
    /*******************************　06　其他　*/
}

/***********************************　footer.a03 */
.a03 {
    /*******************************　01　配置　*/
    position: relative;
    /*******************************　02　領域　*/
    padding: 0.2rem;
    /*******************************　03　背景　*/
    background-color: #000;
    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    color: #fff;
    text-align: center;
    /*******************************　06　其他　*/
    container-type: inline-size;
}

/***********************************　footer.a03 p.b04 コピーライト */

/***********************************　foeter.a03 p.b04 small */
.a03 .b01 small {
    /*******************************　01　配置　*/

    /*******************************　02　領域　*/

    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-weight: 900;
    /* 英語　先頭を大文字 */
    text-transform: capitalize;
    /*******************************　06　其他　*/
}

/***********************************　foeter.a03 > p.b04 > small > span.d01 */
.a03 .b01 small .d01 {
    /*******************************　01　配置　*/
    vertical-align: middle;
    /*******************************　02　領域　*/
    padding: 0 0.2rem;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/
    font-size: 1.3rem;
    /*******************************　06　其他　*/
}


/***********************************　aside.a10 > p  */
.a10 p {
    /*******************************　01　配置　*/
    position: fixed;
    z-index: 100;
    right: 0.5rem;
    bottom: 0.5rem;
    /*******************************　02　領域　*/
    width: 8rem;
    height: 2.3rem;
    /*******************************　03　背景　*/
    background-color: rgba(255, 255, 255, 0.9);
    /*******************************　04　境界　*/
    border-radius: 1.2rem;
    border: 0.05rem solid #000;
    /*******************************　05　文字　*/
    font-size: 0.8rem;
    text-align: center;
    color: #000;
    /*******************************　06　其他　*/
}

/***********************************　header.a01　> p > a */
.a10 p a {
    /*******************************　01　配置　*/
    display: grid;
    place-items: center;
    /*******************************　02　領域　*/
    width: 100%;
    height: 100%;
    /*******************************　03　背景　*/

    /*******************************　04　境界　*/

    /*******************************　05　文字　*/

    /*******************************　06　其他　*/
}







/* 
<!-- guide css -->
<!-- <link rel="stylesheet" href="css/guide_*.css"> -->
<!-- <link rel="stylesheet" href="css/guide_color.css"> -->
<!-- <link rel="stylesheet" href="css/guide_culumn.css"> -->
<!-- <link rel="stylesheet" href="css/guide_row.css"> -->
*/

/* 
<div class="guide_left01"></div>
<div class="guide_left02"></div>
<div class="guide_left03"></div>
<div class="guide_left04"></div>
<div class="guide_right01"></div>
<div class="guide_right02"></div>
<div class="guide_right03"></div>
<div class="guide_right04"></div>
<div class="guide_row00"></div>
<div class="guide_row01"></div>
<div class="guide_row02"></div>
<div class="guide_row03"></div>
<div class="guide_row04"></div>
<div class="guide_row05"></div>
<div class="guide_row06"></div>
<div class="guide_row07"></div>
<div class="guide_row08"></div>
<div class="guide_row09"></div>
<div class="guide_row10"></div>
<div class="guide_culumn_left01"></div>
<div class="guide_culumn_left02"></div>
<div class="guide_culumn_left03"></div>
<div class="guide_culumn_left04"></div>
<div class="guide_culumn_right01"></div>
<div class="guide_culumn_right02"></div>
<div class="guide_culumn_right03"></div>
<div class="guide_culumn_right04"></div>
<div class="guide_culumn00"></div>
<div class="guide_culumn01"></div>
<div class="guide_culumn02"></div>
<div class="guide_culumn03"></div>
<div class="guide_culumn04"></div>
<div class="guide_culumn05"></div>
<div class="guide_culumn06"></div>
<div class="guide_culumn07"></div>
<div class="guide_culumn08"></div>
<div class="guide_culumn09"></div>
<div class="guide_culumn10"></div>
<div class="guide_culumn11"></div>
<div class="guide_culumn12"></div>
*/