@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

html {
    font-size: 62.5%;

}

.center-box {
    text-align: center;
    /* 子要素のインライン要素を中央寄せ */
}


div#kakunou {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
}

div#setumei {
    display: none;
    cursor: pointer;
}

div#kakunou2 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei2 {
    display: none;
    cursor: pointer;
}

div#kakunou3 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei3 {
    display: none;
    cursor: pointer;
}

div#kakunou4 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei4 {
    display: none;
    cursor: pointer;
}

div#kakunou5 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei5 {
    display: none;
    cursor: pointer;
}

div#kakunou6 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei6 {
    display: none;
    cursor: pointer;
}

div#kakunou7 {
    cursor: pointer;
    font-size: 1.6em;
    font-weight: bold;
}

div#setumei7 {
    display: none;
    cursor: pointer;
}

/*========= レイアウトのためのCSS ===============*/
body {
    width: 100%;
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #FFFFFF;
    line-height: 1.2;
    -webkit-text-size-adjust: 100%;
}

h2 {
    text-align: center;
    padding: 5px;
}

p {
    text-align: center;
    padding: 1px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #333;
}

a:hover,
a:active {
    text-decoration: none;
}

.shadow {
    box-shadow: 4px 4px 4px 3px rgba(73, 52, 60, 0.5);
    /* 画像の影 */
}

.span {
    display: block;
    line-height: 2;
}

/*エリア全体を中央寄せ*/
.wrapper {
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 20px 0;
}

p {
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    line-height: 1.8;
    text-align: center;
    padding: 5px;
    word-wrap: break-word;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}


/* --------------------------------------------------------------------------------
Tabのレイアウト
-------------------------------------------------------------------------------- */


.tabMenu3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.tabMenu3:nth-of-type(2) {
    margin-top: 0px;
}

.tabMenu3 li {
    background: #eee;
    color: #aaa;
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
    flex-grow: 1;
    padding: 10px 2px;
    border: #fff 1px solid;
    border-bottom: none;
    cursor: pointer;
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 10 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.tabMenu3 li:first-child {
    width: calc(100%/1);
    border-left: none;
}

.tabMenu3 li:nth-child(2) {
    width: calc(100%/3);
}

.tabMenu3 li.active {
    background: #fffd39;
    color: #000;
}

.tabMenu3:nth-of-type(2) li.active {
    background: #fffd39;
}

.tabContent3 {
    display: none;
    padding: 5px;
    background: #fffd39;
    color: #000;

}

.tabContent3:nth-of-type(2) .tabContent2 {
    background: #fffd39;
    color: #000;
}

.tabContent3.active {
    display: block;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.tabContent3 {
    display: none;
    padding: 5px;
    background: #fffd39;
    color: #000;

}

.tabContent3:nth-of-type(2) .tabContent3 {
    background: #fffd39;
    color: #000;
}

.tabContent3.active {
    display: block;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.tabMenu2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.tabMenu2:nth-of-type(2) {
    margin-top: 0px;
}

.tabMenu2 li {
    background: #eee;
    color: #aaa;
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
    flex-grow: 1;
    padding: 10px 2px;
    border: #fff 1px solid;
    border-bottom: none;
    cursor: pointer;
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 10 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.tabMenu2 li:first-child {
    width: calc(100%/2);
    border-left: none;
}

.tabMenu2 li:nth-child(2) {
    width: calc(100%/2);
}

.tabMenu2 li.active {
    background: #fffd39;
    color: #000;
}

.tabMenu2:nth-of-type(2) li.active {
    background: #fffd39;
}

.tabContent2 {
    display: none;
    padding: 5px;
    background: #fffd39;
    color: #000;

}

.tabContents2:nth-of-type(2) .tabContent2 {
    background: #fffd39;
    color: #000;
}

.tabContent2.active {
    display: block;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.tabContent2 {
    display: none;
    padding: 5px;
    background: #fffd39;
    color: #000;

}

.tabContents2:nth-of-type(2) .tabContent2 {
    background: #fffd39;
    color: #000;
}

.tabContent2.active {
    display: block;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tabMenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.tabMenu:nth-of-type(2) {
    margin-top: 0px;
}

.tabMenu li {
    background: #eee;
    color: #aaa;
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
    flex-grow: 1;
    padding: 10px;
    border: #fff 1px solid;
    border-bottom: none;
    cursor: pointer;
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 10 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.tabMenu li:first-child {
    border-left: none;
}

.tabMenu li.active {
    background: #fffd39;
    color: #000;
}

.tabMenu:nth-of-type(2) li.active {
    background: #fffd39;
}

.tabContent {
    display: none;
    padding: 5px;
    background: #fffd39;
    color: #000;

}

.tabContents:nth-of-type(2) .tabContent {
    background: #fffd39;
    color: #000;
}

.tabContent.active {
    display: block;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/*tabの形状*/
.tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tab li {
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.tab li a {
    display: block;
    background: #ffea02;
    color: #213343;
    margin: 0 1px;
    padding: 6px 1px;
    text-decoration: none;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    background: #000;
    color: #FFFFFF;
}


/*エリアの表示非表示と形状*/
.area {
    display: none;
    /*はじめは非表示*/
    opacity: 1;
    /*透過0*/
    background: #000;
    padding: 10px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}


@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.four-calm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.four-calm li {
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.four-calm li img {
    max-width: 100%;
    /*画像のはみだしを防ぐ*/
    height: auto;
    /*画像の縦横比を維持 */
}

.five-calm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.five-calm li {
    width: calc(100%/5);
    /*←画像を横に4つ並べる場合*/
    padding: 0 5px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.five-calm li img {
    max-width: 100%;
    /*画像のはみだしを防ぐ*/
    height: auto;
    /*画像の縦横比を維持 */
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
    position: relative;
    /*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
    display: block;
    position: absolute;
    width: 20%;
    /*横並びで3つ表示*/
    padding: 0 10px 10px 10px;
    /*画像に余白をつける*/
    z-index: 1;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    /*画像の下にできる余白を削除*/
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    .item {
        width: 24%;
        /*横並びで2つ表示*/
        padding: 0 5px 10px 5px;
    }
}



.grid_layout {
    display: grid;
    /* グリッドコンテナを作る */
    grid-template-columns: 1fr 2fr;
    /* 縦向きのグリッドラインを決める */
    height: auto;
    grid-template-rows: 1fr 1fr;
    /*横向きのグリッドラインを決める */
}

.grid_layout-child {
    padding: 0px;
    /* 余白指定 */
    border-radius: 0px;
    /* 角丸指定 */
    margin: 0px;
    /* 周りの余白指定 */
    color: #fff;
    /* 文字色指定 */
}

.grid_layout-child:nth-child(1) {
    grid-column: 1/2;
    /* 配置指定 */
    grid-row: 1/2;
    /* 配置指定 */
    margin-right: 5px;
    margin-bottom: 5px;
}

.grid_layout-child:nth-child(2) {
    grid-column: 1/2;
    /* 配置指定 */
    grid-row: 2/2;
    /* 配置指定 */
    margin-right: 5px;
    margin-top: 5px;
}

.grid_layout-child:nth-child(3) {
    grid-column: 2/3;
    /* 配置指定 */
    grid-row: 1/3;
    /* 配置指定 */
    margin-left: 1px;
}


.grid2_layout {
    display: grid;
    /* グリッドコンテナを作る */
    grid-template-columns: 1fr 1fr;
    /* 縦向きのグリッドラインを決める */
    height: auto;
    grid-template-rows: 1fr;
    /*横向きのグリッドラインを決める */
}

.grid2_layout-child {
    padding: 0px;
    /* 余白指定 */
    border-radius: 0px;
    /* 角丸指定 */
    margin: 0px;
    /* 周りの余白指定 */
    color: #000000;
    /* 文字色指定 */
}

.grid2_layout-child:nth-child(1) {
    grid-column: 1/2;
    /* 配置指定 */
    grid-row: 1/1;
    /* 配置指定 */
    margin-right: 5px;
}

.grid2_layout-child:nth-child(2) {
    grid-column: 2/2;
    /* 配置指定 */
    grid-row: 1/1;
    /* 配置指定 */
    margin-left: 5px;
}

.grid3_layout {
    display: grid;
    /* グリッドコンテナを作る */
    grid-template-columns: 1fr 1fr 1fr;
    /* 縦向きのグリッドラインを決める */
    height: auto;
    grid-template-rows: 1fr;
    /*横向きのグリッドラインを決める */
}

.grid3_layout-child {
    padding: 5px;
    /* 余白指定 */
    border-radius: 0px;
    /* 角丸指定 */
    margin: 0px;
    /* 周りの余白指定 */
    color: #000;
    /* 文字色指定 */
}

.grid3_layout-child:nth-child(1) {
    grid-column: 1/2;
    /* 配置指定 */
    grid-row: 1/1;
    /* 配置指定 */
}

.grid3_layout-child:nth-child(2) {
    grid-column: 2/3;
    /* 配置指定 */
    grid-row: 1/1;
}

.grid3_layout-child:nth-child(3) {
    grid-column: 3/3;
    /* 配置指定 */
    grid-row: 1/1;
    /* 配置指定 */
}



/*==================================================
スライダーのためのcss
===================================*/
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}

.slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 10px;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

/*==================================================
スライダーのためのcss
===================================*/
.slider2 {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}

.slider2 img {
    height: auto;
}

.slider2 .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

.slider2 .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slider2 .slick-prev,
.slider2 .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slider2 .slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slider2 .slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slider2 .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slider2 .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slider2 .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

.slider2 .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 1s ease-in-out infinite alternate;
    -moz-animation: blink 1s ease-in-out infinite alternate;
    animation: blink 1s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* みぎよせ */
.parcent_l {
    margin-left: 50%;
}

.pixel_l {
    margin-left: 500px;
}

/* ひだりよせ */
.parcent_r {
    margin-right: 30%;
}

.pixel_r {
    margin-right: 500px;
}



.text {
    z-index: 2;
    margin: 0;
    /* 見出しのマージンを消しておく */
    position: absolute;
    /* 絶対配置で画像の中央に配置 */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #FFF;
    font-weight: 800;
    font-size: 30px;
    font-family: Georgia, Times, 'Times New Roman', serif;
}

.two-calm {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.two-calm li {
    width: calc(100%/2);
    /*←画像を横に4つ並べる場合*/
    padding: 0px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.two-calm li img {
    max-width: 100%;
    /*画像のはみだしを防ぐ*/
    height: auto;
    /*画像の縦横比を維持 */
}

.two-calms {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.two-calms li {
    width: calc(100%/3);
    /*←画像を横に4つ並べる場合*/
    padding: 2px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.two-calms li img {
    max-width: 100%;
    /*画像のはみだしを防ぐ*/
    height: auto;
    /*画像の縦横比を維持 */
}

.four-calms {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.four-calms li {
    width: calc(100%/4);
    /*←画像を横に4つ並べる場合*/
    padding: 2px;
    /*←画像の左右に5pxの余白を入れる場合*/
    box-sizing: border-box;
}

.four-calms li img {
    max-width: 100%;
    /*画像のはみだしを防ぐ*/
    height: auto;
    /*画像の縦横比を維持 */
}

.container {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.container>img {
    width: 200px;
    margin: 15px;
}

.container2 {
    width: 800px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.container2>img {
    width: 200px;
    margin: 15px;
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger {
    opacity: 0;
}

/* box-shadowとdrop-shadow */
.box-and-drop .box-shadow {
    box-shadow: 10px 10px 5px 0 rgb(61, 61, 63, 0.5);
}

.box-and-drop .drop-shadow {
    filter: drop-shadow(10px 10px 5px rgb(61, 61, 63, 0.5));
    transform: translateZ(0);
}

/* ぼかしから出現 */
.blur {
    animation-name: blurAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
    }
}

/* みぎよせ */
.parcent_l {
    margin-left: 30%;
}

.pixel_l {
    margin-left: 500px;
}

/* ひだりよせ */
.parcent_r {
    margin-right: 30%;
}

.pixel_r {
    margin-right: 500px;
}

.nega_m {
    margin-top: -40px;
    /* 上方向にネガティブマージンを取る */
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

.num {
    font-size: 50px;
}

mark {
    background: linear-gradient(transparent 40%, #ffff00 80%);
}

.mark5 {
    color: #FFFFFF;
    background: linear-gradient(transparent 80%, yellow 0%);
}

.box {
    position: relative;
}

.box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    text-align: center;
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 1.3s ease-in-out infinite alternate;
    -moz-animation: blink 1.3s ease-in-out infinite alternate;
    animation: blink 1.3s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.pagetop {
    position: fixed;
    bottom: 16px;
    right: 16px;
}

.pagetop a {
    display: block;
    text-decoration: none;
}

.pagetop:hover {
    opacity: 0.85;
}

.fuwafuwa {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 20%;
    height: auto;
    margin-top: 0px;
    vertical-align: bottom;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(-7deg);
    }

    50% {
        transform: translate(0, -7px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(7deg);
    }
}


/*トップに戻るボタン
------------------------------- */
html {
    scroll-behavior: smooth;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 0px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #bcb4e5;
    border-right: 3px solid #bcb4e5;
    transform: translateY(20%) rotate(-45deg);
}



/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
    z-index: -1;
    top: 4px;
    left: 4px;
    /*影の形状*/
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #333;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
    background-color: #333;
    color: #fff;
    transform: translate(4px, 4px);
}


/*矢印が右に移動する*/
.btnarrow4 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 5px 10px;
    color: #FFFFFF;

    font-size: clamp(1rem, 2vw + 1rem, 2rem);
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before {
    content: '';
    color: #FFFFFF;
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: 1px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #FFFFFF;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: translateZ(0);
}

.btnarrow4::after {
    content: '';
    color: #000000;
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: 6px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before {
    left: 20%;
}

.btnarrow4:hover::after {
    right: -5%;
}


/*矢印が右に移動する*/
.btnarrow5 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 5px 10px;
    color: #f200c6;

    font-size: clamp(1rem, 2vw + 1rem, 2rem);
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow5::before {
    content: '';
    color: #f200c6;
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: 1px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #f200c6;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: translateZ(0);
}

.btnarrow5::after {
    content: '';
    color: #000000;
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: 6px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #f200c6;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow5:hover::before {
    left: 20%;
}

.btnarrow5:hover::after {
    right: -5%;
}


/* 矢印が右に移動 */

.btnarrow1::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #be1f33;
    border-right: 2px solid #be1f33;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after {
    right: 11px;
    color: #fff;
}


/* ボタン共通設定 */
.btn02 {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 25px;
    border: solid 2px #be1f33;
    outline: none;
    width: 100%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
    -webkit-transition: -webkit-transform 0.1s;
    transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn02:hover {
    border-color: transparent !important;
}

/*ボタンの中のテキスト*/
.btn02 span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 10px 5px;
    font-size: 2rem;
    background: #FFFFFF;
    border-radius: 25px;
    color: #f200c6;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s;
}

/* ボタン共通設定 */
.btn03 {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 25px;
    border: solid 2px #FFF;
    outline: none;
    width: 100%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
    -webkit-transition: -webkit-transform 0.1s;
    transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn03:hover {
    border-color: transparent !important;
}

/*ボタンの中のテキスト*/
.btn03 span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 10px 5px;
    font-size: 2rem;
    background: #f200c6;
    border-radius: 25px;
    color: #FFF;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s;
}

/* ボタン共通設定 */
.btn04 {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 25px;
    border: solid 2px #FFFFFF;
    outline: none;
    width: 100%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
    -webkit-transition: -webkit-transform 0.1s;
    transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn04:hover {
    border-color: transparent !important;
}

/*ボタンの中のテキスト*/
.btn04 span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 10px 5px;
    font-size: 2rem;
    background: #f200c6;
    border-radius: 25px;
    color: #FFF;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s;
}


/* ボタン共通設定 */
.btn05 {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 30px;
    border: solid 3px #000;
    outline: none;
    width: 100%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
    -webkit-transition: -webkit-transform 0.1s;
    transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn05:hover {
    border-color: transparent !important;
}

/*ボタンの中のテキスト*/
.btn05 span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 10px 2px;
    font-size: 2rem;
    background: #FFFFFF;
    border-radius: 25px;
    color: #000;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s;
}

/* ボタン共通設定 */
.btn06 {
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    border-radius: 30px;
    border: solid 2px #FFFFFF;
    outline: none;
    width: 100%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
    -webkit-transition: -webkit-transform 0.1s;
    transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn06:hover {
    border-color: transparent !important;
}

/*ボタンの中のテキスト*/
.btn06 span {
    position: relative;
    z-index: 2;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
    display: block;
    padding: 10px 2px;
    font-size: 2rem;
    background: #000;
    border-radius: 25px;
    color: #FFFFFF;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s;
}


/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
    z-index: -1;
    top: 4px;
    left: 4px;
    /*影の形状*/
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #333;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
    background-color: #333;
    color: #fff;
    transform: translate(4px, 4px);
}


/*矢印が右に移動する*/
.btnarrow4 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    ;
    padding: 0 20px;
    color: #FFFFFF;
    font-size: 2rem;
    line-height: 1em;
    /*1より小さくする*/
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #FFFFFF;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: translateZ(0);
}

.btnarrow4::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -3px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #FFFFFF;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before {
    left: 20%;
}

.btnarrow4:hover::after {
    right: -5%;
}

.search-form-003 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    background-color: transparent;
    margin: 10px;
    cursor: pointer;
}

.search-form-003 input {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    outline: none;
    padding-right: 3em;

}

.search-form-003 input::placeholder {
    color: #FFFFFF;

}

.search-form-003 img {
    transform: translate(50px, -50px);
}

.search-form-003 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-form-003 button::after {
    width: 20px;
    height: 20px;
    background-image: url('img/search_icon_white.png');
    background-repeat: no-repeat;
    content: '';
}


/*== モーダル表示 */
.md-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    z-index: 9999;
}

.md-contents {
    display: none;
    position: fixed;
    top: 5%;
    left: 50%;
    width: 90%;
    height: auto;
    overflow: hidden;
    transform: translateX(-50%);
    z-index: 10000;
}


.md-inner {
    padding: 24px 35px;
    background: #fff;
    height: 80%;
}

.md-img {
    max-height: calc(100vh - 350px);
}


.md-xmark {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 25px;
    height: 22px;
    z-index: 9999;
    cursor: pointer;
}

.md-xmark span {
    height: auto;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
}

.md-xmark span:nth-of-type(1) {
    top: 0;
    transform: translateY(10px) rotate(-45deg);
}


.md-xmark span:nth-of-type(2) {
    bottom: 0;
    transform: translateY(-10px) rotate(45deg);
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex>p {
    width: 49%;
}

hr.line2 {
    border: none;
    border-top: 1px dotted #FFFFFF;
}

/* ベースのリセット */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

/* ラッパー中央揃え */
.wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    padding: 0 10px;
}