@charset "utf-8";

body {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    width: 100%;
    min-width: 300px;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    /* font-family: "Roboto", "Noto Serif JP", sans-serif; */
    font-weight: 300;
    font-style: normal;
    /*******************************　06　others　*/
}

header {
    /*******************************　01　layout　*/
    display: grid;
    place-content: center;
    /*******************************　02　area　*/
    width: 100%;
    height: 101svh;
    margin-bottom: 50vh;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 1px solid #000;
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

header h1 {
	/*******************************　01　layout　*/
    position: fixed;
    z-index: 100;
    right: 0.5rem;
    bottom: 0.5rem;
	/*******************************　02　area　*/
    width: 8rem;
    height: 2.3rem;
	/*******************************　03　background　*/
    background-color: #fff;
	/*******************************　04　border　*/
    border-radius: 1.2rem;
    border: 0.05rem solid #000;
	/*******************************　05　typography　*/
    font-size: 0.8rem;
    text-align: center;
    color: #000;
	/*******************************　06　others　*/
}

header h1 a {
	/*******************************　01　layout　*/
    display: grid;
    place-items: center;
	/*******************************　02　area　*/
    width: 100%;
    height: 100%;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
}

header h2 {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    padding-bottom: 0.3rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-bottom: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 1.2rem;
	text-align: center;
	/*******************************　06　others　*/
}

header h2 mark {
	/*******************************　01　layout　*/

	/*******************************　02　area　*/
    display: block;
    /*******************************　03　background　*/

	/*******************************　04　border　*/

    /*******************************　05　typography　*/
	font-size: 0.7rem;
	text-align: center;
    padding-bottom: 0.3rem;
	/*******************************　06　others　*/
}

header p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-top: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

header p::before {
	/*******************************　01　layout　*/
	content: "start";
	position: absolute;
	bottom: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

header p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	bottom: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

footer {
	/*******************************　01　layout　*/
	display: grid;
	place-content: center;
	/*******************************　02　area　*/
	width: 100%;
	min-height: 100vh;
	margin-top: 50vh;
	/*******************************　03　background　*/
	background-color: #000;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/
	color: #fff;
	/*******************************　06　others　*/
}

footer p {
	/*******************************　01　layout　*/
	position: relative;
	/*******************************　02　area　*/
    margin-bottom: 1rem;
	/*******************************　03　background　*/

	/*******************************　04　border　*/
    border-top: 1px solid #000;
	/*******************************　05　typography　*/
	font-size: 0.9rem;
	text-align: center;
	/*******************************　06　others　*/
}

footer p::before {
	/*******************************　01　layout　*/
	content: "end";
	position: absolute;
	top: -2.5rem;
	right: -1.5rem;
	left: 0;

	margin: auto;
	/*******************************　02　area　*/
	width: fit-content;
	height: fit-content;
	/*******************************　03　background　*/

	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	transform: rotate(90deg);
}

@keyframes scrollAnimation {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}

	50% {
		transform: scaleY(1);
		transform-origin: top;
	}

	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}

	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

footer p::after {
	/*******************************　01　layout　*/
	content: "";
	position: absolute;
	top: -3.5rem;
	right: 0;
	left: 0;
	margin-inline: auto;
	/*******************************　02　area　*/
	width: 0.035rem;
	height: 3rem;
	/*******************************　03　background　*/
	background-color: #fff;
	/*******************************　04　border　*/

	/*******************************　05　typography　*/

	/*******************************　06　others　*/
	animation-name: scrollAnimation;
	animation-duration: 1.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}


/***********************************************************
試作
***********************************************************/

main {
    /*******************************　01　layout　*/
    display: grid;
    /* 列 */
    grid-template-columns: 1fr 1fr;
    /* 行 */
    grid-template-rows: 1fr;
    /*******************************　02　area　*/
    padding: 0 1rem;
    column-gap: 1rem;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main address {
    /*******************************　01　layout　*/
    position: relative;
    /* 自要素layout */
    grid-column: 1/2;
    /* 子要素を上下の中央layout */
    display: grid;
    align-content: center;
    grid-template-columns: 1fr 55%;
    grid-template-rows: 1fr 1fr 1fr 1fr 10% 10% 10% 10%;
    /*******************************　02　area　*/
    height: fit-content;
    /* 縦横比 */
    aspect-ratio: 91 / 55;
    /*******************************　03　background　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　border　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    container-type: inline-size;
}

@media screen and (max-width: 650px) {
    main address {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        margin-bottom: 1rem;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    main address {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        margin-bottom: 1rem;
    }
}

main address p:nth-of-type(1) {
    /*******************************　01　layout　*/
	position: absolute;
	top: -5cqw;
	left: 2cqw;
	/*******************************　02　area　*/
	/* width: 20cqw; */
	height: 40cqw;
	/*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

	/*******************************　06　others　*/
}

main address p:nth-of-type(1) img {
    /*******************************　01　layout　*/
	display: block;
	/*******************************　02　area　*/
	height: 100%;
	/*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

	/*******************************　06　others　*/
}

main address p:nth-of-type(2) {
    /*******************************　01　layout　*/
    margin: 0 15cqw 0 auto;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 1/3;
    /* 子要素に指定 */
    display: grid;
    align-items: end;
    /*******************************　02　area　*/
    width: 55cqw;
    padding-left: 0.5cqw;
    padding-right: 0.8cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-weight: 400;
    font-size: 4.5cqw;
    text-align: center;
    /* 最終行の両端揃え */
    text-align-last: justify;
    /* 英語　先頭を大typography */
    text-transform: capitalize;
    /*******************************　06　others　*/
}

main address p:nth-of-type(3) {
    /*******************************　01　layout　*/
    margin: 0 15cqw 0 auto;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 3/5;
    /* 子要素に指定 */
    display: grid;
    align-items: start;
    /*******************************　02　area　*/
    width: 55cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-weight: 400;
    font-size: 7cqw;
    text-align: center;
    text-align-last: justify;
    /*******************************　06　others　*/
}

main address p:nth-of-type(4) {
    /*******************************　01　layout　*/
    position: relative;
    /* 自要素に指定 */
    grid-column: 1/3;
    grid-row: 5/7;
    /* 子要素に指定 */
    display: grid;
    align-items: center;
    /*******************************　02　area　*/
    padding-left: 2cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4.4cqw;
    /*******************************　06　others　*/
}

main address p:nth-of-type(4)::before {
    /*******************************　01　layout　*/
    content: "";
    position: absolute;
    top: -2cqw;
    left: 0;
    right: 0;
    /*******************************　02　area　*/
    width: 100%;
    height: 0.1cqw;
    /*******************************　03　background　*/
    background-color: rgba(0, 0, 0, 0.5);
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main address p:nth-of-type(5) {
    /*******************************　01　layout　*/
    /* 自要素に指定 */
    grid-column: 1/2;
    grid-row: 7/8;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　area　*/
    padding-left: 2.5cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4.4cqw;
    /*******************************　06　others　*/
}

main address p:nth-of-type(6) {
    /*******************************　01　layout　*/
    /* 自要素に指定 */
    grid-column: 1/2;
    grid-row: 8/9;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　area　*/
    padding-left: 2.5cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4.4cqw;
    /*******************************　06　others　*/
}

main address p:nth-of-type(7) {
    /*******************************　01　layout　*/
    /* 自要素に指定 */
    grid-column: 2/3;
    grid-row: 7/8;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　area　*/
    padding-left: 2cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4.4cqw;
    /*******************************　06　others　*/
}

main address p:nth-of-type(8) {
    /*******************************　01　layout　*/
    /* 自要素に指定 */
    grid-column: 2/3;
    grid-row: 8/9;
    /* 子要素に指定 */
    display: flex;
    align-items: start;
    /*******************************　02　area　*/
    padding-left: 2cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4.4cqw;
    /*******************************　06　others　*/
}

main address p:nth-of-type(5) a,
main address p:nth-of-type(6) span,
main address p:nth-of-type(8) a {
    /*******************************　01　layout　*/
    display: inline-block;
    margin-left: 2cqw;
    /*******************************　02　area　*/
    width: 30cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main address p:nth-of-type(7) a {
    /*******************************　01　layout　*/
    display: inline-block;
    margin-left: 3.6cqw;
    /*******************************　02　area　*/
    width: fit-content;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul {
    /*******************************　01　layout　*/
    /* 自要素layout */
    grid-column: 2/3;
    /*******************************　02　area　*/
    /* 縦横比 */
    aspect-ratio: 91 / 55;

    overflow: hidden;
    /*******************************　03　background　*/
    box-shadow: 0.05rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
    /*******************************　04　border　*/
    border: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

@media screen and (max-width: 650px) {
    main>ul {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        margin-bottom: 2rem;
    }
}

@media screen and (max-aspect-ratio: 650/1000) {
    main>ul {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        margin-bottom: 2rem;
    }
}

main>ul>li:nth-of-type(1) {
    /*******************************　01　layout　*/
    position: relative;
    /*******************************　02　area　*/
    /* 高さを指定してalign-content: center;を有効 */
    height: 100%;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    container-type: inline-size;
}

main>ul>li:nth-of-type(1)>dl {
    /*******************************　01　layout　*/
    /* 子要素のlayout指定 */
    display: grid;
    align-content: center;
    grid-template-columns: 25% 1fr;
    /*******************************　02　area　*/
    padding: 4cqw 4cqw 0cqw 4cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 4cqw;
    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(1)>dl>dt {
    /*******************************　01　layout　*/
    grid-column: 1/2;
    /*******************************　02　area　*/
    padding: 2cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　typography　*/
    text-align: left;
    font-weight: 400;
    /* 英語　先頭typographyを大typography */
    text-transform: capitalize;
    /*******************************　06　others　*/
}

@media screen and (max-width: 435px) {
    main>ul>li:nth-of-type(1)>dl>dt {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        padding: 3cqw 2cqw 1cqw 2cqw;
        border-bottom: unset;
    }
}

main>ul>li:nth-of-type(1)>dl>dd {
    /*******************************　01　layout　*/
    grid-column: 2/3;
    /*******************************　02　area　*/
    padding: 2cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 0.01rem solid rgba(0, 0, 0, 0.5);
    /*******************************　05　typography　*/
    /* 英語　先頭typographyを大typography */
    text-transform: capitalize;
    /*******************************　06　others　*/
}

@media screen and (max-width: 435px) {
    main>ul>li:nth-of-type(1)>dl>dd {
        /***************************　01　layout　*/
        grid-column: 1/3;
        /***************************　02　area　*/
        padding: 0cqw 2cqw 3cqw 2cqw;
    }
}

main>ul>li:nth-of-type(1)>p {
    /*******************************　01　layout　*/
    position: absolute;
    bottom: 2.5cqw;
    right: 1cqw;
    /*******************************　02　area　*/
    width: 100%;
    padding: 0 12cqw 0 0;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-weight: 900;
    font-size: 6cqw;
    text-align: right;
    /* 英語　先頭を大typography */
    text-transform: capitalize;
    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(1)>p::after {
    /*******************************　01　layout　*/
    content: "→";
    /* 自要素を上下の下layout・左右の右layout */
    position: absolute;
    right: 1cqw;
    bottom: -1cqw;
    /* 擬似要素(ここでは→)を上下・左右の中央layout */
    display: grid;
    align-content: center;
    justify-content: center;
    /*******************************　02　area　*/
    width: 9cqw;
    height: 9cqw;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border: 0.2cqw solid #000;
    border-radius: 50%;
    /*******************************　05　typography　*/
    font-size: 6cqw;
    font-weight: 900;
    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2) {
    /*******************************　01　layout　*/
    /* z-index →　js-modalに指定*/
}

main>ul>li:nth-of-type(2)>h3 {
    /*******************************　01　layout　*/
    z-index: 500;
    margin: 5rem 0 0;
    position: sticky;
    top: 0;
    margin-inline: auto;
    /*******************************　02　area　*/
    width: max(610px, 80vw);
    max-width: 100%;
    padding: 0.5rem;
    /*******************************　03　background　*/
    background-color: #000;
    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    /*******************************　06　others　*/
    cursor: default;
}

main>ul>li:nth-of-type(2)>dl {
    /*******************************　01　layout　*/
    z-index: 400;
    margin: 0 auto 3.5rem;
    /*******************************　02　area　*/
    width: max(610px, 80vw);
    max-width: 100%;
    padding: 2rem 0.5rem;
    /*******************************　03　background　*/
    background-color: #fff;
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    cursor: default;
}

main>ul>li:nth-of-type(2)>dl>dt {
    /*******************************　01　layout　*/
    margin: auto;
    position: relative;
    /*******************************　02　area　*/
    padding-bottom: 0.75rem;
    width: 100%;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    text-wrap: balance;
    word-break: auto-phrase;
    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dt::before {
    /*******************************　01　layout　*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: left;
    /*******************************　02　area　*/
    width: 3rem;
    height: 0.1rem;
    /*******************************　03　background　*/
    background-color: #000;
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dt::after {
    /*******************************　01　layout　*/
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    /*******************************　02　area　*/
    width: calc(100% - 3rem);
    height: 0.1rem;
    /*******************************　03　background　*/
    background-color: #d9d9d9;
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    padding: 1rem 0 3rem;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd>dl {
    /*******************************　01　layout　*/
    /* 子要素のlayout指定 */
    display: grid;
    align-content: center;
    grid-template-columns: max(25%, 7rem) 1fr;
    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd>dl>dt {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    padding: 0.5rem;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 0.025rem solid #000;
    /*******************************　05　typography　*/
    font-weight: 400;
    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd>dl>dd {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    padding: 0.5rem 0;
    /*******************************　03　background　*/

    /*******************************　04　border　*/
    border-bottom: 0.025rem solid #000;
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd>ul {
    /*******************************　01　layout　*/
    /* 子要素のlayout指定 */
    display: flex;
    flex-wrap: wrap;
    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

main>ul>li:nth-of-type(2)>dl>dd>ul>li {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    width:fit-content;
    padding: 0.5rem;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/
    text-wrap: nowrap;
    /*******************************　06　others　*/
}

.js-modal-open{
    /*******************************　01　layout　*/

    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    cursor: pointer;
}

.js-modal {
    /*******************************　01　layout　*/
    z-index: 200;
    /* 自要素を上下・左右の中央layout */
    position: fixed;
    inset: 0;
    /*******************************　02　area　*/
    width: 100%;

    overflow: auto;
    /*******************************　03　background　*/
    background: rgba(0, 0, 0, 0.7);
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;

    display: none;
}

.js-modal.is-active {
    /*******************************　01　layout　*/
    z-index: 300;
    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    opacity: 1;
    visibility: visible;

    display: block;
}

.js-modal.is-active .js-modal-close {
    display: block;
    /* モーダルがアクティブになったときに表示 */
}

.js-modal-close {
    /*******************************　01　layout　*/
    /* 「.modal_content　z-index」よりも上にlayout */
    z-index: 500;
    /* ボタンの表示位置 */
    position: fixed;
    top: 1%;
    right: 1%;
    /*******************************　02　area　*/
    width: 2.5rem;
    height: 2.5rem;
    /*******************************　03　background　*/
    background-color: #fff;
    /*******************************　04　border　*/
    border: 0.2rem solid #000;
    border-radius: 50%;
    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    cursor: pointer;
    /* 初期状態で非表示 */
    display: none;

}

.js-modal-close::before,
.js-modal-close::after {
    /*******************************　01　layout　*/
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    /*******************************　02　area　*/
    width: 0.2rem;
    height: 80%;
    /*******************************　03　background　*/
    background-color: #000;
    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

.js-modal-close::before {
    /*******************************　01　layout　*/
    /* 角度調整 */
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

.js-modal-close::after {
    /*******************************　01　layout　*/
    /* 角度調整 */
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /*******************************　02　area　*/

    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
}

.js-no-scroll {
    /*******************************　01　layout　*/

    /*******************************　02　area　*/
    overflow: hidden;
    height: 100vh;
    /*******************************　03　background　*/

    /*******************************　04　border　*/

    /*******************************　05　typography　*/

    /*******************************　06　others　*/
    touch-action: none;
}



/*

* {
    outline: 0.1px solid #ff0000;
}

*::before {
    outline: 0.1px solid #ff0000;
}

*::after {
    outline: 0.1px solid #ff0000;
}

<!-- 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="guide01"></div>
<div class="guide02"></div>
<div class="guide03"></div>
<div class="guide04"></div>
<div class="guide05"></div>
<div class="guide06"></div>
<div class="guide07"></div>
<div class="guide08"></div>
<div class="guide09"></div>
<div class="guide10"></div>

<div class="guide11"></div>
<div class="guide12"></div>
<div class="guide13"></div>
<div class="guide14"></div>
<div class="guide15"></div>
<div class="guide16"></div>
<div class="guide17"></div>
<div class="guide18"></div>
<div class="guide19"></div>
<div class="guide20"></div>

*/
