@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.6vw;
    font-weight: 500;
    line-height: 1.5;
    color: #111111;
}

section {
    overflow: hidden;
}

select {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 4vw;
    line-height: 1.5;
    font-weight: 500;
    color: #111111;
}

body {
    background-color: #f5f5f5;
}

main {
    padding-top: 15vw;
}

img {
    width: 100%;
}

.container {
    //    width: 94vw;
    width: 90vw;
    margin: auto auto 30px;
}

#publish .container {
    padding-bottom: 30px;
}

.container84 {
    width: 84vw;
    margin: auto;
}

header {
    height: 15vw;
    background-color: #BA0015;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#breadcrumbs span {
    font-family: 'Noto Sans JP', sans-serif;
    //    font-size: 1.3vw;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #111111;
}

#breadcrumbs span a {
    font-family: 'Noto Sans JP', sans-serif;
    //    font-size: 3vw;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #555;
}


header .LogoWrap {
    content: '';
    display: block;
    background-image: url(../img/common/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 68px;
    height: 41px;
	float:left;
	margin-left:10px;
	margin-top:6px;
}


button {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    border: 0;
    outline: 0;
    background: transparent;
    border-radius: 0;
    text-align: inherit;
}

button:hover {
    cursor: pointer;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 0;
    right: 2vw;
    /* ボタンの大きさ  */
    width: 9vw;
    height: 48px;
    /* バーガーの線をボタン範囲の中心に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 最前面に */
    z-index: 10;
}

@media screen and (min-width:768px) {
    .btn {
        top: 4.5vw;
    }
}

/***** 真ん中のバーガー線 *****/
.btn-line {
    /* 線の長さと高さ */
    width: 100%;
	min-width:25px !important;
    height: 3px;
    /* バーガー線の色 */
    background-color: #FFF;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    transition: .2s;
}


.btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-8px);
}


.btn-line::after {
    /* 下の線の位置 */
    transform: translateY(8px);
}

/***** メニューオープン時 *****/
.btn-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
    content: "";
    transition: .2s;
	background-color: #333;
}

.btn-line.open::before {
    /* 上の線を傾ける */
    transform: rotate(45deg);
}

.btn-line.open::after {
    /* 上の線を傾ける */
    transform: rotate(-45deg);
}

/* ボタンフォーカス時の装飾 */
.btn:focus .btn-line,
.btn:focus .btn-line::before,
.btn:focus .btn-line::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}

.btn:focus .btn-line.open {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn:focus .btn-line.open::before,
.btn:focus .btn-line.open::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
    transform: translateX(100%);
    width: 100%;
    //    height: 100vh;
    height: auto;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    background-color: rgba(255, 255, 255, 1);
    transition: transform .3s;
    justify-content: center;
    padding: 8vw;
    padding-bottom: 20vh;
}

.menu-list a {
    font-size: 15px;
    border-bottom: #c8161e 1px dashed;
    display: block;
    padding-bottom: 2vw;
    position: relative;
}

.menu-list a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 2px #c8161e;
    border-right: solid 2px #c8161e;
    position: absolute;
    right: 1.5vw;
    top: 8px;
    transform: rotate(45deg);
}

.menu-list {
    margin-bottom: 5vw;
    /* width: 100%; */
    /* height: 100%; */
    /* メニューテキスト位置をリスト内中心に */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

.menu-list:hover {
    color: #333;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
    transform: translateX(0%);
	padding-top:40px;
}

.Topsec01 {
    background-color: #c8161e;
    position: relative;
    padding: 10vw 0 15vw;
}


.Fv {
    position: relative;
}
	
.ActLinkBtnWrap a {
    background-color:none;
    color: #fff;
    font-size: 10px;
    padding: 2vw 0 2vw 4vw;
    width: 70vw;
    margin: auto;
    display: block;
    border-radius: 80px;
    position: relative;
}

#home .AddResBtn a {
    padding: 3vw 0;
    background-color: #c8161e;
    border: unset;
    font-size: 4vw;
    //    padding: 2vw 0 2vw 4vw;
    width: 57vw;
}

.HeadWrap .ActLinkBtnWrap a {
    background-color: none;
    color: #fff;
    font-size: 10px;
    padding: 1.25vw 4vw 1.45vw 7vw;
    display: inline-block;
    width: 55px;
    border-radius:0;
    position: relative;
	padding-top:10px;
}

.HeadWrap .RedWrap a {
    background-color:none;
    color: #FFFFFF;
    border: none;
    font-size: 10px;
    /*padding: 1vw 2vw 1vw 6vw;*/
    /*margin: -2px;*/
    display: inline-block;
    width: 60px;
    border-radius:0;
    position: relative;
	margin-left:-37px;
	text-align:center;
}

.HeadWrap .ActLinkBtnWrap a::before {
    display: block;
    content: '';
    background-image: url(../img/common/CheckIcon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 19.5px;
    height: 19.5px;
    position: absolute;
    top: -10px;
    left: 36%;
}

.HeadWrap .RedWrap a::before {
    display: block;
    content: '';
    background-image: url(../img/common/ContctIcon_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 22px;
    position: absolute;
    top: -10px;
    left: 45%;
}

.HeadBlock {
    display: flex;
    gap: 0;
    position: absolute;
    top: 65%;
    right: 48px;
    transform: translateY(-50%);
	width:140px;

}

/*.ActLinkBtnWrap a::before {
    display: block;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 6vw;
    height: 6vw;
    position: absolute;
    top: 3vw;
    left: 5vw
}*/

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    /*left: 5vw !important;*/
}

.swiper-pagination {
    /*text-align: left !important;*/
}
.swiper-pagination-bullet {
	box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.5);	
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: unset !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background-color: #c8161e !important;
}

.TopsecCenter {
    text-align: center;
}

.Topsec01 img {
    width: 30vw;
    margin: auto;
}

.TopsecCenter h2 span {
    color: #fff100;
    font-weight: 700;
    font-size: 5vw;
    border-bottom: #fff100 solid 4px;

}

.TopsecCenter h2 {
    color: #fff;
    font-size: 4vw;
    line-height: 1.5;
    padding: 5vw 0;
}

.TopsecCenter p {
    color: #fff;
    font-size: 4vw;
    line-height: 1.5;
}

.Topsec01LinkWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10vw;
}

.Topsec01LinkWrap div {
    width: 48%;
    text-align: center;
    border-radius: 70px;
    //    padding: 3vw 0;
}

.Topsec01LinkWrap>div a {
    font-weight: 700;
    font-size: 4.5vw;
    //    height: 50px;
    //    height:90px;
    //    padding:3vw 0;
    padding: 0.6vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width:769px) and (max-width:1080px) {
    .Topsec01LinkWrap>div a {
        padding: 1.6vw 0;
    }
}

@media screen and (max-width:700px) {
    .Topsec01LinkWrap>div a {
        //    height:50px;
        padding: 2.6vw 0;
    }
}

.Topsec01LinkWrap__2 {
    justify-content: center;
}

.GreenBtn {
    background-color: #3fb710;
}

.GreenBtn a {
    color: #fff;
}

.OrangeBtn {
    background-color: #f86900;
    margin-top: 20px;
}

.OrangeBtn a {
    color: #fff;
}

.BoderRedBtn {
    background-color: #fff;
}

.BoderRedBtn a {
    color: #c8161e;
}

.FormContents {
    //    padding: 0 0 6vw;
}

.ShadowBlock {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(4, 0, 0, 0.1);
    //    padding: 6vw 3vw;
    padding: 9vw 4vw 40px;
}

.ShadowBlock p {
    font-size: 16px;
    text-align: center;
}

#publish .ShadowBlock p {
    margin-top: 15px;
}

@media screen and (max-width:500px) {
    #publish .ShadowBlock p {
        margin-top: 0;
    }
}

#home .ShadowBlock p {
    text-align: center;
    font-size: 12px;
    
}

.bukatsu_feature_wrapper p {
    margin-bottom: 20px;
}

.single-activity .bukatsu_feature_wrapper p {
    text-align: left;
}

.bukatsu_feature_wrapper .SingleColumn .ShadowBlock p {
    text-align: left;
}

#check .SingleColumn .ShadowBlock p {
    margin-bottom: 6px;
}

#submit .ShadowBlock p {
    text-align: center;
}

.ddColumnContents__activity p {
    margin-bottom: 8px;
    text-align: center !important;
}


.ShadowBlock h2 {
    text-align: center;
    font-size: 5vw;
    font-weight: 700;
    margin-bottom: 20px;
}

#s-form {
    position: relative;
    height: 42px;
}

#s-box {
    height: 38px;
    padding: 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #ebe9e9;
    border-radius: 10px 0 0 10px;
    width: calc(75% - 20px);
}

.AddTopsec01LinkPickUp {
    padding-bottom: 10vw;
    justify-content: center;
}

#s-btn {
    font-weight: 600;
    background: #3fb710;
    border: none;
    font-size: 14px;
    color: #fff;
    width: 25%;
    text-align: center;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 3.6vw;
    border-radius: 0 10px 10px 0;
}

.BackGray {
    background-color: #f5f5f5;
    padding: 5vw;
    margin-top: 5vw;
}

.BackGray h3 {
    font-size: 4.5vw;
    font-weight: 500;
    margin-bottom: 5vw;
}

.FormContents select {
    font-weight: 500;
}

.cp_ipselect {
    overflow: hidden;
    text-align: center;
}

.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.cp_ipselect select::-ms-expand {
    display: none;
}

.cp_ipselect.cp_sl01 {
    position: relative;
    border-radius: 2px;
    border: 1px solid #ebe9e9;
    border-radius: 50px;
    background: #ffffff;
}


.cp_ipselect.cp_sl01 select {
    padding: 8px 8px 8px 8px;
    color: black;
    font-weight: 400;
}

.Form02Select {
    text-align: center;
}

.pt5 {
    padding-top: 5vw;
}

.ECM_CheckboxInput {
    padding: 2vw 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
}

.ECM_CheckboxInput-Input {
    margin: 0;
    width: 0;
    opacity: 0;
}

.ECM_CheckboxInput:hover>.ECM_CheckboxInput-DummyInput {
    background: #DDDDDD !important;
    border: solid 1px #ebe9e9;
}

.ECM_CheckboxInput-Input:focus+.ECM_CheckboxInput-DummyInput {
    background: #DDDDDD !important;
    border: solid 1px #ebe9e9;
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput {
    border: solid 1px #ebe9e9;
    background: #FFFFFF;
}

.ECM_CheckboxInput-Input:checked+.ECM_CheckboxInput-DummyInput::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/common/retenn-illust01.png") no-repeat center;
    background-size: contain;
}

.ECM_CheckboxInput-DummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 4vw;
    height: 4vw;
    border: solid 1px #ebe9e9;
    background: #FFFFFF;
    border-radius: 4px;
}

.ECM_CheckboxInput-LabelText {
    margin-left: 0.25em;
    display: block;
    font-size: 3.6vw;
    font-weight: 400;
}

.Check01Wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3vw;
}

.ECM_CheckboxInput-Input:checked~.ECM_CheckboxInput {
    border: #c8161e solid 1px;
}

.button {
    display: inline-block;
    border-radius: 10px;
    /* 角丸       */
    font-size: 4vw;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 4vw 5vw;
    /* 余白       */
    width: 50vw;
    background: #3fb710;
    /* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    opacity: 1;
    /* 透明度     */
    transition: .3s;
    /* なめらか変化 */
    border: unset;
    font-weight: 700;
}

.button:hover {
    opacity: 0.8;
    /* カーソル時透明度 */
}

.FormBtn {
    text-align: center;
    margin-top: 8vw;
}


/** チェックONなら表示 */
input:checked+label {
    color: red;
}

/* チェックが入ったチェックボックス */
input[type="checkbox"]:checked {
    box-shadow: 0 0 0 3px hotpink;
}

.CheckOn {
    border: #c8161e solid 1px;
}

.articleImage img {
    height: 180px;
    object-fit: cover;
}

.articleImage {
    position: relative;
}

.PickUpCat {
    color: #fff;
    padding: 1.3vw 3vw;
    font-size: 3.4vw;
    line-height: unset;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

article {
    border: solid 1px #ebe9e9;
}

.PickUpContents {
    padding: 3vw 5vw 3vw 5vw;
    /*height: 160px;*/
}

.PickUpContents h3 {
    font-size: 4.6vw;
    font-weight: 700;
    padding-bottom: 2vw;
}

.PickUpContents p {
    font-size: 4vw;
    font-weight: 500;
    text-align: left;
}

.PickUpContents p span {
    display: inline-block;
    padding: 0 1vw;
}

.TagsWrap span {
    background-color: #f5f5f5;
    padding: 1.3vw 3vw;
    font-size: 3.4vw;
    line-height: unset;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4vw;
}

#searchact .PickUpWrap {
    padding-left: 3vw;
    padding-right: 3vw;
}

.PickUp .ShadowBlock {
    //    padding: 10vw 0 10vw 3vw;
    padding: 10vw 0;
}

.PickUpWrap {
    padding: 5vw 0 8vw;
}

.searchArticleWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchArticleWrap .articleImage {
    //    width: 48%;
    width: 40%;
}

.searchArticleWrap .PickUpContents {
    //    width: 50%;
    width: 49%;
}

.searchArticleWrap .articleImage img {
    width: 100%;
    //    height: 100%;
    height: 31vw;
    object-position: center;
}

.searchArticleWrap .TagsWrap span {
    background-color: #c8161e;
    color: #fff;
}

.searchArticleWrap .PickUpContents p span {
    display: inline-block;
    padding: 0 1vw;
}

.Description {
    font-size: 4vw;
}

.SearchDescription {
    padding-top: 2vw;
    line-height: 2;
    letter-spacing: 2px;
}

.FormContents article {
    border: unset;
    margin-bottom: 8vw;
}

.Topsec01LinkPickUp {
    padding-top: unset;
    //    width: 90%;
    width: 100%;
    margin: auto;
}

.PickUp .Topsec01LinkPickUp {
    display: block;
}

.PickUp .Topsec01LinkWrap div {
    width: 80vw;
    margin: auto auto 10px;
}

.Topsec01LinkPickUp .BoderRedBtn {
    border: #c8161e solid 2px;
}

.TopColumnTitle {
    background-image: url(../img/common/BackImage.png);
    background-size: 100% 100%;
    text-align: center;
    padding: 8vw 0;
    margin-top: 0;
}

.TopColumnTitle h2 {
    color: #FFFFFF;
    font-size: 5vw;
}

.TopColumnTitle p {
    color: #FFFFFF;
    font-size: 4vw;
    padding-top: 2vw;
}

.TopColumn h3 {
    padding: 2vw;
    /*文字周りの余白*/
    border-left: solid 10px #c8161e;
    /*左線（実線 太さ 色）*/
    font-size: 4.5vw;
    font-weight: 700;
    margin-bottom: 20px;
}

.TopColumnCat .CommonPcTitle {
    margin-bottom: 0 !important;
}

.TopColumnBlock h4 {
    font-size: 4vw;
    font-weight: 600;
    padding-top: 3vw;
}

.TopColumnWrap>div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7vw;
}

@media screen and (min-width:768px) {
    .TopColumnWrap>div {
        display: block;
    }
}

.TopColumnWrap>div:first-of-type {
    display: block;
    margin-bottom: 40px;
}

.TopColumnWrap>div:first-of-type .ColumnImage img {
    height: 60vw;
    object-fit: cover;
}

.TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnImage {
    width: 35%;
}

@media screen and (min-width:768px) and (max-width:1080px) {
    .TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnImage {
        width: 100%;
    }
}

.TopColumnWrap .ItemsWrap02 .ColumnImage {
    width: 35% !important;
}

.TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnImage img {
    height: 20vw;
    object-fit: cover;
}

@media screen and (min-width:768px) and (max-width:1080px) {
    .TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnImage img {
        height: 110px;
    }

    .home .TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnImage img {
        height: 180px;
    }
}

.TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnContents {
    width: 63%;
}

@media screen and (min-width:768px) and (max-width:1080px) {
    .TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnContents {
        width: 100%;
        margin-top: 20px;
    }
}

.TopColumnWrap .TopColumnBlock:nth-child(n + 2) h4 {
    padding-top: unset;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /*IE対策*/
    line-height: 1.5em;
    max-height: 4.5em;
}

.TopColumnBlock span {
    color: #777777;
    font-size: 3.5vw;
    display: block;
    padding-top: 2vw;
}

.TopColumnWrap {
    margin-bottom: 12vw;
}

.TopColumnCat {
    background-color: #c8161e;
    text-align: center;
    padding: 3vw 0;
    margin-bottom: 9vw;
}

.TopColumnCat h3 {
    color: #fff;
    font-size: 5vw;
}

.TopColumnCatBlock .cat_id0 {
    background-image: url(../img/common/cat/item1.jpg);
}

.TopColumnCatBlock .cat_id1 {
    background-image: url(../img/common/cat/item2.jpg);
}

.TopColumnCatBlock .cat_id2 {
    background-image: url(../img/common/cat/item3.jpg);
}

.TopColumnCatBlock .cat_id3 {
    background-image: url(../img/common/cat/item4.jpg);
}

.TopColumnCatBlock .cat_id4 {
    background-image: url(../img/common/cat/item5.jpg);
}

.TopColumnCatBlock .cat_id5 {
    background-image: url(../img/common/cat/item6.jpg);
}

.TopColumnCatBlock>div {
    /*background-image: url(../img/column/2376314_700_320.jpg);*/
    width: 45vw;
    height: 45vw;
    object-fit: cover;
    background-size: cover;
    border-radius: 11px;
    margin-bottom: 5vw;
}


.TopColumnCatBlock div {
	width: 49% !important;
}
.TopColumnCatBlock .cat_id0 {
    margin-top:0 !important;
}


#publish .FvUnder:before {
    content: unset;
}

.addTopsec01LinkPickUp {
    display: block;
}

.addTopsec01LinkPickUp>div {
    width: 80%;
    margin: 0 auto 5vw;
}

.TopColumnCatBlock>div h4 {
    color: #fff;
    font-size: 4.5vw;
    height: 45vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 4px 3px 7px #000;
}

.TopColumnCatBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.FootLink {
    //    margin: 10vw 0 15vw;
    margin: 25px 0 15vw;
}

.FootTopBtnWrap {
    background-color: #c8161e;
    height: 30px;
    position: relative;
}

.FootTopBtnWrap::before {
    display: block;
    content: '';
    background-image: url(../img/common/headPart02.png);
    position: absolute;
    top: -25px;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 37vw;
    height: 10vw;
    z-index: 10;
}

.arrow {
    position: relative;
    display: block;
    padding: 10px;
}

.arrow::before {
    content: '';
    width: 15px;
    height: 15px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    right: 40px;
    top: 8px;
    z-index: 15;
}

.arrow.arrow-top::before {
    transform: rotate(-45deg);
    top: -10px;
}

.FootLogoImage {
    text-align: center;
}

.FootLogoImage img {
    width: 20vw;
}

.FootNavWrap {
    background-color: #323232;
    padding: 15vw 0 15vw;
}

.FootNav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10vw 0;
}

.FootNav ul li {
    width: 47%;
    margin-bottom: 5vw;
}

.FootNav ul li a {
    color: #fff;
    font-weight: 400;
    padding-bottom: 1.5vw;
    display: block;
}

@media screen and (max-width:768px) {
    .FootNav ul {
        width: 90%;
        margin: auto;
    }
}

@media screen and (max-width:500px) {
    .FootNav ul li a {
        border-bottom: #fff 1px dashed;
    }
}

.FootSns ul {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.FootSns ul li a img {
    width: 9vw;
}

.Copy {
    background-color: #222222;
    text-align: center;
}

.Copy p {
    color: #fff;
    font-size: 3.4vw;
    padding: 1.5vw 0;
}

.FvUnder>div h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 6vw;
    width: 94vw;
    margin: auto;
    text-align: center;
    font-weight: 700;
    z-index: 15;
}

.posr {
    position: relative;
}

.FvUnder {
    position: relative;
}

.FvUnder img {
    opacity: 1;
}

.FvUnder:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /*半透明のフィルターをかける*/
    z-index: 10;
}

.TopColumnTitle h3 {
    color: #FFFFFF;
    font-size: 5vw;
}

/*.MediaImage01 img {*/
/*    width: 45vw;*/
/*}*/

.MediaImage01 {
    text-align: center;
    padding: 5vw 0;
}

.Media01,
.Media02,
.Media03 {
    padding-bottom: 10vw;
}

.MediaImage02 {
    padding: 8vw 0 5vw;
}

.Media02 .Topsec01LinkWrap .BoderRedBtn,
.Media03 .Topsec01LinkWrap .BoderRedBtn {
    border: #c8161e solid 2px;
}

.mediaLink {
    display: block;
    text-align: center;
    padding-top: 5vw;
}

.FVUnderTitle span {
    display: block;
    color: #fff;
    font-size: 6vw;
}

.universityLink .universityLinkWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 5vw;
}

.universityLinkWrap div a {
    color: #c8161e;
    font-size: 4vw;
    border: #c8161e solid 2px;
    border-radius: 40px;
    padding: 1vw 3vw;
    display: inline-block;
}

.universityLinkWrap div {
    width: 18%;
    margin-bottom: 3vw;
}

#university .PcContainer {
    width: 90%;
    margin: auto;
}

.universityBlock ul {
    padding: 5vw 0;
}

.universityBlock ul li {
    line-height: 2.5;
}

.tab-wrap {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.tab-label {
    color: #c8161e;
    border: #c8161e solid 2px;
    margin-right: 5px;
    padding: 3vw 5vw 2vw;
    font-size: 5.5vw;
    font-weight: 700;
    order: -1;
}

.tab-content {
    width: 100%;
    display: none;
    margin-top: 13vw;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #c8161e;
    color: #fff;
}

.tab-switch:checked+.tab-label+.tab-content {
    display: block;
}

/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

.TabWrap {
    margin-bottom: 5vw;
}

.TabWrap h3 {
    padding: 2vw;
    border-left: solid 10px #c8161e;
    font-size: 4.5vw;
    font-weight: 700;
}

.ActList .ShadowBlock {
    padding: 10vw 3vw 10vw 3vw;
}

.TabBlock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f5;
}


.dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #c8161e;
    line-height: 1;
    width: 4vw;
    height: 2px;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    margin-right: 3vw;
}

.dli-plus::before {
    content: '';
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

.TabContentsBlockImage {
    padding: 5vw 0;
}

.TabContentsBlock ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.TabContentsBlock ul li {
    width: 50%;
    text-align: center;
    margin-bottom: 5vw;
    font-size: 4vw;
}

.TabBlock:hover {
    cursor: pointer;
}

.TabContentsBlock {
    display: none;
}

.OpenTab .TabContentsBlock {
    height: 100%;
    opacity: 1;
}

.single-activity .OpenTab .TabContentsBlock {
    height: auto;
}

.page-id-58 .OpenTab .TabContentsBlock {
    height: auto;
}

.page-id-92 .OpenTab .TabContentsBlock {
    height: auto;
}

.home .swiper-slide,
.home .swiper-wrapper {
    height: auto;
}


.OpenTab .dli-plus::before {
    opacity: 0;
    transition: all .3s ease;
}

.TabContentsBlock ul::after {
    content: '';
    display: block;
    width: 50%;
}


.SingleColumnWrap {
    padding: 0 3vw;
}

.SingleColumnContent span {
    color: #777777;
    margin-bottom: 5vw;
    display: inline-block;
}

.Pan {
    margin-top: 9vw;
    padding: 0 3vw;
    margin-bottom: 4vw;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: unset !important;
}

.SingleColumnContent h4 {
    font-size: 5vw;
    font-weight: 700;
    margin-bottom: 3vw;
}

.SingleActivityContent h4 {
    text-align: center;
}

.SingleActivityContent span {
    margin-bottom: unset;
}

.SingleActivityContent .TagsWrap span {
    background-color: #c8161e;
    color: #fff;
    margin-right: 5px;
}

.SingleActivityContent .ColumnContents {
    text-align: center;
}

.SiongleActSnsWrap {
    //    padding: 10vw 0 3vw;
    padding: 8vw 0 5vw;
}

.SiongleActSnsWrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
}

.SiongleActSnsWrap ul li {
    margin: 0 7px;
}

.Radio02>span {
    display: block;
    width: 50%;
}

.SiongleActSnsWrap ul li a img {
    width: 9vw;
}

.SingleActivityGallary {
    padding: 10vw 0 0 0;
}

.SingleActivityContent .Topsec01LinkWrap {
    display: block;
    text-align: center;
}

.SingleActivityContent .Topsec01LinkWrap>div {
    //    width: 80%;
    width: 94%;
    margin: 5vw auto 0;
    padding: 2vw 0;
}

.SingleActivityContent .Topsec01LinkWrap.Topsec01LinkPickUp__2>div {
    margin: 3vw auto 0;
    padding: 0;
    height: 50px;
    //    height: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

@media (min-width:500px) and (max-width:1080px) {
    .SingleActivityContent .Topsec01LinkWrap.Topsec01LinkPickUp__2>div {
        //    height: 5vw;
    }

    .PcTopColumnWrap .Topsec01LinkWrap>div a {
        font-size: 13px;
    }
}

.SkipLinkBtnWrap {
    display: flex;
    justify-content: space-evenly;
}

.button15 a {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 1.5vw 8vw 1.5vw 4vw;
    color: #fff;
    font-weight: 700;
    background-color: #c8161e;
    border-radius: 11px;
    transition: 0.3s;
}

.button15 a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 4vw;
    height: 4vw;
    background-color: #f2f2f2;
    border-radius: 50vh;
}

.button15 a::after {
    content: '';
    position: absolute;
    top: 47%;
    right: 4vw;
    transform: translateY(-50%) rotate(135deg);
    width: 4px;
    height: 4px;
    border-top: 2px solid #c8161e;
    border-right: 2px solid #c8161e;
}


.button15 a:hover {
    text-decoration: none;
    background-color: #cccccc;
}

.SubContents {
    padding: 15vw 0 0;
}

.SubContents h3 {
    padding: 2vw;
    border-left: solid 10px #c8161e;
    font-size: 4.5vw;
    font-weight: 700;
}

.SubContents h4 {
    border-bottom: solid 3px #f5f5f5;
    position: relative;
    font-size: 4vw;
    font-weight: 700;
}

.SubContents h4:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #c8161e;
    bottom: -3px;
    width: 10%;
}

#feature {
    padding: 10vw 0;
}

#feature>div {
    padding: 8vw 0;
}

#feature>div h4 {
    padding-bottom: 2vw;
    margin-bottom: 3vw;
}

.news__post {
	margin-top:50px !important;
}

#NewNews>div {
    margin: 5vw 0;
}

#NewNews>div .TabBlock {
    padding: 10vw 5vw 5vw 5vw;
    position: relative;
}

.TabBlock .Day {
    font-size: 3.5vw;
    top: 3.5vw;
    left: 5vw;
}

#NewNews>div .TabContentsBlockImage {
    background-color: #f5f5f5;
    padding: 5vw;
}

#NewNews>div .TabBlock h4:after {
    display: none;
    content: unset;
}

.SingleActCat {
    padding-top: 5vw;
}

.SingleActCat a {
    font-size: 4vw;
    border-bottom: #c8161e solid 1px;
    padding-right: 7vw;
    padding-left: 1vw;
    padding-bottom: 1vw;
    position: relative;

}

.SingleActCat a::after {
    content: '';
    //    width: 7px;
    //    height: 7px;
    width: 1.4vw;
    height: 1.4vw;
    border-top: solid 2px #c8161e;
    border-right: solid 2px #c8161e;
    position: absolute;
    right: 1.5vw;
    //    top: 8px;
    top: 2.2vw;
    transform: rotate(45deg);
}

.SingleActCat a span {
    font-size: 4vw;
    margin-right: 0.5vw;
    color: #111111;
}

#NewNews {
    padding-bottom: 15vw;
}

.kaisha {
    padding-top: 5vw;
}

.kaisha,
.kaisha tr,
.kaisha td,
.kaisha th {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 4vw;
    font-weight: 500;
    line-height: 1.5;
    color: #111111;
}

.kaisha th {
    width: auto;
}

.kaisha {
    width: 100%;
    table-layout: fixed;
}

.kaisha th,
.kaisha td {
    border: 1px solid #f5f5f5;
    padding: 20px;
    text-align: center;
}

.kaisha th {
    font-weight: bold;
    background-color: #f5f5f5;
}

#company .PickUp .ShadowBlock {
    padding: 10vw 3vw;
}

#company .kaisha th,
.kaisha td {
    padding: 20px 0;
}

#company .kaisha tbody {
    display: block;
}

.PublishTop h3 {
    text-align: center;
    font-size: 4vw;
    font-weight: 700;
    padding-bottom: 5vw;
}

.PublishWrap {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 5vw;
}

.PublishWrap h4 {
    font-size: 4vw;
    font-weight: 700;
}

.PublishWrap p {
    font-size: 15vw;
    font-weight: 700;
    color: #c8161e;
    line-height: 1;
}

.PublishWrap p span {
    font-size: 4vw;
    font-weight: 700;
}

.PublishTop h5 {
    font-size: 8vw;
    font-weight: 700;
    line-height: 1;
    color: #c8161e;
    text-align: center;
    padding-bottom: 10vw;
}

#publish .Topsec01LinkWrap {
    /* //    display: block; */
    display: flex;
    /* //    padding-bottom: 8vw; */
    bottom: 50vw;
}

@media (min-width:500px) and (max-width:1080px) {
    #publish .Topsec01LinkWrap {
        //    bottom:5vw;
        bottom: 24vw;
    }

    .page-id-92 .Topsec01LinkWrap {
        display: flex !important;
        justify-content: space-between;
    }

    .page-id-92 .Topsec01LinkWrap>div {
        width: 46% !important;
    }
}

@media (min-width:768px) and (max-width:1080p) {
    #publish .TabContentsBlock p {
        padding-top: 0px !important;
    }

    #publish .ShadowBlock p {
        margin-top: 8px !important;
    }
}



#publish .Topsec01LinkWrap>div {
    //    width: 80vw;
    width: 90%;
    //    margin: 0 10px 2vw;
    //    margin:0 auto 2vw;
    margin: 0 4px 2vw;
}

.worries {
    background-color: #fff;
    padding: 25vw 0 15vw;
    position: relative;
}

.worries::before {
    display: block;
    content: '';
    background-image: url(../img/common/tri.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -1vw;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 20vw;
}

.worries h2 {
    font-size: 5vw;
    text-align: center;
    font-weight: 700;
}

.worries h2 span {
    font-size: 5vw;
    font-weight: 700;
    color: #0065b5;
}

.worries div span img {
    width: 40vw;
}

.worries>div>div span {
    display: block;
    padding: 5vw 0;
}

.worries>div>div {
    text-align: center;
    padding-top: 10vw;
    padding-bottom: 2vw;
}

.worries>div>div h3 {
    font-size: 5vw;
    font-weight: 700;
    color: #0065b5;
    margin-bottom: 10px;
}

#publish .TopColumnTitle {
    margin-top: unset;
}

.meritWrap {
    padding: 10vw 0;
}

.meritWrap>div {
    border: #c8161e solid 2px;
    padding: 5vw 5vw;
    text-align: center;
}

.meritWrap>div:nth-child(2) {
    margin: 5vw 0;
}

.meritWrap>div h3 {
    color: #c8161e;
    font-size: 5vw;
    padding-bottom: 2vw;
    font-weight: 700;
}

.meritWrap>div p {
    font-size: 4vw;
    font-weight: 500;
}

#publish #NewNews {
    padding-bottom: unset;
}

#publish .TabBlock div:nth-child(1) {
    width: 5%;
}

#publish .TabBlock div:nth-child(2) {
    width: 85%;
}

#publish .TabBlock div:nth-child(3) {
    width: 5%;
}

#publish #NewNews>div .TabBlock {
    padding: 5vw;
}

#publish #NewNews>div .TabBlock h4 {
    font-size: 4vw;
    font-weight: 700;
}

#publish #NewNews>div .TabContentsBlockImage {
    background-color: #fff;
    display: flex;
    gap: 3.5vw;
    font-size: 4vw;
    font-weight: 700;
}

#publish #NewNews>div .TabContentsBlockImage span {
    color: #c8161e;
    font-size: 5vw;
    margin-top: -1.5px;
    display: block;
}

.QTab p {
    color: #c8161e;
    font-size: 5vw;
    margin-top: -1.5px;
    display: block;
}

.FootFreeWrap {
    //    margin-top: 15vw;
    margin-top: 35px;
}

.AllBody .FootFreeWrap .Topsec01LinkWrap>div {
    margin: auto;
}

.AllBody .FootFreeWrap .Topsec01LinkWrap {
    padding-bottom: unset;
    margin: 10px;
}

.FootFreeWrap p {
    padding: 5vw 0;
}

#publish .FootFreeWrap p {
    text-align: center;
}

.Topsec01LinkWrap .FootAllBtn {
    //    width: 80vw;
    width: 100%;
    margin: 0 auto 5vw;
}

#contact .ContactText {
    font-size: 3.9vw;
    font-weight: 600;
    //    text-align: left;
    text-align: center;
    padding: 5vw 0 10vw;
}

.ContactFlow {
    display: flex;
    justify-content: center;
    gap: 3em;
    //    padding-bottom: 80px;
}

.ContactFlow div {
    background-color: #fff;
    border: #c8161e solid 2px;
}

.ContactFlow div p {
    color: #c8161e;
}

.ContactFlow .ContactActive p {
    color: #fff;
    font-size: 4vw;
    font-weight: 700;
    padding: 5px 15px;
}

.ContactFlow .ContactActive p, .ContactFlow div p {
    font-size: 4vw;
    font-weight: 700;
    padding: 5px 15px;
}

.ContactFlow .ContactActive {
    background-color: #c8161e;
    border: #c8161e solid 2px;
}

.contactform .Radio01 span {
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
    bottom: 2px;
}

.Form-Item {

    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .Form-Item {
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.Form-Item:nth-child(5) {}

.Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-left: 6px;
    padding-top: 6px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #c8161e;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: calc(100% - 20px);
    max-width: 410px;
    font-size: 18px;
}

.page-id-94 .Form-Item-Input,
.page-id-94 .Form-Item-Textarea {
    margin-left: 0;
}

.page-id-94 .ShadowBlock p {
    text-align: left;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 4vw;
        height: 40px;
        flex: inherit;
        font-size: 15px;
        padding: 0 10px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: calc(100% - 20px);
    max-width: 410px;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 3.6vw;
        line-height: 1.5;
        color: #111111;
        padding: 10px;

    }
}

.Form-Btn {
    border: unset;
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2vw;
    padding-bottom: 2vw;
    width: 60vw;
    display: block;
    letter-spacing: 0.05em;
    background: #3fb710;
    color: #fff;
    font-weight: bold;
    font-size: 4vw;
}

.Form {
    padding-bottom: 10vw;
}


.my-parts {
    text-align: left;
}

.Radio01 {
    padding-top: 4vw;
}

.page-id-94 .Radio01 {
    margin-top: 15px;
}

.page-id-94 .Radio01 {
    padding-top: 0;
}

#check .Radio01 {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.Radio01 span {
    font-size: 4vw;
}

.Radio01 label {
    margin-right: 1em;
}

.Radio02 label {
    width: 50%;
    margin-right: unset;
}

.Radio02 label:first-of-type {
    margin-bottom: 1em;
}

.Radio02 {
    display: flex;
    flex-wrap: wrap;
}

#check .Radio02 {
    font-weight: 500;
}

.pri {
    text-align: center;
    padding-bottom: 5vw;
    font-size: 13px;
}

.pri a {
    padding-bottom: 1vw;
    border-bottom: #c8161e solid 2px;
    margin-right: 5px;
    font-size: 13px;
}

#privacy .Title {
    font-size: 5vw;
    font-weight: 700;
    text-align: center;
    padding-bottom: 5vw;
}

#privacy .SingleColumn>div>div h3 {
    font-size: 4.5vw;
    font-weight: 700;
    padding: 5vw 0 3vw;
}

#privacy .SingleColumn {
    margin-bottom: 30vw;
}

.kaisha tbody {
    width: 100%;
    display: block;
}

/*検索フォームのポップアップ*/
.PopUp_Block_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.PopUp_Block_subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.PopUp_Block_title {
    background-color: #3fb710;
    padding: 1vw 4vw;
}

.PopUp_Block_title h3, .PopUp_Block_title span {
    color: #fff;
    font-weight: 600;
    font-size: 4vw;
}

.PopUp_Block_title span {
    font-size: 5vw;
}


.PopUp_Block_subtitle {
    margin: 5vw 0 5vw 0;
    padding: 1vw 4vw 1vw 2vw;
    background: #f5f5f5;
    /*背景色*/
    border-left: solid 8px #3fb710;
    /*左線（実線 太さ 色）*/
}

.PopUp_Block_subtitle span {
    font-size: 5vw;
    color: #3fb710;
    font-weight: 600;
}

.PopUp_Block_subtitle_show label {
    display: flex;
    align-items: center;
}

.PopUp_Block_subtitle_show span {
    display: block;
    padding-bottom: 2px;

}

.PopUp_Block_subtitle_show {
    display: none;
    margin: 0 5vw;
}

.min {
    display: none;
}

.showPop .PopUp_Block_subtitle_show {
    display: block;
}

.showPop .PopUp_Block_subtitle .plus {
    display: none;
}

.showPop .PopUp_Block_subtitle .min {
    display: block;
}

.PopUp_Block_subtitle_dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 10px;
    height: 2px;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
}

.PopUp_Block_subtitle_dli-plus::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

.showPop .PopUp_Block_subtitle_dli-plus::before {
    display: none;
}

.areasWrap {
    display: none;
}

.areasWrap div {
    margin: 20px 0;
}

.showPopparent .areasWrap {
    display: block;
}

.showPopparent .PopUp_Block_title span {
    transform: rotate(45deg);
}

.PopUp_bu {
    margin-top: 10vw;
}

.PopBtnWrap {
    display: flex;
    justify-content: space-evenly;
}

.PopBtnWrap .FormBtn {
    width: 45%;
}

.PopBtnWrap .FormBtn .button {
    width: 100%;
    border-radius: 20vw;
}

.PopBtnWrap .FormBtn .resetBtn {
    background-color: #c8161e;
}

.PopUp input[type="checkbox"]:checked {
    box-shadow: unset;
}

.Form02Select p {
    //    padding: 3vw 2vw;
    padding: 10px;
}

.Form03Select p {
    padding: 10px;
}


.PopUpWrapS {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    overflow: auto;
}

.PopUp {
    padding: 30vw 5vw;
}

.OriginalPan {
    margin-top: 9vw;
    padding: 0 3vw;
    margin-bottom: 4vw;
}

.disFlex {
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.disFlex img {
    width: 45%;
    height: 30vw !important;
}

.disFlex p {
    width: 50%;
}

.addTopsec01LinkPickUpColumn {
    margin-bottom: 10vw;
}

.nav-links .page-numbers {
    background-color: #fff;
    color: #c8161e;
    border: solid 1px #c8161e;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
}

.nav-links .dots {
    border: none;
}

.nav-links .current {
    background-color: #c8161e;
    color: #FFF;
    width: 40px;
    height: 40px;
    display: inline-flex;
    //    margin: auto;
    justify-content: center;
    align-items: center;
    margin: 0 6px;
}

@media (min-width:769px) and (max-width:1080px) {
    .nav-links .page-numbers {
        width: auto;
        height: auto;
        padding: 1vw 2.5vw;
    }

    .nav-links .current {
        width: auto;
        height: auto;
        padding: 1vw 2.5vw;
    }
}


.pageNate {
    text-align: center;
    margin-bottom: 8vw;
}

.TagsWrap {
    //    display: flex;
    //    gap: 3vw;
    overflow: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
}

@media (min-width:768px) and (max-width:1080px) {
    .TagsWrap {
        gap: 1vw;
    }
}

.TagsWrap::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
}

#home .TagsWrap {
    display: unset;
    gap: unset;
    ;
    overflow: unset;
    ;
    white-space: unset;
    ;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.Fv {
    margin-bottom: 30px;
}

.Fv .swiper-slide-active .swiper-img,
.Fv .swiper-slide-duplicate-active .swiper-img,
.Fv .swiper-slide-prev .swiper-img {
    animation: zoomUp 8s linear 0s normal both;
}

.TopColumnWrap .swiper-slide {
    height:60vw!important;
}

.Fv .swiper-slide img {
    height: auto;
    width: 100%;
}

.FvText h2 {
    text-shadow: 4px 3px 7px #000;
    margin-bottom: 40px;
}

.FvText p {
    text-shadow: 4px 3px 7px #000;
}


#toc_container {
    background-color: #f5f5f5;
    padding: 5vw;
    margin: 8vw 0 0 0;
}

.toc_title {
    text-align: center;
    margin-bottom: 3vw;
}

.toc_list a {
    color: #0065b5;
    line-height: 1.8;
}

.MapContainer {
    max-width: 90vw;
    margin: auto;
}

.MapSection h3 {
    font-size: 4vw;
}

.MapContainer>div {
    margin-bottom: 5vw;
}

.MapContainer>div p {
    padding-top: 2vw;
    padding-left: 1vw;
    text-align: left;
}

.MapContainer a {
    display: inline-block;
}

.MapSection .ShadowBlock {
    padding: 10vw 0;
}

.PopBtnWrap .FormBtn {
    width: 30%;
}

@media screen and (max-width: 320px) {
    .Radio02 {
        display: block;
    }

    .Radio02>span {
        width: 100%;
    }
}


/**/
.pnavi,
.nav-links {
    display: flex;
    justify-content: center;
    //    margin:40px 0 0;
    width: 100%;
    clear: both;
}

.nav-links {
    //   display:flex;
}

.pnavi .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    //    width: 35px;
    //    height: 38px;
    width: 8vw;
    height: 8vw;
    color: #c8161e;
    background: #fff;
    border: 1px solid #c8161e;
}

.pnavi .current {
    background: #c8161e;
    color: #fff;
}

.pnavi .prev,
.pnavi .next {
    //    width: 45px;
    //    height: 38px;
    width: 13vw;
    height: 8vw;
}

.pnavi .dots {
    width: auto;
    background: transparent;
    box-shadow: none;
    border: none;
}

.pnavi .prev i {
    margin-right: 6px;
}

.pnavi .next i {
    margin-left: 6px;
}



.single-activity .ColumnContents {
    margin-bottom: 0;
}

.single-activity .TopColumnWrap {
    margin-bottom: 0;
}


.single-column .Cont p {
    text-align: left;
}

.mwform-checkbox-field input, .mwform-radio-field input {
    margin-top: 0 !important;
}

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

    .SearchSide {
        display: none;
    }

}

@media (min-width:520px) and (max-width:1080px) {
    .PickUp .Topsec01LinkWrap div {
        width: 100%;
        margin: auto auto 10px;
    }

    .FootNav ul li a {
        font-size: 13px;
        color: #fff;
        font-weight: 400;
        display: block;
    }

    .worries>div>div>div h3 {
        font-size: 22px;
        height: 60px;
    }

    .worries>div>div>div p {
        font-size: 15px;
        height: 30px;
    }
}

.sp-show {
    display: none !important;
}

@media screen and (max-width:768px) {
    .pc-show {
        display: none !important;
    }

    .sp-show {
        display: block !important;
    }
}

.btn-line {
 //   background-color: #ddd;
}

#home .swiper-button-next, #home .swiper-rtl .swiper-button-prev {
    display: none !important;
}

/*ここから追加*/
.AllBody .FootFreeWrap .add_Top_footer_common {
    margin: unset;
}

.AllBody .FootFreeWrap .add_Top_footer_common02 {
    margin: 10px 0;
}

#publish .Topsec01LinkWrap > div {
    width: 100%;
}

.nav-links .current, .nav-links .page-numbers {
    margin: unset;
}

.pnavi, .nav-links {
    gap: 3vw;
}

.ShadowBlock p {
    font-size: 3.6vw !important;
}

.areasWrap div {
    margin: 10px 0;
}