@charset "UTF-8";

/* =========================================================
  Font set
  日本語：筑紫ゴシックPRO
  英数字：Futura
========================================================= */
  :root{
	--scale: 1; /* ★これを追加（SPでも必ず効く） */
  
	--font-ja:
	  "Tsukushi Gothic Pro","TsukushiGothicPro","Tsukushi Gothic",
	  "Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP",
	  "Yu Gothic","Meiryo",sans-serif;
  
	--font-en: "futura-pt","Futura PT","Futura",sans-serif;
	--font-base: var(--font-ja);
  }
  
  /* これは不要になるので消してOK
  @media screen and (min-width: 700px) {
	:root { --scale: 1; }
  }
  */

body{
  font-family: var(--font-base);
  font-weight: 300;
  font-size: calc(12px * var(--scale));
  line-height: 1.4;
  color: #3a3b43;
  background: #fff;
  letter-spacing: 0;

  /* 任意：見た目のにじみ軽減 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.emoji{ font-family: 'EmojiOneColor', var(--font-base); }

/* 既存の .montre を “英数字(Futura)用” に置き換え

/* 任意：明示したい時用 */
.font-ja{ font-family: var(--font-ja); }
.font-en{ font-family: var(--font-en); letter-spacing: .04em;   font-weight: 300;  /* ここで英字だけ細く */}

/* 絵文字フォントは残すならこれだけでOK */
@font-face{
  font-family: 'EmojiOneColor';
  src: url('../fonts/EmojiOneColor.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
.emoji{ font-family: 'EmojiOneColor', var(--font-base); }
img {
	width: 100%;
	display: block;
}

h2,
h3 {
	line-height: 1.2;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex.reverse {
	flex-direction: row-reverse;
}

a {
	transition: all .6s;
}

a:hover {
	opacity: .8;
}

.fade-up {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

.emoji {
	font-family: 'EmojiOneColor', sans-serif;
}

.inner {
	max-width: 100%;
	width: calc(100% - calc(40px * var(--scale)));
	margin: 0 auto;
}

.lp-cont {
	background: #fff;
	max-width: 375px;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 99px;
	position: relative;
	z-index: 1;
}

header.pc {
	background: #f0eee9;
	z-index: 2;
	position: fixed;
	width: 100%;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	width: calc(100% - 120px);
}


.header-logo {
	width: 300px;
}

.header-btn {
	width: calc(150px * var(--scale));
}

.header-btn a {
	transition: all .4s;
	box-shadow: 1px 1px 1px rgba(59, 59, 59, .5);
	border-radius: 10px;
	display: block;
}

.header-btn a:hover {
	box-shadow: none;
	transform: translateX(1px)translateY(2px);
}

section {
	padding: calc(40px * var(--scale)) 0;
}

.fv {
	padding: 0;
}

.fixed-cont {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 0px;
	padding: 10px 0;
	width: 100%;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all .4s;
	background-image: url(../img/fixed_bg.webp);
	background-position: center top;
	background-size: cover;
	max-width: 375px;
}

.fixed-cont .inner {
	max-width: 375px;
	margin: 0 auto;
}

.fixed-cont .cta-cont {
	width: 48%;
	box-shadow: 1px 1px 0 rgba(59, 59, 59, 1);
	border-radius: 9px;
	transition: all .4s;
}

.fixed-cont .cta-cont:hover {
	box-shadow: none;
	transform: translateX(1px)translateY(2px);
	opacity: 1 !important;
}

.fixed-cont .cta-con a:hover {
	opacity: 1 !important;
}

.fixed-cont.active {
	opacity: 1;
	visibility: visible;
}

.fixed-cont.hide {
	opacity: 0;
	visibility: hidden;
}

.cta-conts {
	padding: 10px 0;
	width: 100%;
	transition: all .4s;
	background-color: #f0eee9;
	background-position: center top;
	background-size: cover;
}

.cta-conts .inner {
	max-width: 375px;
	margin: 0 auto;
}

.cta-conts .cta-cont {
	width: 48%;
	box-shadow: 1px 1px 0 rgba(59, 59, 59, 1);
	border-radius: 9px;
	transition: all .4s;
	animation: slowBounce 2s cubic-bezier(.68, -0.55, .27, 1.55) infinite;
}

.cta-conts .cta-cont:hover {
	box-shadow: none;
	transform: translateX(1px)translateY(2px);
	opacity: 1 !important;
}

.cta-cont a:hover {}

.schedule-box {
	margin-bottom: calc(10px * var(--scale));
}

.schedule-box-top {
	padding:
		calc(25px * var(--scale)) calc(10px * var(--scale)) calc(15px * var(--scale));
	position: relative;
	background: #f0eee9;
}

.schedule-box-top .bg {
	position: absolute;
	width: 100%;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 80%;
}

.schedule-box-top-title {
    text-align: center;
    margin-bottom: calc(15px * var(--scale));
    position: relative;
    z-index: 1;
}

/* 直書きテキスト 'SCHEDULE' (h2タグ) のスタイルを定義 */
.schedule-box-top-title h2 {
    font-size: calc(30px * var(--scale));
    color: #3a3b43;
    margin: 0 auto calc(10px * var(--scale));
    font-weight: 700;
    line-height: 1.2;
}

.schedule-box-top-title p {
    font-size: calc(18px * var(--scale));
    color: #3a3b43;
    padding-bottom: calc(2.5px * var(--scale));
    position: relative;
}

.schedule-box-top-title p::before {
	content: "";
	height: 1px;
	width: calc(20px * var(--scale));
	border-radius: 5px;
	background: #3a3b43;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 0;
	position: absolute;
}

.schedule-days {
	position: relative;
	z-index: 1;
}

/* ===== schedule card grid ===== */
/* =========================
   EVENT SCHEDULE 2列カード（上書き強め）
========================= */
/* =========================
   EVENT SCHEDULE（2列・崩れない版）
========================= */

/* ulを2列グリッドに固定 */
/* =========================
   日程を白カード＋枠線で囲む
========================= */

/* 2列グリッド（崩れ防止） */
/* =========================
   EVENT SCHEDULE：ラベル有無で高さ・中央寄せ調整（上書き）
========================= */

.schedule-days.schedule-cards ul{
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: calc(12px * var(--scale)) !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
  }
  
  .schedule-days.schedule-cards ul > li{
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
  }
  
  /* カード本体 */
  .schedule-days.schedule-cards .sc-card{
	background: #fff !important;
	border: 2px solid rgba(0,0,0,.12) !important;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
	position: relative;
	overflow: hidden;
  
	/* ★縦位置制御のため flex 化 */
	display: flex;
	justify-content: center;   /* ラベル無しは縦センター */
	align-items: center;
	padding: 12px 10px;
	min-height: 92px;          /* ここでカードの基本高さを揃える */
  }
  
  /* 中身 */
  .schedule-days.schedule-cards .sc-inner{
	width: 100%;
	text-align: center;
	padding: 14px 0;
  }
  
  /* 日付・時間 */
  .schedule-days.schedule-cards .sc-date{
	font-size: 27px;
	line-height: 1;
	margin: 0 0 6px;
	font-weight: 700;
  }
  .schedule-days.schedule-cards .sc-time{
	font-size: 12px;
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap; /* ★12/13 などで折り返して余白が増えるのを防ぐ */
  }
  
  /* 曜日バッジ */
  .schedule-days.schedule-cards .sc-dow{
	position: absolute;
	right: -2px;
	top: 14px;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	background: var(--sc-badge, #55B7E6);
  }
  
  /* ===== ラベルがあるカードだけ：下にスペースを作る ===== */
  .schedule-days.schedule-cards .sc-card.is-oc,
  .schedule-days.schedule-cards .sc-card.is-after{
	align-items: flex-start;   /* 上寄せ（下にラベルを置くため） */
	min-height: 108px;         /* ラベル分だけ少し高く */
  }
  
  /* ラベルあり：時間とラベルの間を空ける */
  .schedule-days.schedule-cards .sc-card.is-oc .sc-inner,
  .schedule-days.schedule-cards .sc-card.is-after .sc-inner{
	padding-bottom: 26px; /* ★ここで「時間とラベルの間の余白」を確保（増やしたければ 38〜46） */
  }
  
  /* ラベル */
 /* sc-ribbon の定義はこれ1つに統一（下のやつを残して他は削除） */
/* sc-ribbon の定義はこれ1つに統一（下のやつを残して他は削除） */
.schedule-days.schedule-cards .sc-ribbon{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
  
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: var(--sc-ribbon, #F28C28);
	padding: 5px 10px;
	border-radius: 999px;
  
	/* ★省略しない */
	max-width: none;
	overflow: visible;
	text-overflow: clip;
  
	/* ★1行で収めたいなら */
	white-space: nowrap;
  
	pointer-events: none;
  }
  
  /* 曜日色 */
  .schedule-days.schedule-cards .sc-card.is-sun{ --sc-badge:#F28C28; }
  .schedule-days.schedule-cards .sc-card.is-sat{ --sc-badge:#55B7E6; }
  .schedule-days.schedule-cards .sc-card.is-fri{ --sc-badge:#eebe4f; }
  .schedule-days.schedule-cards .sc-card.is-thu{ --sc-badge:#2E9B57; }
  
  /* リボン色 */
  .schedule-days.schedule-cards .sc-card.is-oc{ --sc-ribbon:#F28C28; }
  .schedule-days.schedule-cards .sc-card.is-after{ --sc-ribbon:#55B7E6; }
  
  /* SP微調整 */
  @media screen and (max-width: 700px){
	.schedule-days.schedule-cards .sc-card{ min-height: 92px; }
	.schedule-days.schedule-cards .sc-card.is-oc,
	.schedule-days.schedule-cards .sc-card.is-after{ min-height: 110px; }
  }


/* カード外に出た要素は切る（隣カードに被さらない） */
.schedule-days.schedule-cards .sc-card{
	overflow: hidden;
  }
  
  /* リボンをカード内に収める調整 */
  .schedule-days.schedule-cards .sc-ribbon{
	bottom: 8px;
	padding: 6px 22px;    /* 横幅を控えめに */
	font-size: 11px;
	white-space: nowrap;
	z-index: 2;
	pointer-events: none; /* クリック邪魔しない */
  }
  
  /* 内側枠より前に出す */
  .schedule-days.schedule-cards .sc-card::before{ z-index: 1; }
  .schedule-days.schedule-cards .sc-inner{ z-index: 2; position: relative; }



  /* OR入試（OC活用型入試） → オレンジ */
.schedule-days.schedule-cards .sc-card.is-oc{
	border-color: #F28C28 !important;
	border-width: 3px;   /* ←ここ */
  }
  
  /* 放課後オーキャン → 水色 */
  .schedule-days.schedule-cards .sc-card.is-after{
	border-color: #55B7E6 !important;
	border-width: 3px;   /* ←ここ */
  }
  
  /* その他（通常日程） → 黄色 */
  .schedule-days.schedule-cards .sc-card:not(.is-oc):not(.is-after){
	border-color: #eebe4f !important; /* 黄色 */
	border-width: 3px;   /* ←ここ */
  }

.schedule-day-tag {
	width: calc(45px * var(--scale));
	margin: 0 auto calc(5px * var(--scale));
	border-radius: 100px;
	background: #1B4D2E;
	text-align: center;
}

.schedule-days ul li:nth-child(3) .schedule-day-tag {
	background: #FF0000;
}

.schedule-day-tag p {
	color: #fff;
	font-size: calc(12px * var(--scale));
	display: block;
	line-height: 1.4;
}

.schedule-day-num {
	text-align: center;
}

.schedule-day-num p.days {
	font-size: calc(18px * var(--scale));
	line-height: 1;
	padding-bottom: calc(2.5px * var(--scale));
}

.schedule-day-num p.time {
	font-size: calc(10px * var(--scale));
	line-height: 1;
}

.schedule-box-bottom {
	position: relative;
	z-index: 1;
}

.caution-txt p {
	font-size: calc(12px * var(--scale));
	text-indent: -1em;
	padding-left: 1em;
}

.arrow-img {
	width: calc(90px * var(--scale));
	margin: calc(30px * var(--scale)) auto;
}

.reserve-cont {
	margin-bottom: calc(70px * var(--scale));
	position: relative;
}

.online-reserve-btn {
	position: absolute;
	left: calc(20px * var(--scale));
	width: 195px;
	bottom: calc(25px * var(--scale));
}

.online-reserve-btn a {
	border-radius: 5px;
	box-shadow: 2px 2px 3px rgba(115, 115, 115, .25);
	display: block;
	transition: all .4s;
	animation: slowVerticalBounce 1s ease-in-out infinite;
}

.online-reserve-btn a:hover {
	transform: translateX(2px)translateY(3px);
}

.program {
	background: #98d4f7;
	padding-block: 0;
}

.program .inner {
	position: relative;
	top: calc(-35px * var(--scale));
}

.cmn-title {
	margin-block: 0 calc(30px * var(--scale));
	padding-inline: calc(10px * var(--scale));
}

.program-list li {
	background: #fff;
	border-radius: 10px;
	padding: calc(20px * var(--scale)) calc(10px * var(--scale)) calc(10px * var(--scale));
	margin-bottom: calc(20px * var(--scale));
}

.program-list li:last-child {
	margin-bottom: 0;
}

.program-box-num {
	text-align: center;
	margin-bottom: calc(5px * var(--scale));
}

.program-box-num span {
	font-size: calc(10px * var(--scale));
	color: #98d4f7;
}

.program-box-num p {
	font-size: calc(20px * var(--scale));
	color: #98d4f7;
	line-height: 1;
}

.program-list li:nth-child(even) .program-box-num p,
.program-list li:nth-child(even) .program-box-num span {
	color: #98d4f7;
}

.program-box-title {
	text-align: center;
	margin-bottom: calc(20px * var(--scale));
}

.program-box-title h3 {
	display: inline-block;
	font-weight: 700;
	font-size: calc(18px * var(--scale));
	line-height: 1.5;
}

.program-list li:nth-child(even) .program-box-title h3 {
}

.program-box-img {
	margin-bottom: calc(10px * var(--scale));
}

.program-box-txt p {
	font-size: calc(10px * var(--scale));
	font-weight: 500;
	line-height: 1.8;
	text-indent: -1em;
	padding-left: 1em;
}

.program-box-txt h4 {
	font-size: calc(14px * var(--scale));
	font-weight: 500;
	padding-bottom: calc(5px * var(--scale));
}

.visitor-cont {
	background-image: url(../img/visitor_bg.webp);
	background-size: cover;
	background-position: center;
	padding: calc(20px * var(--scale)) 30px;
}

.visitor-cont-title {
	margin-bottom: calc(20px * var(--scale));
}

.visitor-cont-flex-cont {
	width: 47%;
}

.visitor-cont-flex-cont-img {
	width: calc(100% - calc(15px * var(--scale)));
	margin: 0 auto calc(10px * var(--scale));
}

.visitor-cont-flex-cont:nth-child(1) .visitor-cont-flex-cont-img {
	margin-bottom: calc(8px * var(--scale));
}

.visitor-cont-flex-cont:nth-child(2) .visitor-cont-flex-cont-img {
	width: calc(100% + 10%);
	margin-left: -10%;
}

.visitor-cont-flex-cont-txt {
	border-radius: 5px;
	background: #fff;
	border: 1px solid #8FD19E;
	text-align: center;
	padding: calc(10px * var(--scale)) 0;
}

.visitor-cont-flex-cont:nth-child(1) .visitor-cont-flex-cont-txt {
	padding: calc(21px * var(--scale)) 0;
}

.visitor-cont-flex-cont-txt p {
	font-size: calc(11px * var(--scale));
	font-weight: 500;
}

.visitor-cont-flex-cont-txt p small {
	letter-spacing: -.01rem;
	font-size: calc(10px * var(--scale));
}

.visitor-cont-flex-cont-txt p span {
	color: #E9546B;
	font-weight: 700;
}

.visitor-cont-flex-cont-txt p span span {
	font-size: calc(16px * var(--scale));
}

.opencampus-cont {
	padding-top: 0;
}

.opencampus-box-top {
	padding:
		calc(25px * var(--scale)) calc(10px * var(--scale)) calc(15px * var(--scale));
	position: relative;
	background-image: url(../img/opencampus_bg.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.opencampus-box-top-title {
	text-align: center;
	margin-bottom: calc(25px * var(--scale));
}

.opencampus-box-top-title h2 {
	font-size: calc(26px * var(--scale));
	line-height: 1;
	padding-bottom: calc(2.5px * var(--scale));
	color: #fff;
}

.opencampus-box-top-title p {
	font-size: calc(18px * var(--scale));
	color: #fff;
	padding-bottom: calc(2.5px * var(--scale));
	position: relative;
}

.opencampus-box-top-title p::before {
	content: "";
	height: 1px;
	width: calc(20px * var(--scale));
	border-radius: 5px;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 0;
	position: absolute;
}

.opencampus-box-top .schedule-days {
	margin-bottom: calc(20px * var(--scale));
}

.opencampus-btn a {
	display: block;
	max-width: calc(200px * var(--scale));
	border-radius: 10px;
	box-shadow: 2px 2px 3px rgba(115, 115, 115, .25);
	display: block;
	transition: all .4s;
	margin: 0 auto;
	animation: slowVerticalBounce 1s ease-in-out infinite;
	margin-top: 30px;
	margin-bottom: 10px;
}

.opencampus-btn a:hover {
	transform: translateX(2px)translateY(3px);
	box-shadow: none;
}

.feature {
	padding: calc(30px * var(--scale)) 0;
	background-color: #98d4f7;
	background-position: center top;
	background-size: 100%;
}

.feature .cmn-title {
	margin-block: 0 calc(20px * var(--scale));
}

.swiper-wrapper {
	align-items: stretch !important;
}

.swiper-slide {
	background: #fff;
	height: auto;
	border-radius: 10px;
	padding: calc(20px * var(--scale)) calc(10px * var(--scale));
}

.feature-box-title {
	text-align: center;
	margin-bottom: calc(15px * var(--scale));
}

.feature-box-title h3 {
	font-size: calc(16px * var(--scale));
	color: #98d4f7;
	font-weight: 700;
}

.feature-box-img {
	margin-bottom: calc(20px * var(--scale));
}

.feature-box-txt h4 {
	text-align: center;
	padding-bottom: calc(15px * var(--scale));
	font-size: calc(14px * var(--scale));
	font-weight: 500;
}

.feature-box-txt p {
	font-size: calc(12px * var(--scale));
	font-weight: 500;
	text-indent: -1em;
	padding-left: 1em;
}

.swiper-pagination {
	position: relative;
}

.swiper-pagination {
	position: relative;
	margin-top: calc(10px * var(--scale));
}

.swiper-pagination-bullet {
	width: calc(10px * var(--scale));
	height: calc(10px * var(--scale));
	margin: calc(5px * var(--scale)) !important;
	display: inline-block;
	border-radius: 100%;
	background: #3a3b43;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.voice .cmn-title {
	margin-bottom: calc(60px * var(--scale));
}

.voice-list li {
	margin-bottom: calc(55px * var(--scale));
}

.voice-list li:last-child {
	margin-bottom: 0;
}

.voice-list-cont-img {
	margin-bottom: calc(12px * var(--scale));
	position: relative;
}

.voice-list-cont-img p {
	width: calc(60px * var(--scale));
	height: calc(60px * var(--scale));
	border-radius: 50%;
	background: #539be0;
	position: absolute;
	left: 0;
	top: calc(-30px * var(--scale));
	text-align: center;
	font-size: calc(32px * var(--scale));
	line-height: calc(60px * var(--scale));
	color: #fff;
}

.voice-list-cont-txt-th {
	margin-bottom: calc(7.5px * var(--scale));
	background: #98d4f7;
	padding: calc(6.5px * var(--scale)) calc(10px * var(--scale)) calc(1.5px * var(--scale));
}

.voice-list-cont-txt-th p {
	font-weight: 700;
	color: #fff;
	font-size: calc(15px * var(--scale));
}

.voice-list-cont-txt-td {
	margin-bottom: calc(7.5px * var(--scale));
	padding-inline: calc(10px * var(--scale));
}

.voice-list-cont-txt-td p {
	font-size: calc(13px * var(--scale));
	font-weight: 500;
	line-height: 1.5;
}

.voice-list-cont-txt-td p img {
	display: inline-block;
	width: calc(18px * var(--scale));
	position: relative;
	top: calc(-3px * var(--scale));
	left: -2px;
}

.voice-list-cont-txt-td p span {
	font-weight: 700;
	background: linear-gradient(transparent 60%, #F7EB40 40%);
}

.voice-list-cont-txt:last-child .voice-list-cont-txt-td {
	margin-bottom: 0;
}

.sns-cont {
	padding: 0;
}

.sns-cont-top {
	padding: calc(25px * var(--scale)) 0;
	background-image: url(../img/sns_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.sns-cont-top h2 {
	max-width: calc(200px * var(--scale));
	margin: 0 auto calc(10px * var(--scale));
	display: block;
}

.sns-cont-top p {
	text-align: center;
	font-weight: 500;
	font-size: calc(14px * var(--scale));
}

.sns-cont-bottom {
	margin-block: calc(30px * var(--scale));
}

.sns-cont-bottom ul {
	max-width: calc(220px * var(--scale));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.sns-cont-bottom ul li {
	height: calc(75px * var(--scale));
}

.sns-cont-bottom ul li img {
	width: auto;
	height: 100%;
}

.point {
	background: #f0eee9;
	position: relative;
}

.point-bg {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}

.point-title {
	width: calc(100% - calc(20px * var(--scale)));
	margin: 0 auto calc(25px * var(--scale));
	position: relative;
	z-index: 1;
}

.point-txt {
	text-align: center;
	margin-bottom: calc(20px * var(--scale));
}

.point-txt p {
	font-size: calc(16px * var(--scale));
	font-weight: 500;
}

.point-txt p span {
	font-size: calc(18px * var(--scale));
	font-weight: 700;
	color: #F39801;
}

.point-list li {
	margin-bottom: calc(15px * var(--scale));
}

.point-list li:last-child {
	margin-bottom: 0;
}

.point-list-box {
	border-radius: 5px;
	background: #fff;
	border: 1px solid #98d4f7;
}

.point-list-box-title {
	background: #98d4f7;
	padding: calc(7.5px * var(--scale)) calc(10px * var(--scale)) calc(3.5px * var(--scale));
	color: #ffffff;
}

.point-list-box-title h3 {
	font-size: calc(17px * var(--scale));
	font-weight: 600;
}

.point-list-box-txt {
	padding: calc(15px * var(--scale)) calc(10px * var(--scale));
}

.point-list-box-txt ul {
	margin-left: 1em;
}

.point-list-box-txt li {
	font-size: calc(12px * var(--scale));
	font-weight: 500;
	margin-bottom: 0;
	list-style: disc;
	margin-bottom: calc(5px * var(--scale));
}

.point-list-box-txt li:last-child {
	margin-bottom: 0;
}

.point-list ol {
	margin-bottom: calc(20px * var(--scale));
}

.document-btn a {
	display: block;
	border-radius: 5px;
	box-shadow: 0px 4px 2px -2px rgba(115, 115, 115, .25);
	transition: all .4s;
}

.document-btn a:hover {
	opacity: 1;
	transform: translateY(4px);
	box-shadow: none;
}

.preparation {
	background-image: url(../img/preparation_bg4.webp);
	background-position: center top;
	background-size: cover;
	padding-block: 0;
	margin-top: calc(80px * var(--scale));
}

.preparation .inner {
	position: relative;
	top: calc(-40px * var(--scale));
}

.preparation-bg {
	position: relative;
	margin-top: calc(-35px * var(--scale));
	background: #fff;
	padding: calc(65px * var(--scale)) calc(10px * var(--scale)) calc(10px * var(--scale));
}

.preparation .cmn-title {
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.preparation-img {
	margin-bottom: calc(15px * var(--scale));
}

.preparation-list ul li {
	margin-bottom: calc(12.5px * var(--scale));
	padding-bottom: calc(12.5px * var(--scale));
	border-bottom: 1px dashed #3a3b43;
}

.preparation-list ul li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.preparation-title {
	display: flex;
	align-items: baseline;
	margin-bottom: calc(5px * var(--scale));
	justify-content: space-between;
}

.preparation-title img {
	width: calc(20px * var(--scale));
	position: relative;
	top: calc(2.5px * var(--scale));
}

.preparation-title h3 {
	width: calc(100% - calc(27.5px * var(--scale)));
	font-weight: 500;
	font-size: calc(16px * var(--scale));
	line-height: 1.5;
}

.preparation-txt p {
	font-weight: 500;
	font-size: calc(14px * var(--scale));
	line-height: 2;
}

.access .cmn-title {
	margin-block: 0 calc(40px * var(--scale));
}

.access-txt {
	margin-block: calc(20px * var(--scale));
	padding: calc(10px * var(--scale));
}

.access-txt p {
	font-size: calc(16px * var(--scale));
	font-weight: 500;
	line-height: 1.8;
}

.access-txt p:nth-child(1) {
	margin-bottom: calc(12.5px * var(--scale));
}

.access-txt p span {
	display: block;
	font-weight: 700;
}

footer{
	background:#f0eee9;
  }
  
.footer-btns {
	width: calc(100% - calc(60px * var(--scale)));
	margin: 0 auto;
	background-color: #f0eee9;
}

.footer-btn:nth-child(1) {
	margin-bottom: calc(10px * var(--scale));
}

.footer-btn a {
	display: block;
	box-shadow: 1px 1px 2px rgba(115, 115, 115, .25);
	transition: all .4s;
	border-radius: 5px;
	animation: slowBounce 2s cubic-bezier(.68, -0.55, .27, 1.55) infinite;
}

.footer-btn a:hover {
	box-shadow: none;
	transform: translateX(1px)translateY(2px);
}

.footer-sns {
	padding: calc(40px * var(--scale)) 0;
	background:#f0eee9;
}

.footer-btn{
	background-color: #f0eee9;
}
.footer-sns ul {
	max-width: calc(150px * var(--scale));
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer-sns ul li {
	width: calc(40px * var(--scale));
}

.footer-txt {
	padding: calc(25px * var(--scale));
	text-align: center;
	background: #F3F6FA;
}

.footer-txt-name p {
	font-size: calc(20px * var(--scale));
	font-weight: 500;
	padding-bottom: calc(10px * var(--scale));
}

.footer-txt-txt {
	padding-bottom: calc(10px * var(--scale));
}

.footer-txt-txt p {
	font-size: calc(13px * var(--scale));
	font-weight: 500;
	line-height: 2;
}

.footer-txt p.copy {
	font-size: calc(12px * var(--scale));
	font-weight: 500;
}

.sp {
	display: none;
}

.schedule-cont {
	padding-top: 0;
}

.fixed-menu {
	position: fixed;
	width: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	height: 100%;
}

.fixed-left {
	width: calc((100% - 375px) / 2);
	/* 変更前: background: #e54041; */
    
    /* ↓↓↓ ここをWebPファイルの指定に変更します ↓↓↓ */
	background-image: url(../img/fixed_left2.webp); /* 1. WebP画像へのパス */
	background-color: #e54041; /* 2. 画像が読み込めない場合の代替色 (元々の色) */
	background-size: cover; /* 3. 要素いっぱいに表示 */
	background-repeat: no-repeat; /* 4. 画像を繰り返さない */
	background-position: center center; /* 5. 画像を中央に配置 */
    /* ↑↑↑ 変更終わり ↑↑↑ */

	padding-top: 99px;
}

.fixed-left-inner {
	padding: 2.25vw 4vw 1.5vw;
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.fixed-left-logo {
	width: 100%;
	margin: 0 auto 2.75vw;
	transform: scale(0.9);
}


.fixed-left-logo img{
	border-radius: 20px;
}

.fixed-left-flex {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.fixed-left-flex-left {
	width: 12vw;
	position: relative;
	z-index: 1;
}

.fixed-left-flex-left::before {
	content: "";
	position: absolute;
	top: -1vw;        /* 上に少しはみ出す */
	left: -1vw;
	width: calc(100% + 2vw);
	height: calc(100% + 2vw);
  
	background: #fff;
  
	z-index: -1;      /* 中身より後ろ */
  }

.fixed-left-flex-left h2 {
	text-align: center;
	font-size: 1.9vw;
	color: #3a3b43;
	padding-bottom: 1.25vw;
}

.fixed-left-flex-left ul li a {
	color: #3a3b43;
	font-weight: 500;
	font-size: 1.25vw;
	margin-bottom: .5vw;
	display: block;
}

.fixed-left-flex-right {
	width: 14.5vw;
}

.fixed-left-flex-right .cta-cont:nth-child(1) {
	margin-bottom: 1.25vw;
}

.fixed-left-flex-right .cta-cont a {
	box-shadow: 1px 1px 2px rgba(115, 115, 115, .25);
	transition: all .4s;
	border-radius: 5px;
	animation: slowVerticalBounce 1s ease-in-out infinite;
	display: block;
}

.fixed-right {
	width: calc((100% - 375px) / 2);
	background-image: url(../img/fixed_right2.webp);
	background-size: 130%;
	background-position: right;
	background-repeat: no-repeat;
}

section.visitor {
	padding-top: 0;
}

@media screen and (max-width: 1200px) {
	.fixed-left-inner {
		padding: 2.25vw 15px 1.5vw;
	}
}

@media screen and (max-width: 1000px) {
	.fixed-left-inner {
		padding: 2.25vw 15px 1.5vw;
	}

	.fixed-right {
		display: none;
	}

	.fixed-left {
		width: calc(100% - 375px);
	}

	.lp-cont {
		margin-right: 0;
	}

	.fixed-left-logo {
		max-width: 30vw;
		margin: 0 auto 3.5vw;
	}

	.fixed-left-flex-left {
		width: 17.5vw;
	}

	.fixed-left-flex-left h2 {
		font-size: 3vw;
		padding-bottom: 1.5vw;
	}

	.fixed-left-flex-left ul li a {
		font-size: 2vw;
		margin-bottom: .75vw;
	}

	.fixed-left-flex-right {
		width: 24.5vw;
	}

	.fixed-left-flex-right .cta-cont:nth-child(1) {
		margin-bottom: 1.5vw;
	}

	.visitor-cont-flex-cont:nth-child(1) .visitor-cont-flex-cont-img {
		max-width: 80%;
	}
}

@media screen and (max-width: 700px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.header-logo {
		width: 130px;
	}

	.schedule-cont {
		padding-top: 40px;
	}

	.schedule-day-num p.time {
		font-size: 12px;
	}

	.schedule-day-num p.days {
		font-size: 20px;
	}

	.program-box-title h3 {
		font-size: 20px;
	}

	.program-box-txt p {
		font-size: 12px;
	}

	.feature-box-txt h4 {
		font-size: 16px;
	}

	.feature-box-txt p {
		font-size: 14px;
	}

	.voice-list-cont-txt-th p {
		font-size: 16px;
	}

	.voice-list-cont-txt-th p {
		font-size: 16px;
	}

	.point-list-box-title h3 {
		font-size: 18px;
	}

	.point-list-box-txt li {
		font-size: 14px;
	}

	.preparation-title h3 {
		font-size: 20px;
	}

	.opencampus-box-top-title h2 {
		font-size: 27px;
	}

	.lp-cont {
		margin-right: auto;
		padding-top: 0;
	}

	.header-inner {
		width: calc(100% - 40px);
	}

	.lp-cont,
	.fixed-cont {
		max-width: 100%;
	}

	.online-reserve-btn {
		width: 55vw;
		bottom: 5vw;
	}
}

@media screen and (max-width: 499px) {
	.visitor-cont-flex-cont:nth-child(1) .visitor-cont-flex-cont-img {
		max-width: 100%;
	}
}



/* =========================
   FV直下：学部・学科
========================= */
/* =========================
   FV直下：学部・学科（ボックス無し／白背景＋水色文字）
========================= */
/* =========================
   FV直下：学部・学科（2026なし／下線あり）
========================= */
.faculty{
	padding: 26px 0 12px;
	background: #fff;
  }
  
  /* 見出し */
  .faculty-title{
	text-align: center;
	margin-bottom: 18px;
  }
  
  .faculty-title h2{
	font-size: calc(30px * var(--scale));
	color: #8ACED5;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	padding-bottom: calc(6px * var(--scale));
	position: relative;
  }
  
  /* FACULTY 下のセンター線（EVENT SCHEDULE 風） */
  .faculty-title h2::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: calc(28px * var(--scale));
	height: 1px;
	background: #8ACED5;
	border-radius: 5px;
  }
  
  /* 本文 */
  .faculty-row{
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px dashed rgba(0,0,0,.18);
  }
  
  .faculty-row:first-child{
	border-top: none;
	padding-top: 0;
  }
  
  .faculty-row dt{
	width: 70px;
	flex: 0 0 70px;
	font-weight: 700;
	color: #8ACED5;
	font-size: calc(16px * var(--scale));
	line-height: 1.5;
  }
  
  /* ★ 学部名・学科名を少し大きく */
  .faculty-main{
	font-size: calc(16px * var(--scale));
	font-weight: 500;
	line-height: 1.6;
  }
  
  .faculty-row dd{
	margin: 0;
  }
  
  /* 学科リスト（軽め・白背景に馴染む） */
  .faculty-list{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 2px;
  }
  
  .faculty-list li{
	padding: 8px 12px;
  }


  /* =========================
   EVENT SCHEDULE：2列×2行/横カルーセル
   ※カード(.sc-card)のサイズはいじらない
========================= */
.schedule-carousel{
	position: relative;
  }
  
  .schedule-carousel .swiper-slide{
	height: auto;
  }
  /* ===== レイアウト（カードサイズは既存CSS依存） ===== */
.schedule-days ul{
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .schedule-days li{ margin:0; padding:0; }
  
  .schedule-days a.sc-card{
	display:block;
	color:inherit;
	text-decoration:none;
  }
  
  .schedule-days a.sc-card:active{
	transform: scale(.98);
  }
  
  /* ===== ナビ ===== */
  .schedule-controls{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:14px;
	margin-top:14px;
  }
  
  .schedule-prev,
  .schedule-next{
	width:34px;
	height:34px;
	border-radius:50%;
	border:none;
	background:rgba(255,255,255,.95);
	box-shadow:0 2px 8px rgba(0,0,0,.12);
	position:relative;
  }
  
  .schedule-prev::before,
  .schedule-next::before{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:10px;
	height:10px;
	border-top:2px solid #8ACED5;
	border-right:2px solid #8ACED5;
  }
  
  .schedule-prev::before{
	transform:translate(-50%,-50%) rotate(225deg);
  }
  .schedule-next::before{
	transform:translate(-50%,-50%) rotate(45deg);
  }
  
  .schedule-pagination{
	display:flex;
	gap:8px;
  }
  
  .schedule-pagination .swiper-pagination-bullet{
	width:8px;
	height:8px;
	border-radius:50%;
	background:rgba(255,255,255,.6);
	opacity:1;
  }
  .schedule-pagination .swiper-pagination-bullet-active{
	background:#fff;
  }



  /* =========================
   FEATURE：矢印＋ドット（添付風）
========================= */
.feature-controls{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:14px;
  
	width: fit-content;
	margin: 14px auto 0;
	padding: 10px 16px;
  
	/* 背景の柄は入れない（帯だけ） */
	background: #98D4F7;
	border-radius: 999px;
  }
  
  /* 矢印ボタン（白丸） */
  .feature-prev,
  .feature-next{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,.95);
	box-shadow: 0 2px 8px rgba(0,0,0,.12);
	position: relative;
	cursor: pointer;
  }
  
  /* 矢印のアイコン（CSSで描画） */
  .feature-prev::before,
  .feature-next::before{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	width:10px;
	height:10px;
	border-top:2px solid #98D4F7;
	border-right:2px solid #98D4F7;
  }
  
  .feature-prev::before{
	transform: translate(-50%,-50%) rotate(225deg);
  }
  .feature-next::before{
	transform: translate(-50%,-50%) rotate(45deg);
  }
  
  /* ドット */
  .feature-pagination{
	display:flex;
	gap:8px;
	align-items:center;
  }
  
  .feature-pagination .swiper-pagination-bullet{
	width:8px;
	height:8px;
	border-radius:50%;
	background: rgba(255,255,255,.55);
  }
  
  .feature-pagination .swiper-pagination-bullet-active{
	background:#fff;
  }


  /* テキスト用の白透過パネル */
.fixed-left-logo{
	width: 100%;
	margin: 0 auto 2.75vw;
	transform: scale(0.9);
  
	background: rgba(255,255,255,.85);
	padding: 30px 0;   /* ←ここを大きくする */
	margin-left: 0;
	padding-left: 0;
	margin-top: 60px;
  }
  
  /* キャッチコピー */
  .fixed-catch{
	margin: 0;
	color: #3a3b43;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .02em;
	text-align: center;
  
	/* 文字サイズ（画面幅に追従） */
	font-size: clamp(17px, 1.5vw, 30px);
  
	/* ほんのり読みやすく */
	text-shadow: 0 1px 0 rgba(255,255,255,.4);
	padding-left: 20px;   /* ←テキストだけ余白 */
  }

  

  .fixed-left-logo{
	margin-left: -6vw;
  }

  @media screen and (max-width: 700px) {
	header.sp{
	  background: #f0eee9; /* ←ここを好きな色に */
	}
  }

  /* FV */
.fv { padding: 0; }

.fv-wrap{
  position: relative;
  display: block;
  margin: 0;
}

.fv-wrap picture,
.fv-wrap img{
  display: block;
  width: 100%;
  height: auto;
}

/* 左下白ボックス */
.fv-caption{
  position: absolute;
  bottom: 16px;

  background: rgba(255,255,255,.94);
  padding: 9px 0px;

  /* 文字が長いので幅を制御（必要なら調整） */
  max-width: 85%;
}

.fv-caption p{
  margin: 0;
  color: #3a3b43;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .02em;
  font-size: 16px;
  padding-left: 20px;
}

/* SP 微調整 */
@media screen and (max-width: 700px){
  .fv-caption{
    bottom: 16px;
    padding: 10px 0px;
    max-width: 90%;
  }
  .fv-caption p{
    font-size: 16px;
  }
}


/* 最後に置く（これが最終勝ち） */
.montre{
	font-family: var(--font-en) !important;
	font-weight: 400;
	letter-spacing: .04em;
  }




  /* =========================
   最終上書き（末尾に置く）
   1) スケジュール背景：fixed_left2.webp
   2) 通常：#98d4f7 / OC参加型：#ff6967（オレンジ不使用）
   3) 曜日：上部英語ピル
   4) 角丸を弱める
========================= */

/* 背景を画像に（bg画像タグは後で非表示にする） */
.schedule-box-top{
	background: url(../img/fixed_left2.webp) center / cover no-repeat !important;
  }
  
  /* 既存の bg 画像（schedule_bg.webp）を使わないなら非表示 */
  .schedule-box-top .bg{
	display:none !important;
  }
  
  /* カード */
  .schedule-days.schedule-cards .sc-card{
	--sc-accent: #98d4f7;              /* 通常 */
	background: rgba(255,255,255,.92) !important;
	border: 3px solid var(--sc-accent) !important;
	border-radius: 8px !important;    /* ←丸み弱め */
	box-shadow: 0 2px 10px rgba(0,0,0,.08) !important;
  
	min-height: 92px;
	padding: 14px 10px 12px !important;
  
	display:flex !important;
	align-items:center !important;
	justify-content:center !important;
	position:relative;
  }
  
  /* OC参加型（旧OC活用型） */
  .schedule-days.schedule-cards .sc-card.is-oc{
	--sc-accent:#ff6967;
  }
  
  /* 内側（曜日ピル分だけ下げる） */
  .schedule-days.schedule-cards .sc-inner{
	padding: 20px 0 10px !important;
	text-align:center;
  }
  
  /* 曜日：上部に英語ピル、枠色に合わせる */
  .schedule-days.schedule-cards .sc-dow{
	position:absolute !important;
	left:50% !important;
	top:10px !important;
	transform:translateX(-50%) !important;
  
	width:auto !important;
	height:auto !important;
	padding:4px 12px !important;
  
	border-radius:999px !important;
	background: rgba(255,255,255,.85) !important;
	border:1px solid var(--sc-accent) !important;
	color: var(--sc-accent) !important;
  
	font-size:12px !important;
	font-weight:600 !important;
	letter-spacing:.08em !important;
  }
  
  /* リボン：オレンジ禁止 → 枠色連動 */
  .schedule-days.schedule-cards .sc-ribbon{
	background: var(--sc-accent) !important;
	color:#fff !important;
	bottom: 10px !important;
	font-size: 11px !important;
	padding: 6px 16px !important;
	border-radius: 999px !important;
  }
  
  /* 既存で「通常＝黄色」などの上書きがあるので無効化 */
  .schedule-days.schedule-cards .sc-card:not(.is-oc):not(.is-after){
	border-color: var(--sc-accent) !important; /* ＝#98d4f7 */
  }
  .schedule-days.schedule-cards .sc-card.is-oc{
	border-color: var(--sc-accent) !important; /* ＝#ff6967 */
  }
  
  /* 参加予約ボタン（画像じゃなく色で変える場合の保険）
	 ※今は<img>なので色は変わらない。下のB参照 */
  .opencampus-btn a{
	background:#ff6967 !important;
  }


  .btn-reserve{
	display:block;
	max-width: 200px;
	margin: 30px auto 10px;
	padding: 14px 18px;
	text-align:center;
	border-radius: 10px;
	background:#ff6967;
	color:#fff;
	font-weight:700;
	text-decoration:none;
	box-shadow: 2px 2px 3px rgba(115,115,115,.25);
  }



  /* =========================
  EVENT SCHEDULE 最終上書き
  - タイトル/ボタン：#f0eee9
  - スライド部分だけ：画像背景
  - カード：枠なし、白透過
  - 1行3つ表示
========================= */

/* 全体：今ある schedule-box-top の画像背景はやめる */
.schedule-box-top{
	background: #f0eee9 !important;
	padding: 22px 10px 18px !important;
  }
  
  /* 旧 bg 画像は使わない */
  .schedule-box-top .bg{ display:none !important; }
  
  /* タイトルブロック */
  .schedule-head{
	background:#f0eee9;
  }
  
  /* スライド部分だけ背景画像 */
  .schedule-slider-bg{
	background: url(../img/fixed_left2.webp) center / cover no-repeat;
	border-radius: 16px;
	padding: 14px 12px 12px;
  }
  
  /* ボタンブロック */
  .schedule-foot{
	background:#f0eee9;
	padding-top: 8px;
  }
  
  /* --- 1行3つ --- */
  .schedule-days.schedule-cards ul{
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
  }
  
  /* liの余計な背景を消す */
  .schedule-days.schedule-cards ul > li{
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
  }
  
  /* カード：枠線なし + 白を少し透過 */
  .schedule-days.schedule-cards .sc-card{
	background: rgba(255,255,255,.82) !important; /* ←透過 */
	border: none !important;                     /* ←枠線消す */
	box-shadow: 0 2px 10px rgba(0,0,0,.10) !important;
	border-radius: 14px !important;
	min-height: 86px;
	padding: 12px 8px !important;
  
	display:flex !important;
	align-items:center !important;
	justify-content:center !important;
	position:relative;
  }
  
  /* 中身 */
  .schedule-days.schedule-cards .sc-inner{
	padding: 18px 0 10px !important; /* 曜日ピル分 */
	text-align:center;
  }
  
  /* 曜日：上にピルで表示 */
  .schedule-days.schedule-cards .sc-dow{
	position:absolute !important;
	left:50% !important;
	top:10px !important;
	transform:translateX(-50%) !important;
  
	width:auto !important;
	height:auto !important;
	padding: 4px 12px !important;
	border-radius:999px !important;
	background: rgba(255,255,255,.75) !important;
	border: 1px solid rgba(0,0,0,.08) !important;
  
	color:#3a3b43 !important;
	font-size:12px !important;
	font-weight:600 !important;
	letter-spacing:.08em !important;
  }
  
  /* リボン（必要なら） */
  .schedule-days.schedule-cards .sc-ribbon{
	background: rgba(0,0,0,.65) !important;
	color:#fff !important;
	bottom: 10px !important;
	font-size: 11px !important;
	padding: 6px 14px !important;
	border-radius: 999px !important;
  }
  
/* =========================
  EVENT SCHEDULE（添付イメージ寄せ）
  通常：#98d4f7 / OC：#ff6967
========================= */
.schedule-box-top {
	position: relative;
  }
  
  /* 既存の背景画像(bg)は背面へ */
  .schedule-box-top .bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
  }
  
  /* タイトル等を前面に */
  .schedule-box-top-title,
  .schedule-frame,
  .opencampus-btn {
	position: relative;
	z-index: 1;
  }
  
  /* 青い背景枠（添付の“水面”っぽい面） */
  .schedule-frame {
	margin-top: 14px;
	padding: 18px 14px 22px;
	border-radius: 18px;              /* 角丸：強すぎない */
	background: url("./img/schedule_bg.webp") center/cover no-repeat;
	/* 画像が無い/読み込めない場合の保険 */
	background-color: rgba(152, 212, 247, 0.25);
  }
  
  /* 白いボックス（これが “入らない” の原因になりやすいので明示） */
  .schedule-frame__inner {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 16px;              /* 角丸：強すぎない */
	padding: 14px 14px 52px;          /* 下にナビ分の余白 */
	box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  
  /* Swiperの横はみ出し対策 */
  .schedule-carousel {
	overflow: hidden;
  }
  
  /* 2列表示（1スライド内で2〜3枚並べたい場合） */
  .schedule-cards ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 添付2枚目っぽく3枚並び */
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  /* カード */
  .sc-card {
	--accent: #98d4f7;               /* 通常デフォルト */
	display: block;
	position: relative;
	background: #fff;
	border: 2px solid var(--accent);
	border-radius: 14px;             /* 丸み弱め */
	text-decoration: none;
	color: inherit;
	height: 100%;
  }
  
  /* 通常・OC 色 */
  .sc-card.is-normal { --accent: #98d4f7; }
  .sc-card.is-oc     { --accent: #ff6967; }
  
  /* 中身配置 */
  .sc-inner {
	padding: 10px 10px 12px;
	text-align: center;
  }
  
  /* 曜日（上部に英語／枠色に合わせる） */
  .sc-week {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	padding: 5px 10px;
	margin-bottom: 6px;
	border: 2px solid var(--accent);
	color: var(--accent);
	border-radius: 999px;
	letter-spacing: 0.08em;
  }
  
  /* 日付・時間 */
  .sc-date {
	font-size: 30px;
	line-height: 1.05;
	margin: 0;
	font-weight: 700;
  }
  .sc-time {
	font-size: 12px;
	margin: 6px 0 0;
	opacity: 0.9;
  }
  
  /* OCリボン（オレンジ不使用：#ff6967） */
  .sc-ribbon {
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	padding: 6px 10px;
	border-radius: 999px;
	white-space: nowrap;
  }
  
  /* ナビ（左右矢印＋ドットを横並び） */
  .schedule-controls {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	align-items: center;
	gap: 10px;
  }
  
  /* 矢印：白丸 */
  .schedule-prev,
  .schedule-next {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: none;
	background: rgba(255,255,255,0.95);
	box-shadow: 0 6px 16px rgba(0,0,0,0.10);
	cursor: pointer;
	position: relative;
  }
  
  /* CSSで矢印を描画 */
  .schedule-prev::before,
  .schedule-next::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: 2px solid #6f6f6f;
	border-right: 2px solid #6f6f6f;
  }
  .schedule-prev::before { transform: rotate(-135deg); }
  .schedule-next::before { transform: rotate(45deg); }
  
  /* ドット */
  .schedule-pagination {
	text-align: center;
  }
  .schedule-pagination .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
  }
  
  /* 参加予約ボタン（黄色→#ff6967） */
  .btn-reserve {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(320px, 100%);
	height: 52px;
	margin: 14px auto 0;
	background: #ff6967;
	color: #fff;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 10px 20px rgba(255,105,103,0.28);
  }
  .opencampus-btn {
	text-align: center;
  }



  /* 参加予約ボタン（あなたのテキストボタン版） */
  .btn-reserve{
	display:block;
	max-width: 240px;
	margin: 14px auto 6px;
	padding: 14px 18px;
	text-align:center;
	border-radius: 10px;
	background:#ff6967;
	color:#fff;
	font-weight:700;
	text-decoration:none;
	box-shadow: 2px 2px 3px rgba(115,115,115,.25);
  }







  /* =========================
  SCHEDULE 2026（添付寄せ）
  背景：fixed_left2.webp
  通常：#98d4f7
  OC参加型：#ff6967
========================= */
.schedule2026{
	padding-top: 0;
	margin-bottom: -40px;
  }
  
  .schedule2026-box{
	background:#f0eee9;
	padding: 22px 10px 18px;
	border-radius: 0;
  }
  
  .schedule2026-head{
	text-align:center;
	margin-bottom: 14px;
  }
  
  .schedule2026-ttl{
	margin: 0 0 6px;
	font-size: 30px;
	line-height: 1.15;
	font-weight: 700;
	color:#3a3b43;
  }
  
  .schedule2026-year{
	margin: 0;
	font-size: 18px;
	color:#3a3b43;
	position: relative;
	display: inline-block;
	padding-bottom: 6px;
  }
  .schedule2026-year::after{
	content:"";
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	bottom:0;
	width: 22px;
	height: 1px;
	background:#000;
	border-radius: 10px;
  }
  
  /* 背景画像面 */
  .schedule2026-bg{
	background: url(../img/fixed_left2.webp) center/cover no-repeat;
	padding: 16px 14px 18px;
  }
  
  /* 白いボックス（ここが“入らない”原因になりやすいので明示） */
  .schedule2026-white{
	background: rgba(255,255,255,.92);
	border-radius: 16px;
	padding: 14px 14px 54px; /* 下にナビ分 */
	box-shadow: 0 10px 24px rgba(0,0,0,.10);
	position: relative;
  }
  
  /* Swiperのはみ出し防止 */
  .schedule2026-swiper{
	overflow: hidden;
  }
  
  /* 1スライド：3枚横並び */
  .schedule2026-list{
	list-style:none;
	margin:0;
	padding:0;
	display:grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
  }
  
  .schedule2026-item{ margin:0; padding:0; }
  
  /* カード */
  .schedule2026-card{
	--accent: #98d4f7;
  
	display:block;
	position:relative;
	text-decoration:none;
	color:#3a3b43;
  
	background: rgba(255,255,255,.88);
	border-radius: 4px;       /* ←丸み強すぎない */
	box-shadow: 0 6px 14px rgba(0,0,0,.10);
  
	padding: 12px 10px 12px;
	text-align:center;
	min-height: 96px;
  }
  
  .schedule2026-card.is-oc{ --accent:#ff6967; }
  .schedule2026-card.is-normal{ --accent:#98d4f7; }
  
  /* 曜日：上部英語ピル／枠色に合わせる */
  .schedule2026-week{
	display:inline-block;
	padding: 5px 12px;
	border-radius: 999px;
	background-color: var(--accent);
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .10em;
	margin-bottom: 8px;
  }
  
  /* 日付 */
  .schedule2026-date{
	margin: 0;
	font-size: 30px !important;
	line-height: 1.05;
	font-weight: 700;
  }
  
  /* 時間 */
  .schedule2026-time{
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
  }
  
  /* リボン（オレンジ禁止 → 枠色連動） */
  .schedule2026-ribbon{
	position:absolute;
	left:50%;
	transform: translateX(-50%);
	bottom: -10px;
	background:#FFFFFF;
	color:var(--accent);
	border: 1px solid var(--accent);
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	white-space: nowrap;
  }
  
  /* ナビ：矢印＋ドット（横並び） */
  .schedule2026-controls{
	position:absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	display:grid;
	grid-template-columns: 44px 1fr 44px;
	align-items:center;
	gap: 10px;
  }
  
  .schedule2026-prev,
  .schedule2026-next{
	width:44px;
	height:44px;
	border-radius:999px;
	border: none;
	background: rgba(255,255,255,.95);
	box-shadow: 0 8px 18px rgba(0,0,0,.12);
	cursor:pointer;
	position:relative;
  }
  
  /* 矢印 */
  .schedule2026-prev::before,
  .schedule2026-next::before{
	content:"";
	position:absolute;
	inset:0;
	margin:auto;
	width: 10px;
	height: 10px;
	border-top: 2px solid rgba(0, 201, 219, 0.55);
	border-right: 2px solid rgba(0, 201, 219, 0.55);
  }
  .schedule2026-prev::before{ transform: rotate(-135deg); }
  .schedule2026-next::before{ transform: rotate(45deg); }
  
  /* ドット */
  .schedule2026-pagination{
	display:flex;
	justify-content:center;
	gap: 8px;
  }
  .schedule2026-pagination .swiper-pagination-bullet{
	width: 7px;
	height: 7px;
	opacity: .35;
	background: rgba(170, 170, 170, 0.25);
  }
  .schedule2026-pagination .swiper-pagination-bullet-active{
	background: rgba(0, 0, 0, 0.55);
  }
  
  /* 参加予約ボタン（#ff6967） */
  .schedule2026-cta{
	text-align:center;
	margin-top: 14px;
  }
  .schedule2026-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap: 10px;
  
	width: min(320px, 100%);
	height: 54px;
  
	background:#ff6967;
	color:#fff;
	font-weight:700;
	text-decoration:none;
  
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(255,105,103,.28);
  }
  
  /* SP：横幅が狭い端末での崩れ防止 */
  @media screen and (max-width: 360px){
	.schedule2026-list{ gap: 10px; }
	.schedule2026-date{ font-size: 28px; }
  }

  /* =========================
  SCHEDULE 2026：白ボックス無し版
  - 背景：fixed_left2.webp
  - カードを大きく
========================= */

/* 背景面 */
.schedule2026-bg{
	background: url(../img/fixed_left2.webp) center/cover no-repeat !important;
	padding: 18px 14px 56px !important; /* 下にナビ分の余白 */
	position: relative;
  }
  
  /* 白い箱は使わない（念のため潰す） */
  .schedule2026-white{ display:none !important; }
  
  /* Swiperのはみ出し防止 */
  .schedule2026-swiper{ overflow:hidden; }
  
  /* 1スライド3枚 */
  .schedule2026-list{
	display:grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px !important;
	margin: 0 !important;
	padding: 4px 2px 0 !important;
	list-style:none !important;
  }
  
  /* カード：大きく＆縦長寄せ */
  .schedule2026-card{
	--accent:#98d4f7;
  
	background: rgba(255,255,255,.88) !important;
	box-shadow: 0 10px 22px rgba(0,0,0,.14) !important;
  
	padding: 14px 10px 14px !important;
	min-height: 158px !important;        /* ★大きく */
  }
  
  /* 曜日ピル：少し大きく */
  .schedule2026-week{
	padding: 6px 14px !important;
	border-width: 2px !important;
	font-size: 13px !important;
	margin-bottom: 10px !important;
  }

  /* 時間：少し大きく */
  .schedule2026-time{
	font-size: 13px !important;
	margin-top: 8px !important;
  }
  
  /* リボン：カード内に収める（添付っぽく下辺） */
  .schedule2026-ribbon{

	transform: translateX(-50%) !important;
	font-size: 11px !important;
	padding: 6px 12px !important;
  }
  
  /* OC色 */
  .schedule2026-card.is-oc{ --accent:#ff6967 !important; }
  
  /* ナビ：背景の上に固定配置 */
  .schedule2026-controls{
	position:absolute !important;
	left: 12px !important;
	right: 12px !important;
	bottom: 10px !important;
  
	display:grid !important;
	grid-template-columns: 46px 1fr 46px !important;
	align-items:center !important;
	gap: 10px !important;
  }
  
  /* 矢印：白丸 */
  .schedule2026-prev,
  .schedule2026-next{
	width:46px !important;
	height:46px !important;
	background: rgba(255,255,255,.90) !important;
	box-shadow: 0 10px 22px rgba(0,0,0,.14) !important;
  }
  
  /* ドット */
  .schedule2026-pagination{
	display:flex !important;
	justify-content:center !important;
	gap: 10px !important;
  }
  .schedule2026-pagination .swiper-pagination-bullet{
	width: 8px !important;
	height: 8px !important;
	background: rgba(0, 0, 0, 0.25) !important;
  }
  .schedule2026-pagination .swiper-pagination-bullet-active{
	background: rgba(0,0,0,.55) !important;
  }


  /* =========================
  SCHEDULE 2026 最終上書き
  - 横幅いっぱい
  - Swiperの白背景（slide）を消す
  - 左右余白ゼロ
  - カードを大きく
========================= */

/* このセクションだけ inner の左右余白を殺す */
.schedule2026 .schedule2026-inner{
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
  }
  
  /* タイトル/ボタンも横いっぱい（背景#f0eee9のまま） */
  .schedule2026-box{
	padding-left: 0 !important;
	padding-right: 0 !important;
  }
  
  /* 水面背景：左右paddingゼロで可動域MAX */
  .schedule2026-bg{
	padding: 18px 0 64px !important;   /* 左右0にする */
	position: relative;
  }
  
  /* ★原因：グローバル .swiper-slide が白背景＋padding を付けてるので無効化 */
  .schedule2026-swiper .swiper-wrapper{
	align-items: stretch !important;
  }
  .schedule2026-swiper .swiper-slide{
	background: transparent !important;
	padding: 0 !important;
	border-radius: 0 !important;
	height: auto !important;
	box-shadow: none !important;
  }
  
  /* ul を横いっぱいに（左右余白ゼロ） */
  .schedule2026-list{
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;           /* ←左右余白を消す */
	list-style: none !important;
  
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 12px !important;
  }
  
  /* カードを太らせる：背景はカードだけ白、後ろの白箱は無し */
  .schedule2026-card{
	/* カード自体は白でOK（添付の感じ） */
	background: rgba(255,255,255,.92) !important;
	border-width: 3px !important;
	border-radius: 4px !important;
	box-shadow: 0 10px 22px rgba(0,0,0,.14) !important;
  
	/* サイズUP */
	min-height: 158px !important;  /* ★大きく */
	padding: 18px 12px 18px !important;
  }
  
  /* 曜日ピル・日付も少し大きく */
  .schedule2026-week{
	font-size: 13px !important;
	padding: 7px 16px !important;
	margin-bottom: 12px !important;
  }
  
  .schedule2026-time{
	font-size: 13px !important;
	margin-top: 10px !important;
  }
  
  /* リボン：カード内に収める（外に出さない） */
  .schedule2026-ribbon{
	bottom: 6px !important;
	transform: translateX(-50%) !important;
	font-size: 11px !important;
	padding: 6px 12px !important;
	border-radius: 3px 3px 3px 3px;
  }
  
  /* ナビ：左右いっぱいに */
  .schedule2026-controls{
	left: 10px !important;
	right: 10px !important;
	bottom: 10px !important;
  }
  
  /* 矢印少し大きく */
  .schedule2026-prev,
  .schedule2026-next{
	width: 48px !important;
	height: 48px !important;
  }
  
  /* ドット */
  .schedule2026-pagination{
	gap: 10px !important;
  }
  
  /* さらに「端までピッタリ」したい場合：カードが端にくっつくのが嫌なら、ここを 10〜14px に */
  @media screen and (max-width: 700px){
	.schedule2026-list{
	  padding: 0 0 !important; /* ←完全ゼロ（要望通り） */
	}
  }

  /* =====================================
  sc-card：リボン被り解消＆下くっつき四角リボン
  ※CSS末尾に置く（最終勝ち）
===================================== */

/* 1) カードを縦に大きく＋下にリボン分の余白を確保 */
.schedule-days.schedule-cards .sc-card{
	min-height: 152px !important;         /* ★縦を大きく（お好みで 124〜150） */
	padding: 14px 10px 46px !important;    /* ★下を厚くしてリボンの居場所を作る */
	border-radius: 4px !important;        /* 角丸強すぎ防止（好みで 6〜12） */
	overflow: hidden !important;           /* はみ出し防止 */
  }
  
  /* 2) ラベルありカードはさらに少し余裕（OC/放課後） */
  .schedule-days.schedule-cards .sc-card.is-oc,
  .schedule-days.schedule-cards .sc-card.is-after{
	min-height: 142px !important;
  }
  
  /* 3) 中身（time）がリボンと被らないように */
  .schedule-days.schedule-cards .sc-inner{
	padding: 18px 0 0 !important;          /* 上の余白は維持 */
  }
  
  /* 4) リボン：カード下辺に“くっつく”四角（ピル→四角へ） */
  .schedule-days.schedule-cards .sc-ribbon{
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	transform: none !important;
  
	width: 100% !important;
	height: 32px !important;               /* ★正方形感（好みで 28〜36） */
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
  
	border-radius: 0 !important;           /* ★四角 */
	padding: 0 !important;                 /* 高さ固定にする */
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .06em !important;
  
	z-index: 2 !important;
  }
  
  /* 5) リボン色は既存の --sc-ribbon を使う（あなたの設定を生かす） */
  .schedule-days.schedule-cards .sc-card.is-oc{ --sc-ribbon:#ff6967; }
  .schedule-days.schedule-cards .sc-card.is-after{ --sc-ribbon:#98d4f7; } /* 放課後が水色なら */
  .schedule-days.schedule-cards .sc-ribbon{
	background: var(--sc-ribbon, #98d4f7) !important;
	color: #fff !important;
  }

  /* =========================
  SCHEDULE 2026：ドットを濃く（最終上書き）
========================= */
.schedule2026-pagination .swiper-pagination-bullet{
	background: rgba(0,0,0,.55) !important; /* 非アクティブを濃く */
	opacity: 1 !important;                 /* ←薄くなる指定を殺す */
  }
  
  .schedule2026-pagination .swiper-pagination-bullet-active{
	background: rgba(0,0,0,.95) !important; /* アクティブはさらに濃く */
	opacity: 1 !important;
  }

  /* 通常は枠線なし（保険） */
.schedule2026-card{
	border: none !important;
  }
  
  /* OC参加型：枠線 #ff6967 */
  .schedule2026-card.is-oc{
	border: 2px solid #ff6967 !important;
  }
  
  /* 放課後OC：枠線 #98d4f7 */
  .schedule2026-card.is-after{
	border: 2px solid #98d4f7 !important;
  }


  /* =========================
次回オープンキャンパス
========================= */

.next-oc{
	background:#f0eee9;
	padding:10px 0　10px;
  }
  
  .next-oc-title{
	text-align:center;
	font-size:18px;
	margin-bottom:16px;
	font-weight:600;
	color:#3a3b43;
  }
  
  .next-oc-box{
	display:flex;
	align-items:center;
	justify-content:space-between;
  
	background:rgba(255,255,255,.9);
	border-radius:4px 4px 0 0;
	padding:18px 20px;
	margin-bottom: 40px;
  }
  
  .next-oc-box2{
	display:flex;
	align-items:center;
	justify-content:space-between;
  
	background:rgba(255,255,255,.9);
	border-radius:4px 4px 0 0;
	padding:18px 20px;
  }

  .next-oc-date{
	text-align:center;
  }
  
  .next-oc-week{
	display:inline-block;
	background:#98d4f7;
	color:#fff;
	padding:5px 14px;
	border-radius:999px;
	font-size:12px;
	margin-bottom:6px;
  }
  
  .next-oc-day{
	font-size:32px;
	font-weight:700;
	margin:0;
  }
  
  .next-oc-time{
	font-size:14px;
	margin-top:4px;
  }
  
  .next-oc-btn a{
	display:block;
	background:#98d4f7;
	color:#fff;
	padding:18px 22px;
	border-radius:4px;
	text-decoration:none;
	font-weight:700;
	font-size:14px;
	white-space:nowrap;
  }


  .next-oc-img{
  margin-top: -40px;   /* ボックスと画像の間 */
  margin-bottom: 40px;
}

.next-oc-img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius:  0 0 4px 4px; /* いらなければ消してOK */
}


.next-oc-img2{
	margin-bottom: 40px;
  }
  
  .next-oc-img2 img{
	width: 100%;
	height: auto;
	display: block;
	border-radius:  0 0 4px 4px; /* いらなければ消してOK */
  }
  
  .next-oc-img3{
	margin-top: 60px;
	margin-left: -20px;
	margin-right: -20px;
  }

 .next-oc-img3 img{
width:100%;
  display: block;
}
  

  /* 最終勝ち（CSS末尾に1回だけ置く） */
.montre{
	font-family: var(--font-en) !important;
	font-weight: 600 !important;   /* 太さは好みで 300/400/600 */
	letter-spacing: .04em;
  }

  

.schedule2026-ttl,
.schedule2026-year,
.schedule2026-week,
.schedule2026-date,
.schedule2026-time{
  font-family: var(--font-en) !important;
}