@charset "utf-8";
/* CSS Document */
body{
	font-weight: normal;
}
body,p,h1,h2,h3,h4,h5{
	margin: 0;
	padding: 0;
}
ul,li{
	list-style: none;
    margin: 0;
    padding: 0;
}

body {font-family: 'M PLUS Rounded 1c',YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}


.font-eng{
font-family: brandon-grotesque, sans-serif;
font-weight: 400;
font-style: normal;
}
.font-s{
	font-size: 80%;
}
.scrol-down{}

section #pickup{}
#pickup p {
    display: block;
    background: #fff;
    position: relative;
    width: 86vw;
    margin: 3vw auto;
    font-size: 14px;
    /*padding: 4vw 0 4vw 9%;*/
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .3));
}

h3{
	text-align: center;
	border-bottom: 2px solid #666;
}

/*#pickup p::before {*/
#pickup a::before {
  font-family: 'Material Icons';
  content: "\E873";
	color: #eb0268;
	position: absolute;
	top: 26%;
    left: 2%;
    font-size: 22px;
    font-weight: normal;
}
/*#pickup p::after {*/
#pickup a::after {
	font-family: 'Material Icons';
	content: "\E409";
	position: absolute;
	top: 28%;
    right: 3px;
    font-size: 22px;
}
#pickup p .font-eng{
	font-weight: bold;
	color:#eb0268; 
	margin: 0 4px;
}
#pickup-bold a{
	text-decoration: none;
	color: inherit;
	display: block;
	font-weight: bold;
}
#pickup a{
	text-decoration: none;
	color: inherit;
	display: block;
}

.recommended-block div p{
	display: inline-block;
	background: #eb0268;
	border-radius: 6px;
	color: #fff;
}
/*.recommended-block div p::before{
	content: '';
    display: block;
    border: 2px solid #eb0268;
    position: absolute;
    border-radius: 0 6px 6px 0;
}
div.recommended-block div p::after{
	position: absolute;
    display: block;
    font-family: brandon-grotesque, sans-serif;
	color: #eb0268;
	font-weight: bold;
}

#school01 p::after{content: 'No.1';}
#school02 p::after{content: 'No.2';}
#school03 p::after{content: 'No.3';}
#school04 p::after{content: 'No.4';}
#school05 p::after{content: 'No.5';}
#school06 p::after{content: 'No.6';}
*/
.recommended-block .site-img{
	padding: 0;
    border-bottom: 1px solid #ccc;
	position: relative;
}

.recommended-block .site-img::after{
	content: 'Site image';
    position: absolute;
    display: block;
    bottom: -22px;
    right: 6px;
    font-size: 12px;
    color: #fff;
    background: #ccc;
    padding: 2px 6px;
    border-radius: 0 0 5px 5px;
}
div.recommended-block .benefits ul{
	margin-left: 28px;
}
div.recommended-block .benefits ul li{
	padding: 0px;
	list-style-type: square;
}

div.recommended-block .staff_comment{
	display: block;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 18px 20px 14px;
    font-size: 0.9em;
	margin-top: 24px;
	position: relative;
}
div.recommended-block .staff_comment::before{
	content: '編集スタッフからのコメント';
    display: inline-block;
    background: #fff;
    position: absolute;
    top: -14px;
    left: 30px;
    padding: 2px 8px;
    font-size: 18px;
    font-weight: 500;
}
div.recommended-block .staff_comment a{
	display: block;
    text-align: right;
	padding: 8px 8px 0;
}

.school-select{
background: #ffecf2;
    border-radius: 5px;
    position: relative;
    width: 100%;
    padding:20px 14px 10px;
	box-sizing: border-box;
}

.school-select h4{
    font-weight: normal;
    display: inline-block;
    background: #eb0268;
	border-radius: 5px;
    color: #fff;
    padding: 8px 10px;
    position: absolute;
}

.school-select p a{
	display: block;
	text-decoration: none;
	color: #222;
}
.school-select p a b{
	text-decoration: underline;
	margin-right: 4px;
}

.link-btn {
    display: block;
    position: relative;
    width: 90%;/*ボタンの幅*/
    /*padding: 20px 0;*/
    margin: 30px auto;
    background: -webkit-linear-gradient(#00cc00,  #009900);/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(0, 102, 0, 1);/*影の色(rgbaの値を変更)*/
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    overflow: hidden;
    transition: 0.2s;
}
.link-btn a{
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 20px 0;
}

.link-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.7;/*不透明度*/
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.link-btn::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: link-btn 3s ease-in-out infinite;
}
@-webkit-keyframes link-btn {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
	
.move-js {animation: move-js 0.4s infinite;}
@keyframes move-js {
    0% {transform: translate(1px, 1px);}
    25% {transform: translate(1px, -1px);}
    50% {transform: translate(-1px, -1px);}
    75% {transform: translate(-1px, 1px);}
    100% {transform: translate(1px, 1px);}
}

.menu-btn{display: none !important;}

/*メニューボタン表示＆可動

調整中の為、一旦非表示

.menu-btn {
    position: fixed;
    bottom: 6px;
    right: 6px;
    display: flex;
    width: 210px;
    padding: 16px 30px 16px 16px;
    z-index: 90;
    background-color: #3584bb;
	color: #FFF;
	font-size: 90%;
	border-radius: 8px;
}*/
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 24px;
    border-radius: 3px;
    background-color: #FFF;
    position: absolute;
	right: 16px;
	top:28%;
}
.menu-btn span:before {
    top: 9px;
	right: 0px;
}
.menu-btn span:after {
    top: 18px;
	right: 0px;
}

#menu-btn-check:checked ~ .menu-btn span {
background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
bottom: 8px !important;
right: 0px !important;
transform: rotate(45deg);
background-color: #ffffff;
width: 25px;
}
#menu-btn-check:checked ~ .menu-btn span::after {
top: 8px !important;
right: 0px !important;
transform: rotate(-45deg);
background-color: #ffffff;
width: 25px;
}
/*チェックボックス非表示*/
#menu-btn-check {display: none;}

/*メニュー部分*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 20px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/*フローティングバナー*/
.floating-banner {
    position: fixed;/* 追従 */
    z-index: 99999;/* 他の要素の下に隠れないように */
    bottom: 0;/* バナーの上下の位置 */
    right: 0;/* バナーの左右の位置 */
}
.pc {
    width: 300px;/* バナーの横幅を指定 */
}
.floating-banner:hover {
    opacity: .9;/* ホバーで少し透過 */
}
.sp {
    display: none;/* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 990px) {/* タブレット用のブレイクポイントを指定 */
    .pc {
        display: none;/* タブレットサイズ以下でPC用のバナーを非表示に */
    }
}
@media screen and (max-width: 768px) {/* スマホ用のブレイクポイントを指定 */
    .sp {
        display: inline-block;/* 消していたスマホ用のバナーを表示させる */
        width: 100vw;/* スマホの画面幅いっぱいにバナーを表示 */
    }
}