@charset "UTF-8";

/* 共有
-----------------------------------------*/
html {
	font-size: 100%;
}
body {
	line-height: 1.5;
	color: #000;
	background-color: #f3f5f3;
	margin:0;
	font-size:13px;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  transform-origin: top center;
}

a{
	text-decoration:none;
}
a:link{
	color:#fff;
}
a:visited{
	color:#fff;
}
.font-letter-180{
	letter-spacing:2px;
}
.font-w-300{
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.flex{
	display:flex;
}
.cl-bl{
	color:#25a2c8;
}
.din-b{
	font-family: "ff-din-paneuropean", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.din-c-m{
	font-family: "ff-din-paneuropean-cond", sans-serif;
	font-weight: 500;
	font-style: normal;	
}

.align-right{
	text-align:right;
	white-space: nowrap;
}

.fade-in{
	opacity:0;
	transition:opacity 2s ease-in-out;
}

.fade-in.show{
	opacity:1;
}

/* font-size（画面幅601px〜2000px間で可変）
--------------------------------------*/
.font-s-15 {
  font-size: clamp(12px, 0.214vw + 10.71px, 15px);
}

.font-s-16 {
  font-size: clamp(12px, 0.286vw + 10.29px, 16px);
}

.font-s-18 {
  font-size: clamp(13px, 0.357vw + 10.86px, 18px);
}

.font-s-20 {
  font-size: clamp(14px, 0.429vw + 11.42px, 20px);
}

.font-s-25 {
  font-size: clamp(16px, 0.643vw + 12.14px, 25px);
}

.font-s-28 {
  font-size: clamp(17px, 0.786vw + 12.28px, 28px);
}

.font-s-35 {
  font-size: clamp(20px, 1.072vw + 13.56px, 35px);
}

.font-s-38 {
  font-size: clamp(21px, 1.215vw + 13.70px, 38px);
}

.font-s-68 {
  font-size: clamp(32px, 2.573vw + 16.53px, 68px);
  white-space: nowrap;
}

/*DIN-2014-Demi
----------------------------------------
font-family: "din-2014", sans-serif;
font-weight: 600;
font-style: normal;
--------------------------------------*/

/*DIN-Bold
----------------------------------------
font-family: "ff-din-paneuropean", sans-serif;
font-weight: 700;
font-style: normal;
--------------------------------------*/

/*DIN-Cond-Medium
----------------------------------------
font-family: "ff-din-paneuropean-cond", sans-serif;
font-weight: 500;
font-style: normal;
--------------------------------------*/

/*opening
---------------------------------------------------------------------------------------*/
.diagonal-split-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99990;
	pointer-events: none;
}

.diagonal-split-screen::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	z-index: 99991;
	clip-path: polygon(0 0, 80% 0, 20% 100%, 0 100%);
	will-change: transform;
	animation: openDiagonalLeft 0.65s cubic-bezier(0.77, 0, 0.175, 1) 0.9s forwards;
}

.diagonal-split-screen::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	z-index: 99991;
	clip-path: polygon(80% 0, 100% 0, 100% 100%, 20% 100%);
	will-change: transform;
	animation: openDiagonalRight 0.65s cubic-bezier(0.77, 0, 0.175, 1) 0.9s forwards;
}

.top-main-img-overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 22vw;
	height: 35vw;
	z-index: 99999;
	
	background-image: url('img/top/main-img.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;

	filter: 
		drop-shadow(0 0 15px #25a2c8) 
		drop-shadow(0 0 30px #ffffff) 
		drop-shadow(-8px 10px 20px rgba(0, 0, 0, 0.4));

	will-change: transform, opacity;
	
	animation: 
		lightningStrike 0.85s cubic-bezier(0.05, 0.7, 0.1, 1) 0.1s forwards,
		imageExit 0.4s ease-out 0.9s forwards;
}

.flash-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #25a2c8;
	z-index: 99995;
	opacity: 0;
	pointer-events: none;
	animation: flashEffect 0.25s ease-out 0.8s forwards;
}

@keyframes lightningStrike {
	0% {
		transform: translateY(-120%);
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes flashEffect {
	0% { opacity: 0; }
	50% { opacity: 0.8; }
	100% { opacity: 0; }
}

@keyframes openDiagonalLeft {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100vw, -50vh);
	}
}

@keyframes openDiagonalRight {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(100vw, 50vh);
	}
}

@keyframes imageExit {
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	100% {
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
	}
}

@media (max-width: 850px) {
	.top-main-img-overlay {
		width: 35vw;
		height: 50vw;
	}
}
/*-------------------------------------------------------------------------------------*/



/*header
--------------------------------------*/
.h-wrapper{
	max-width:100%;
	margin:0 auto;
	padding:20px 4%;
	background-color:rgba(255,255,255,0.7);
}

.logo{
	width:130px;
}

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

.header-sentence{
	display:flex;
	gap:20px;
}

.top-tel-box{
	margin:auto;
	padding:3px 50px;
	background-color:#25a2c8;
	border-radius:50px 50px;
}

.b-tel-icon{
	display:flex;
	align-items:center;
}

.b-tel-icon::before {
  content: '';
  width: 30px;           
  height: 30px;          
  background-image: url('img/phone-logo.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px; 
  flex-shrink:0;
}

.b-tel-text p{
	margin:0;
	line-height:1.4;
}

.top-tel-num{
	font-size:20px;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;	
}

.top-contact-box{
	margin:auto;
	padding:15px 50px;
	background-color:#e83828;
	border-radius:50px 50px;
	font-size:14px;
}

/*menu-motion
--------------------------------------*/
.menu-trigger {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  font-family: sans-serif;
  width: 44px;
  z-index: 1000;
  background: none;
  border: none;
  cursor: pointer;
}

.bar-container {
  width: 44px;           
  height: 18px;          
  position: relative;
}

.bar {
  display: block;
  position: absolute;
  height: 4px;          
  background-color: #2b2b2b; 
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
  transform-origin: center center; 
}

.line-top {
  width: 100%;
  top: 0;
}

.line-bottom {
  width: 70%;            
  bottom: 0;
  left: 0;
}

.menu-text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #2b2b2b;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.menu-trigger.active .line-top {
  width: 100%;
  top: calc(50% - 2px); 
  transform: rotate(45deg);
}

.menu-trigger.active .line-bottom {
  width: 100%;
  left: 0;
  bottom: calc(50% - 2px); 
  transform: rotate(-45deg);
}

.menu-trigger.active .menu-text {
  opacity: 0.5; 
}

.global-nav {
  position: fixed;
  top: 0;
  right: -100%; 
  width: 300px; 
  height: 100vh;
  background-color: #f5f5f5;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  padding: 80px 20px; 
  z-index: 999;      
}

.global-nav.is-open {
  right: 0; 
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-nav li {
  margin-bottom: 20px;
  list-style-type:none;
}

.global-nav li a{
	color:#000;
}

.global-nav li a:hover{
	color:#25a2c8;
}
/*------------------------------------*/

/*scroll
--------------------------------------*/
.side-scroll {
  position: fixed;
  left: 30px;      
  bottom: 40px;      
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.side-scroll-text {
  writing-mode: vertical-rl;
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.side-scroll-line {
  position: relative;
  width: 1.5px;            
  height: 70px;            
  
  background: linear-gradient(to bottom, #2b2b2b 0%, #2b2b2b calc(100% - 20px), #25a2c8 calc(100% - 20px), #25a2c8 100%);
}

.side-scroll-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;                
  width: 1.5px;
  height: 16px;
  background-color: #25a2c8;
  transform: rotate(35deg);    
  transform-origin: bottom center;
}
/*------------------------------------*/
/*------------------------------------*/

/*main
--------------------------------------*/
.top{
	background-image:url("img/top/top-bg1.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position:relative;
	overflow:hidden;
	height:100%;
}

.top-main-img {
  position: absolute;
  top: 0;
  right: 0;           
  width: 22vw;      
  z-index: 1;       
  filter: drop-shadow(-5px 0 15px rgba(0, 0, 0, 0.5)); 
  pointer-events: none;
}

header{
  position:relative;
  z-index:10;
}

main {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.top-1 {
  margin: 0 auto;
  padding: 0 2%;
}

.main-text p {
　font-size: clamp(14px, 0.715vw + 9.7px, 24px);
  line-height: 1.7;
  letter-spacing: 0.2rem;
  margin-bottom: 5px;
}

.main-text h2 {
　font-size: clamp(24px, 1.715vw + 13.7px, 48px);
　letter-spacing: 0.7rem;
}

.circ-text {
  width: 120px;
  height: 120px;
  border: 1px solid #25a2c8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  margin: 10px 30px 30px;
  background-color: #f3f5f3;
}

.circ-text p {
  margin: 0;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

.circ-size {
  font-size: 25px;
  line-height: 1.5;
  display: inline-block;
  vertical-align: bottom;
  transform: scale(1, 1.6);
  padding-bottom: 2px;
}

.circ-text::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 35px;
  width: 2px;
  height: 40px;
  background-color: #32a1cc;
  transform: rotate(45deg);
  transform-origin: left top;
}

#main-middle {
  width:80%;
  position:relative;
　display:flex;
  justify-content:center;
  margin:0 auto;
  box-sizing: border-box;
}

.before-text {
  position: absolute;
  top:30%;
  left:0;
  width: 160px;
  height: 160px;
  background-color: #25a2c8;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; 
  
  position:absolute;
  margin-top: 0;
}

.before-text a {
  text-decoration: none;
  color: #fff;
}

.before-text p {
  margin: 0;
  line-height: 1.7;
}

.circle-top-img{
  width: 140px;
  height: auto;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.white-arrow {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-left: 8px;
  vertical-align: middle;
  top: 14px;
}

.white-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.before-text::before,
.before-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  z-index: -1;
  opacity: 0.6;
  animation: rippleMotion 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.before-text::after {
  animation-delay: 1.5s;
}

@keyframes rippleMotion {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.top-img1 img{
  width:100%;
  max-width: 900px;   
  height: auto;
  margin-left: auto;
}

.top-s-box1 {
  margin-top: -10vw; 
  margin-bottom: 8rem;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 5;
  width: 80%;
  border-radius: 0 30px 30px 0;
  padding: 5%;
  box-sizing: border-box;
}

.before-line1 {
  width: 8px;
  height: 8rem;
  background: linear-gradient(to bottom, #25a2c8 39.9%, #353433 40%);
  margin-right: 3rem;
  flex-shrink: 0;
}

.top-s-box1 .height {
  padding-top: 20px;
  line-height: 2.0;
}

#main-side {
  background-image: url("img/top/top-bg2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
  position: relative;
  justify-content: space-between;
}

.main-side-img {
  width: 45%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 5;
}

.top-s-box2 {
  margin-top: 4rem;
  margin-bottom: 6rem;
  background-color: #fff;
  width: 60%;
  border-radius: 30px 0 0 30px;
  padding: 5%;
  box-sizing: border-box;
}

.top-s-box2 .height {
  padding-top: 20px;
  line-height: 2.0;
}

.before-line2 {
  width: 8px;
  height: 15rem;
  background: linear-gradient(to bottom, #25a2c8 39.9%, #353433 40%);
  margin-top: 20px;
  margin-right: 3rem;
  flex-shrink: 0;
}
#points{
	background-color:#25a2c8;
	padding-bottom:10rem;
}

#point-h{
	padding-top:10rem;
	margin:0 8%;
	color:#fff;
	text-align:center;
}

.top-points{
	padding-bottom:20px;
}

.bottom-points{
	padding-bottom:50px;
}

.point-bigbox{
	justify-content:center;
	padding:0 8%;
}

.points-box{
	display:block;
	width:21%;
	margin:2%;
	padding:4%;
	text-align: center;
	background-color:#fff;
	border-radius:10px;
}

.points-box p,img{
	display:block;
	margin:0 auto;
	padding:10px 0;
}

.case-point{
	padding-bottom:0;
}

.to-icon{
	background-color:transparent;
}

.point-sentencs{
	text-align:left;
}

#smaph-flex{
	display:none;
}

#process-screen {
	position: relative;
	background-color: #ffffff;
	
	border: clamp(8px, 1.5vw, 16px) solid #1a1a1a;
	border-radius: clamp(32px, 5vw, 50px);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.25),
		inset 0 0 0 2px #333333; 

	width: clamp(320px, 60vw, 750px);
	height: auto;
	margin: clamp(3rem, 6vw, 8rem) auto;
	box-sizing: border-box;
	overflow: hidden; 
}

#process-screen::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(90px, 15vw, 160px);
	height: clamp(16px, 2.5vw, 26px);
	background-color: #1a1a1a;
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	z-index: 100; 
}

#process-screen::after {
	content: "";
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(100px, 18vw, 140px);
	height: 4px;
	background-color: #ffffff;
	border-radius: 2px;
	opacity: 0.8;
	z-index: 100;
}

.phone-header-bar {
	background-color: #72c3d8;
	color: #ffffff;
	padding: clamp(20px, 3.5vw, 32px) clamp(16px, 2.5vw, 24px) clamp(10px, 1.5vw, 16px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: clamp(14px, 1.5vw, 18px);
	position: relative;
	z-index: 10;
}

.phone-header-icons {
	display: flex;
	gap: clamp(10px, 1.5vw, 18px);
	align-items: center;
}

.phone-body {
	padding: 0 0 clamp(1rem, 3vw, 3rem) 0;
	background-color: #ffffff;
}

#process-header {
	width: 80%;
	max-width: 500px;
	margin: 0 auto clamp(2rem, 4vw, 4rem);
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
	border-bottom: solid #25a2c8 2px;
	box-sizing: border-box;
}

#process-header p {
	padding-bottom: 14px;
}

.message {
	max-width: 88%;
	margin: 0 auto clamp(10px, 2vw, 20px);
	display: flex;
}

.message img {
	width: clamp(40px, 5vw + 10px, 80px);
	height: clamp(40px, 5vw + 10px, 80px);
	object-fit: contain;
	flex-shrink: 0;
	padding-right: 10px;
}

.message-box p {
	padding-bottom: 8px;
}

.message-reverse {
	flex-direction: row-reverse;
}

.message-reverse img {
	padding-right: 0;
	padding-left: 10px;
}

.message-last-b {
	padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.s-bubble-1, .s-bubble-2, .s-bubble-3 {
	position: relative;
	padding: clamp(10px, 1.5vw + 4px, 20px);
	border-radius: 12px;
	box-sizing: border-box;
}

.s-bubble-1 {
	background-color: #e9f5f9;
	margin-left: clamp(10px, 2vw, 30px);
}

.s-bubble-1::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(-45deg);
	left: -20px;
	top: 15px;
	border-left: 20px solid #e9f5f9;
	border-top: 20px solid #e9f5f9;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-1::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(-45deg);
	left: -20px;
	top: 2px;
	border-left: 20px solid #ffffff;
	border-top: 20px solid #ffffff;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-2 {
	background-color: #bde3ee;
	margin-right: clamp(10px, 2vw, 30px);
}

.s-bubble-2::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(135deg);
	right: -20px;
	top: 15px;
	border-left: 20px solid #bde3ee;
	border-top: 20px solid #bde3ee;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-2::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(135deg);
	right: -20px;
	top: 2px;
	border-left: 20px solid #ffffff;
	border-top: 20px solid #ffffff;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-3 {
	background-color: #25a2c8;
	color: #fff;
	margin-right: clamp(10px, 2vw, 30px);
}

.s-bubble-3::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(135deg);
	right: -20px;
	top: 15px;
	border-left: 20px solid #25a2c8;
	border-top: 20px solid #25a2c8;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-3::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	transform: rotate(135deg);
	right: -20px;
	top: 2px;
	border-left: 20px solid #ffffff;
	border-top: 20px solid #ffffff;
	border-right: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.s-bubble-1 p, .s-bubble-2 p, .s-bubble-3 p {
	line-height: 1.6;
	margin: 0;
}


.phone-footer-bar {
	background-color: #72c3d8;
	padding: clamp(8px, 1.2vw, 12px) clamp(12px, 1.8vw, 20px) clamp(16px, 2.5vw, 22px);
	display: flex;
	align-items: center;
	gap: clamp(8px, 1.2vw, 16px);
	color: #ffffff;
	font-size: clamp(16px, 1.8vw, 22px);
	position: relative;
	z-index: 10;
}

.phone-footer-input {
	flex-grow: 1;
	background-color: #ffffff;
	height: clamp(26px, 3vw, 36px);
	border-radius: 20px;
}

.process-tel-box {
	position: relative;
	width: clamp(280px, 45vw, 550px);
	margin: clamp(2rem, 4vw, 4rem) auto clamp(3rem, 6vw, 8rem);
	padding: clamp(14px, 2vw, 26px) 0;
	background-color: #25a2c8;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.process-tel-box::before {
	content: "ぜひお電話でお気軽にご相談ください";
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	color: #25a2c8;
	font-size: clamp(11px, 1vw + 7px, 16px);
	font-weight: bold;
	padding: 4px 14px;
	border-radius: 20px;
	border: 2px solid #25a2c8;
	white-space: nowrap;
	z-index: 10;
}

.process-tel-box::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 16px;
	height: 16px;
	background-color: #fff;
	border-right: 2px solid #25a2c8;
	border-bottom: 2px solid #25a2c8;
	z-index: 11;
}

.p-tel-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-tel-icon::before {
	content: '';
	width: clamp(20px, 2.5vw, 40px);
	height: clamp(20px, 2.5vw, 40px);
	background-image: url('img/phone-logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
	flex-shrink: 0;
}

.process-tel-num {
	font-size: clamp(14px, 1.5vw + 8px, 25px);
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	padding-left: 10px;
}
/*------------------------------------*/

#curriculum{
	background-color:#25a2c8;
	padding-bottom:10rem;
}

#curriculum-header{
	padding-top:10rem;
	color:#fff;
	text-align:center;
	margin-bottom:2rem;
}

#curriculum-header p{
	padding-bottom:2rem;
}

.curriculum-table, 
.curriculum-note {
  width: 90%;        
  max-width: 2000px;   
  margin: 0 5%;       
  box-sizing: border-box; 
  border-collapse: collapse; 
  color: #fff;
}

.curriculum-table th {
  padding: 12px;
  font-weight: bold;
  text-align: center;
}

.th-border {
  padding: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.6); 
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6); 
  vertical-align: middle;
}

.th-b-1 {
  border-right: 1px dashed rgba(255, 255, 255, 0.6); 
}

.th-blank {
  width: 15%;
  background: transparent;
}

.th-item { width: 65%; text-align: center; }
.th-time { width: 20%; text-align: center; }

.curriculum-table td {
  padding: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6); 
  border-right: 1px dashed rgba(255, 255, 255, 0.6);
  vertical-align: middle;
}

.curriculum-table td:last-child {
  border-right: none;
}

.category-title {
  writing-mode: vertical-rl; 
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: none !important; 
  padding: 10px !important;
  border-right: 15px solid transparent !important;
  background-clip: padding-box;   
  border-bottom: 10px solid transparent !important;
}

.title-white {
  background-color: #ffffff;
  color: #25a2c8; 
}

.title-blue {
  background-color: #1b8ba2; 
  color: #ffffff;
  border-bottom: none;
}

.item-cell strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.item-cell ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  opacity: 0.9;
}

.item-cell li {
  font-size: 13px;
}

.item-cell p {
  padding-bottom: 10px;
}

.time-cell {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "din-2014", sans-serif;
}

.curriculum-table tfoot th,
.curriculum-table tfoot td {
  border: none;
}

.foot-title {
  background-color: #ffffff;
  color: #25a2c8;
  border-right: 15px solid transparent !important;
  background-clip: padding-box;
}

.foot-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 2px solid #fff;
  margin-left:5%;       
  box-sizing: border-box;
  font-size:20px;
}

.foot-content span{
  font-size:25px;
}

.foot-table {
  width: 90%;         
  max-width: 2000px;  
  min-width: 350px;  
  margin: 30px 5% 20px 5%; 
  border-collapse: collapse; 
  box-sizing: border-box;
}

.foot-table td {
  border: 2px solid #ffffff !important; 
  padding: 15px 20px;
}

.foot-table .foot-title {
  border-right: none !important;
  background-clip: border-box !important;
  vertical-align: middle;
}

#price {
  width: 90%;         
  max-width: 2000px;  
  min-width: 350px;    
  margin: 5rem 5% 10rem; 
  padding: 5rem 0;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  box-sizing: border-box;
}

#price-header {
  text-align: center;
  margin: 0 auto;
}

#price-header p {
  padding-bottom: 10px;
}

.price-title {
  font-weight: bold;
  margin-top: 5px !important;
}

.price-lead {
  font-weight: bold;
  margin-bottom: 45px;
}

.price-main-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.price-pill-left {
  border: 1px solid #25a2c8;
  border-radius: 60px;
  padding: 28px 30px;
}

.price-pill-left p {
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
}

.price-courses-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  margin-right: 30px;
}

.price-courses-wrap::before {
  content: "";
  position: absolute;
  top: 25px; 
  left: -10px;
  width: 60px; 
  height: 1px;
  background-color: #25a2c8;
}

.price-courses-wrap::after {
  content: "";
  position: absolute;
  bottom: 25px; 
  left: -10px;
  width: 60px; 
  height: 1px;
  background-color: #25a2c8;
}

.price-course-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-course-row .h-b2 {
  margin: 0;
  border: 1px solid #25a2c8;
  border-radius: 20px;
  padding: 6px 20px;
  font-weight: bold;
  white-space: nowrap;
  background-color: #fff;
  font-size: 15px;
}

.price-num-box {
  margin: 0;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}

.price-unit {
  font-size: 14px;
  font-weight: bold;
  margin-left: 4px;
}

.price-circ {
  width: 130px;
  height: 130px;
  background-color: #25a2c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.price-circ p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.price-sub-box {
  margin-top: 40px;
}

.sub-title {
  font-weight: bold;
  margin-bottom: 25px;
}

.cost-list {
  list-style: none;
  padding: 0;
  width: fit-content;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  text-align: left;
  font-weight: bold;
}

.list-letter {
  letter-spacing: -4px;
}

.cost-list li sup {
  font-size: 10px;
}

.cost-notes {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.cost-notes p {
  margin: 0;
}

#staff {
  background-image: url("img/staff/staff-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  padding-bottom: 100px;
}

#staff-header {
  text-align: center;
  margin: 8rem 0;
  padding: 0 20px;
}

#staff-header div {
  margin-bottom: 2rem;
}

.staff-name img{
	width:100%;
	margin-top:-10rem;
}

.staff1, .staff2 {
  position: relative;
  z-index: 10;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* JS発火時（画面に入った時）：画面外からスライドしながら現れる */
.staff1.show {
  opacity: 1;
  animation: slideInLeft 0.8s ease forwards;
}

.staff2.show {
  opacity: 1;
  animation: slideInRight 0.8s ease forwards 0.2s;
}

@keyframes slideInLeft {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(0); }
}

@keyframes slideInRight {
  0% { transform: translateX(100px); }
  100% { transform: translateX(0); }
}

#qa{
	margin-top:-14rem;
	padding:6rem;	
}

#qa-header{
	width:84%;
	margin:0 auto;
	text-align:center;
}

#qa-header div{
	padding-bottom:20px;
}

#qa-header p{
	padding-bottom:10px;
}

.qa-arrow{
	width:450px;
	margin:20px auto;
	position:relative;
	background-color: #fff;       
	font-size: 16px;
	padding: 16px 10px;
	border-radius: 50px;
	white-space: nowrap;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.qa-arrow::after {
	content: "";
	position: absolute;
	top: 40px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	background-color: #fff;       
	z-index: 11;               
}

.faq-container {
  width: 80%;
  margin: 0 auto;
  font-family: sans-serif;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.q-icon {
  position: relative;
  background-color: #25a2c8;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.q-icon::after {
  content: "";
  position: absolute;
  bottom: -2px; 
  right: -3px;   
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0; 
  border-color: #25a2c8 transparent transparent transparent; 
  transform: rotate(45deg); 
}

.a-icon {
  font-weight: bold;
  color: #25a2c8;
  font-size: 1.1rem;
  margin:0 20px 0 10px;
  line-height: 1.6;
}

.q-text {
  font-weight: bold;
  color: #25a2c8;
  font-size: 1.05rem;
  flex-grow: 1;
}

.toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 16px;
}

.toggle-icon::before,
.toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #25a2c8;
  transition: transform 0.3s ease;
}

.toggle-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.toggle-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

details[open] .toggle-icon::before {
  transform: rotate(45deg);
}

details[open] .toggle-icon::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: flex;
  padding: 0 20px 20px 20px;
  line-height: 1.6;
}

.a-text {
  flex-grow: 1;
  padding-top: 2px;
}

.qa-foots-sentence{
	padding:7rem 0;
	text-align:center;
	line-height:2.0;
}

.qa-box-wrapper {
  display: flex;
  justify-content: center; 
  gap: 15px;               
}

.qa-tel-box {
  position: relative;
  width: 35%;           
  margin: 0;             
  padding: 25px 0;
  background-color: #25a2c8;
  border-radius: 50px;    
}

.qa-tel-box::before {
	content: "平日9:00〜18:00まで"; 
	position: absolute;
	top: -25px; 
	left: 50%;
	transform: translateX(-50%);
	
	background-color: #fff;       
	color: #25a2c8;              
	font-size: 15px;
	font-weight: bold;
	padding: 6px 16px;
	border-radius: 20px;
	border: 2px solid #25a2c8;    
	white-space: nowrap;
	z-index: 10;
}

.qa-tel-box::after {
	content: "";
	position: absolute;
	top: 3px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	
	width: 20px;
	height: 20px;
	background-color: #fff;       
	border-right: 2px solid #25a2c8; 
	border-bottom: 2px solid #25a2c8;
	z-index: 11;               
}

.qa-contact-box {
  position: relative;
  width: 35%;          
  margin: 0;           
  padding: 25px 0;
  background-color: #e83828;
  border-radius: 50px;  
}

.qa-contact-box::before {
	content: "お気軽にWEBで"; 
	position: absolute;
	top: -25px; 
	left: 50%;
	transform: translateX(-50%);
	
	background-color: #fff;       
	color: #e83828;              
	font-size: 15px;
	font-weight: bold;
	padding: 6px 16px;
	border-radius: 20px;
	border: 2px solid #e83828;    
	white-space: nowrap;
	z-index: 10;
}

.qa-contact-box::after {
	content: "";
	position: absolute;
	top: 3px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	
	width: 20px;
	height: 20px;
	background-color: #fff;       
	border-right: 2px solid #e83828; 
	border-bottom: 2px solid #e83828;
	z-index: 11;               
}

.qa-contact-text{
	font-size: clamp(14px, 1vw + 6px, 20px);
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align:center;
	padding-top:10px;
}

#contact{
	background-color:#fff;
	padding:8rem 0;
}

#contact-header{
	width:70%;
	margin:0 auto;
	text-align:center;
}

#contact-header div{
	margin:3rem 0;
}

#contact-header p{
	padding-bottom:5px;
}

#contact iframe{
	display:block;
	width:80%;
	margin:0 auto;
	padding:2rem;
	background-color:#25a2c8;
	border-radius:20px;
}

footer{
	background-color:#353433;
	color:#fff;
	padding:4rem 0 8rem;
	position:relative;
}

.foot-back-ab{
	position:absolute;
	top:-7rem;
	right:auto;
	left:84%;
}

.foot-back {
  position: relative;
  width: 90px;
  height:90px;
  background-color: #25a2c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color:#fff;	
}

.foot-back p{
  padding-top:20px;
}

.foot-back::before,
.foot-back::after {
  content: "";
  position: absolute;
  left:50%;
  transform: translateX(-50%); 
  box-sizing: border-box;
}

.foot-back::before {
  width: 15px;       
  height: 15px;     
  border-top: 3px solid #fff;  
  border-right: 3px solid #fff;
  top: 20px;         
  transform: translateX(-50%) rotate(-45deg); 
}

.foot-back::after {
  width: 3px;          
  background-color: #fff; 
  height: 20px;       
  top: 20px;          
  border-radius: 1.5px; 
}

.foot-box-wrapper {
  display: flex;
  justify-content: center; 
  gap: 15px;               
}

.f-tel-icon{
	display:flex;
	align-items:center;
	justify-content:center;
}

.f-tel-icon::before {
  content: '';
  width: 30px;           
  height: 30px;          
  background-image: url('img/phone-logo.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px; 
  flex-shrink:0;
}

.foot-tel-box {
  position: relative;
  width: 35%;           
  margin: 0;             
  padding: 20px 0;
  background-color: #fff;
  border-radius: 50px;    
}

.foot-tel-box::before {
	content: "平日9:00〜18:00まで"; 
	position: absolute;
	top: -25px; 
	left: 50%;
	transform: translateX(-50%);
	
	background-color: #25a2c8;       
	color: #fff;              
	font-size: 15px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 50px;
	white-space: nowrap;
	z-index: 10;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.foot-tel-box::after {
	content: "";
	position: absolute;
	top: 5px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	
	width: 20px;
	height: 20px;
	background-color: #25a2c8;       
	border-right: 2px solid #25a2c8; 
	border-bottom: 2px solid #25a2c8;
	z-index: 11;               
}

.foot-tel-num{
	color:#25a2c8;
	font-size: clamp(14px, 1.5vw + 8px, 25px);
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align:center;
	padding-top:10px;
}

.foot-contact-box {
  position: relative;
  width: 35%;          
  margin: 0;           
  padding: 20px 0;
  background-color: #fff;
  border-radius: 50px;  
}

.foot-contact-box::before {
	content: "お気軽にWEBで"; 
	position: absolute;
	top: -25px; 
	left: 50%;
	transform: translateX(-50%);
	
	background-color: #e83828;       
	color: #fff;              
	font-size: 15px;
	font-weight: bold;
	padding: 10px 30px;
	border-radius: 50px;
	white-space: nowrap;
	z-index: 10;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.foot-contact-box::after {
	content: "";
	position: absolute;
	top: 5px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	
	width: 20px;
	height: 20px;
	background-color: #e83828;       
	border-right: 2px solid #e83828; 
	border-bottom: 2px solid #e83828;
	z-index: 11;               
}

.foot-contact-text{
	font-size: clamp(14px, 1vw + 6px, 20px);
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-align:center;
	padding-top:20px;
}

.foot-contact-text a{
	color:#e83828;
}

.foot-contents{
	width:70%;
	margin:0 auto;
	justify-content: space-between;
	padding:4rem 0;
}

.foot-company img{
	margin-bottom:20px;
}

.foot-company p{
	padding-top:10px;
}

.footer-accordion-container {
  display: flex;
  gap: 60px;
  padding:0 40px;
  box-sizing: border-box;
}

.footer-accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding-bottom: 20px;
  list-style: none; 
  user-select: none;
}

.footer-accordion-title::-webkit-details-marker {
  display: none;
}

.arrow {
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg); 
  transition: transform 0.3s ease;
}

details[open] .arrow {
  transform: rotate(135deg);
}

.footer-accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-accordion-content li {
  margin-bottom: 16px;
}

.footer-accordion-content a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-accordion-content a:hover {
  opacity: 1;
  text-decoration: underline;
}

.foot-about{
  justify-content: center;	
  padding-bottom:20px;
}

.foot-about p{
  padding:0 15px;
}

.right-border{
  border-right:1px solid #fff;
}

.copyright{
  text-align:center;
}

/*sectin-bottom-scrollbutton
----------------------------------------*/
.scroll-down img {
	width: 100%;
	padding:0;
}
/*--------------------------------------*/

/*モバイル
----------------------------------------*/
@media (max-width: 850px) {
	.top-main-img{
	  width: 35vw;      
	}

	.top-tel-box{
		display:none;
	}
	
	.top-contact-box{
		padding:5px 25px;
		font-size:14px;
	}

	#main-side {
	  display:block;
	}

	.main-side-img {
	  width:70%;
	  display:block;
	  margin:0 auto;
	}

	.top-s-box2 {
	  width:80%;
	  margin-left:auto;
	  margin-right:0;
	}

	.process-tel-box::after {
		top: 7px;
	}

	
	#pc-flex{
	  display:none;
	}
	
	#smaph-flex{
	  display:block;
	}

	.points-box{
		display:block;
		width:40%;
		margin:2%;
		padding:4%;
		text-align: center;
		background-color:#fff;
		border-radius:10px;
	}

	.to-icon{
		background-color:transparent;
	}

	.foot-content {
	  display: block;
	  justify-content: space-around;
	}
	
	.price-main-box {
	  display: block;
	  width:70%;
	  margin:0 auto;

	}

	.price-lead{
		width:70%;
		margin:0 auto;
		padding-bottom:20px;
		text-align:left;
	}
	
	.price-pill-left {
	  border:none;
	  border-radius:0;
	  border-top: 1px solid #25a2c8;
	  border-bottom: 1px solid #25a2c8;
	  padding: 10px 0;
	  margin-bottom:20px;
	}

	.price-courses-wrap::before,
	.price-courses-wrap::after {
	  content: none; 
	}
	
	.price-course-row .h-b2 {
	  margin:10px 0;
	}

	.price-num-box {
	  margin: 0 auto;
	  display:block;
	}

	.price-circ {
	  margin:20px auto 0;
	}

	.cost-list {
	  grid-template-columns: repeat(2, 1fr);
	}

	.cost-notes {
	  display: block;
	  text-align:left;
	  width:70%;
	  margin:0 auto;
	}
	
	#qa-header img{
		width:60%;
	}
	
	.qa-arrow{
		width:100%;
		font-size: 14px;
		white-space:wrap;
  		border-radius: 30px;
	}

	.qa-arrow::after {
		top: 35px; 
	}

	.faq-container {
	  width: 100%;
	  margin: 0 auto;
	  font-family: sans-serif;
	}

	.q-text {
	  font-size: 0.8rem;
	}

	.qa-box-wrapper {
	  display: block;
	}

	.qa-tel-box {
	  width: 100%;           
	  margin-bottom: 50px;             
	}

	.qa-tel-box::before {
		font-size: 13px;
	}

	.qa-tel-box::after {
		top:0;
	}

	.qa-contact-box {
	  width: 100%;          
	  margin-bottom: 50px;             
	}

	.qa-contact-box::before {
		font-size: 13px;
	}

	.qa-contact-box::after {
		top:0;
	}
	
	.foot-box-wrapper {
	  width:80%;
	  margin:0 auto;
	  display: block;
	}
	
	.foot-tel-num{
		font-size:22px;
	}

	.foot-tel-box {
	  width: 100%;           
	  margin-bottom: 50px;             
	}

	.foot-tel-box::before {
		font-size: 13px;
	}

	.foot-tel-box::after {
		top:0;
	}

	.foot-contact-box {
	  width: 100%;          
	  margin-bottom: 50px;             
	}

	.foot-contact-box::before {
		font-size: 13px;
	}

	.foot-contact-box::after {
		top:0;
	}
	
	.foot-contents{
		width:100%;
		display:block;
	}
	
	.foot-company{
		text-align:center;
		margin-bottom:50px;
	}
	
	.footer-accordion-container{
		margin:0 auto;
		gap:20px;
	}
	
	.footer-accordion-content a {
	  font-size: 13px;
	}
	
	.foot-about{
		font-size:12px;
	}
	
	.copyright{
		font-size:11px;
	}
	
}

@media (max-width: 700px) {
	.process-tel-box::after {
		top: 5px;
	}
}


@media (max-width: 600px) {
	.main-contents{
		display:block;
	}
	
	.circ-text{
		margin:0 auto;
	}
	
	.top-contact-box{
		display:none;
	}

	.process-tel-box::after {
		top: 3px;
	}
	
	.foot-content {
		font-size:13px;
	}
	
	.foot-content span{
	  font-size:16px;
	}
	
	.price-course-row {
	  display: block;
	}

	.cost-list {
	  grid-template-columns: repeat(1, 1fr);
	}
	
	.qa-arrow::after {
		display:none;            
	}

	.q-icon {
	  width: 26px;
	  height: 26px;
	  font-size: 0.8rem;
	}

	.foot-contact-box::after {
		top: 3px; 
	}
	
	.foot-back-ab{
		left:70%;
	}
}
















