@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: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #111111;
    letter-spacing: 1.5px;
}

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

body {
    background-color: #f5f5f5;
}

/*main {*/
/*    padding-top: 15vw;*/
/*}*/

img {
    width: 100%;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container80 {
    /*max-width: 800px;*/
    margin: auto;
}
#home .container80,
#searchact .container80{
    max-width: 800px;
}

main .PcContainer {
    max-width: 1200px;
    margin: auto;
}

header {
    height:140px;
    background-color:#FFFFFF;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.HeadBlock {
    position: unset;
    top: unset;
    right: unset;
    transform: unset;
    gap: 1em;
    justify-content: end;
    padding: 15px 0 10px;
}


header .LogoWrap {
    content: '';
    display: block;
    background-image: url(../img/common/logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 169px;
	height:106px;
	float:left;
	margin-left:20px;
	margin-top:20px;
}
@media screen and (max-width:1406px){
	.LogoWrap {
		background-image: url(../img/common/logo.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position:center !important;
		width: 130px !important;
		height:106px;
		float:left;
		margin-left:20px;
		margin-top:10px !important;
	}
	
}
/*@media screen and (max-width:1406px){
	.LogoWrap {
		background-image: url(../img/common/logo.png);
		background-repeat: no-repeat;
		background-size: contain;
		background-position:center !important;
		width: 100px !important;
		height:106px;
		float:left;
		margin-left:20px;
		margin-top:0px !important;
	}
	
}*/
@media screen and (max-width:1080px){
	.HeadBlock{
		padding-right:85px!important;
	}
	
}
@media screen and (min-width:768px) and (max-width:991px){
    header .LogoWrap {
        width: 68px;
        height: 41px;
    }
}

header .PcContainer {
	float:right;
	margin-right:20px;
}
.HeadBlock {
    display: flex;
    align-items:center;
    position:relative;
}


nav ul.menu {
	border:1px #2F2F2F solid;
	border-radius:30px;
    padding:15px 25px;
	
	background-color:#FFFFFF;
}
nav ul.menu li {
	float:left;
}
nav ul.menu li:first-child {
	padding-right:25px;
}
nav ul.menu li+ li {
  border-left: 1px solid #2F2F2F;
  padding:0 25px;
}
nav ul.menu li:last-child {
	padding-right:0;
}

@media screen and (max-width:1406px){
	.menu-list a {
		font-size:14px;
	}
	nav ul.menu li:first-child {
		padding-right: 10px;
	}
	nav ul.menu li+ li {
		border-left: 1px solid #2F2F2F;
		padding: 0 10px;
	}
}

nav .menu a {
    transition: 0.2s;
	padding-bottom: 10px;
}

nav .menu a:hover {
    color:#c8161e;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

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

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


.PickUpWrap .swiper-slide {
    height: auto;
}

.PickUpWrap article {
    height: 100%;
}

.swiper-android .swiper-slide, .swiper-wrapper {
    padding: 0 0 5px 0;
}

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: 1vw;
    right: 2vw;
    /* ボタンの大きさ  */
    width: 9vw;
    height: 48px;
    /* バーガーの線をボタン範囲の中心に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 最前面に */
    z-index: 10;
}


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

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    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;
}

.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);
}


.Topsec01 {
    background-color: #c8161e;
    position: relative;
    padding: 80px 0;
}

.Fv {
    background-color:#FFFFFF;
    position: relative !important;
	padding-top:115px;
}

.Fv_top {
	width:100%;
	/*aspect-ratio:16/9;*/  /* アスペクト比の指定  */
}
.Fv_top img {
	width:100%;
	height:auto;
}
@media screen and (max-width:768px){
	
}
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}


.ActLinkBtnWrap a {
    background-color: #3fb710;
    border: solid 2px #3fb710;
    color: #fff;
    font-size: 25px;
    padding: 10px 50px;
    margin: auto;
    display: inline-block;
    border-radius: 80px;
    position: relative;
}

.ActLinkBtnWrap a:hover {
    background-color: #64C64C;
    border: solid 2px #64C64C;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.HeadWrap .ActLinkBtnWrap a {
    background-color: #3fb710;
    color: #fff;
    font-size: 3.5vw;
    padding: 1.25vw 4vw 1.45vw 7vw;
    display: inline-block;
    width: unset;
    border-radius: 40px;
    position: relative;
}

.HeadWrap .RedWrap a {
    background-color: #fff;
    color: #c8161e;
    border: #c8161e solid 2px;
    font-size: 3.5vw;
    padding: 1vw 2vw 1vw 6vw;
    margin: -2px;
    display: inline-block;
    width: unset;
    border-radius: 40px;
    position: relative;
}

.HeadWrap .RedWrap a:hover {
    background-color: #f7e6e7;
    color: #c8161e;
    border: #c8161e solid 2px;
}

.HeadWrap .ActLinkBtnWrap a::before {
    display: block;
    content: '';
    background-image: url(../img/common/CheckIcon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3vw;
    height: 4vw;
    position: absolute;
    top: 2.5vw;
    left: 2vw;
}

.HeadWrap .RedWrap a::before {
    display: block;
    content: '';
    background-image: url(../img/common/ContctIcon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3vw;
    height: 4vw;
    position: absolute;
    top: 2vw;
    left: 2vw;
}




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


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

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

.TopsecCenter {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    gap: 2em;
}

.TopsecCenter > div:last-child {
    width: 50%;
}

.TopsecCenter > div:first-of-type {
    width: 40%;
    text-align: right;
}

.Topsec01 img {
    width: 60%;
    margin: auto;
}

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

}

.TopsecCenter h2 {
    color: #fff;
    font-size: 25px;
    line-height: 1.5;
    padding: 0 0 50px 0;
}

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

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

.Topsec01LinkWrap > div {
    width: 48%;
    text-align: center;
    border-radius: 40px;
//    padding: 6px 0px;
}

.Topsec01LinkWrap > div a {
    font-weight: 700;
    font-size: 18px;
}

.Topsec01LinkWrap__2{
    justify-content:center;
}

.page-id-92 .BoderRedBtn a{
    background:#fff;
}

#publish .Topsec01LinkPickUp {
    width: 50%;
}
.page-id-92#publish .Topsec01LinkPickUp{
//    width: 66%;
    width: 50%;
}
@media screen and (max-width:768px){
    .Topsec01LinkPickUp{
        width: 60%!important;
    }
}

.GreenBtn {

}

.GreenBtn:hover {
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.OrangeBtn:hover {
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.OrangeBtn a {
    color: #fff;
}

.GreenBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 40px;
    background-color: #3fb710;
    color: #fff;
}

.BoderRedBtn {

}

.BoderRedBtn:hover {
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    background-color: #fff;
    color: #c8161e;
}

.BoderRedBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border-radius: 40px;
//    background-color: #fff;
    color: #c8161e;
}

.FormContents {
    padding: 50px 0 0;
}

.ShadowBlock {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(4, 0, 0, 0.1);
    padding: 60px 30px;

}
.FootFreeWrap .ShadowBlock {
    width:800px;
    margin:auto;
}

.ShadowBlock h2 {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}

#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);
}

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

.BackGray {
    background-color: #f5f5f5;
    padding: 30px 50px;
    margin-top: 50px;
}

.BackGray h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.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;

}

.Form02Select {
    text-align: center;
}

.pt5 {
    padding-top: 50px;
}

.ECM_CheckboxInput {
    padding: 10px 20px;
    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: 15px;
    height: 15px;
    border: solid 1px #ebe9e9;
    background: #FFFFFF;
    border-radius: 4px;
}

.ECM_CheckboxInput-LabelText {
    margin-left: 0.25em;
    display: block;
    font-size: 16px;
}

.Check01Wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
}

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

.button {
    display: inline-block;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    padding: 15px 70px;
    background: #3fb710;
    color: #ffffff;
    line-height: 1em;
    opacity: 1;
    transition: .3s;
    border: unset;
    font-weight: 700;
}

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

.FormBtn {
    text-align: center;
    margin-top: 70px;
}


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

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

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

.articleImage {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.articleImage img:hover {
    height: 190px;
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}


.PickUpCat {
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    line-height: unset;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

article {
    border: solid 1px #ebe9e9;
}

.PickUpContents {
    padding: 20px 30px 30px;
}

.PickUpContents h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
}

.PickUpContents p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

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

.TagsWrap{
    white-space: nowrap;
    overflow-x: scroll;
}
@media (min-width:768px) and (max-width:1080px){
    .TagsWrap{
        gap:1vw;
    }
}
.single-activity .TagsWrap{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.single-activity .TagsWrap::-webkit-scrollbar{
    display: none;
}
.single-activity .TagsWrap::-webkit-scrollbar {
    width: 0px;
}
.single-activity .TagsWrap::-webkit-scrollbar-track {
    background-color:#fff;
}

.TagsWrap span {
    background-color: #f5f5f5;
    padding: 6px 10px 7px;
    font-size: 11px;
    line-height: unset;
    border-radius: 20px;
    display: inline-block;
    margin-top: 6px;
}

.PickUp .ShadowBlock {
    padding: 50px;
    margin-top:50px;
}

.PickUpWrap {
    padding: 50px;
}

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

.searchArticleWrap .articleImage {
    width: 48%;
}

.searchArticleWrap .PickUpContents {
    width: 50%;
}

.searchArticleWrap .articleImage img {
    height: 100%;
    object-position: center;
}

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

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

.Description {
    font-size: 16px;
}

.SearchDescription {
    padding-top: 15px;
}

.FormContents article {
    border: unset;
    margin-bottom: 50px;
}

.Topsec01LinkPickUp {
    padding-top: unset;
    /* padding-right: 3vw; */
    width: 40%;
    margin: auto;
}
.page-id-7 .Topsec01LinkPickUp{
//    width:auto;
    width:50%;
}


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

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

.TopColumnTitle h2 {
    color: #FFFFFF;
    font-size: 25px;
}

.TopColumnTitle p {
    color: #FFFFFF;
    font-size: 25px;
    padding-top: 10px;
}

.TopColumn h3 {
    padding: 10px;
    border-left: solid 10px #c8161e;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 50px;
}

.TopColumnBlock h4 {
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
}


.ColumnImage img {
    height: 11vw;
    object-fit: cover;
}



.TopColumnBlock span {
    color: #777777;
    font-size: 14px;
    display: block;
    padding-top: 10px;
}

.TopColumnWrap {
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (min-width:500px) and (max-width:1080px){

}

.TopColumnWrap > div {
    width: 30%;
    margin-bottom: 50px;
}

.TopColumnCat {
    background-color: #c8161e;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 50px;
}

.TopColumnCat h3 {
    color: #fff;
    font-size: 25px;
}

.TopColumnCat .CommonPcTitle {
    margin-bottom: unset;
}

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

.TopColumnCatBlock .cat_id0:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.TopColumnCatBlock .cat_id1:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.TopColumnCatBlock .cat_id2:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.TopColumnCatBlock .cat_id3:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.TopColumnCatBlock .cat_id4:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.TopColumnCatBlock .cat_id5:hover {
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}


.TopColumnCatBlock div {
	width: 32% !important;
}
.TopColumnCatBlock .cat_id0 {
    margin-top:0 !important;
}
.PcSidebar .TopColumnCatBlock div {
	width: 100% !important;
}
.PcSidebar .TopColumnCatBlock .cat_id0 {
    margin-top:20px !important;
}

.TopColumnCatBlock > div {
    /*background-image: url(../img/common/pixta_37505297_M.png);*/
    background-repeat: no-repeat;
    width: 32%;
    height: 15vw;
    object-fit: cover;
    border-radius: 11px;
    margin-bottom: 5vw;
    background-size: cover;
}

.TopColumnCatBlock > div h4 {
    color: #fff;
    font-size: 20px;
    height: 100%;
    /*height: 26vw;*/
    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: 100px 100px 150px;*/
    margin: 40px 100px 70px;
    display: flex;
}

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

.FootTopBtnWrap::before {
    display: block;
    content: '';
    background-image: url(../img/common/headPart02.png);
    position: absolute;
    top: -30px;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 120px;
    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: 50px;
    top: 8px;
    z-index: 15;
}

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

.FootLogoImage {
    text-align: center;
}

.FootLogoImage img {
    width: 10%;
}

.FootNavWrap {
    background-color: #323232;
    padding: 60px 0;
}

.FootNav ul {
    display: flex;
/*//    justify-content: space-between;*/
    padding: 50px 0 0 0;
}

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

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

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

.FootSns ul li a img {
    width: 70%;
}

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

.Copy p {
    color: #fff;
    font-size: 12px;
    padding: 10px;
}

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

.posr {
    position: relative;
	margin-top:140px;
}

.news__post {
    margin-top:170px;
}
@media screen and (max-width:1079px){
	.news__post {
		margin-top:50px !important;
	}
}
.news__post__box__listWrap {
	margin-top:170px;
}
.SingleColumn {
	margin-top:140px;
}

.TopColumnTitle h3 {
    color: #FFFFFF;
    font-size: 30px;
}

.MediaImage01 img {
    width: 30%;
}

.MediaImage01 {
    text-align: center;
    padding: 50px 0;
}


.MediaImage02 {
    padding: 80px 0 50px;
}

.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: 40px;
}

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

.universityLinkWrap div a {
    color: #c8161e;
    font-size: 18px;
    border: #c8161e solid 2px;
    border-radius: 40px;
    padding: 5px 20px;
    display: inline-block;
}

.universityLinkWrap div {
    width: 18%;
    margin-bottom: 20px;
    text-align: center;
}

.universityBlock ul {
    padding: 0 0 80px 0;
}

.universityBlock ul li {
    line-height: 2.5;
    margin: 5px 0;
    width: 25%;
}

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

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

.tab-content {
    width: 100%;
    display: none;
    margin-top: 50px;
}

/* アクティブなタブ */
.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: 50px;
}

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

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

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

#actlist .ActList .ShadowBlock {
    padding: 50px 0;
}

#actlist .TopColumn h3 {
    margin-bottom: 0;
}

.dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #c8161e;
    line-height: 1;
    width: 20px;
    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: 30px 0;
}

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

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

.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: 10px;
    padding: 0 16%;
    margin-bottom: 10px;
}

.Pan span {
    font-size: 13px;
}

.Pan span a {
    color: #555;
    font-size: 13px;
}

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

.SingleColumnContent h4 {

    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.SingleColumnContent p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 2;
}

.SingleActivityContent h4 {
    text-align: center;
}

.SingleActivityContent span {
    margin-bottom: unset;
}


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

.SingleActivityContent .ColumnContents {
    text-align: center;
}
.single-activity .SingleActivityContent .ColumnContents{
    margin-right:40px;
}

.SingleActivityContent .ColumnContents {
    margin-bottom: 20px;
}

.SiongleActSnsWrap {
    padding: 50px 0 0;
}

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

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

.SiongleActSnsWrap ul li a img {
    width: 80%;
}

.SingleActivityGallary {
    padding: 60px 0 0 0;
    max-width: 550px;
    margin: auto;
}

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

.SingleActivityContent .Topsec01LinkWrap > div {
    width: 80%;
    margin: 30px auto 0;
//    padding: 15px 30px;
}
@media (min-width:500px) and (max-width:1080px){
    .SingleActivityContent .Topsec01LinkWrap > div{
        width:90%;
    }
}

.SkipLinkBtnWrap {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-bottom: 20px !important;
}

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

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

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


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

.SubContents {
    padding: 100px 0 0;
}

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

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

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

.bukatsu_feature_wrapper h3 {
    border-bottom: solid 3px #f5f5f5;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

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

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

.bukatsu_feature_wrapper img {
    display: block;
    margin: 0 auto 20px;
    width: 50%;
}

#feature {
    padding: 0;
}

#feature > div {
    padding: 50px 0;
}

#feature > div h4 {
    padding-bottom: 5px;
    margin-bottom: 30px;
}

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

#NewNews > div .TabBlock {
//    padding: 60px 50px 50px 50px;
    padding: 35px 50px 35px 50px;
    position: relative;
}
@media screen and (max-width:1080px){
    .single-activity #NewNews > div .TabContentsBlockImage{
        padding: 35px 50px 35px 50px;
    }
}
.single-activity #feature > div h4{

}

#NewNews > div .TabBlock h4 {
    margin-bottom: 0;
}

.TabBlock .Day {
    font-size: 12px;
    top: 35px;
    left: 50px;
}

#NewNews > div .TabContentsBlockImage {
    background-color: #f5f5f5;
    padding: 0 30px;
}

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

.SingleActCat {
    padding-top: 50px;
}

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

}

.SingleActCat a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 2px #c8161e;
    border-right: solid 2px #c8161e;
    position: absolute;
    right: 1.5vw;
    top: -0.8vw;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

.SingleActCat a span {
    font-size: 20px;
    padding-left:50px;
    margin-right: 0.5vw;
    color: #111111;
}

#NewNews {
    padding-bottom: 150px;
}

.kaisha {
    padding-top: 50px;
}

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

.kaisha tr{
    display: flex;
}

.kaisha th {
    width: auto;
}

.kaisha a {
    color: #555;
}

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

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

.kaisha td {
    width: 70%;
}

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

#company .PickUp .ShadowBlock {
    padding: 50px;
}

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

.kaisha td {
    padding: 20px;
    text-align: left;
}

.PublishTop h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 50px;
}

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

.PublishWrap h4 {
    font-size: 25px;
    font-weight: 700;
}

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

.PublishWrap p span {
    font-size: 35px;
    font-weight: 700;
}

.PublishTop h5 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #c8161e;
    text-align: center;
    padding-bottom: 80px;
}

#publish .Topsec01LinkWrap {
    display: block;
}

#publish .Merit .Topsec01LinkWrap{
    margin-bottom:60px;
}

#publish .Topsec01LinkWrap > div {
    width:100%;
//    margin: 0 10px 1vw;
    margin: 0 auto 1vw;
}
#publish .FvUnder .Topsec01LinkWrap > div{
    width: 47%;
}
@media (min-width:500px) and (max-width:1080px){
    #publish .Topsec01LinkWrap{
        bottom:5vw;
    //    bottom: 24vw;
    }
}
@media (min-width:768px) and (max-width:1080px){
    #publish .TabContentsBlock p{
        padding-top: 0px!important;
    }
    #publish .ShadowBlock p{
        margin-top: 8px!important;
    }
}


.worries {
    background-color: #fff;
    padding: 150px 5%;
    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: 245px;
    height: 180px;
}

.worries h2 {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
}

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

.worries div span img {
    width: 50%;
}

.worries > div > div > div span {
    display: block;
    padding: 30px 0;
}

.worries > div > div > div {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
    width: 32%;
}

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

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

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

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

.meritWrap {
    padding: 80px 0 50px;
}

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

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

.meritWrap > div h3 {
    color: #c8161e;
    font-size: 30px;
    padding-bottom: 20px;
    font-weight: 700;
}

.meritWrap > div p {
    font-size: 20px;
    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: 30px;
}

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

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

#publish #NewNews > div .TabContentsBlockImage span {
    color: #c8161e;
    font-size: 30px;
}

.QTab p {
    color: #c8161e;
    font-size: 30px;
}

.FootFreeWrap {
    margin-top: 50px;
}

#publish .TabContentsBlock {
    padding-top: 20px;
}

#publish .TabContentsBlock p {
    text-align: center;
    padding-top: 10px;
    padding-left: 15px;
}

#publish .TabWrap {
    margin-bottom: 20px;
}

#publish .Topsec01LinkWrap .FootAllBtn {
    width: 80%;
}

.AllBody .FootFreeWrap .Topsec01LinkWrap > div {
    margin: 5px;
}

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

.FootFreeWrap p {
    padding: 30px;
    text-align: center;
}

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

.page-id-58 .Topsec01LinkWrap .FootAllBtn{
    width:100%;
}
.ShadowBlock .Topsec01LinkWrap {
    width: 50%;
}
#contact .ContactText {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 50px 0 80px;
}

.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: 20px;
    font-weight: 700;
    padding: 5px 15px;
}

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

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


.Form-Item {

    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}
.Form-Item-Label{
    text-align:left!important;
}
@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: 3px;
    padding-bottom: 4px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #c8161e;
    color: #fff;
    font-size: 12px;
}

@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: 100%;
    max-width: 550px;
    font-size: 18px;
}

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

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 550px;
    font-size: 18px;
}
.page-id-94 .Form-Item-Textarea{
    width: 80%;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
        padding: 0;
    }
}

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

.Form {
    padding-bottom: 10vw;
}

#check .Form .Form-Item .Form-Item-Label{
    width:260px;
}
#check .Form .Form-Item .Radio01{
    margin-left: 0;
    font-weight:600;
    font-family: 'Noto Sans JP', sans-serif;
}
#check .Form .Form-Item .Radio02{
    margin-left: 0;
    font-weight:600;
    font-family: 'Noto Sans JP', sans-serif;

}
#check .SingleColumn .ShadowBlock p{
    font-weight:600;
}


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

.Radio01 {
    padding-top: 4vw;
    margin-left: 40px;
    font-family: 500;
    font-weight: 600;
}
.page-id-94 .Radio01{
    padding-top: 0;
    margin-top: -3px;
}
@media screen and (max-width:768px){
    .page-id-94 .Radio01{
        padding-top: 0;
        margin-top: 0;
    }
}
@media screen and (max-width:768px){
    .page-id-94 .Form-Item-Input{
        width:80%;
    }
}


.Radio01 span {
    font-size: 20px;
}

.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;
    margin-left: 40px;
}

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

.pri a {
    padding-bottom: 5px;
    border-bottom: #c8161e solid 2px;
    font-size:15px;
}

#privacy .Title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 50px;
}

#privacy .SingleColumn > div > div h3 {
    font-size: 25px;
    font-weight: 700;
    padding: 50px 0 30px;
}

#privacy .SingleColumn {
    margin-bottom: 150px;
}

.kaisha tbody {
    width: 100%;
}

#club .kaisha {
    margin-top: 50px;
}

.PcSingleColumnWrap02 {
    padding: 0;
}

/*ここから*/
.HeadWrap .RedWrap a {
    font-size: 16px;
    padding: 7px 25px 10px 45px;
}

.HeadWrap .RedWrap a:hover {
    opacity: 0.8;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.HeadWrap .ActLinkBtnWrap a {
    font-size: 14px;
    padding: 6px 12px 6px 35px;
}

.HeadWrap .ActLinkBtnWrap a:hover {
    opacity: 0.8;
    transition: 0.3s;
}


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

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



main {
    /*padding-top: 100px;*/
	
}

footer .PcContainer {
    max-width: 1200px;
    margin: auto;
}
@media screen and (min-width:768px) and (max-width:1200px){
    footer .PcContainer {
        width:90%;
    }
}

.PcFlex {
    display: flex;
    justify-content: space-between;
    margin-bottom:20px;
}

.PcFlex > div {
    width: 48%;
}

.FvUnder > div img {
    width: 100%;
    height: 26vh;
    object-fit: cover;
}
@media screen and (min-width:2000px){
    .FvUnder > div img {
        height: 20vh;
    }
}

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

.SingleActivity .TopColumnWrap {
    display: block;
}

.SingleActivity .TopColumnWrap > div {
    width: 100%;
    margin-bottom: 50px;
}

.TopColumnWrapSingle > div {
    width: 100%;
    margin-bottom: 50px;
}

article:hover {
    cursor: pointer;
}

.universityBlock ul {
    display: flex;
    flex-wrap: wrap;
}


.FormCheckWrap .searchArticleWrap {
    /*display: block;*/
}

.FormCheckWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media screen and (min-width:768px) and (max-width:1080px){
    .FormCheckWrap{
        width: 88%;
        margin-top: 50px;
    }
}

.PcFormContents .searchArticleWrap .PickUpContents {
    width: 45%;
}


.PcFormContents .searchArticleWrap .articleImage {
    width: 50%;
    /*width: 100%;*/
}

.PcFormContents article {
    width: 48%;
}

.PcFormContents .FormCheckWrap:after {
    display: block;
    content: '';
    width: 30%;
}

.PcFormContents .PickUpContents {
    padding: 0;
}

#publish .PcTopsec01LinkWrap {
    display: flex;
    padding: 20px 0;
}

#actlist .tab-switch:checked + .tab-label + .tab-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#actlist .TabWrap {
    margin-bottom: 50px;
    width: 48%;
}

#Originals .TopColumnWrap:after {
    display: block;
    content: '';
    width: 30%;
}

.TopColumnBlock {
    cursor: pointer;
}

/*検索フォームのポップアップ*/
.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: 10px 30px;
}

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

.PopUp_Block_title span {
    font-size: 20px;
}


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

.PopUp_Block_subtitle span {
    font-size: 20px;
    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 20px;
}

.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;
    margin-top:20px;
}

.areasWrap div{
    margin:7px 0;
}

.showPopparent .areasWrap {
    display: block;
}

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

.PopUp_bu {
    margin-top: 50px;
}

.PopBtnWrap {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.PopBtnWrap .FormBtn {
    width: 30%;
}

.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: 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: 50px;
    max-width: 800px;
    margin: auto;
    position: absolute;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.PopUp_container {
    padding: 150px 0;
}

.OriginalPan {
    padding: 10px 16%;
}

.OriginalPan span {
    font-size: 13px;
}

.OriginalPan span a {
    color: #555;
    font-size: 13px;
}

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

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

.disFlex p {
    width: 50%;
}

.addTopsec01LinkPickUpColumn {
    margin-bottom: 80px;
    justify-content: center;
}

.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 6px;
}
.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;
}

.pageNate {
    text-align: center;
    margin-bottom: 50px;
}

.PopBtnWrap .FormBtn {
    margin-top: 30px;
}

.universityWidth {
    max-width: 800px;
}

.PcWrapMedia {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
}

.PcWrapMedia .MediaImage01 img {
    width: 100%;
}

.PcWrapMedia .MediaImage01 {
    width: 35%;
}

.PcWrapMedia p {
    width: 55%;
}

#media .TopColumnTitle {
    margin-top: 50px;
}

.SerchPcWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (min-width:500px) and (max-width:1080px){
    .SerchPcWrap{
        display:block;
    }
}

.FormCheckWrap {
    width: 65%;
}

.SearchSide {
    width: 30%;
}
@media screen and (min-width:500px) and (max-width:1080px){
    .FormCheckWrap{
        width:100%;
        margin-top: 6vw;
    }
}

.SerchPcWrap .PcFlex > div {
    width: 100%;
}

.SerchPcWrap .PcFlex {
    display: block;
}

.SerchPcWrap .PcFlex > div:first-of-type {
    margin-bottom: 30px;
}

.TopColumnWrap .ItemsWrap {
    width: 55%;
}

.TopColumnWrap .ItemsWrap02 {
    width: 40%;
}

.TopColumnWrap .ItemsWrap02 > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.TopColumnWrap .ItemsWrap > div {
    margin-bottom: 30px;
}

.TopColumnWrap .ItemsWrap02 .ColumnContents{
    width: 60%!important;
}

.TopColumnWrap .ColumnImage {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.TopColumnWrap .ColumnImage img {
    width: 100%;
}
.post-type-archive-activity .TopColumnWrap .ColumnImage img{
    height: 170px!important;
}
.TopColumnWrap .TopColumnBlock:nth-child(n + 2) .ColumnContents{
    width:100%;
}
.TopColumnWrap .TopColumnBlock:nth-child(n + 2) h4{
    padding-top:10px;
}

.TopColumnWrap .ColumnImage img:hover {
    width: 105%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

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

.ItemsWrap .ColumnImage img {
    height: 120px;
}
.post-type-archive .ItemsWrap .ColumnImage img{
    height:100%;
}


.Pc_TopColumnWrap {
    margin-bottom: unset;
}

.SearchDescription {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

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

#home .AddTopsec01LinkPickUp {
    justify-content: center;
    margin-bottom: 80px;
}

#home .TopColumnWrap {
    margin-bottom: unset;
}

.PcTopColumnWrap {
    display: flex !important;
    flex-wrap: unset !important;
    gap: 10px;
//    align-items: center;
    justify-content: center;
    align-items:flex-start;
}

.PcTopColumnWrap > div {
    width: 40% !important;
}

.PcTopColumnWrap .PcColumnWrap {
    width: 55% !important;
}

.PcColumnWrap .SingleActivityGallary {
    padding: 0;
    max-width: 45vw;
    margin: auto;
}

.ddColumnContents .Topsec01LinkWrap {
    width: 60%;
}

.PcTopColumnWrap .Topsec01LinkWrap > div a {
    font-size: 18px;
}
@media (min-width:768px) and (max-width:1080px){
    .PcTopColumnWrap .Topsec01LinkWrap > div a{
        font-size: 13px;
    }
}

.addSingleActivityContent .TopColumnWrap {
    margin-bottom: unset;
}

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

.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;
}

.Fv .swiper-slide img {
    height: 100vh;
    width: 100vw;
}

#toc_container {
    background-color: #f5f5f5;
    padding: 50px;
    margin: 80px 0 0 0;
}

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

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

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

.addPcCont {
    width: 60%;
}

.PcSidebar {
    width: 24%;
}

.PcSidebar h3 {
    font-size: 25px;
    font-weight: 600;
    padding: 0.5em; /*文字周りの余白*/
    color: #494949; /*文字色*/
    background: #fff; /*背景色*/
    border-left: solid 10px #c8161e; /*左線（実線 太さ 色）*/
}

.PcSidebar img {
    height: 200px;
    object-fit: cover;
}

.PcSidebar ul li {
    margin-bottom: 30px;
}

.PcSidebar ul li:first-of-type {
    margin-top: 30px;
}

.MapContainer {
    max-width: 800px;
    margin: auto;
}

.MapSection h3 {
    font-size: 20px;
}

.MapContainer > div {
    margin-bottom: 30px;
}

.MapContainer > div p {
    padding-top: 15px;
    padding-left: 10px;
}

.MapContainer a{
    display:inline-block;
}

.FootNav ul {
    flex-wrap: wrap;

}

.FootNav ul li {
    margin-bottom: 20px;
    width: 20%;
}
@media screen and (max-width:768px){
    .FootNav ul li{
        width:30%;
    }
}

#home .AddResBtn a {
    border: unset;
    background-color: #c8161e;
    width: 280px;
    font-size: 17px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
//    box-shadow: 0 0 10px #666;
    padding: 10px 0 12px;
}



/**/
.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;
    margin-right: 12px;
    width: 35px;
    height: 38px;
    color: #c8161e;
    background: #fff;
    border: 1px solid #c8161e;
 }
 .pnavi .current{
    background:#c8161e;
    color:#fff;
 }
 .pnavi .prev,
 .pnavi .next{
    width: 75px;
    height: 38px;
 }
 .pnavi .dots{
    width: auto;
    background:transparent;
    box-shadow:none;
    border:none;
 }
 .pnavi .prev i{
    margin-right:6px;
 }
 .pnavi .next i{
    margin-left:6px;
 }

 @media (min-width:520px) and (max-width:1080px){
    header {
        height: 70px;
    }
    header::before {
        content: '';
        display: block;
        background-image: url(../img/common/headPart.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 30vw;
        height: 50px;
        position: absolute;
        left: 0;
        top: 60px;
        z-index: -1;
    }
    main {
        padding-top:70px;
    }
    
}
/*ここから追加*/
.PopBtnWrap .button {
    padding: 15px 0;
}
.BackGray h3{
    text-align: center;
}
