.spDisplay {
    display: none;
}

@media screen and (max-width: 900px) {
    .pcDisplay {
        display: none;
    }

    .spDisplay {
        display: block;
    }
}

body {
    line-height: 2;
    color: #191a1c;
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-style: normal;
}

a {
    border-bottom: 1px solid;
}

a:hover,
button:hover {
    opacity: 0.65;
    transition: all 0.25s ease-in-out;
}

img {
    pointer-events: none;
}

main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media screen and (max-width: 900px) {
    main {
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
}

.mainWrap {
    margin-top: 40px;
}

@media screen and (max-width: 900px) {
    .mainWrap {
        border-left: none;
        padding-left: 0;
        padding-right: 0;
    }
}


.leadArea {
    position: relative;
    text-align: center;
    padding-bottom: 48px;
}


@media screen and (max-width: 900px) {
    .leadArea {
        padding: 0 16px 24px;
    }
}


h1 {
    line-height: 1.4;
    font-size: 36px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    padding-top: 24px;
}

h1 .h1Title {
    font-size: 48px;
}

@media screen and (max-width: 900px) {
    h1 {
        font-size: 24px;
        margin-top: 0;
    }

    h1 .h1Title {
        font-size: 32px;
    }
}

h2 {
    position: relative;
    text-align: center;
    font-size: 48px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin-bottom: 40px;
}

h2 span {
    display: block;
    font-size: 24px;
    color: #c0c0c0;
}

@media screen and (max-width: 900px) {
    h2 {
        line-height: 1.6;
        font-size: 36px;
    }

    h2 span {
        font-size: 20px;
    }
}

h3 {
    position: relative;
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 32px;
}

h3::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 22px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: #191a1c;
    transform: rotate(45deg);
}

.columnWrap h3 {
    margin-top: 0;
}

@media screen and (max-width: 900px) {
    h3 {
        padding-left: 24px;
    }
}


.topText {
    margin-top: 24px;
}

.centerText {
    text-align: center;
    margin-top: 24px;
}

@media screen and (max-width: 900px) {
    .centerText {
        text-align: left;
    }
}

.noteText01 {
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width: 900px) {
    .noteText01 {
        margin-top: 16px;
    }
}

article {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

section {
    position: relative;
    padding: 40px 0 48px;
}

@media screen and (max-width: 900px) {
    section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.pagetopLink {
    position: fixed;
    bottom: 40px;
    right: 0;
    z-index: 10;
}

.pagetopLink a {
    position: relative;
    display: flex;
    width: 100px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border: 1px solid #191a1c;
    border-right: none;
    background-color: rgba(255, 255, 255, .5);
    line-height: 1;
    padding-left: 16px;
    transition: .2s;
}

.pagetopLink a::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 16px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #191a1c;
    border-right: 1px solid #191a1c;
    transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
    .pagetopLink a {
        width: 64px;
        height: 48px;
        font-size: 14px;
    }

    .pagetopLink a::before {
        left: 16px;
        width: 6px;
        height: 6px;
    }
}


.contentsType01 {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #f9f9fc;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 24px;
}

.contentsType01 .img {
    max-width: 350px;
}

.contentsType01 .img img {
    width: 100%;
}

@media screen and (max-width: 900px) {
    .contentsType01 .img img {
        max-height: 350px;
    }
}

.contentsType01 dl {
    width: 100%;
    flex: 1;
}

.contentsType01 dl dt {
    display: block;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #c0c0c0;
}


.contentsType01 dl dd {
    position: relative;
    display: block;
    padding-left: 20px;
    margin-bottom: 8px;
}

@media screen and (max-width: 900px) {
    .contentsType01 {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px 16px;
    }

    .contentsType01 dl {
        padding: 0;
    }

    .contentsType01 dl dd {
        margin-bottom: 8px;
    }
}

.imgContents img {
    width: 100%;
    margin: 24px auto;
}

.textList {
    list-style-type: circle;
    margin-left: 24px;
}

.listType01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.listType01 .item {
    display: flex;
    align-items: center;
    gap: 16px;
    width: calc(50% - 14px);
}

.listType01 .textArea {
    flex: 1;
    padding-right: 16px;
}

.listType01 .icon {
    max-width: 200px;
    overflow: hidden;
}

.listType01 .icon img {
    width: 100%;
}

.listType01 .text01 {
    line-height: 1.4;
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin: 8px 0;
}

.listType01 .link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.6;
    gap: 2px 16px;
    font-size: 14px;
}

@media screen and (max-width: 900px) {
    .listType01 {
        gap: 24px;
    }

    .listType01 .icon {
        max-width: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .listType01 .item {
        width: 100%;
    }

    .listType01 .textArea {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-right: 0;
    }

    .listType01 .text01 {
        font-size: 18px;
        margin: 0;
    }
}


.listType02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.listType02 .item {
    width: calc(25% - 24px);
    border: 1px solid #c0c0c0;
    padding: 16px 16px 20px;
}

.listType02 .link {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 16px;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 8px;
}

.listType02 .text01 {
    line-height: 1.4;
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
}

@media screen and (max-width: 900px) {
    .listType02 {
        gap: 8px;
    }

    .listType02 .item {
        width: 100%;
    }

    .listType02 .text01 {
        font-size: 18px;
    }
}

.buttonArea01 {
    width: 450px;
    margin: 40px auto 0;
}

.buttonArea01 a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    border: 1px solid #c0c0c0;
    border-radius: 32px;
    flex: 1;
    background: linear-gradient(217deg, rgba(255, 198, 241, 0.5), rgba(255, 195, 220, 0) 70.71%),
        linear-gradient(127deg, rgba(164, 255, 255, 0.5), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(253, 255, 143, 0.3), rgba(154, 243, 255, 0) 70.71%);
    line-height: 1.2;
    font-size: 20px;
    font-weight: 300;
    transition: .5s;
}


.buttonArea01 a::after {
    position: absolute;
    content: "";
    display: block;
    top: calc(50% - 4px);
    right: 24px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #191a1c;
    border-right: 1px solid #191a1c;
    transform: rotate(45deg);
}

.buttonArea01 a:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 900px) {
    .buttonArea01 {
        width: 100%;
    }

    .buttonArea01 a {
        font-size: 16px;
    }
}

.tableWrap {
    margin-top: 40px;
    margin-bottom: 40px;
}

.tableWrap table {
    width: 100%;
    font-size: 16px;
    background-color: #f9f9fc;
}

.tableWrap table th {
    background-color: #191a1c;
    color: #ffffff;
    font-weight: 400;
    padding: 8px;
}

.tableWrap table tr {
    border-bottom: 1px solid #c0c0c0;
}

.tableWrap table td {
    padding: 8px;
}


@media screen and (max-width: 900px) {
    .tableWrap {
        overflow-x: scroll;
        font-size: 16px;
        padding-bottom: 16px;
    }

    .tableWrap table {
        width: 900px;
    }
}

.tableWrap02 {
    margin: 24px auto;
}

.tableWrap02 table {
    width: 100%;
    font-size: 16px;
}

.tableWrap02 table td {
    padding-top: 8px;
    padding-right: 8px;
}

.tableWrap02 table td:first-child {
    text-align: right;
}

.umekomiWrap {
    text-align: center;
}

.umekomi_youtube {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    margin: 24px auto;
}

.umekomi_twitter {
    max-width: 500px;
    margin: 16px auto;
}

footer {
    position: relative;
    background-color: #191a1c;
    color: #ffffff;
    text-align: center;
    margin-top: 64px;
    padding: 20px;
}


@media screen and (max-width: 900px) {
    footer {
        font-size: 16px;
    }

    footer .noteText01 {
        font-size: 12px;
        margin-top: 0;
    }
}

.columnWrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.columnImg {
    width: 400px;
}

.columnImg img {
    width: 100%;
}

.columnText {
    flex: 1;
    background: linear-gradient(217deg, rgba(255, 198, 198, 0.2), rgba(255, 195, 220, 0) 70.71%),
        linear-gradient(127deg, rgba(186, 255, 186, 0.2), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(189, 234, 255, 0.2), rgba(154, 243, 255, 0) 70.71%);
    border-radius: 4px;
    padding: 16px;
}

@media screen and (max-width: 900px) {
    .columnWrap {
        position: relative;
        flex-direction: column;
        align-items: normal;
        gap: 0;
    }

    .columnText{
        position: relative;
        top: -40px;
        right: -20px;
        width: calc(100% - 20px);
        z-index: 2;
        padding-top: 60px;
    }

    .columnImg {
        position: relative;
        width: calc(100% - 20px);
        z-index: 3;
    }

    .columnWrap.right .columnText {
        top: 0;
        right: auto;
        left: 0;
        padding-top: 16px;
        padding-bottom: 60px;
    }
    .columnWrap.right .columnImg {
        top: -40px;
        right: -20px;
        padding-top: 0;
    }
}

.circleAnArea {
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    width: 200px;
    height: 200px;
    user-select: none;
    margin: 0 auto;
    z-index: -1;
}

.circleAnArea::after {
    border-radius: 43%;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(217deg, rgba(255, 198, 198, 0.856), rgba(255, 195, 220, 0) 70.71%),
        linear-gradient(127deg, rgba(186, 255, 186, 0.938), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(189, 234, 255, 0.952), rgba(154, 243, 255, 0) 70.71%);
    animation: loading-circle-opacity 3s infinite linear;
}


/* 回転アニメーション */
@keyframes loading-circle-rotation {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

/* ピンク色の背景のアニメーション */
@keyframes loading-circle-opacity {
    0% {
        transform: rotate(0);
        opacity: 0.8;
    }

    25% {
        transform: rotate(-0.25turn) skew(4deg, 8deg);
        opacity: 0.5;
    }

    50% {
        transform: rotate(-0.5turn) skew(0deg, 20deg);
        opacity: 0.2;
    }

    75% {
        transform: rotate(-0.75turn) skew(8deg, 15deg);
        opacity: 0.5;
    }

    100% {
        transform: rotate(-1turn);
        opacity: 0.8;

    }
}

.gridWrap {
    position: relative;
    height: auto;
}

.gridWrap.close {
    height: 800px;
    overflow: hidden;
}

.gridWrap.close::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    z-index: 8;
}

.grid {
    position: relative;
}

.grid .item {
    display: block;
    position: absolute;
    width: 550px;
    margin: 5px;
    z-index: 1;
    background: #000;
    color: #fff;
}

.grid .item img {
    width: 100%;
}

@media screen and (max-width: 900px) {
    .grid .item {
        width: 100%;
        margin: 0;
    }

    .grid .item+.item {
        margin-top: 8px;
    }
}

.moreButton, .closeButton {
    position: relative;
    display: block;
    text-align: center;
    margin: 24px auto;
    padding: 16px 24px 32px;
}

.moreButton::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-top: 1px solid #191a1c;
    border-right: 1px solid #191a1c;
    transform: rotate(135deg);
}

.closeButton::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-top: 1px solid #191a1c;
    border-right: 1px solid #191a1c;
    transform: rotate(-45deg);

}