@charset "UTF-8";
/* ==========================================
全体
========================================== */
html{
	font-size: 62.5%;
    scroll-behavior: smooth;
	scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
body{
    position: relative;
    margin: 0;
	background: linear-gradient(
      to right,
      #1e2a5e 0%,
      #1e2a5e 50%,
      #f5d800 50%,
      #f5d800 100%
    );
    min-height: 100vh;
    color: #222;
    font-family: "Lato", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .05em;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
}
*,
*::before,
*::after{
    box-sizing: border-box;
}
button{
	font-family: "Zen Maru Gothic", sans-serif;
}
section{
    width:100%;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}
a{
    color: inherit;
    text-decoration: none;
}
ul,ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
.design_lp{
	width: 500px;
	margin: 0 auto;
	background-color: #fff;
	border: solid 1px #000;
}
@media (max-width:768px){
	body{
        min-width: auto;
    }
    .design_lp {
    	width: 100%;
    }
}
/* ==========================================
Header
========================================== */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header_inner{
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo img{
    display: block;
    height: 50px;
	margin: 0 20px;
}
@media (max-width:768px){
}
/*==============================
FV
==============================*/
.fv{
    padding-top: 60px;
}
.fv_inner img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width:768px){
	.fv{
        padding-top: 60px;
    }
}
/*==============================
about
==============================*/
.about {
	background: linear-gradient(to bottom, #ffffff 0%, #b3e0f2 100%);
  	padding: 0px 20px 20px;
}
.about_catch{
    width: 80%;
    margin: 0 auto;
}
.about_catch img {
	display: block;
	width: 100%;
	height: auto;
}
.about_text {
	margin-top: 20px;
  	text-align: center;
}
.about_text p {
  	font-size: 16px;
  	font-weight: bold;
  	line-height: 1.8;
  	color: #333;
}
.about_town img {
	display: block;
  	width: 100%;
  	height: auto;
}
@media (max-width:768px){
}
/*==========================================
スケジュール
==========================================*/
.schedule_main {
	margin: 40px 0 20px;
}
.schedule_main img,
.schedule_head img,
.schedule_date img,
.schedule_photo img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -1px;
}
.schedule_text {
	margin: 0;
	padding: 30px 25px;
	font-size: 1.5rem;
	line-height: 1.8;
	text-align: left;
}
.schedule_event--sep .schedule_text {
	background-color: #014fa6;
	color: #fff;
}
.schedule_event--oct .schedule_text {
	background-color: #fed309; 
	color: #17337a;
	font-weight: 500;
}
.schedule_contest{
	margin: 0 20px 60px;

}
@media (max-width:768px){	
}
/*==========================================
学校紹介
==========================================*/
.school_heading{
	margin: 40px auto 20px;
    width: 80%;
}
.school_heading img {
  	display: block;
  	width: 100%;
  	height: auto;
}
.school_list {
  	list-style: none;
}
/* 1校分のブロック。写真とパネルを左右並びにして、ブロック全体を斜め(平行四辺形)にカットする */
.school_item {
  	position: relative;
  	display: flex;
  	overflow: hidden;
  	min-height: 380px;
  	clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 calc(100% - 40px));
}

/* 2つ目から少し重ねて、斜めのラインが繋がって見えるようにする */
.school_item + .school_item {
  	margin-top: -40px;
}

/* 交互で「写真とパネルの左右」だけ入れ替える(斜めの向きはそのまま) */
.school_item--reverse {
  	flex-direction: row-reverse;
}
/* 写真 */
.school_item_photo {
  	flex: 1 1 40%;
}
.school_item_photo img {
  	display: block;
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
}
/* テキスト＋ボタンのパネル */
.school_item_panel {
  	flex: 1 1 60%;
  	color: #fff;
  	padding: 30px 15px;
 	display: flex;
 	flex-direction: column;
  	justify-content: center;
}
.school_item_label {
  	font-size: 13px;
  	line-height: 1.5;
  	margin-bottom: 8px;
}
.school_item_title {
  	font-size: 20px;
  	font-weight: bold;
  	line-height: 1.4;
  	margin-bottom: 16px;
}
.school_item_btns {
  	display: flex;
  	flex-direction: column;
  	gap: 10px;
}
.btn-doc,.btn-open {
  	display: block;
}
.btn-doc img,.btn-open img {
  	display: block;
  	width: 100%;
  	height: auto;
}
.btn-doc {
  	width: 70%;
}
.btn-open {
  	width: 100%;
}
/* カラーごとのパネル背景 */
.school_item--pink .school_item_panel {
  	background-color: #ef4e2b;
}
.school_item--blue .school_item_panel {
  	background-color: #0080bd;
}
.school_item--green .school_item_panel {
  	background-color: #14b27d;
}
.school_item--orange .school_item_panel {
  	background-color: #ff6a1f;
}
@media (max-width:768px){
	.school_item_title {
    	font-size: 18px;
	}
}
/*==========================================
	メッセージ
==========================================*/
.message_inner {
	padding: 40px 20px 80px;
	background-image: url(../img/footer.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.message_inner p {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
@media (max-width:768px){
}
/*==========================================
フッター
==========================================*/
.footer {
  	background-color: #014fa6;
}
.footer_content {
  	padding: 5px 20px 40px;
}
.footer_logo {
  	text-align: center;
  	margin-bottom: 30px;
  	width: 80%;
    margin: 0 auto 20px;
}
.footer_logo img {
  	display: inline-block;
  	height: auto;
}
.footer_school {
  	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 70%;
    margin: 0 auto;
}
.footer_school img {
  	display: block;
  	height: auto;
}
@media (max-width:768px){
}