
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  position: fixed;
	background: rgb(255 255 255 / 0.5);
}

.nav {
  display: inline-flex;
  gap: 40px;
  flex: 0 0 auto;
  align-items: center;
  position: relative;
}

.main-visual {
  width: 100%;
  height: 80vh;
	min-height: 700px;
	background: url("../images/mv-img.jpg") no-repeat center / cover;
}

.copy-wrapper {
	max-width: 1000px;
	position: relative;
	top: 12%;
  left: 50%;
  transform: translateX(-50%);
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	padding: 0 5%;
	z-index: 99;
	font-weight: 500;
}

.title {
	writing-mode: vertical-rl;
  letter-spacing: 0.1em;
	/*font-size: 96px;*/
	font-size: clamp(5rem, 3vw + 4rem, 6.25rem);
	font-weight: 400;
	color: #fff;
	line-height: 1.5;
	white-space: nowrap;
  text-shadow: 0px 0px 15px rgba(0, 8, 170, 0.5);
}

.title span {
	display: block;
  letter-spacing: 0.05em;
	font-weight: 500;
}

.copy {
	/*font-size: 46px;*/
	font-size: clamp(2.25rem, 2vw + 1.5rem, 2.875rem);
}

.sub-copy {
	font-size: 28px;
	margin-top: 10px;
	margin-right: 10px;
}

/* --------- menubar --------- */
.menubar {
  width: 100%;
  min-height: 50px;
	padding: 10px 0;
	margin-top: -50px;
	background: rgba(20, 20, 20, 0.8);
}

.menubar ul {
  display: flex;
	justify-content: center;
	gap: 0 20px;
}

.menubar .menu-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
	color: #fff;
	font-weight: 500;
}

.menubar-sp {
  display: none;
}
.menu-btn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .menubar {
    display: none;
  }
  .menubar-sp {
    display: block;
  }
	/*メニューボタン　展開前*/
  .menu-btn {
    display: block;
    position: fixed;
		top: 0;
		right: 0;
    width: 60px;
    height: 60px;
		background: #222;
    cursor: pointer;
    z-index: 999;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    left: 0;
    background: #fff;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 15px;
		left: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 28px;
		left: 10px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 40px;
		left: 10px;
  }
  /*メニューボタン　展開後*/
  .menu-btn.active span:nth-child(1) {
    top: 30px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
	.menu-btn.active span:nth-child(2) {
		display: none;
	}
	.menu-btn.active span:nth-child(3) {
    top: 30px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*スマホ用のメニュー*/
  .menubar-sp {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
		background: rgba(20, 20, 20, 0.8);
		color: #fff;
    min-width: 400px;
		height: 100%;
		opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s linear, visibility 0.1s linear;
  }
  .menubar-sp.active {
    opacity: 1;
		z-index: 99;
		visibility: visible;
    display: grid;
    overflow: auto;
  }
  .menubar-sp ul {
    display: none;
  }
  .menubar-sp.active ul {
    display: flex;
		font-size: clamp(1.375rem, 1vw + 1rem, 1.875rem);
		font-weight: 500;
    margin: 0 auto;
		flex-direction: column;
		gap: 1em;
		padding: 60px 0 0;
  }
  .menubar-sp ul li {
    position: relative;
  }
  .menubar-sp ul li span {
		display: block;
    font-size: clamp(1.2rem, 1vw + 0.75rem, 1.6rem);
		font-weight: 500;
  }
  .menubar-sp ul li a {
		color: #fff;
  }
}

.element {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: fit-content;
	margin: 0 auto;
}

.element h2 {
	font-weight: 500;
	font-size: clamp(1.375rem, 1vw + 1rem, 1.875rem);
}

.read-text {
  position: relative;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
	margin-bottom: 30px;
}

.information {
	display: flex;
  flex-direction: column;
	gap: 10px;
  width: fit-content;
  margin: 0 auto;
}

.information .notes {
	font-size: 12px;
}

.flex-layout {
  position: relative;
  gap: 15px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
	justify-content: center;
}

.frame {
  display: flex;
	flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: auto;
  padding: 10px 0px;
  position: relative;
  border: 1px solid #888;
	font-weight: 500;
	font-size: 13px;
}

@media screen and (max-width: 767px) {
	.flex-layout {
		flex-wrap: wrap;
	}
	.frame {
		width: 40%;
		flex-grow: 1;
	}
}

.frame .material-symbols-outlined {
  font-size: 30px;
}

.pick-up {
}

.headline {
	position: relative;
	text-align: center;
	font-size: clamp(1.875rem, 1vw + 1.5rem, 2.25rem);
	font-weight: 500;	
	margin-bottom: 1.0em;
}

/*.headline::before {
  content: '';
  position: absolute;
  bottom: -2px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #e05d45;
}*/

.contents-wrapper {
	display: flex;
	margin: 0 auto 80px;
	max-width: 1800px;
}

.contents-wrapper:last-child {
	margin-bottom: 0;
}

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

@media screen and (max-width: 1000px) {
	.contents-wrapper, .rev {
		flex-direction: column;
		gap: 30px 0;
		margin-bottom: 60px;
	}
}

.contents-img {
	flex: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	text-align: center;
}

.contents-text {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	margin: 0 3%;
}

.contents-text .underline {
	font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(224, 93, 69, 0.2);
	text-decoration-thickness: 5px;
	text-underline-offset: -1px;

}

@media screen and (max-width: 1000px) {
	.contents-img {
		max-width: none;
	}
	.contents-text {
		width: 100%;
		margin: 0;
	}
}
.contents-text h3 {
	font-size: clamp(1.5rem, 1vw + 1rem, 1.875rem);
	font-weight: 500;
}

.number {
  position: relative;
  font-size: 48px;
  font-weight: 500;
	display: inline-block;
	margin-right: 30px;
	margin-top: -30px;
	color: #e05d45;
}

.number::after {
  content: '';
	position: absolute;
	bottom: -5px;
	right: -10px;
	width: 15px;
	height: 60px;
  border-left: 1px solid #333;
  rotate: 45deg;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
	.number {
		font-size: 42px;
		margin-right: 20px;
	}
}

.contents-text h4 {
	font-size: 24px;
	font-weight: 500;
}

.profile .contents-wrapper {
	margin-bottom: 0;
}

.profile .contents-text {
	width: 40%;
}

@media screen and (max-width: 1000px) {
	.profile .contents-text {
		width: 100%;
	}
}

.schedule-wrapper {
	display: flex;
	justify-content: center;
}

.schedule-group {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 40px 0;
}

.schedule-group.line::after {
	position: absolute;
	top: 20px;
	left: 20px;
	content: "";
	width: 0.5px;
	height: calc(100% - 40px);
	background-color: #aaa;
	z-index: -1;
}

.schedule-box {
	display: inline-flex;
	align-items: flex-start;
	gap: 20px;
}

.schedule-box span {
	width: 40px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
  align-items: center;
  border-radius: 50%;
	flex-shrink: 0;
}

.schedule-box .none::after {
  content: "";
	display: inline-block;
  background: #ccc;
	width: 20px;
	height: 20px;
  border-radius: 50%;
}

.schedule-box .num {
  background: #e05d45;
  color: white;
  font-weight: 600;
  font-size: 26px;
	margin-top: -10px;
}

@media screen and (max-width: 767px) {
	.schedule-group.line::after {
		left: 15px;
	}
	.schedule-box span {
		width: 30px;
		height: 30px;
	}
	.schedule-box .num {
		font-size: 22px;
	}
}

.schedule-item {
	display: inline-flex;
	align-items: flex-start;
	gap: 20px;
}

.schedule-item a {
  font-size: 16px;
}

.schedule-item img {
  width: 380px;
}

.schedule-box h3 {
	font-size: 20px;
	padding-bottom: 0.2em;
}

.schedule-box h3.border {
	border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
	.schedule-box h3 {
		font-size: 18px;
	}
	.schedule-item {
		flex-wrap: wrap;
	}
}

.schedule-text {
  display: flex;
	flex-direction: column;
	gap: 15px;
}

.schedule-text p {
  font-size: 16px;
}

.outline-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	background: #fff;
	padding: 40px;
}

@media screen and (max-width: 1000px) {
	.outline-wrapper {
		padding: 20px;
	}
}

.outline-item {
	padding-bottom: 20px;
	border-bottom: 1px solid #888;
}

.outline-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.outline h3 {
	font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem);
	font-weight: 500;
	margin-bottom: 0.5em;
}

.grid-container {
  display: grid;
	grid-gap: 5px;
  grid-template-columns: repeat(3, auto);
	white-space: nowrap;
	overflow-x: scroll;
}

.sub-grid-container {
  display: grid;
  grid-template-columns: subgrid;
}

.head .grid-item {
  background: #f0f0f0;
}

.grid-item {
  background: #fafafa;
  padding: 10px;
}

.price .grid-container {
  grid-template-columns: repeat(3, auto);
	margin-bottom: 10px;
}

.price .sub-grid-container {
  grid-column: span 3;
}

.cancel .grid-container {
  grid-template-columns: repeat(7, auto);
}

.cancel .sub-grid-container {
  grid-column: span 7;
}


.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
}

@media screen and (max-width: 1000px) {
	.map {
		padding-top: 75%;
	}
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	filter: grayscale(.4);
}

.access h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0.3em;
}

.access ul {
	margin: 1em 0 0;
	line-height: 2;
}

.access .contents-text {
	width: 50%;
}

@media screen and (max-width: 1000px) {
	.access .contents-text {
		width: 100%;
	}
}

.access-box {
	padding-bottom: 20px;
	border-bottom: 1px solid #888;
}

.access-box:last-child {
	padding-bottom: 0;
	border-bottom: none;
	width: fit-content;
}

.access-box-contets {
	display: flex;
	justify-content: space-between;
	gap: 0 20px;
	margin-bottom: 10px;
}

.apply {
	background: url("../images/bg-02.jpg") no-repeat top center / cover;
	margin: 0;
	padding: 60px 0;
}
@media only screen and (max-width: 1000px) {
	.apply {
		background-color: #f1eeec;
		background-image: url("../images/wall-01.png");
		background-repeat: repeat;
	}
}

.footer {
	font-size: 13px;
	font-family: "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
}

.footer-information {
	padding: 20px;
	overflow: auto;
	/*border-top: 1px solid #ddd;	*/
	background: #222;
	color: #fff;
}

.footer-information a {
	color: #fff;
}

.footer-inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
  justify-content: space-between;
}

.footer-inner .logo {
	font-weight: 400;
	font-size: 18px;
}

.footer-link {
	display: flex;
	gap: 20px;
}

.footer-sns img{
	width: 30px;
}

@media only screen and (max-width: 767px) {
	.footer-inner {
		flex-direction: column;
		gap: 20px 0;
		width: 100%;
		text-align: center;
	}
}

.group {
	background:#f6f6f6;
	text-align:left;
}
.group .g-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	color:#333;
	font-size: 12px;
}

.group .g-inner a {
	color:#333;
}

@media only screen and (max-width: 767px) {
	.group .g-inner {
		width: 100%;
		padding: 10px;
		text-align: center;
	}
}

.footer-navi {
	margin-top:20px;
	margin-bottom:20px;
	text-align: center;
}

.footer-navi li {
	display: inline-block;
	border-right: 1px solid #9E9E9E;
}

.footer-navi li a {
	display:block;
	padding:5px 20px;
	text-decoration:none;
}

.footer-navi li a:hover {
	text-decoration:none;
}

.footer-navi li:last-child {
	border-right: none;
}

.footer-logo-link {
	margin-top:20px;
	margin-bottom:10px;
	text-align: center;
}

.footer-logo-link li{
	display: inline-block;
	border:1px solid #9E9E9E;
	line-height:0;
	margin:0 5px;
}

@media only screen and (max-width: 767px) {
	.group .g-inner {
		font-size: 0.8em;
	}
	.footer-navi li {
		display: inline-block;
		border-right: none;
		line-height: 100%;
	}
}

.copyright {
	clear: both;
	margin-top: 20px;
	text-align: center;
}

/* --------- pagetop --------- */

#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
	background: rgba(0, 0, 0, 0.8);
  z-index: 999;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

#page-top::after {
	font-family: 'Material Symbols Outlined';
	content: "\e316";
	font-size: 60px;
	color: #fff;
}
