@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Average&family=Castoro:ital@0;1&family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

header, footer, section{
	display: block;
	margin:0;
	padding:0;
}
html {font-size: 62.5%;}/*10px*/

body{
	width:100%;
	line-height:1.7;
	font-size: 1.6rem;/*16px*/
	letter-spacing: 0.03em;
	padding:0;
	margin:0;
	font-family: "Noto Sans JP", sans-serif;
	color:#222;
	-webkit-text-size-adjust: 100%;
	display: flex;
	flex-flow: column; 
	min-height: 100vh; 
}
ul, ol, dl,dt,dd,div,ol,ul,li {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin:0;
	padding:0;
	font-weight:normal;
	font-size:100%;
}
li {list-style-type:none;}

a {outline:none;border:0;}

a:hover,
input[type="image"]:hover{
	opacity:0.8;
}

img {vertical-align: middle;border:0;}

*,
*::before,
*::after {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
.sp_only {display: none;}
		@media screen and (max-width: 768px) {
			.sp_only {display: inline;}
		}
.pc_only {display: inline;}
		@media screen and (max-width: 768px) {
			.pc_only {display: none;}
		}


/*-----------------------------------------------
header
-----------------------------------------------*/
header {
	width: 100%;
	height: 90px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.8);
}
header .logo {
	display: block;
	width: 220px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	header {
		padding: 0 0 0 14px;
		height: 70px;
	}
	header .logo {
		width: 140px;
	}
}
/*-----------------------------------------------
footer
-----------------------------------------------*/
footer {
	width: 100%;
	background: #CBE8F6;
	padding: 40px 0 0;
}
footer .inner {
	max-width: 1000px;
	margin: 0 auto 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
footer .inner .companydetail {
	width: 35%;
}
footer .inner .companydetail .name {
	font-size: 2.4rem;
	margin-bottom: .25em;
}
footer .inner .companydetail .name span {
	display: block;
	margin-bottom: -.25em;
	font-size: 1.4rem;
}
footer .inner .companydetail .name br.md_only {
	display: none;
}
footer .inner .companydetail .address {
	margin: 0;
	font-size: .9em;
}
footer .inner .footer_menu {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-top: 10px;
}
footer .inner .footer_menu li {
	text-align: center;
	margin-bottom: .5em;
}
footer .inner .footer_menu li a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	color: #444;
	text-decoration: none;
	font-size: .9em;
}
footer .inner .footer_menu li a span {
	display: inline-block;
	width: 100%;
	padding: 0 16px;
	box-sizing: border-box;
	position: relative;
}
footer .inner .footer_menu li a span::before {
	content: '';
	width: 100%;
	height: calc(100% - 10px);
	border-right: 1px solid #fff;
	position: absolute;
	top: 4px;
	left: 0;
}
footer .inner .footer_menu li:last-child a span::before {
	border: none;
}
footer ul.sns {
	max-width: 800px;
	margin: 0 auto 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer ul.sns li {
	width: calc(100% / 3.3);
}
footer ul.sns li img {
	max-width: 100%;
	height: auto;
}
footer .copyright {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 14px;
}
@media screen and (max-width: 1000px) {
	footer .inner {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
	}
	footer .inner .companydetail{
		width: 100%;
		margin-bottom: 20px;
	}
	footer .inner .companydetail .name {
		text-align: center;
	}
	footer .inner .companydetail .name br.md_only {
		display: inline-block;
	}
	footer .inner .companydetail .address {
		font-size: 1.4rem;
		text-align: center;
		margin-bottom: 1em;
	}
	footer .inner .footer_menu {
		width: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 auto 20px;
	}
	footer .inner .footer_menu li a {
		font-size: 1.4rem;
	}
	footer ul.sns {
		width: 240px;
		margin: 0 auto 20px;
		display: flex;
		flex-direction: column;
	}
	footer ul.sns li {
		width: 100%;
		margin-bottom: 20px;
	}
	footer .copyright {
		text-align: center;
		font-size: .9rem;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 525px) {
	footer .inner .footer_menu {
		width: 80%;
		margin: 0 auto 20px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	footer .inner .footer_menu li {
		width: 47%;
		margin-bottom: 10px;
	}
	footer .inner .footer_menu li a {
		font-size: 1.4rem;
	}
	footer .inner .footer_menu li a.sm {
		font-size: 1.2rem;
	}
	footer .inner .footer_menu li a span {
		padding: 0;
	}
	footer .inner .footer_menu li:nth-child(2n) a span::before {
		font-size: 1.4rem;
		border: none;
	}
}
/* pageTop */
#page-top {
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 101;
}
#page-top a {
	display: block;
	width: 44px;
}
/*-----------------------------------------------
ボタン
-----------------------------------------------*/
.btngroup {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.btngroup li {
	width: auto;
	text-align: center;
}
.btngroup li a {
	display: inline-block;
	padding: 8px 60px;
	border: 2px solid #50ADE5;
	border-radius: 30px;
	color: #fff;
	margin-top: -.5em;
	transition: all  0.3s ease;
	text-decoration: none;
	background: #50ADE5;
	font-size: 2.0rem;
}
.btngroup li a:hover {color: #50ADE5; text-decoration: none; background: #fff;}

		@media screen and (max-width: 768px) {
			.btngroup {
				width: 100%;
				display: flex;
				flex-direction: column;
				gap: 30px;
			}
			.btngroup li {
				width: 60%;
				text-align: center;
				margin: 0 auto;
			}
			.btngroup li a {
				display: inline-block;
				padding: 6px 0;
				width: 100%;
				border: 2px solid #50ADE5;
				border-radius: 30px;
				color: #fff;
				margin-top: -.5em;
				transition: all  0.3s ease;
				text-decoration: none;
				background: #50ADE5;
				font-size: 1.6rem;
			}
			.btngroup li a:hover {color: #50ADE5; text-decoration: none; background: #fff;}
		}

/*-----------------------------------------------
main
-----------------------------------------------*/
main {
	flex: 1;/*フッター常に最下部*/
	padding: 90px 0 0 0;
}
@media screen and (max-width: 768px) {
	main {
		padding: 70px 0 0 0;
	}
}	
/*-----------------------------------------------
トップページ
-----------------------------------------------*/
/*メインV*/
.top .mainimg {
	width: 100%;
	position: relative;
}
.top .mainimg img {
	width: 100%;
	height: 640px;
	object-fit: cover;
}
.top .mainimg .inner {
	width: 40%;
	position:absolute;
	top: 60px;
	left: 10%;
}
.top .mainimg .inner .logo {
	max-width: 400px;
	margin-bottom: 40px;
}
.top .mainimg .inner .logo img {
	max-width: 100%;
	height: auto;
}
.top .mainimg .inner .text {
	color: #222;
	font-size: clamp(14px, 1.4vw, 16px);
	margin-bottom: 32px;
}
.top .mainimg .inner .catch {
	max-width: 600px;
	margin-bottom: 60px;
}
.top .mainimg .inner .catch img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.top .mainimg img {
		height: 540px;
	}
	.top .mainimg .inner {
		width: 80%;
		height: auto;
		/* background-color: rgba(255, 255, 255, 0.4); */
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		padding: 20px 0;
	}
	.top .mainimg .inner .logo {
		max-width: 260px;
		width: 94%;
		margin: 0px auto 40px;
	}
	.top .mainimg .inner .text {
		color: #222;
		font-size: 13px;
		margin-bottom: 16px;
		text-align: center;
	}
	.top .mainimg .inner .catch {
		width: 80%;
		margin-bottom: 60px;
		margin: 0 auto 30px;
	}
}
/*冒頭のボタン*/
.top .mainimg .btngroup {
	justify-content: flex-start;
}
.top .btngroup li a.price {
	border: 2px solid #50ADE5;
	color: #50ADE5;
	background: #fff;
}
.top .mainimg .inner .btngroup li a.price:hover {color: #fff; text-decoration: none; background: #50ADE5;}

		@media screen and (max-width: 768px) {
			.top .mainimg .inner .btngroup li a.price {
				border: 2px solid #50ADE5;
				color: #50ADE5;
				background: #fff;
			}
			.top .mainimg .inner .btngroup li a.price:hover {color: #fff; text-decoration: none; background: #50ADE5;}
		}
/*MOVIE*/
.top .movie {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(56px, 5vw, 80px) 0 110px;
}

/* 背景画像（ぼかし） */
.top .movie > picture {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  overflow: hidden;
}
.top .movie > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(0.8);
  transform: scale(1.05);
  transition: filter .6s ease;
}


/* グラデーションオーバーレイ */
.top .movie::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#F3F2F1 0, rgba(255,255,255,.7) 80%);
  z-index: -2;
}

/* 波形（常に背面） */
.top .movie .bg_waveskyblue {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ===== PC・中間帯（769px〜）：内容幅ベースで“中央塊”にする ===== */
.top .movie .inner {
  display: grid;
  /* ここがポイント：各カラムの幅をコンテンツの実寸に合わせ、全体を中央に配置 */
  grid-template-columns: auto auto;
  column-gap: clamp(36px, 4.2vw, 72px);
  align-items: center;
  justify-content: center;   /* グリッド全体を中央寄せ */
  justify-items: center;     /* 各アイテムも中央起点 */
  width: min(92%, 1280px);   /* 過度に広がらない中央コンテナ */
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* 動画（縦長） */
.top .movie .area_movie {
  width: 100%;
  max-width: 400px;                 /* 左の“塊”を少しだけ軽くして中央バランスを改善 */
  aspect-ratio: 9 / 16;
  max-height: clamp(520px, 70vh, 860px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.top .movie .area_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 12px 12px 0 #C7BEB3;
}

/* テキスト（右カラム） */
.top .movie .area_text {
  width: 100%;
  max-width: 820px;                 /* 右の“塊”をやや広く→中央に見える */
  padding: 0;
  text-align: left;
  position: relative;
  z-index: 2;
}
.top .movie .inner .title {
  font-size: clamp(30px, 2.4vw, 42px);
  font-family: "granville", serif;
  font-weight: 400;
  color: #363431;
  letter-spacing: .05em;
  margin-bottom: .5em;
}
.top .movie .inner .text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #363431;
}

/* ===== 1920px以上：ゆったり。比率ではなく“中央塊”のまま拡張 ===== */
@media (min-width: 1920px) {
  .top .movie .inner {
    width: min(92%, 1600px);        /* 広い画面でも中央の塊を維持して左寄り回避 */
    column-gap: clamp(40px, 4vw, 96px);
  }
  .top .movie .area_movie { max-width: 420px; }
  .top .movie .area_text  { max-width: 900px; }
}

/* ===== 769px〜1239px：ややタイトな帯は動画/テキストも少しだけ縮める ===== */
@media (min-width: 769px) and (max-width: 1239px) {
  .top .movie .inner {
    width: min(94%, 1120px);
    column-gap: clamp(28px, 3.8vw, 56px);
  }
  .top .movie .area_movie { max-width: 360px; }
  .top .movie .area_text  { max-width: 760px; }
}

/* ===== スマホ・タブレット（〜768px）：縦並び中央 ===== */
@media (max-width: 768px) {
  .top .movie {
    padding: 60px 0 80px;           /* 上部余白はさらに浅め */
  }
  .top .movie .inner {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    gap: 20px;
  }
  .top .movie .area_movie {
    width: min(420px, 86%);
    aspect-ratio: 9 / 16;
    max-height: 78vh;
  }
  .top .movie .area_movie video { box-shadow: 10px 10px 0 #C7BEB3; }
  .top .movie .area_text {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .top .movie .inner .title {
    font-size: 3.0rem;
    margin-bottom: .4em;
  }
}
/*Themed Set*/
.top .themeset  {
	width: 100%;
	background: #cbe8f6;
	padding: 40px 0 80px;
	box-sizing: border-box;
}
.top .themeset .title {
	font-size: 4.6rem;
	font-family: "granville", serif;
	font-weight: 400;
	font-style: normal;
	color: #363431;
	letter-spacing: .05em;
	text-align: center;
	margin-bottom: 48px;
}
.slider_wrapper {/*スライダー*/
	width: 100%;
}
.slider {
	 width: 94%;
	 margin: 0 auto;
}
.slider .slick-slide {
	width: 280px;
	margin: 0 20px;
}
.slider img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
	border: 3px solid #fff;
	transition: transform .3s ease, box-shadow .3s ease;
 }
.slider img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
	.top .themeset {
		padding: 24px 0 40px;
		box-sizing: border-box;
	}
	.top .themeset .title {
		font-size: 3.0rem;
		margin-bottom: 28px;
	}
	.slider {
		width: 90%;
	}
	.slider .slick-slide {
		width: 160px;
		margin: 0 14px;
	}
}
/*Gallery*/
.top .gallery  {
	width: 100%;
	padding: 60px 0 80px;
	box-sizing: border-box;
}
.top .gallery .title {
	font-size: 4.6rem;
	font-family: "granville", serif;
	font-weight: 400;
	font-style: normal;
	color: #363431;
	letter-spacing: .05em;
	text-align: center;
	margin-bottom: 40px;
}
			.top .gallery .btngroup{
				margin: 80px auto 0;
			}

/* ギャラリーレイアウト */
.gallery-table {
    width: 100%;
	max-width: 1200px;
	margin: 0 auto 16px;
    height: 100%;
    border-collapse: separate;
    border-spacing: 16px;
}
.gallery-table tr { height: clamp(140px, 22vw, 260px); }

.gallery-table td {
    width: 25%;
    padding: 0;
}
.gallery-table td[colspan="2"] {
    width: 50%;
}
.cell {
    overflow: hidden;
    border-radius: 6px;
}
.cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	cursor: pointer;
}
				/* ホバーで動き */
				@media (hover: hover) and (pointer: fine) {
				.cell {
					position: relative;
					overflow: hidden;
					border-radius: 6px;
					transition: box-shadow .35s ease;
					will-change: box-shadow;
				}
				.cell img {
					transition: transform .6s cubic-bezier(.22,.61,.36,1);
					will-change: transform;
					backface-visibility: hidden;
				}
				/* ほのかなビネット（縁の暗がり） */
				.cell::after {
					content: "";
					position: absolute; inset: 0;
					pointer-events: none;
					background: radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(0,0,0,.18) 100%);
					opacity: 0;
					transition: opacity .6s cubic-bezier(.22,.61,.36,1);
				}
				.cell:hover img {
					transform: scale(1.06);
				}
				.cell:hover {
					box-shadow: 0 10px 24px rgba(0,0,0,.18);
				}
				.cell:hover::after {
					opacity: 1;
				}
				}
				@media (prefers-reduced-motion: reduce) {
				.cell, .cell img, .cell::after { transition: none !important; }
				}

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
    .gallery-table {
        border-spacing: 12px;
    }
	.gallery-table tr { height: clamp(120px, 28vw, 200px); }
    .cell {
        min-height: 150px;
    }
}
@media screen and (max-width: 480px) {
    .gallery-table {
		width: 92%;
        display: block;
        border-spacing: 0;
    }
    .gallery-table tbody {
        display: block;
    }
    .gallery-table tr {
        display: block;
        height: auto;
    }
  .cell img { height: auto; } /* 自然比率に戻す */

    .gallery-table td {
        display: block;
        width: 100% !important;
        margin-bottom: 12px;
    }
    .gallery-table td[colspan],
    .gallery-table td[rowspan] {
        width: 100% !important;
    }
}
				.top .gallery .btngroup{
				margin: 40px auto 0;
			}

/*Access*/
.top .access {
	width: 100%;
	padding: 0px 0 80px;
	box-sizing: border-box;
}
.top .access .title {
	font-size: 4.6rem;
	font-family: "granville", serif;
	font-weight: 400;
	font-style: normal;
	color: #363431;
	letter-spacing: .05em;
	text-align: center;
	margin-bottom: 40px;
}
.top .access ul {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top .access ul li.map {
	width: 46%;
}
.top .access ul li.detail {
	width: 48%;
}
.top .access ul li.detail .access_logo {
	width: 200px;
	margin-bottom: 30px;
}
.top .access ul li.detail .access_logo img {
	 max-width: 100%;
	height: auto;
}
.top .access ul li.detail .name {
	font-size: 3.0rem;
	margin-bottom: .5em;
}
@media (max-width: 768px) {
	.top .access {
		width: 100%;
		padding: 0px 0 60px;
		box-sizing: border-box;
	}
	.top .access .title {
		font-size: 3.0rem;
		margin-bottom: 28px;
	}
	.top .access ul {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
	}
	.top .access ul li.map {
		width: 100%;
		margin-bottom: 40px;
	}
	.top .access ul li.detail {
		width: 100%;
	}
	.top .access ul li.detail .access_logo {
		width: 160px;
		margin: 0 auto 30px;
	}
	.top .access ul li.detail .access_logo img {
		max-width: 100%;
		height: auto;
	}
	.top .access ul li.detail .name {
		font-size: 2.0rem;
		margin-bottom: .5em;
		text-align: center;
	}
	.top .access ul li.detail .address {
		text-align: center;
	}
	.top .access ul li.detail .phone {
		text-align: center;
	}
	.top .access ul li.detail .opentime {
		text-align: center;
	}
}
/*-----------------------------------------------
下層ページ共通
-----------------------------------------------*/
.next_mainbg {
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}
.next_mainbg img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.next_mainbg .title_page {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: auto;
	background: #fff;
	text-align: center;
	padding: 16px 0;
	font-size: 1.8em;
	opacity: 0.9;
}
.breadcrumb {
	margin: 0 0 60px 60px;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	color: #222;
}

.breadcrumb li:not(:last-of-type)::after {
  content: ">";
  margin: 0 .6em; 
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  color: #50ade5;
}
@media (max-width: 768px) {
	.next_mainbg {
		width: 100%;
		position: relative;
		margin-bottom: 10px;
	}
	.next_mainbg img {
		width: 100%;
		height: 200px;
		object-fit: cover;
	}
	.next_mainbg .title_page {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 70%;
		height: auto;
		background: #fff;
		text-align: center;
		padding: 14px 0;
		font-size: 1.2em;
		opacity: 0.9;
	}
	.breadcrumb {
		margin: 0 0 40px 10px;
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		color: #222;
		font-size: .8em;
	}
	.breadcrumb li:not(:last-of-type)::after {
	content: ">";
	margin: 0 .6em; 
	}
	.breadcrumb a {
	color: inherit;
	text-decoration: none;
	color: #50ade5;
	}
}
.title_middle {
    margin: 0 auto 1.5em;
	padding: 6px 0 6px .75em;
	box-sizing: border-box;
	background: #CBE8F6;
	font-size: 3rem;
	font-family: "granville", serif;
	font-weight: 400;
	color: #363431;
	letter-spacing: .05em;
}
.title_middle.ja {/*日本語*/
	padding: 10px 0 8px .75em;
	font-size: 2.4rem;
	font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
	.title_middle {
		padding: 2px 0 2px .75em;
		font-size: 2.4rem;
	}
	.title_middle.ja {/*日本語*/
		padding: 6px 0 6px .75em;
		font-size: 1.8rem;
	}
}
/*-----------------------------------------------
お問い合わせ
-----------------------------------------------*/
.contact {
	margin-bottom: 60px;
}
.contact .contact_wrap {
	max-width: 980px;
	margin: 0 auto;
}
.contact .step {
	list-style-type: none;
	display: table;
	width: 100%;
	margin: 0 auto 3em;
	overflow: hidden;
}
.contact .step li{
	width: 32%;
	display: table-cell;
	position: relative;
	background: #999;
	padding: .6em 0 .6em 2em;
	box-sizing: border-box;
	color: #fff;
	font-size: .9em;
}
.contact .step li:last-child{
	padding-right: 1em;
}
.contact .step li:last-child:before,
.contact .step li:last-child:after{
	display:none;
}
.contact .step li:before,
.contact .step li:after{
	content: "";
	position: absolute;
	margin: auto;
}
.contact .step li:before{
	top:-15px;
	right:-1em;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	border-width: 40px 0 40px 1em;
	z-index: 10;
}
.contact .step li:after{
	top:-15px;
	right:-.8em;
	border-style: solid;
	border-color: transparent transparent transparent #999;
	border-width: 40px 0 40px 1em;
	z-index: 10;
}
.contact .step li.is-current{
	background: #50ADE5;
	font-weight: 600;
	color: #fff;
}
.contact .step li.is-current:after{
	border-color: transparent transparent transparent #50ADE5;
}
.contact table.table_contact{
	width: 100%;
	margin: 0 auto 1em;
	border: 1px solid #ccc;
	border-collapse: collapse;
	font-size: .9em;
}
.contact table.table_contact th {
	width: 20%;
	background:#DCEEFA;
	padding: 18px 10px;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.contact table.table_contact td {
	padding: 18px 10px;
	vertical-align:top;
	border-bottom:1px solid #ccc;
	border-right:1px solid #ccc;
}
.contact table.table_contact td input[type="text"],
.contact table.table_contact td textarea {
	padding: 10px;
	font-size: 1.0em;
}
.contact table.table_contact td input[type="text"] {
	width: 500px;
}
.contact table.table_contact textarea {
	width: 80%;
	height: 240px;
	font-size: 1.1em;
	line-height: 1.7;
}
.contact .kajo {
	width: 100%;
}
.contact .kajo ul {
	margin-left: 1em;
}
.contact .kajo ul li {
	font-size: .8em;
	margin-bottom: .25em;
	list-style-type: disc;
}
.contact .btn_kakunin {
	text-align: center;
	margin-top: 4em;
}
.contact .btn_kakunin button {
	display: inline-block;
	text-align: center;
	padding: 6px 40px 8px;
	border: 2px solid #50ADE5;
	border-radius: 20px;
	color: #fff;
	margin-top: -.5em;
	transition: all  0.3s ease;
	text-decoration: none;
	background: #50ADE5;
	font-size: 1.1em;
	box-sizing: border-box;
}
.contact .btn_kakunin button:hover {color: #50ADE5; text-decoration: none; background: #fff;}

.contact .text_kakunin {
	font-size: 1.0em;
	margin-bottom: 1.5em;
}
.contact .btn_kakunin button.btn_return {
	border: 2px solid #999;
	background: #999;
	margin-right: 40px;
}
.contact .btn_kakunin button.btn_return:hover {
	background: #bbb;
	border: 2px solid #bbb;
	color: #fff;
}
.contact .text_thanks {
	font-size: 1.1em;
}
.contact .text_thanks .first {
	font-size: 1.4em;
	margin-bottom: 1em;
	color: #50ade5;
}
.contact .text_thanks .text01 {
	font-size: .9em;
	margin-bottom: .25em;
}
.contact .error {
	color:#CC0000;
	display:block;
}
.contact .red {
	color: #f00;
}
@media (max-width: 768px) {
	.contact .contact_wrap {
		width: 94%;
		margin: 0 auto;
	}
	.contact table.table_contact {
		width: 100%;
		margin: 0 auto -20px;
		border: none;
		border-collapse: collapse;
		font-size: .9em;
	}
	.contact table.table_contact th {
		display: block;
		width: 100%;
		background:#DCEEFA;
		padding: 10px 10px;
		font-weight: normal;
		text-align: left;
		border: none;
	}
	.contact table.table_contact td {
		display: block;
		width: 100%;
		padding: 18px 10px;
		border: none;
		margin-bottom: 20px;
	}
	.contact table.table_contact td input[type="text"],
	.contact table.table_contact td textarea {
		padding: 14px 10px;
		box-sizing: border-box;
		font-size: 1.0em;
		border: 1px solid #ccc;
	}
	.contact table.table_contact td input[type="text"] {
		width: 100%;
	}
	.contact table.table_contact textarea {
		width: 100%;
		height: 240px;
		font-size: 1.1em;
		line-height: 1.7;
	}
	.contact .kajo {
		width: 96%;
		margin: 0 0 0 1em;
	}
	.contact .kajo ul {
		margin: 0 .75em;
	}
	.contact .kajo ul li {
		font-size: .8em;
		margin-bottom: .25em;
		list-style-type: disc;
	}
	.contact .btn_kakunin {
		text-align: center;
		margin-top: 2em;
	}
	.contact .btn_kakunin button {
		display: inline-block;
		text-align: center;
		padding: 6px 36px 8px;
		border: 2px solid #50ADE5;
		border-radius: 20px;
		color: #fff;
		margin-top: -.5em;
		transition: all  0.3s ease;
		text-decoration: none;
		background: #50ADE5;
		font-size: .9em;
	}
	.contact .btn_kakunin button:hover {color: #50ADE5; text-decoration: none; background: #fff;}

	.contact .text_kakunin {
		font-size: .9em;
		margin-bottom: 1.5em;
	}
	.contact .btn_kakunin button.btn_return {
		border: 2px solid #999;
		background: #999;
		margin-right: 20px;
	}
	.contact .btn_kakunin button.btn_return:hover {
		background: #bbb;
		border: 2px solid #bbb;
		color: #fff;
	}
	.contact .text_thanks {
		font-size: .9em;
	}
	.contact .text_thanks .first {
		font-size: 1.2em;
		margin-bottom: 1em;
		color: #50ade5;
		text-align: center;
	}
	.contact .text_thanks .text01 {
		font-size: .9em;
		margin-bottom: .25em;
		padding-left:1em;
		text-indent:-1em;
	}
}
/*-----------------------------------------------
スタジオギャラリー
-----------------------------------------------*/
.gallery .gallery_wrap {
    max-width: 1040px;
    margin: 0 auto 80px;
}
.gallery .studio_section {
    width: 100%;
	margin-bottom: 80px;
}
.gallery .floor_plan_container {
	display: block;
    max-width: 360px;
	margin: 0 auto 4em;
}
				@media (max-width: 768px) {
					.gallery .gallery_wrap {
        				width: 92%;
						margin: 0 auto 60px;
					}
					.gallery .studio_section {
						margin-bottom: 60px;
					}
					.gallery .floor_plan_container {
						width: 80%;
						margin: 0 auto 2.5em;
					}
				}
.gallery .photo_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
					@media (min-width: 768px) {
						.gallery .photo_grid {
							grid-template-columns: repeat(2, 1fr);
						}
					}
					@media (min-width: 1024px) {
						.gallery .photo_grid {
							grid-template-columns: repeat(3, 1fr);
						}
					}
					@media (max-width: 768px) {
						.gallery .photo_grid {
							width: 90%;
							margin: 0 auto;
						}
					}
.gallery .photo_grid li {
    position: relative;
}
.gallery .photo_wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    position: relative;
    transition: transform 0.2s ease;
}
.gallery .photo_wrapper:hover {
    transform: translateY(-2px);
}
.gallery .photo_wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: transparent;
    transition: background-color 0.2s ease;
    pointer-events: none;
}
.gallery .gallery .photo_wrapper:hover::after {
    background-color: rgba(0, 0, 0, 0.03);
}
.gallery .photo_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery .photo_card:hover .photo_image {
    transform: scale(1.05);
}
.gallery .photo_caption {
    margin-top: 0.75rem;
    font-size: 1.4rem;
    text-align: center;
    color: #666;
}
/*-----------------------------------------------
料金表
-----------------------------------------------*/
.price .price_wrap {
    max-width: 1040px;
    margin: 0 auto 80px;
}
.price .price_main {
	display: block;
	width: 500px;
	margin: 0 auto 60px;
}
.pricelist_section {
	margin-bottom: 80px;
}
.price ul.ul_notice {
	width: 80%;/*tableと同じ*/
	margin: 0 auto 1em;
}
.price ul.ul_notice li {
	position: relative;
	padding-left: 1.2em;
	font-size: .9em;
}
.price ul.ul_notice li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
}
.price .table_price {
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
	border: 1px solid #ccc;
}
.price .table_price th, 
.price .table_price td {
	padding: 14px 20px;
	box-sizing: border-box;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.price .table_price th {
	font-weight: normal;
	text-align: left;
	background: #EEF7FC;
}
.price .table_price td {
	text-align: right;
}
			@media (max-width: 768px) {
				.price .price_main {
					display: block;
					width: 84%;
					margin: 0 auto 60px;
				}
				.pricelist_section {
					width: 92%;
					margin: 0 auto 60px;
				}
				.price ul.ul_notice {
					width: 100%;/*tableと同じ*/
					margin: 0 auto 1em;
				}
				.price ul.ul_notice li {
					position: relative;
					padding-left: 1.2em;
					font-size: .9em;
				}
				.price ul.ul_notice li:before {
					position: absolute;
					top: 0;
					left: 0;
					content: "※";
				}
				.price .table_price {
					width: 100%;
					margin: 0 auto;
					border-collapse: collapse;
					border: 1px solid #ccc;
					font-size: .8em;
				}
				.price .table_price th, 
				.price .table_price td {
					padding: 8px 10px;
					box-sizing: border-box;
					border-right: 1px solid #ccc;
					border-bottom: 1px solid #ccc;
					line-height: 1.7;
				}
				.price .table_price th {
					font-weight: normal;
					text-align: left;
					background: #EEF7FC;
				}
				.price .table_price td {
					text-align: right;
				}
			}
/*アコーディオン*/
.price details {
  width: 1000px;
  margin: 0 auto;
}
.price details summary {
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}
.price details summary span {
  display: inline-block;
  background: #80CC28;
  color: #fff;
  font-size: 24px;
  padding: 12px 140px 18px 120px;
  box-sizing: border-box;
  line-height: 1.8;
  border-radius: 10px;
}
.price details summary span .text_sub {
  background: none;
  font-size: 16px;
  color: #000;
    padding: 2px 24px 2px 24px;
	box-sizing: border-box;
	border-radius: 0;
    background:linear-gradient(transparent 0%, #ff6 0%);
	  border-radius: 10px;
}
.price details summary::-webkit-details-marker {
  display: none;
}
.price details summary:before,
.price details summary:after {
  content: "";
  margin: auto 0 auto 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.price details summary:before {
  left: 50%;
  width: 14px;
  height: 12px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  box-sizing: border-box;
  transition: .1s;
  margin-left: 200px;
}
.price details[open] summary:before {
  transform: rotate(90deg); 
  left: 50%;
  top: 5px;
  margin-left: 200px;
}
.price details[open] .details-content {
  animation: fadeIn 0.5s ease;
}
.price details[open] .details-content .inner {
  background: #fff;
  padding: 20px 80px;
  border: 2px solid #80CC28;
  box-sizing: border-box;
}
.price details[open] .details-content .inner ul {
  margin-top: 2em;
}
.price details[open] .details-content .inner ul li {
  margin-bottom: 1.5em;
}
.price details[open] .details-content .inner ul li .subtitle {
  font-family: auto;
  font-weight: bold;
  font-size: 2.0rem;
  display: block;
  margin-bottom: .25em;
}
.price details[open] .details-content .inner ul li .box {
	margin-left: 1em;
	margin: 0 0 2em 1em;
}
.price details[open] .details-content .inner ul li .box ul.asta {
	margin: .5em 0 0 0;
	padding: 10px 20px;
	box-sizing: border-box;
	background: #ECF8DD;
}
.price details[open] .details-content .inner ul li .box ul.asta li {
	margin: 0;
	position: relative;
	padding-left: 1.2em;
}
.price details[open] .details-content .inner ul li .box ul.asta li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "※";
}
.price details[open] .details-content .inner ul li .box ul.dot {
	margin: 0 0 0 1.5em;
}
.price details[open] .details-content .inner ul li .box ul.dot li {
	margin: 0;
	padding-left: 0;
	list-style-type: disc;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 768px) {
	.price details {
	width: 90%;
	}
	.price details summary span {
	font-size: 20px;
	padding: 8px 30px 10px 30px;
	}
	.price details summary span .text_sub {
	font-size: 13px;
	padding: 2px 12px 2px 12px;
	}
	.price details summary:before {
	left: 50%;
	width: 14px;
	height: 12px;
	border: 8px solid transparent;
	border-left: 8px solid #fff;
	box-sizing: border-box;
	transition: .1s;
	margin-left: 120px;
	}
	.price details[open] summary:before {
	margin-left: 120px;
	}
	.price details[open] .details-content .inner {
	padding: 10px 20px;
	}
	.price details[open] .details-content .inner ul {
	margin-top: 1em;
	}
	.price details[open] .details-content .inner ul li {
	margin-bottom: 1.5em;
	font-size: .9em
	}
	.price details[open] .details-content .inner ul li .subtitle {
	font-size: 1.6rem;
	}
	.price details[open] .details-content .inner ul li .box ul.asta {
		padding: 10px 10px;
	}
	.price details[open] .details-content .inner p{
		font-size: 1em
	}
	.price #information {
		padding-top: 70px;
		margin-top: -70px;
	}
}