@charset "utf-8";

/* PC・SP：home.css
 * **************************************************
 * Content
 * **************************************************
 */

/*
 * ======================================
 * PC
 * ======================================
 */

 *,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

#mainvisual,
#service,
#schedule,
#availability,
#info {
  scroll-margin-top: 140px;
}

@media (max-width: 1024px) {
	.inner {
        width: 100%;
        margin: 0 auto; 
        padding: 0 24px ;
    }
}

@media print, screen and (min-width: 641px) {
    body {
        position: relative;
        min-width: unset !important;
    }
}


 /* animation
------------------------------------------------------------------ */

#mainvisual, #animated-text, #header,#inquiry_form,#menu-toggle {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#mainvisual .left-image, #mainvisual .right-image {
	opacity: 0;
    transition: opacity 1s ease-in-out;
}

@keyframes reveal {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

#animated-text span {
    display: inline-block;
    opacity: 0;
	animation: reveal 0.5s forwards;
}

@keyframes slideUp {
	from {
	  opacity: 0;
	  transform: translateY(50px); 
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
.scroll-effect {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-effect.visible {
	opacity: 1;
	transform: translateY(0);
	animation: slideUp 1s ease-out forwards;
}

/* Content
------------------------------------------------------------------ */

#content {
	margin: 0 auto;
	padding: 0;
	font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
	transition: width 0.3s ease;
}

#content h3 {
	text-align: center;
	font-size: 3rem;
	line-height: 2;
	letter-spacing: 0.2em; 
}

#content h3 br {
    display: none;
}

#content h4 {
	text-align: center;
	color: #E8CA41;
	font-size: 2rem;
	letter-spacing: 0.2em; 
	margin-bottom: 4%;
}

#content .button {
	display: flex;             
   align-items: center;  
}

#content .button a {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	text-align: center;
	width: 478px;
	gap: 8px; 
	background-color: #E8CA41;
	color: black; 
	padding: 8px; 
	font-size: 1.6rem;
	letter-spacing: 0.2em; 
	line-height: 1.6;
	text-decoration: none; 
	border-radius: 50px; 
	position: relative;
	transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
	#content .button a {
        width: 100%;
    }
}

#content .button a::after {
	content: "";
	position: absolute;
	right: 28px;
	width: 0;
	height: 0;
	border-left: 10px solid #000; 
	border-top: 6px solid transparent; 
	border-bottom: 6px solid transparent; 
  }

#content .button a:hover {
    background-color: rgba(232, 202, 65, 0.7);
}

/* note */
#content .note p {
	font-size: 1.2rem  !important;
    letter-spacing: 0.2em  !important;
    line-height: 2  !important;
	margin-top: 10px  !important;
	color: #5F5F5F !important;
}

#content .note p a {
	text-decoration: underline;
	text-decoration-color: #5F5F5F;
	color: #5F5F5F;
}

#content .note p a:hover {
	text-decoration: none;
	opacity: 0.7 !important;
}

#content .note .icon-pdf {
	width: 16px;
	margin:0px  4px;
	position: relative;
	top: 2px; 
}
/* header */
#header {
	border-top: none !important;
    left: 0;
    width: 100%;
	height: 124px;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

#header .inner {
	width: 94%;
	display: flex;
    justify-content: space-between;
	align-items: center;
}

@media (max-width: 1024px) {
	#header .inner {
        width: 100%;
    }
}

#header .logo {
	position: relative;
	top: 28px;
	left: 0;
	text-align: left;
	width: 36%;
}

#header .logo .image {
	height: 42px;
	width: auto;
	transition: transform 0.3s ease; 
}

#header .logo p {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 3%;
	opacity: 1;
	transition: opacity 0.3s ease; 
}

#header .pc-nav {
	position: relative;
	top: 28px;
}

#header .pc-nav ul {
	display: flex;
	justify-content: center;
    align-items: center; 
	list-style: none;
	margin: 0;
	padding: 0;
}

#header .pc-nav .nav-item {
	margin-right: 24px;
	text-align: center;
}

#header .pc-nav .nav-item img {
	max-width: 40px;
  margin-bottom: 5px;
}

#header .pc-nav .nav-item a {
	display: flex;
  flex-direction: column;
  align-items: center;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
	 letter-spacing: 0.03em;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#header .pc-nav .nav-item a:hover {
	transform: translateY(-4px);
}

.fullscreen-menu {
	display: none;
}

#header .pc-nav .inquiry a {
  display: flex; 
  justify-content: center;
  align-items: center; 
  gap: 8px; 
  background-color: #E8CA41; 
  color: black; 
  font-weight: bold;
  padding: 14px 28px; 
  letter-spacing: 0.2em; 
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
  text-decoration: none; 
  border-radius: 50px; 
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#header .pc-nav .inquiry img {
	height: 16px;
	width: auto;
}

/* mainvisual */
#mainvisual {
	position: relative;
    width: 100%;
    height: 860px;
    background-image: url('../images/main_pc.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
}

#mainvisual .left-image {
	position: absolute;
    left: 0;
    bottom: -100px;
}

#mainvisual .left-image img {
	width: 440px;
	height: auto;
}

#mainvisual .right-image {
	position: absolute;
    right: 0;
    bottom: 40px;
}

#mainvisual .right-image img {
	width: 440px;
	height: auto;
}

@media (max-width: 1024px) {
	#mainvisual .left-image img,#mainvisual .right-image img {
        width: 240px;
    }
}

#mainvisual h1 {
	position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
	letter-spacing: 0.1em;
    color: white;
    text-align: center;
	line-height: 1.8;
	white-space: nowrap;
	word-wrap: break-word;
	font-weight: normal;
}

/*summer-school */
.summer-school {
	margin: 0 auto;
	text-align: center;
	margin-top: 10%;
}

.summer-school img {
	width:460px ;
}

/* concept */
#concept {
	text-align: center;
	margin-top: 8%;
}

#concept h2 {
	font-size: 3rem;
	margin: 0;
	line-height: 2;
	letter-spacing: 0.2em; 
	margin-bottom: 2.4%;
}

#concept h2 .dotted-border {
	display: inline-block; 
    position: relative;
	padding-bottom: 5px;
}

#concept h2 .dotted-border::after {
	content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: radial-gradient(circle, #E8CA41 25%, transparent 26%) repeat-x;
    background-size: 12px 4px; 
}

#concept h2 .dotted-border + .dotted-border {
    margin-top: 20px;
}

#concept p {
	position: relative;
	font-size: 1.6rem;
    line-height: 2;
	letter-spacing: 0.2em; 
}

#concept .calendar {
	display: flex;             
   justify-content: center;  
   align-items: center;  
	margin-top: 2%;
}

#concept .calendar a {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 472px;
  gap: 8px; 
  color: black; 
  padding: 8px; 
  font-size: 1.6rem;
  letter-spacing: 0.2em; 
  text-decoration: none; 
  border: 1px solid black; 
  border-radius: 50px; 
  position: relative;
  transition: background-color 0.3s ease;
}

#concept .calendar a::after{
  content: "";
  position: absolute;
  right: 28px;
  width: 0;
  height: 0;
  border-left: 10px solid #000; 
  border-top: 6px solid transparent; 
  border-bottom: 6px solid transparent; 
}

#concept .calendar a:hover {
	background-color: #000;
	color: #fff;
	border-color: #000; 
  }
  
  #concept .calendar a:hover::after {
	border-left: 12px solid #fff;
  }

/* service */
#service {
	margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 1000px;
	width: 100%;
	margin-top: 8%;
}

#service .section {
	display: flex; 
	align-items: flex-start;
   justify-content: space-between;
   gap: 24px;
}

#service .section:nth-of-type(2) {
	margin-top: 8%; 
	flex-direction: row-reverse;
  }
  
  #service .section:nth-of-type(3) {
	margin-top: 8%; 
  }

#service .section .left {
	writing-mode: vertical-rl; 
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#service .section .left p {
   font-size: 3.6rem;
   font-weight: bold;
   letter-spacing: 16px; 
}

#service .section .right {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

#service .section .right .image {
  height: 520px;
  width: 100%;
  border-radius: 20px; 
  object-fit: cover; 
  margin-bottom: 24px; 
}

#service .section .right .description {
	font-size: 1.6rem;
	margin-bottom: 24px; 
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#service .section .right .button br {
	display: none;
  }

/* schedule */
#schedule  {
background-color:#FAF7D9 ;
padding: 6% 0% 8% 0%;
margin-top: 8%;
}

#schedule .inner {
	margin: 0 auto;
    position: relative;
    max-width: 1000px;
}

#schedule h4 + p {
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0.2em; 
}

#schedule .time {
	position: relative; 
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center; 
	min-height: 120px;
	margin: 40px 0; 
	padding-top: 20px;
    padding-bottom: 20px;
}

#schedule .time .time-text {
	position: absolute;
	font-size: 2rem;
	font-weight: bold;
	z-index: 2; 
}

#schedule .time .circle {
	position: absolute;
    width: 96px;
     height: 96px;
    background-color: #E8CA41;
     border-radius: 50%;
    z-index: 1;
}

#schedule .time .line {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: black;
	z-index: 0;
}

#schedule .container {
	display: flex; 
	align-items: flex-start;
   justify-content: space-between;
   margin-top: 40px;
}

#schedule .container .left .image {
	width: 300px; 
	height: 300px;
	object-fit: cover; 
	border-radius: 20px;
	margin-right: 32px;
}

#schedule .container .right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: left;
	gap: 24px;
	margin-top: -10px;
  }

  #schedule .container .right .title {
	font-size: 3.6rem;
	font-weight: bold;
	line-height:1.2 ;
  }

  #schedule .container .right p {
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
  }

  #schedule .container .button-container {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 16px;
	width: 100%;
  }

  #schedule .container .button-container .button {
	width: 48.5%;
  }

  @media (max-width: 1024px) {
	#schedule .container .button-container .button {
        width: 100%;
    }
}

/* availability */
  #availability {
	margin: 0 auto;
    padding: 0;
    position: relative;
    max-width: 1000px;
	width: 100%;
	margin-top: 8%;
}
#availability p {
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
	text-align: center;
}

/* info */
#info  {
	background-color:#FAF7D9 ;
	padding: 6% 0% 8% 0%;
	margin-top: 8%;
	}
	
#info .inner {
		margin: 0 auto;
		position: relative;
		max-width: 1000px;
	}

#info .container {
		width: 100%;
	    margin: 0 auto;
		padding: 5%;
		background-color: #fff;
		border-radius: 12px;
        overflow: hidden;
		display: flex;
        justify-content: space-between;
		margin-bottom: 5%;
	}

#info .container .title {
		margin-top: -5px;
		width: 20%;
	}

#info .container .title span {
	font-size: 2.4rem;
	font-weight: bold;
    background: linear-gradient(transparent 64%, #E8CA41 64%);	
}

#info .container .content {
	flex: 1;
	text-align: left;
}

#info .container .content p {
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#info .container .content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

#info .container .content td {
	border: 1px solid #000;
    padding: 10px;
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#info .container .content td:first-child {
	background-color: #E8CA41;
    text-align: center;
	width: 42%;
}

#info .container .content td:nth-of-type(2) {
	background-color: #fff;
    text-align: left;
	padding-left: 20px;
}

#info .container .content td span {
	font-size: 1.2rem !important;
}

#info .container .content td .red {
	color: red;
}

/* long-vacation */
#long-vacation {
		margin: 0 auto;
		padding: 0;
		position: relative;
		max-width: 1000px;
		width: 100%;
		margin-top: 8%;
	}

#long-vacation .container {
		width: 100%;
	    margin: 0 auto;
		padding: 5%;
		background-color: #FAF7D9;
		border-radius: 12px;
        overflow: hidden;
		display: flex;
        justify-content: space-between;
		margin-bottom: 5%;
	}

#long-vacation .container .title {
		margin-top: -5px;
		width: 20%;
	}

#long-vacation .container .title span {
	font-size: 2.4rem;
	font-weight: bold;
    background: linear-gradient(transparent 64%, #E8CA41 64%);	
}

#long-vacation .container .content {
	flex: 1;
	text-align: left;
}

#long-vacation .container .content p {
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#long-vacation .container .content span {
	font-size: 1.2rem !important;
}

#long-vacation .container .schedule {
	list-style-type: none;
    padding: 0;
    margin-top: 26px;
	font-size: 1.4rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#long-vacation .container .schedule .schedule-item {
	display: flex;
}

#long-vacation .container .schedule .schedule-item .time {
	width: 10%; 
}

#long-vacation .container .schedule .schedule-item .description {
	width: 90%; 
}

#long-vacation .container .content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

#long-vacation .container .content td {
	vertical-align: middle;
	border: 1px solid #000;
    padding: 10px;
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
}

#long-vacation .container .content td:first-child {
	background-color: #E8CA41;
    text-align: center;
	width: 42%;
}

#long-vacation .container .content td:nth-of-type(2) {
    text-align: left;
	padding-left: 20px;
}

/* inquiry */
#inquiry {
	background-color:#E1E2E9 ;
	padding: 6% 0% 8% 0%;
	margin-top: 8%;
	}
	
#inquiry .inner {
		margin: 0 auto;
		position: relative;
		max-width: 1000px;
	}

#inquiry h4 {
	color: #fff;
}

#inquiry p {
	font-size: 1.6rem;
	line-height:2 ;
	letter-spacing: 0.2em; 
	text-align: center;
	margin-bottom: 13px;
}

#inquiry .button-bottom a {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	margin: 0 auto;
	margin-bottom: 36px;
	width: 472px;
	gap: 8px; 
	color: #fff;
	background-color: #000; 
	padding: 8px; 
	font-size: 1.6rem;
	letter-spacing: 0.2em; 
	text-decoration: none; 
	border-radius: 50px; 
	position: relative;
	transition: background-color 0.3s ease;
  }

  @media (max-width: 1024px) {
	#inquiry .button-bottom a {
        width: 100%;
    }
}
  
  #inquiry .button-bottom a::after{
	content: "";
	position: absolute;
	right: 28px;
	width: 0;
	height: 0;
	border-left: 10px solid #fff; 
	border-top: 6px solid transparent; 
	border-bottom: 6px solid transparent; 
  }
  
  #inquiry .button-bottom a:hover {
	background-color: rgba(0, 0, 0, 0.7) ;
	}

	/* contentsBtm */

#contentBtm {
border-top: 0px ; 
margin: 0em 0 0 0; 
padding: 1.7em 0 2.7em;
}

#contentBtm .wp_social_bookmarking_light {
	display: none;
}

/* footer */
#footer .inner {
		max-width: 1000px;
		width: 100%;
	}

#footer>p {
	border-bottom: 1px solid #9E9E9F;
	color: #DBDCDC;
	font-size: 1.2rem;
	padding: 1.8em 0;
	text-align: center;
	}

#footer .inner>p {
	display: none;
} 


/* inquiry_form */

#inquiry_form {
display: none;
}

/*
 * ======================================
 * SP
 * ======================================
 */
 
@media screen and (max-width: 1000px) {

/* header */

#header {
	min-height: 0;
	padding: 12px 0px;
	height: auto;
}

#header .logo {
	top: 0;
	left: 0;
	text-align: center;
	margin: 0 auto;
	width: 100%;
}

#header .logo .image {
	height: 24px;
}

#header .logo p {
	display: block;
	font-size: 7px;
	font-weight: normal;
	margin-bottom: 2%;
}

.menu-toggle {
	position: fixed; 
  top: 19px;      
  right: 6%;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1300; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
	display: block;
    width: 100%;
    height: 1px;
    background: #000;
	transition: all 0.4s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#header .pc-nav {
    display: none;
  }

  .fullscreen-menu {
	display: block;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background:#E8CA41 ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1100;
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .fullscreen-menu ul {
    list-style: none;
   justify-content: center;
    align-items: center; 
	text-align: center;
	list-style: none;
	margin: 0;
	padding: 0;
  }

  .fullscreen-menu li {
    margin: 20px 0;
  }

  .fullscreen-menu a {
    color: #000;
    text-decoration: none;
    font-size: 1.75rem;
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
    letter-spacing: 0.05em;
  }

.fullscreen-menu .nav-item img {
margin-right: 10px;
	max-width: 32px;
}

  /* mainvisual */

  #mainvisual {
    height: 484px;
}

@media screen and (max-width: 420px) {
#mainvisual {
	background-position: calc(50% - 14px) center;
}
}

}

@media screen and (max-width: 767px) {

/* Content
------------------------------------------------------------------ */

#content h3 {
	text-align: center;
	font-size: 1.875rem;
	line-height: 1.6;
	letter-spacing: 0.12em; 
}

#content h3 br {
    display: block;
}

#content h4 {
	font-size: 1.4rem;
	margin-bottom: 4%;
	letter-spacing: 0.12em; 
}

#content .button a {
	font-size: 1.4rem;
	letter-spacing: 0.12em; 
}

/* note */
#content .note .icon-pdf {
	width: 14px;
	margin:0px  6px;
	top: -4px; 
}

#content .note p {
	font-size: 1rem  !important;
	letter-spacing: 0.12em  !important;
}



/* mainvisual */

#mainvisual .left-image {
    bottom: 80px;
}

#mainvisual .right-image {
    bottom: -20px;
}

#mainvisual .left-image img,#mainvisual .right-image img {
        width: 120px;
    }

#mainvisual h1 {
    font-size: 16px;
}

/*summer-school */
.summer-school {
	margin-top: 12%;
}

.summer-school img {
	width:90% ;
}

/* concept */
#concept {
	margin-top: 10%;
}

#concept h2 {
	font-size: 1.675rem;
	letter-spacing: 0.12em; 
	margin-bottom: 4.4%;
}

#concept h2 .dotted-border {
	padding-bottom: 6px;
}

#concept h2 .dotted-border::after {
	height: 2px;
    background-size: 10px 2px; 
}

#concept p {
	font-size: 1.4rem;
}

#concept p br {
	display: none;
}

#concept .calendar {
	margin-top: 4%;
}

#concept .calendar a {
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.12em; 
}

/* service */
#service {
	margin-top: 12%;
	text-align: center;
}

#service .section {
	display: block; 
	align-items: initial;
   justify-content: initial;
   gap: 0px;
}

#service .section:nth-of-type(2) {
	margin-top: 10%; 
	flex-direction: row;
  }
  
  #service .section:nth-of-type(3) {
	margin-top: 10%; 
  }

#service .section .left {
	writing-mode: unset;
	display: block;
	flex-direction: row;
}

#service .section .left p {
   font-size: 1.68rem;
   letter-spacing: 0.12em; 
   font-weight: bold;
}

#service .section .left p br {
	display: none;
 }

#service .section .right {
  display: block;
  width: 100%;
}

#service .section .right .image {
  height: 240px;
  border-radius: 10px; 
  margin-top: 6px;
  margin-bottom: 8px; 
}

#service .section .right .description {
	margin-top: 0;
	margin-bottom: 8px; 
	font-size: 1.4rem;
	letter-spacing: 0.12em ;
	text-align: center;
}

#service .section .right .button br {
	display: block;
  }

/* schedule */
#schedule  {
	padding: 10% 0% 10% 0%;
	margin-top: 12%;
	}

#schedule h4 + p {
	font-size: 1.4rem;
	margin-bottom: -16px;
	}
	
#schedule .time {
		min-height: 0px;
		margin-top: 80px; 
		padding-top: 0px;
		padding-bottom: 0px;
		z-index: 1; 
	}
	
#schedule .time .time-text {
		font-size: 1.8rem;
	}
	
#schedule .time .circle {
		width: 68px;
		 height: 68px;
	}
	
#schedule .time .line {
		display: none;
	}
	
#schedule .container {
		display: block; 
		align-items: initial;
        justify-content: initial;
	    margin-top: 0px;
	}
	
#schedule .container .left .image {
		width: 100%; 
		height: 240px;
		object-fit: cover; 
		background-position: center;
		border-radius: 10px;
		margin-right: 0px;
	}

#schedule .container .left .sp-image-04 {
		object-position: top;
	}

#schedule .container .left .sp-image-05 {
		object-position: bottom ;
	}
	
#schedule .container .right {
		display: block;
		align-items: initial;
        justify-content: initial;
		text-align: center;
		margin-top: 20px;
	  }
	
#schedule .container .right .title {
		font-size: 1.68rem;
		font-weight: bold;
		line-height:1.2 ;
	  }

 #schedule .container .right p {
		font-size: 1.4rem;
	  }
	
#schedule .container .button-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0px;
		width: 100%;
	  }

#schedule .container .button {
		margin-top: 16px;
	  }

/* availability */
#availability {
	margin-top: 10%;
}

#availability p {
	font-size: 1.4rem;
}

/* info */
#info  {
	padding: 10% 0% 10% 0%;
	margin-top: 10%;
	}
	
#info .container {
		padding: 24px;
		border-radius: 10px;
		display: block;
		justify-content: initial;
		margin-bottom: 0%;
		margin-top: 7%;
	}

#info .container .title {
		margin-top: 0px;
		width: 100%;
		text-align: center;
	}

#info .container .title span {
	font-size: 1.68rem;
	font-weight: bold;
    background: linear-gradient(transparent 56%, #E8CA41 56%);	
}

#info .container .content p {
	font-size: 1.4rem;
}

#info .container .content table {
	margin-top: 16px;
}

#info .container .content td {
	font-size: 1.4rem;
    padding: 8px;
	line-height:1.6 ;
}

/* long-vacation */
#long-vacation {
	margin-top: 10%;
}

#long-vacation .container {
	padding: 24px;
	border-radius: 10px;
	display: block;
	justify-content: initial;
	margin-bottom: 0%;
	margin-top: 7%;
}

#long-vacation .container .title {
	margin-top: 0px;
	width: 100%;
	text-align: center;
}

#long-vacation .container .content p {
	font-size: 1.4rem;
}

#long-vacation .container .title span {
font-size: 1.68rem;
font-weight: bold;
background: linear-gradient(transparent 56%, #E8CA41 56%);	
}

#long-vacation .container .schedule {
margin-top: 12px;
}

#long-vacation .container .schedule .schedule-item {
display: flex;
}

#long-vacation .container .schedule .schedule-item .time {
	width: 20%; 
}

#long-vacation .container .schedule .schedule-item .description {
	width: 80%; 
}

#long-vacation .container .content table {
margin-top: 16px;
}

#long-vacation .container .content td {
	font-size: 1.4rem;
padding: 8px;
line-height:1.6 ;
}

/* inquiry */
#inquiry {
	padding: 10% 0% 10% 0%;
	margin-top: 10%;
	}

#inquiry p {
	font-size: 1.4rem;
	margin-bottom: 16px;
}

#inquiry .button-bottom a {
	font-size: 1.4rem;
	letter-spacing: 0.12em; 
  }

  /* contentsBtm */

#contentBtm {
padding: 0.7em 0 2.7em;
}

#contentBtm .btmLink {
margin: 0;
}

/* footer */

#footer>p {
	padding: 24px;
	}

/* inquiry_form */
#pageTop {
	display: none !important; 
}

#inquiry_form {
	display: block;
	position: fixed;
	bottom: 24px;
    width: 100%;
	z-index: 500;
	padding: 0 24px
}

#inquiry_form a {
  display: flex; 
  justify-content: center;
  align-items: center; 
  gap: 8px; 
  background-color: #E8CA41; 
  color: black; 
  padding: 14px 28px; 
  font-size: 1.4rem;
  letter-spacing: 0.12em; 
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Meiryo', sans-serif;
  text-decoration: none; 
  border-radius: 50px; 
  transition: transform 0.3s ease;
}

#inquiry_form img {
	height: 14px;
	width: auto;
	position: relative;
	top: 1px; 
}



}