@charset "UTF-8";

/* 全体
---------------------------------------------- */
b {
	/*background: linear-gradient(transparent 50%, yellow 50%); color:#2C0002; font-weight:bold; font-size:15px;*/
}

u {
	text-decoration: none;
	border-bottom: 1px #000000 dotted;
}

hr {
	border-top: 1px dashed #bbb;
	border-bottom: 1px dashed #fff;
	margin: 50px 0;
}

a.links {
	color: #001BA0;
	text-decoration: none;
	border-bottom: 3px dotted #001BA0;
}

.link_hover {
    transition: 0.3s;
    display: block;
    box-sizing: border-box;
}

.link_hover:hover {
    opacity: 0.7;
}

.benefit {
	font-size: 2.143em;
	line-height: 1;
}

.tax {
	font-size: 80%;
}

.small {
	font-size: 90%;
}

.lrg {
	font-size: 18px;
}

.h30 {
	margin: 30px 0;
}

.cnt {
	text-align: center;
}

.end {
	text-align: end;
}

.fRed {
	color: #f03838;
}

.bl {
	font-weight: bold;
}

.spc {
	letter-spacing: 0.1em;
}

.orange {
	color: #ff6600;
}

.H40 {
	font-weight: 500;
	padding: 1.2em;
	letter-spacing: .05em;
	border-radius: .25em;
	color: #fff;
	background: #11A0E5;
	margin-bottom: 20px;
}

#main h2 {
	font-size: 2em;
	line-height: 1;
}

#main h2 img {
	width: auto;
	height: 1.167em;
	vertical-align: text-top;
}

#main h2 span {
	padding: 0.25em 0.5em;
	border-left: solid 6px #0AA0E7;
}
#main h3.okayamacp {
    font-size: 2rem;
    margin: 0 0 45px 0;
    text-align: center;
    font-weight: bold;
}

#main h3.okayamacp span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #cfe0ee));
    background: linear-gradient(transparent 40%, #cfe0ee 40%);
}

@media only screen and (max-width:480px) {
	#main h3.okayamacp {
	    font-size: 2rem;
	    margin: 8px 0;
	    text-align: center;
	    font-weight: bold;
	    padding-bottom: 20px;
	}
}
#section h3 {
	font-size: 1.5em;
	font-weight: 100;
	padding: 1.2em;
	letter-spacing: .05em;
	border-radius: .25em;
	color: #fff;
	background: #11A0E5;
}

.section h3 {
	font-size: 1.5em;
	font-weight: 100;
	padding: 1.2em;
	letter-spacing: .05em;
	border-radius: .25em;
	color: #fff;
	background: #11A0E5;
}

#main h4 {
	font-size: 1.2em;
	font-weight: 100;
	margin-bottom: 25px;
	position: relative;
	padding: 1.2em;
	background: #e0edff;
}

#main h4:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 30px;
	border: 15px solid transparent;
	border-top: 15px solid #e0edff;
	width: 0;
	height: 0;
}

.section table {
	width: 100%;
	margin-bottom: 30px;
}

.section table th,
.section table td {
	padding: 10px;
	border: 1px solid #ddd;
}

.section table th {
	width: 30%;
	text-align: left;
}

@media only screen and (max-width:480px) {
	.section table {
		margin: 0 auto;
	}

	.section table th,
	.section table td {
		width: 100%;
		display: block;
		border-top: none;
	}

	.section table tr:first-child th {
		border-top: 1px solid #ddd;
	}
}

table.main {
	width: 100%;
	margin-bottom: 30px;
}

table.main th,
table.main td {
	padding: 10px;
	border: 1px solid #ddd;
}

table.main th {
	background: #f4f4f4;
	width: 30%;
	text-align: left;
}

@media only screen and (max-width:480px) {
	table.main {
		margin: 0 auto;
	}

	table.main th,
	table.main td {
		width: 100%;
		display: block;
		border-top: none;
	}

	table.main tr:first-child th {
		border-top: 1px solid #ddd;
	}
}

/*内部リンク調整*/
.link-t-a {
	position: relative;
	top: -170px;
	display: block;
}


/*TOPのGallery*/
#photo {
	padding: 0 !important;
}

#gallery li {
	float: left;
	width: calc(100%/4);
	line-height: 0;
	margin: 0;
}

#gallery img {
	width: 100%;
	height: auto;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_img {
	display: block !important;
}

.sp_img {
	display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
	.pc_img {
		display: none !important;
	}

	.sp_img {
		display: block !important;
	}
}

*/
/* ギャラリー */
.gallery-list {
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
    /* 以下gridレイアウト用 */
    display: grid;
    gap: 8px;/* 画像間の余白 */
    grid-auto-flow: dense; /* 隙間を埋めながら配置 */
    grid-template-columns: repeat(7, 1fr); /* カラム数を設定 */
}

.gallery-list img:nth-child(7n+1) {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-list img:nth-child(7n+2),
.gallery-list img:nth-child(7n+3) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-list img:nth-child(7n+4) {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-list img:nth-child(7n+5) {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-list img:nth-child(7n+6) {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery-list img:nth-child(7n+7) {
  grid-column: span 3;
  grid-row: span 3;
}

/* アスペクト比設定 */
.gallery-list img {
    display: block;
    aspect-ratio: 300/200;
    width: 100%;
    height: 100%;
    object-fit: cover;	
}
.gallery-list img:first-child {
  aspect-ratio: 200/400;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-list img:nth-child(7) {
  aspect-ratio: 200/300;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-post iframe {
	margin-left: auto!important;
	margin-right: auto!important;
}

/* 0223FV変更 */
@media (max-width: 768px) {
  #fv {
    margin: 0 0 13% 0;
  }

  .main-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    margin: 0 4% !important;
	border: 1px solid #01aded;
    width: 8px;
    height: 8px;
  }

  .main-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .main-swiper .swiper-pagination {
    bottom: 2% !important;
  }
  .campaign {
    background: #01aded;
    padding: 3% 2% 3%;
    text-align: center;
    color: white;
  }

  .campaign-school {
    font-size: 4.2vw;
    color: #333333;
    letter-spacing: 0.1em;
    background: white;
    display: inline-block;
    padding: 0 6% 0;
    border-radius: 4px;
  }

  .campaign-title {
    font-size: 7.8vw;
    font-weight: bold;
    line-height: 1.3;
    margin: 2% 0 0;
    text-shadow: 0px 3px 0px rgba(51, 51, 51, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .campaign-title::before,
  .campaign-title::after {
    content: "";
    display: block;
    width: 1px;
    height: 3em;
    background: #fff;
    transform: rotate(-15deg);
  }

  .campaign-title::after {
    transform: rotate(15deg);
  }
  .campaign-date {
    font-size: 5.5vw;
    margin-bottom: 1%;
  }
  .campaign-date span {
    font-size: 6.5vw;
  }
  .cv {
    display: flex;
    justify-content: center;
    gap: 3%;
    padding: 3% 4%;
  }
  .cv-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: none;
    background: white;
  }

  .cv-fixed.show {
    display: block;
  }
}

@media (min-width: 769px) {
  #fv {
    margin: 140px 0 60px;
  }
  .fv-main {
    position: relative;
    height: 29vw;
    background: #01aded;
  }
  .fv-main .fv-title {
    position: absolute;
    top: 1.5vw;
    left: 52%;
    transform: translateX(-100%);
    margin-left: -15%;
    width: 26%;
    z-index: 10;
  }

  .main-swiper {
    position: absolute;
    right: 11%;
    width: 56%;
  }
  .main-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    margin: 0 15px !important;
	border: 1px solid #01aded;
	width: 12px;
	height: 12px;
  }

  .main-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }

  .main-swiper .swiper-pagination {
    bottom: 2% !important;
  }
  .campaign {
    background: #01aded;
    text-align: center;
    color: white;
    padding-bottom: 30px;
  }

  .campaign-school {
    font-size: 20px;
    color: #333333;
    letter-spacing: 0.1em;
    background: white;
    border-radius: 4px;
    width: 210px;
    margin: auto;
  }

  .campaign-title {
    font-size: 37px;
    font-weight: bold;
    margin: 5px 0 0;
    text-shadow: 0px 3px 0px rgba(51, 51, 51, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 20px;
  }
  .campaign-title::before,
  .campaign-title::after {
    content: "";
    display: block;
    width: 1px;
    height: 70px;
    background: #fff;
    transform: rotate(-15deg);
  }

  .campaign-title::after {
    transform: rotate(15deg);
  }
  .campaign-date {
    font-size: 24px;
    margin: -10px 0 10px 0;
  }
  .campaign-date span {
    font-size: 34px;
  }
  .campaign img {
    width: 770px;
    height: auto;
  }
  .cv {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 15px 0;
    width: 440px;
    margin: auto;
  }
  .cv-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: none;
    background: white;
  }
	
  .cv-fixed.show {
    /*display: flex;*/
  }
}

@media (min-width: 769px) {
  #navigation {
    /* 非表示状態のスタイル */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    position: fixed;
    width: 100%;
    top: 72px;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
  }

  body.menu-fixed #navigation {
    /* 表示状態のスタイル */
    opacity: 1;
    visibility: visible;
  }

  #fv {
    margin: 0 0 60px;
	padding: 72px 0 0;
  }
}

/* PDGボタン */
.button_pdf {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: .9em 2em .8em 45px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 30%), 0 2px 3px -2px rgb(0 0 0 / 20%);
    background-color: #FF570D;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}
@media screen and (max-width: 480px) {
	.button_pdf {
	    width: 90%;
	}
}

.button_pdf:hover {
	opacity: 0.8;
    /*transform: translateY(-1px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 20%), 0 0 5px rgb(0 0 0 / 10%);*/
}

.button_pdf::before {
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 85%;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 50% 75%, 100% 100%, 100% 0);
    content: '';
}

.button_pdf::after {
    position: absolute;
    top: 33%;
    left: 30px;
    transform: translate(-50%, -50%);
    color: #FF570D;
    font-size: 1.2em;
    content: '★';
}

/* 250311追加 */
@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
    margin: 0 auto;
  }
  #study {
    font-family: "Noto Sans JP", sans-serif;
    padding-top: 50px;
  }
  #study .study-list li {
    list-style: none;
    margin-bottom: 65px;
  }
  #study .study-list li .study-box {
    width: 84%;
    padding: 10px 20px;
    border: 1px solid #01aded;
    position: relative;
    line-height: 1.5;
    margin: 0 auto 12px;
    text-align: center;
  }
  #study .study-list li .study-box .type {
    background: #01aded;
    color: #fff;
    font-size: 16px;
    padding: 0 20px 1px;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    position: absolute;
    top: -26px;
    left: -1px;
  }
  #study .study-list li .study-box .title {
    font-size: 20px;
    font-weight: 400;
  }
  #study .study-list li .study-box::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    z-index: 2;
  }
  #study .study-list li .study-box::before {
    content: "";
    position: absolute;
    right: 59px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 10px 0 10px;
    border-color: #01aded transparent transparent transparent;
    z-index: 1;
  }
  #flow {
    font-family: "Noto Sans JP", sans-serif;
    background: #fffce1;
    padding: 40px 0 10px;
  }
  #flow .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }
  #flow .image {
    margin-top: 20px;
  }
  #flow .image img {
    width: 100%;
    margin-bottom: 10px;
  }
  #reason {
    font-family: "Noto Sans JP", sans-serif;
    /*padding: 50px 0 20px;*/
  }
  #reason .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  #reason .title .large {
    font-size: 38px;
  }
  #reason .reason-list li {
    list-style: none;
    margin-bottom: 40px;
  }
  #reason .reason-list li .reason-box {
    width: 100%;
    padding: 10px 0 7px;
    background: #01aded;
    color: #fff;
    border-radius: 4px;
    text-align: center;
  }
  #reason .reason-list li .reason-box .reason-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  #reason .reason-list li .reason-box .reason-title .number {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 24px;
    color: #000;
    width: 32px;
    height: 32px;
    background: #fffd03;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #reason .reason-list li .reason-box .reason-title .type {
    font-size: 16px;
  }
  #reason .reason-list li .reason-box .reason-text {
    font-size: 22px;
    font-weight: bold;
  }
  #reason .reason-list li .reason-box .reason-text .large {
    font-size: 32px;
    margin: 0 5px;
    line-height: 1;
  }
  #reason .reason-list li p {
    font-size: 4.2vw;
    line-height: 2;
    padding: 12px 0 0 10%;
  }
  #reason .reason-list li p .blue {
    color: #01aded;
    font-weight: bold;
    position: relative;
  }
  #reason .reason-list li p .blue::before {
    content: url(/img/top/check.png);
    position: absolute;
    left: -1.5em;
  }
  #reason .reason-list li .image.second {
    margin-top: -51vw;
  }
  #reason .reason-list li .image.third {
    width: 80%;
    margin: auto;
  }
  #reason .reason-list li .btn {
    font-size: 18px;
    font-weight: 500;
	color: #01aded;
    padding: 7px 0;
    border: 1px solid #01aded;
    border-radius: 30px;
    position: relative;
    width: 230px;
    margin: 20px auto 0;
	-webkit-box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
	box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
  }
  #reason .reason-list li .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #01aded;
    border-radius: 50%;
  }
  #reason .reason-list li .btn::before {
    content: "→";
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    z-index: 1;
  }
  #reason .reason-list li:first-child .box .reason-title .icon {
    width: 40px;
  }
  #reason .reason-list li:nth-child(2) .box .reason-title .icon {
    width: 25px;
  }
  #reason .reason-list li:last-child .box .reason-title .icon {
    width: 24px;
  }
  #school {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    background: #d5f4ff;
    padding: 30px 0 15px;
  }
  #school .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #school .bg {
    background: #fff;
    padding: 25px 6% 15px;
  }
  #school .bg .name {
    font-size: 17px;
    font-weight: bold;
  }
  #school .bg .parking {
    font-size: 16px;
    font-weight: 500;
    color: #01aded;
	margin: 10px 0 20px;
  }
  #school .bg .car-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6%;
    margin: 15px 0;
  }
  #school .bg .car-type li {
    list-style: none;
    width: 29%;
    font-size: 15px;
    color: #000;
    background: #d5f4ff;
    padding: 3px 0;
    border-radius: 4px;
    font-weight: 400;
    text-align: center;
  }
  #school .bg .evaluation-title {
    font-size: 18px;
    font-weight: 500;
  }
  #school .bg .evaluation {
    display: block;
    margin: 5px 0 12px;
  }
  #school .bg .evaluation .star .material-symbols-sharp {
    color: #ebbf5a;
    font-size: 16px;
    margin-right: -6px;
    margin-top: 4px;
  }
  #school .bg .reviews-average {
	display: block;
  }
  #school .bg .reviews {
  	text-align: left;
  	padding-bottom: 10px;
  }
  #school .bg .reviews .reviews-img img {
  	width: 24%;
  }
  #school .bg .school-comment {
  	text-align: left;
  	background-color: #ffefcc;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  #school .bg .evaluation .number {
    font-size: 24px;
    font-weight: 500;
  }
  #school .bg .evaluation .number .small {
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
  }
  #school .bg .baloon {
    font-size: 13px;
    background: #eff4f6;
    padding: 10px;
    position: relative;
    width: 90%;
    margin: auto;
  }
  #school .bg .baloon::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 10px 0 10px;
    border-color: #eff4f6 transparent transparent transparent;
  }
  #school .bg .btn {
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0;
    color: #01aded;
    border-radius: 30px;
    border: 1px solid #01aded;
    width: 90%;
    margin: 20px auto 30px;
    -webkit-box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
            box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
  }
  #school .bg .address-title {
    font-size: 14px;
    font-weight: 700;
    background: #01aded;
    color: #fff;
    border-radius: 4px;
    padding: 2px 0;
  }
  #school .bg .address {
    font-size: 14px;
    margin: 5px 0 10px;
    text-align: left;
  }
  #school .bg iframe {
    width: 100%;
    height: 275px;
    margin-top: 10px;
  }
  #school .bg .tel-text {
    font-size: 16px;
    margin: 20px 0 5px;
  }
  #school .bg .tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  #school .bg .tel .tel-icon {
    width: 15px;
  }
  #school .bg .tel .tel-number {
    font-size: 30px;
    font-weight: bold;
  }
  #school .bg .tel-time {
    font-size: 16px;
  }
  #tv {
    font-family: "Noto Sans JP", sans-serif;
    padding: 60px 0;
  }
  #tv .title {
    width: 254px;
    margin: auto;
  }
  #tv .video-text {
    font-size: 22px;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #01aded;
    text-align: center;
  }
  #tv video {
    width: 100%;
  }
  #license {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    padding-bottom: 40px;
  }
  #license .title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  #license .license-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #license .license-list li {
    text-decoration: none;
    width: 48%;
    list-style: none;
  }
  #license .license-list li .license-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  #license .license-list li a .license-btn {
    font-size: 16px;
    background: #d5f4ff;
    padding: 10px 0;
    position: relative;
    border-bottom: 2px solid #01aded;
    margin-bottom: 10px;
  }
  #license .license-list li a .license-btn.camp {
    background: #fff;
    border-top: 1px solid #01aded;
    border-left: 1px solid #01aded;
    border-right: 1px solid #01aded;
    color: #01aded;
    font-weight: 500;
  }
  #license .license-list li a .license-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #01aded;
  }
}
@media screen and (min-width: 769px) {
  .inner {
    width: 770px;
    margin: 0 auto;
  }
  #study {
    font-family: "Noto Sans JP", sans-serif;
    padding: 80px 0 30px;
  }
  #study .inner {
    width: 728.5px;
  }
  #study .study-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
  #study .study-list li {
    list-style: none;
    margin-bottom: 40px;
  }
  #study .study-list li .study-box {
    padding: 10px 20px;
    border: 1px solid #01aded;
    position: relative;
    line-height: 1.5;
    margin: 0 auto 12px;
    text-align: center;
  }
  #study .study-list li .study-box .type {
    background: #01aded;
    color: #fff;
    font-size: 16px;
    padding: 0 20px 1px;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    position: absolute;
    top: -26px;
    left: -1px;
  }
  #study .study-list li .study-box .title {
    font-size: 20px;
    font-weight: 400;
  }
  #study .study-list li .study-box::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    z-index: 2;
  }
  #study .study-list li .study-box::before {
    content: "";
    position: absolute;
    right: 59px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 10px 0 10px;
    border-color: #01aded transparent transparent transparent;
    z-index: 1;
  }
  #flow {
    font-family: "Noto Sans JP", sans-serif;
    background: #fffce1;
    padding: 40px 0;
  }
  #flow .inner {
    width: 740px;
  }
  #flow .title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  #flow .flow-image {
    width: 640px;
    margin: auto;
  }
  #flow .image {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  #flow .image img {
    width: 360px;
  }
  #reason {
    font-family: "Noto Sans JP", sans-serif;
    /*padding: 80px 0 50px;*/
  }
  #reason .title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  #reason .title .large {
    font-size: 56px;
  }
  #reason .reason-list li {
    list-style: none;
    margin-bottom: 50px;
  }
  #reason .reason-list li .reason-box {
    width: 100%;
    padding: 15px 20px;
    background: #01aded;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #reason .reason-list li .reason-box .reason-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-right: 30px;
  }
  #reason .reason-list li .reason-box .reason-title .number {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 24px;
    color: #000;
    width: 32px;
    height: 32px;
    background: #fffd03;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #reason .reason-list li .reason-box .reason-title .type {
    font-size: 18px;
  }
  #reason .reason-list li .reason-box .reason-text {
    font-size: 26px;
    font-weight: bold;
    margin: 5px 0;
  }
  #reason .reason-list li .reason-box .reason-text .large {
    font-size: 40px;
    margin: 0 4px;
    line-height: 1;
  }
  #reason .reason-list li .reason-content {
    padding: 20px 0 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #reason .reason-list li .reason-content p {
    font-size: 20px;
    line-height: 1.7;
  }
  #reason .reason-list li .reason-content p .blue {
    color: #01aded;
    font-weight: bold;
    position: relative;
  }
  #reason .reason-list li .reason-content p .blue::before {
    content: url(/img/top/check.png);
    position: absolute;
    left: -1.5em;
  }
  #reason .reason-list li .reason-content .image {
    width: 315px;
  }
  #reason .reason-list li .reason-content .image.second {
    width: 344px;
    margin-top: -80px;
  }
  #reason .reason-list li .reason-content .image.third {
    width: 254px;
  }
  #reason .reason-list li .btn {
    font-size: 18px;
    font-weight: 500;
	color: #01aded;
    padding: 10px 0;
    border: 1px solid #01aded;
    border-radius: 30px;
    position: relative;
    width: 260px;
    margin: 20px auto 0;
    text-align: left;
    padding-left: 60px;
	-webkit-box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
	box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
  }
  #reason .reason-list li .btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 45px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #01aded;
    border-radius: 50%;
  }
  #reason .reason-list li .btn::before {
    content: "→";
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    z-index: 1;
  }
  #reason .reason-list li:first-child .box .reason-title .icon {
    width: 40px;
  }
  #reason .reason-list li:nth-child(2) .box .reason-title .icon {
    width: 25px;
  }
  #reason .reason-list li:last-child .box .reason-title .icon {
    width: 24px;
  }
  #school {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    background: #d5f4ff;
    padding: 30px 0 50px;
  }
  #school .title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #school .bg {
    background: #fff;
    padding: 30px 65px;
  }
  #school .bg .name {
    font-size: 24px;
    font-weight: bold;
  }
  #school .bg .parking {
    font-size: 20px;
    font-weight: 500;
    color: #01aded;
    margin: 10px 0 20px;
  }
  #school .bg .car-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin: 15px 0;
  }
  #school .bg .car-type li {
    width: 116px;
    list-style: none;
    font-size: 15px;
    color: #000;
    background: #d5f4ff;
    padding: 3px 0;
    border-radius: 4px;
    font-weight: 400;
    text-align: center;
  }
  #school .bg .evaluation-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 530px;
    margin: 0 auto 40px;
  }
  #school .bg .evaluation-title {
    font-size: 24px;
    font-weight: 500;
  }
  #school .bg .evaluation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin: 5px 0 0;
  }
  #school .bg .reviews-average {
  	display: flex;
  }
  #school .bg .reviews-average .star {
	width: 70px;
  }
  #school .bg .evaluation .star .material-symbols-sharp {
    color: #ebbf5a;
    font-size: 16px;
    margin-right: -6px;
    margin-top: 4px;
  }
  #school .bg .reviews {
  	text-align: left;
  	padding-bottom: 10px;
  }
  #school .bg .reviews .reviews-img img {
  	width: 24%;
  }
  #school .bg .school-comment {
  	text-align: left;
  	background-color: #ffefcc;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  #school .bg .evaluation .number {
    font-size: 24px;
    font-weight: 500;
  }
  #school .bg .evaluation .number .small {
    font-size: 16px;
    font-weight: 400;
    margin-left: 5px;
  }
  #school .bg .evaluation-block .evaluation-right {
    width: 280px;
  }
  #school .bg .baloon {
    font-size: 13px;
    background: #eff4f6;
    padding: 10px;
    position: relative;
  }
  #school .bg .baloon::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 10px 0 10px;
    border-color: #eff4f6 transparent transparent transparent;
  }
  #school .bg .btn {
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0;
    color: #01aded;
    border-radius: 35px;
    border: 1px solid #01aded;
    margin: 20px 0;
    -webkit-box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
            box-shadow: 0 4px 0 0 rgba(51, 51, 51, 0.2);
  }
  #school .bg .address-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #school .bg .address-list .address-block {
    width: 300px;
  }
  #school .bg .address-list .address-block .address-title {
    font-size: 14px;
    font-weight: 700;
    background: #01aded;
    color: #fff;
    border-radius: 4px;
    padding: 2px 0;
  }
  #school .bg .address-list .address-block .address {
    font-size: 16px;
    margin: 5px 0 10px;
    text-align: left;
  }
  #school .bg iframe {
    width: 100%;
    height: 354px;
    margin: 5px 0 10px;
  }
  #school .bg .tel-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 500px;
    margin: auto;
  }
  #school .bg .tel-block .tel-text {
    font-size: 18px;
    text-align: left;
  }
  #school .bg .tel-block .tel-info .tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
  }
  #school .bg .tel-block .tel-info .tel .tel-icon {
    width: 15px;
  }
  #school .bg .tel-block .tel-info .tel .tel-number {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
  }
  #school .bg .tel-block .tel-info .tel-time {
    font-size: 16px;
	letter-spacing: 2px;
	margin-left: 30px
  }
  #tv {
    font-family: "Noto Sans JP", sans-serif;
    padding: 120px 0;
  }
  #tv .inner {
    width: 930px;
  }
  #tv .title {
    width: 830px;
    margin: auto;
  }
  #tv .video-text {
    font-size: 40px;
    margin: 20px 0;
    font-weight: bold;
    color: #01aded;
    text-align: center;
  }
  #tv video {
    width: 100%;
  }
  #license {
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    padding-bottom: 60px;
  }
  #license .inner {
    width: 900px;
  }
  #license .title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  #license .license-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
  #license .license-list li {
    text-decoration: none;
    width: 280px;
    list-style: none;
    margin-bottom: 0;
  }
  #license .license-list li .license-title {
    font-size: 28px;
    margin-bottom: 5px;
  }
  #license .license-list li a .license-btn {
    font-size: 20px;
    background: #d5f4ff;
    padding: 10px 0;
    position: relative;
    border-bottom: 2px solid #01aded;
    margin-bottom: 10px;

  }
  #license .license-list li a .license-btn.camp {
    background: #fff;
    border-top: 1px solid #01aded;
    border-left: 1px solid #01aded;
    border-right: 1px solid #01aded;
    color: #01aded;
    font-weight: 500;
  }
  #license .license-list li a .license-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 10px;
    border-color: transparent transparent transparent #01aded;
  }
  #license .license-list li a:hover {
    color: #000;
  }
}

/* パンフレットボタン */
.button_pamphlet {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: .9em 2em .8em 45px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 30%), 0 2px 3px -2px rgb(0 0 0 / 20%);
    background-color: #1c96d4;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}
@media screen and (max-width: 480px) {
	.button_pamphlet {
	    width: 90%;
	}
}

.button_pamphlet:hover {
	opacity: 0.8;
    /*transform: translateY(-1px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 20%), 0 0 5px rgb(0 0 0 / 10%);*/
}

.button_pamphlet::before {
    position: absolute;
    top: 0;
    left: 15px;
    width: 30px;
    height: 85%;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 50% 75%, 100% 100%, 100% 0);
    content: '';
}

.button_pamphlet::after {
    position: absolute;
    top: 33%;
    left: 30px;
    transform: translate(-50%, -50%);
    color: #1c96d4;
    font-size: 1.2em;
    content: '★';
}

.min_sp {
	display: none;
}

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

.star-large {
	font-size: 24px !important;
}

/* スライド(main) */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  background: white;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  padding: 20px;
}

.card {
  flex: 0 0 80%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.text {
  padding: 20px;
}

.text h3 {
  margin-top: 0;
}

.arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.dots {
  text-align: center;
  margin: 10px 0;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #f90;
}

@media screen and (max-width: 768px) {
  .card {
    flex: 0 0 90%;
  }

  .card img {
    height: 60%;
  }
}

@media screen and (max-width: 480px) {
  .card {
    flex: 0 0 95%;
  }
}

.more-info-section {
  background-color: #f5f5f5;
  padding: 60px 0;
  width: 100%;
}

.more-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* モバイルでもはみ出さない余白 */
  text-align: center;
}

.more-info-container h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 40px;

}

.more-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;

}

.arrow {
  font-size: 1.2rem;
  color: #333;

}

@media (max-width: 480px) {
  .more-info-grid {
    grid-template-columns: 1fr; /* モバイルは1列で強制 */
  }

  .more-info-container {
    padding: 0 12px; /* さらに内側の余白を縮めると安心 */
  }
}

