@charset "utf-8";
/* CSS関数設定 */
:root {
	--BGCOLOR: #e7d8af;

	/* カラーパレット */
	--WHITE: #FFFFFF;
	--WHITE_OP50: rgba(255, 255, 255, 0.5);
	--BLACK: #414141;

	--GRAY01: #F5F5F5;
	--GRAY02: #E5E5E5;
	--GRAY03: #A7A7A7;

	--BEIGE01: #F5F5F5;

	--RED: #D0372C;
	--GREEN: #e7d8af;



	/* テキストカラー */
	--TXT_COLOR_BASE: var(--BLACK);
	--TXT_COLOR_WHITE: var(--WHITE);

	/* ボーダーカラー */
	--BDCOLOR_GRAY_1: var(--GRAY02);

	/* 背景カラー */
	--BGCOLOR_GRAY_1: var(--GRAY01);

	/* ランキングカラー */
	--RANKING_1ST: #BA9700;
	--RANKING_2ND: #A7A7A7;
	--RANKING_3RD: #B75400;
	--RANKING_OTHER: #002C1B;

	/* 共通角丸 */
	--COMMON_BDRS_S: 5px;
	--COMMON_BDRS_M: 10px;
	--COMMON_BDRS_L: 20px;

	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px var(--GRAY03);
	--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY03);

	/* ベース文字間隔 */
	--LETTER_SPACING: 0.1em;

	/* フォント */
	--FF_BASE: "Zen Kaku Gothic New", serif;

	/* 英数字フォント */
	--FF_EN: var(--FF_BASE);
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: 500;

	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5sease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5sease-in-out 0s forwards;

	/* フォトサイズ */
	--FZ_9: clamp(8px, 0.8vw, 9px);
	--FZ_10: clamp(8px, 0.8vw, 10px);
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp(12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_20: clamp(16px, 1.8vw, 20px);
	--FZ_22: clamp(18px, 2vw, 22px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_38: clamp(30px, 3.5vw, 38px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_80: clamp(60px, 7vw, 80px);
	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_35: clamp( 25px, 2.5vw, 35px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_90: clamp( 60px, 6.5vw, 90px);
	--GAP_100: clamp( 70px, 7.5vw, 100px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* PCマックス幅 */
	--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
	--PC_MAX_WIDTH_SS: 800px;
	--PC_MAX_WIDTH_S: 1000px;
	--PC_MAX_WIDTH_M: 1100px;
	--PC_MAX_WIDTH_L: 1200px;

	/* 親要素を超えて幅100% */
	--FULL_WIDTH: calc(50% - 50vw);

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 90%;
	--GENERALSEC: 50px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--LETTER_SPACING);
	width:100%;
	color: var(--TXT_COLOR_BASE);
	background: var(--BGCOLOR);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}
a:visited{
	color: var(--TXT_COLOR_BASE);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
iframe{
	vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--TXT_COLOR_BASE);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
}
.formReset input[type="text"]{
	color: var(--TXT_COLOR_BASE);
}
.formReset input[type="text"]::placeholder{
	color: var(--GRAY03);
}
/* フォントCSS */
.gravitas {
	font-family: "Gravitas One", serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--GENERALSEC);
}
.g-mgb{
	margin-bottom: var(--GENERALSEC);
}
.g-pd{
	padding-block: var(--GENERALSEC);
}
.g-pdt{
	padding-top: var(--GENERALSEC);
}
.g-pdb{
	padding-bottom: var(--GENERALSEC);
}
.g-mgt--half{
	margin-top: var(--GENERALSEC_HALF);
}
.g-mgb--half{
	margin-bottom: var(--GENERALSEC_HALF);
}
.g-pd--half{
	padding-block: var(--GENERALSEC_HALF);
}
.g-pdt--half{
	padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
	padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
	opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
	letter-spacing: var(--LETTER_SPACING);
}
/* テキスト行間文字間 */
[class*="txt"]{
	letter-spacing: var(--LETTER_SPACING);
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* youtube */
.youtubeContainer iframe {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* 非表示 */
.displaynone{
	display: none;
}
/* 親要素超えて幅100% */
.widthOverParent{
	width: 100vw;
	--OYA: calc(50% - 50vw);
	margin-left: var(--OYA);
	margin-right: var(--OYA);
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--INNER_WIDTH);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	body{
		font-size: var(--FZ_15_CONST);
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.g-inner--pc,
	.g-inner--pcl,
	.g-inner--pcs,
	.g-inner--pcss{
		width: var(--INNER_WIDTH);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--PC_MAX_WIDTH_M);
	}
	.g-inner--pcl,
	.g-inner--l{
		max-width: var(--PC_MAX_WIDTH_L);
	}
	.g-inner--s{
		max-width: var(--PC_MAX_WIDTH_S);
	}
	.g-inner--ss{
		max-width: var(--PC_MAX_WIDTH_SS);
	}
	.g-inner--pcs{
		max-width: var(--PC_MAX_WIDTH_S);
	}
	.g-inner--pcss{
		max-width: var(--PC_MAX_WIDTH_SS);
	}

	.g-inner--pcHasSlickGap{
		--INNER_ADJUST: calc(var(--SLICK_GAP) * 2);
    width: calc(var(--INNER_WIDTH) + var(--INNER_ADJUST));
    max-width: calc(var(--PC_MAX_WIDTH_M) + var(--INNER_ADJUST));
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--GENERALSEC_HALF);
	}
	.sp{
		display: none !important;
	}
	.hamburger{
		display: none !important;
	}
	.tategaki--pc{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.orderPc-1st { order: 1; }
	.orderPc-2nd { order: 2; }
	.orderPc-3rd { order: 3; }
	.orderPc-4th { order: 4; }
	.orderPc-5th { order: 5; }
	.orderPc-6th { order: 6; }
	.orderPc-7th { order: 7; }
	.orderPc-8th { order: 8; }
	.orderPc-9th { order: 9; }
	.orderPc-10th { order: 10; }
	.orderPc-11th { order: 11; }
	.orderPc-12th { order: 12; }
	.orderPc-13th { order: 13; }
	.orderPc-14th { order: 14; }
	.orderPc-15th { order: 15; }
	.orderPc-16th { order: 16; }
	.orderPc-17th { order: 17; }
	.orderPc-18th { order: 18; }
	.orderPc-19th { order: 19; }
	.orderPc-20th { order: 20; }
	.orderPc-21th { order: 21; }
	.orderPc-22th { order: 22; }
	.orderPc-23th { order: 23; }
	.orderPc-24th { order: 24; }
	.orderPc-25th { order: 25; }
	.orderPc-26th { order: 26; }
	.orderPc-27th { order: 27; }
	.orderPc-28th { order: 28; }
	.orderPc-29th { order: 29; }
	.orderPc-30th { order: 30; }
	.orderPc-31th { order: 31; }
	.orderPc-32th { order: 32; }
	.orderPc-33th { order: 33; }
	.orderPc-34th { order: 34; }
	.orderPc-35th { order: 35; }
	.orderPc-36th { order: 36; }
	.orderPc-37th { order: 37; }
	.orderPc-38th { order: 38; }
	.orderPc-39th { order: 39; }
	.orderPc-40th { order: 40; }
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 50px;
	}
	body{
		font-size: var(--FZ_14_CONST);
		line-height: 1.6;
	}
	.g-inner--sp{
		width: var(--INNER_WIDTH);
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--GENERALSEC);
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-inline: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea,
.t-mvSection {
	background: var(--BGCOLOR);
}
.hd-info {
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 10;
}
.hd-info a {
	background: var(--BLACK);
	color: var(--WHITE);
	font-size: var(--FZ_13);
	font-weight: 300;
	display: block;
	padding: 7px 0 8px;
	line-height: 1;
}
@media screen and (min-width: 768px){
	#headerarea {
		padding-block: 30px;
	}
	.hd-logoContainer {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.hd-logo {
		width: 30%;
		max-width: 356px;
	}
	.hd-logo__img a{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: var(--GAP_35);
	}
	.hd-navContainer {
		flex: 1;
	}
	.hd-nav {
		display: flex;
		gap: var(--GAP_10) var(--GAP_30);
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	.hd-nav li a{
		font-size: var(--FZ_12);
		font-weight: bold;
		border-bottom: .5px solid var(--BLACK);
		padding-bottom: 3px;
	}
	.hd-nav li a::after{
		content: "";
		background: url(../images/navi_arrrow.svg) no-repeat;
		background-size: contain;
		width: 14px;
		height: auto;
		aspect-ratio: 1 / 1.1;
		display: inline-block;
		margin-left: .3em;
		vertical-align: text-bottom;
	}
	.hd-nav li a:hover::after{
		animation: bounce-after 0.4s ease-in-out;
	}

}
@keyframes bounce-after {
	0%   { transform: translateX(0) translateY(0); }
	30%  { transform: translateX(0) translateY(3px); }
	60%  { transform: translateX(0) translateY(0); }
	100% { transform: translateX(0) translateY(0); }
}

@media screen and (max-width: 767px){
	#headerarea,
	.t-mvSection,
	.t-blogSection {
		background: var(--BGCOLOR);
	}
	.hd-info a{
		letter-spacing: 0;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■main■■■■■■■■■■■■■■■■■■■■■■ */
/* MV */
@media screen and (min-width: 768px){
	.t-mvSection {
		padding: var(--GAP_30) 0 var(--GENERALSEC);
	}

}
@media screen and (max-width: 767px){
	.t-mvSection {
		padding-bottom: var(--GAP_10);
	}
	.t-mv__img {
		width: 90%;
		margin-inline: auto;
	}
}

/* blog */
.t-blog {
	background: url(../images/blog_bg.png);
	background-size: 30px auto;
	display: flex;
	align-items: center;
}
.t-blog__heading--en {
	font-size: var(--FZ_30);
	font-family: "Gravitas One", serif;
	color: var(--RED);
	display: block;
	width: fit-content;
	margin-inline: auto;
}
.t-blog__list {
	flex: 1;
	background: var(--WHITE);
	padding: var(--GAP_20);
}
.t-blog__list li a {
	display: flex;
	align-items: center;
}
.t-blog__listContainer {
	flex: 1;
	background: var(--WHITE);
}
.t-blog__list--time {
	font-size: var(--FZ_14);
	font-weight: 300;
	margin-bottom: var(--GAP_5_CONST);
}
.t-blog__list--ttl{
	font-size: var(--FZ_18);
	font-weight: bold;
	margin-bottom: var(--GAP_5_CONST);
}
.t-blog__list--text{
	font-size: var(--FZ_14);
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.t-blogSection{
		background-image: var(--BGCOLOR);
	}
	.t-blog {
		padding: var(--GAP_40) var(--GAP_30);
	}
	.t-blog__heading {
		width: 25%;
		text-align: center;
	}
	.t-blog__heading--en {
		border-bottom: 1px solid var(--BLACK);
		margin-bottom: var(--GAP_20);
		padding-inline: .3em;
	}
	.t-blog__heading--ja {
		font-size: var(--FZ_16);
	}
	.t-blog__list {
		max-height: 300px;
		overflow-y: scroll;
		overflow-x: hidden;
	}
	.t-blog__list li:not(:last-child){
		margin-bottom: var(--GAP_30);
	}
	.t-blog__list li a {
		gap: var(--GAP_30);
	}
	.t-blog__list--img {
		width: 25%;
	}

}
@media screen and (max-width: 767px){
	.t-blogSection {
		padding-bottom: var(--GAP_20);
	}
	.t-blog {
		padding: var(--GAP_30);
		flex-direction: column;
	}
	.t-blog__heading {
		display: flex;
		align-items: center;
		margin-bottom: var(--GAP_20);
	}
	.t-blog__heading--en {
		margin-right: var(--GAP_15);
		padding-right: var(--GAP_15);
		position: relative;
	}
	.t-blog__heading--en::after{
		content: "";
		background: var(--BLACK);
		width: 1px;
		height: 25px;
		display: inline-block;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.t-blog__heading--ja {
		font-size: var(--FZ_12);
		line-height: 1.4;
	}
	.t-blog__list li a {
		flex-direction: column-reverse;
		gap: var(--GAP_15);
	}
	.t-blog__list li:nth-of-type(n+2){
		display: none;
	}

}
/* news */
.t-news {
	display: flex;
	align-items: center;
	gap: var(--GAP_20);
}
.t-news__list {
	flex: 1;
	max-height: 220px;
	overflow-x: hidden;
	overflow-y: scroll;
}
.t-news__list li:not(:last-child){
	margin-bottom: var(--GAP_30);
}
.t-news-bgWrap {
	display: flex;
	align-items: center;
	position: relative;
}
.t-news__listContainer {
	display: flex;
	align-items: center;
}
.t-news__listWrap {
	flex: 1;
}
.t-news__heading--en {
	font-size: var(--FZ_25);
	margin-bottom: var(--GAP_10);
	border-bottom: 1px solid var(--BLACK);
	padding-inline: .3em;
}
.t-news__list--cat {
	font-size: var(--FZ_10);
	margin-right: 1em;
}
.t-news__list--cat::before,
.t-news__list--cat::after{
	content: "|";
}
.t-news__list--cat::before{
	margin-right: .5em;
}
.t-news__list--cat::after{
	margin-left: .5em;
}
.t-news__list--time{
	font-size: var(--FZ_12);
}
@media screen and (min-width: 768px){
	.t-news-bgWrap {
		background: url(../images/news_bg.jpg);
		background-size: 100% 100%;
	}
	.t-news {
			max-height: 280px;
		}
	.t-news__bnr {
		width: 30%;
	}
	.t-news-bgWrap {
		width: 70%;
		padding: var(--GAP_20) var(--GAP_30) var(--GAP_20) 0;
	}
	.t-news__heading {
		width: 30%;
	}
	.t-news__heading img {
		width: 40%;
		max-width: 100px;
		margin-inline: auto;
	}
	.t-news__list--icon {
		width: 40px;
	}
	.t-news__listContainer {
		gap: var(--GAP_20);
	}
	.t-news__list--ttl{
		font-size: var(--FZ_13);
	}
	.t-news__listWrap a:hover {
		opacity: .5;
	}

}
@media screen and (max-width: 767px){
	.t-newsSection{
		background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 90%, rgba(248, 248, 240, 1))
	}
	.t-news-bgWrap {
		background: url(../images/sp/news_bg.jpg);
		background-size: 100% 100%;
	}
	.t-news {
		flex-direction: column-reverse;
		gap: var(--GAP_50);
	}
	.t-news-bgWrap {
		padding: var(--GAP_40) var(--GAP_20);
		flex-direction: column;
	}
	.t-news__heading {
		width: 30%;
		margin-bottom: var(--GAP_30);
	}
	.t-news__listWrap {
		display: contents;
	}
	.t-news__list--ttl {
		width: 100%;
	}
	.t-news__list--icon {
		width: 25px;
	}
	.t-news__listContainer {
		flex-wrap: wrap;
		gap: var(--GAP_10) var(--GAP_20);
	}
	.t-news__list--ttl{
		font-size: var(--FZ_15);
	}

}
/* フロアマップ */
.t-headingContainer {
	text-align: center;
	margin-bottom: var(--GAP_60);
}
.t-heading-img {
	max-width: 90px;
	margin: 0 auto var(--GAP_10);
}
.t-heading__ja {
	display: block;
	margin-bottom: var(--GAP_10);
	font-weight: bold;
}
.t-heading__en{
	font-size: var(--FZ_14);
	font-family: "Gravitas One", serif;
	border-bottom: .5px solid var(--GREEN);
	padding-bottom: 3px;
}
@media screen and (min-width: 768px){
	.t-heading-img {
		width: 9%;
	}
	.t-heading__ja {
		font-size: var(--FZ_30);
		letter-spacing: .2em;
	}

}
@media screen and (max-width: 767px){
	.t-heading-img {
		width: 27%;
	}
	.t-heading__ja {
		font-size: var(--FZ_25);
	}

}
/* schedule */
.t-schedule {
	background: var(--BEIGE01);
	display: flex;
	position: relative;
}
.tab-contents {
	display: flex;
	gap: var(--GAP_30);
	position: relative;
}
.t-schedule__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--GAP_40);
}
.t-schedule__list li {
	display: flex;
	gap: var(--GAP_20);
}
.t-schedule__heading--ja {
	font-size: var(--FZ_25);
}
.t-schedule__heading--ja span {
	font-size: var(--FZ_20);
}
.t-schedule__heading--en {
	font-family: "Gravitas One", serif;
	line-height: 1.4;
}
.t-schedule-date {
	font-size: var(--FZ_25);
	text-align: right;
	width: 10%;
	line-height: 1.4;
}
.t-schedule-date span,
.tab-wrap--schedule .tab-btn span {
	font-size: var(--FZ_20);
}
.t-schedule-date span.sat,
.tab-wrap--schedule .tab-btn span.sat{
	color: #457B96;
}
.t-schedule-date span.sun,
.tab-wrap--schedule .tab-btn span.sun{
	color: #D13529;
}
.t-schedule__list--img {
	width: 40%;
}
.t-schedule__listContainer {
	flex: 1;
}
.t-schedule__list--cat a {
	background: var(--WHITE);
	padding: 2px 5px 3px;
}
.t-schedule__list--name span{
	display: block;
	margin-bottom: 3px;
}
@media screen and (min-width: 768px){
	.t-schedule {
		padding: var(--GAP_50) var(--GAP_50) var(--GAP_50) 0;
	}
	.schedule-sat{
		margin-bottom: var(--GAP_40);
		padding-bottom: var(--GAP_40);
	}
	.t-schedule__heading--en,
	.t-schedule__heading--ja{
		writing-mode: vertical-rl;
	}
	.t-schedule__heading--en {
		writing-mode: sideways-lr;
		border-right: .5px solid var(--BLACK);
	}
	.t-schedule__heading {
		width: 15%;
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	.schedule-sat::after{
		content: "";
		position: absolute;
		bottom: 0;
		width: 100%;
		left: 0;
		content: '';
		background-image: linear-gradient(to right, var(--GREEN), var(--GREEN) 6px, transparent 6px, transparent 6px);
		background-size: 12px 100%;
		background-repeat: repeat-x;
		height: 1px;
		z-index: 2;
	}
	.tab-wrap--schedule {
		flex: 1;
	}
	.t-schedule-date span{
		display: block;
	}
	.t-schedule__list {
		width: 85%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.t-schedule__list--name{
		margin-bottom: var(--GAP_10);
	}
	.t-schedule__list--time{
		font-size: var(--FZ_16);
	}
	.t-schedule__list--name{
		font-size: var(--FZ_14);
		line-height: 1.4;
	}
	.t-schedule__list--name span{
		font-size: var(--FZ_12);
	}
	.t-schedule__list--cat a{
		font-size: var(--FZ_10);
	}
	
}
@media (min-width:768px) and (max-width:900px){
	.tab-contents {
		flex-direction: column;
	}
	.t-schedule__list{
		width: 100%;
	}
	.t-schedule-date {
		align-self: flex-start;
	}
}



@media screen and (max-width: 767px){
	.t-schedule {
		flex-direction: column;
		padding: var(--GAP_50) var(--GAP_30);
	}
	.t-schedule__heading {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		margin-bottom: var(--GAP_40);
	}
	.t-schedule__heading--en {
		display: block;
		margin-top: 5px;
		border-bottom: .5px solid var(--GREEN);
	}
	.tab-wrap--schedule .tab-btn {
		font-size: 16px;
		line-height: 1.4;
		flex: auto;
		text-align: center;
		position: relative;
	} 
	.tab-wrap--schedule .tab-btn span{
		font-size: 12px;
	}
	.tab-wrap--schedule .tab-btn.show::after {
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-bottom: 1px solid var(--BLACK);
		border-right: 1px solid var(--BLACK);
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%) rotate(45deg);
}
	.tab-wrap--schedule .tab-btn:not(.show),
	.tab-wrap--schedule .tab-btn:not(.show) span{
		color: var(--GRAY03);
	}
	.tab-nav {
		margin-bottom: var(--GAP_40);
	}
	.t-schedule__list {
		flex-direction: column;
	}
	.t-schedule__list li{
		padding: 0 var(--GAP_30);
	}
	.t-schedule__list--time {
		margin-bottom: var(--GAP_15);
	}
	.t-schedule__list--name{
		margin-bottom: var(--GAP_15);
	}
	.t-schedule__list--name a span {
		display: block;
	}
	.t-schedule__list--time{
		font-size: var(--FZ_18);
	}
	.t-schedule__list--name{
		font-size: var(--FZ_16);
		line-height: 1.4;
	}
	.t-schedule__list--name span{
		font-size: var(--FZ_14);
	}
	.t-schedule__list--cat a{
		font-size: var(--FZ_12);
	}
	
}
/* 出展者一覧 */
.t-shop__list {
	display: grid;
	gap: var(--GAP_50) var(--GAP_20);
}
.t-shop__list--img {
	margin-bottom: 5px;
}
.t-shop__list--img{
	border: .5px solid #e5e5e5;
	box-sizing: border-box;
}
.t-shop__list--cat{
	font-size: var(--FZ_12);
	font-weight: 300;
	margin-bottom: 8px;
	position: relative;
	padding-left: 2.5em;
}
.t-shop__list--cat::before{
	content: "";
	background: #707070;
	width: 40px;
	height: .5px;
	display: inline-block;
	transform: rotate(-45deg);
	position: absolute;
	top: 3px;
	left: 0;
}
.t-shop__list--subttl{
	margin-bottom: 3px;
}
.t-shop__list--ttl{
	font-size: var(--FZ_16);
	font-weight: bold;
	line-height: 1.4;
}
@media screen and (min-width: 1001px){
	.t-shop__list {
		grid-template-columns: repeat(5, auto);
	}
}
@media (min-width:768px) and (max-width:1000px){
	.t-shop__list {
		grid-template-columns: repeat(4, auto);
	}
}
@media screen and (min-width: 768px){
	.t-shop__list--subttl{
		font-size: var(--FZ_10);
	}

}
@media screen and (max-width: 767px){
	.t-shop__list {
		grid-template-columns: repeat(2, auto);
	}
	.t-shop__list li:nth-of-type(n+11){
		display: none;;
	}
	.t-shop__list--subttl{
		font-size: var(--FZ_12);
	}
}
/* 商品カタログ予習帳 */
.t-catalog__list {
	display: grid;
	gap: var(--GAP_50) var(--GAP_20);
}
.t-catalog__list--img {
	margin-bottom: 5px;
}
.t-catalog__list--img{
	border: .5px solid #e5e5e5;
	box-sizing: border-box;
}
.t-catalog__list--shop{
	font-size: var(--FZ_12);
	font-weight: 300;
	margin-bottom: var(--GAP_10);
	position: relative;
	padding-left: 2.5em;
}
.t-catalog__list--shop::before{
	content: "";
	background: #707070;
	width: 40px;
	height: .5px;
	display: inline-block;
	transform: rotate(-45deg);
	position: absolute;
	top: 3px;
	left: 0;
}
.t-catalog__list--ttl{
	font-size: var(--FZ_16);
	font-weight: bold;
	line-height: 1.4;
}
@media screen and (min-width: 1001px){
	.t-catalog__list {
		grid-template-columns: repeat(5, auto);
	}
}
@media (min-width:768px) and (max-width:1000px){
	.t-catalog__list {
		grid-template-columns: repeat(4, auto);
	}
}
@media screen and (min-width: 768px){
	.t-catalogSection {
		background: url(../images/catalog_bg.png);
		background-size: cover;
	}

}
@media screen and (max-width: 767px){
	.t-catalogSection {
		background: url(../images/sp/catalog_bg.png);
		background-size: cover;
	}
	.t-catalog__list {
		grid-template-columns: repeat(2, auto);
	}
	.t-catalog__list li:nth-of-type(n+11){
		display: none;;
	}

}

/* ワークショップ */
.t-workshopSection{
	overflow: hidden;
}
.swiper {
	padding-bottom: 15px;
}
.swiper-slide {
	background: var(--BEIGE01);
	position: relative;
}
.t-workshop__list--num {
	font-size: var(--FZ_80);
	font-family: "Gravitas One", serif;
	color: var(--GREEN);
	position: absolute;
	z-index: 2;
}
.t-workshop__list--ttl{
	font-size: var(--FZ_20);
	font-weight: bold;
	margin: var(--GAP_25) 0 var(--GAP_10);
	padding-top: var(--GAP_30);
	border-top: 1px solid var(--BLACK);
}
.t-workshop__list--text{
	font-size: var(--FZ_14);
	margin-bottom: var(--GAP_30);
}
.t-workshop__list--btn{
	position: absolute;
	right: 20px;
	bottom: 10px;
	width: 100px;
	margin-left: auto;
}
@media screen and (min-width: 768px){
	.swiper-slide {
		padding: var(--GAP_50) var(--GAP_50) var(--GAP_30);
	}
.swiper-wrapper{
		margin-right: -10%;
		margin-left: 10%;
	}
	.t-workshop__list--img {
		width: 80%;
		margin-left: auto;
	}
	.t-workshop__list--num {
		left: 15px;
		top: -20px;
	}
	.swiper::before {
		content: "";
		background: var(--WHITE);
		width: 10%;
		height: 100%;
		display: inline-block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 2;
	}
}
@media (min-width:768px) and (max-width:900px){
	.t-workshop__list--img {
		width: 90%;
	}
	.swiper-slide {
		padding: var(--GAP_50) var(--GAP_30) var(--GAP_30);
	}
}

@media screen and (max-width: 767px){
	.swiper-slide {
		padding: var(--GAP_60) var(--GAP_30) var(--GAP_30);
	}
	.t-workshop__list--num {
		left: 5px;
		top: -8px;
	}
	.swiper {
  padding-left: 5%;
  padding-right: 5%;
}
	.swiper-slide {
			width: 86% !important;
	}
}

/* お楽しみコンテンツ */
.t-contentSection {
	background: url(../images/catalog_bg.png);
	background-size: cover;
}
.t-content__list {
	display: grid;
	gap: var(--GAP_50) var(--GAP_20);
}
.t-content__list--time{
	font-weight: 300;
	margin-bottom: var(--GAP_10);
}
.t-content__list--ttl{
	font-size: var(--FZ_20);
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: var(--GAP_10);
}
.t-content__list--img{
	border: .5px solid #e5e5e5;
	box-sizing: border-box;
}
@media screen and (min-width: 901px){
	.t-content__list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width:768px) and (max-width:900px){
	.t-content__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 768px){
	.t-content__list--time{
		font-size: var(--FZ_14);
	}
	.t-content__list--text{
		font-size: var(--FZ_16);
	}
	.t-content__list--img {
		margin-bottom: 5px;
	}
	.t-content__list a:hover{
		opacity: 1;
	}

}
@media screen and (max-width: 767px){
	.t-content__list li a {
		display: flex;
		flex-wrap: wrap;
		gap: var(--GAP_15);
	}
	.t-content__list--img{
		width: 49%;
	}
	.t-content-sp{
		flex: 1;
	}
	.t-content__list--time{
		font-size: var(--FZ_16);
	}
	.t-content__list--text{
		font-size: var(--FZ_14);
	}

}
/* インスタグラム */
.t-instaSection {
	background: #A7A7A7;
}
.t-insta__heading {
	text-align: center;
	font-family: "Gravitas One", serif;
	color: var(--WHITE);
	font-size: var(--FZ_35);
	margin-bottom: var(--GAP_15);
}
.t-insta__catch {
	text-align: center;
	color: var(--WHITE);
	font-size: var(--FZ_14);
	margin-bottom: var(--GAP_40);
}
.t-insta__list {
	display: grid;
}
.t-insta__list li a{
  display: block;
}
.t-insta__list li a img{
  aspect-ratio: 1 / 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.t-insta__list li a video{
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1441px){
	.t-insta__list {
		grid-template-columns: repeat(6, auto);
	}
}
@media (min-width:768px) and (max-width:1440px){
	.t-insta__list {
		grid-template-columns: repeat(5, auto);
	}
	.t-insta__list li:nth-of-type(n+11){
		display: none;
	}
}
@media screen and (max-width: 767px){
	.t-insta__list {
		width: 90%;
		margin-inline: auto;
		grid-template-columns: repeat(3, auto);
	}
	.t-insta__list li:nth-of-type(n+10){
		display: none;
	}
}
/* 背景 */
.bg-deco-u::before,
.bg-deco-u::after,
.bg-deco-b::before,
.bg-deco-b::after {
	content: "";
	background: var(--BGCOLOR);
	width: 30px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
}
.bg-deco-u::before {
	left: -15px;
	top: -15px;
}
.bg-deco-u::after {
	right: -15px;
	top: -15px;
}
.bg-deco-b::before{
	left: -15px;
	bottom: -15px;
}
.bg-deco-b::after {
	right: -15px;
	bottom: -15px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
.ft-inner {
	display: flex;
	align-items: center;
}
.ft-img {
	width: 40%;
	max-width: 290px;
	margin-inline: auto;
}
.ft-img a{
	display: grid;
	padding-block: 50px;
}
.ft-img a span{
	display: block;
	position: relative;
	width: 100%;
	margin-inline: auto;
}
/* .ft-img a span:first-child::after{
	content: "&";
	display: block;
	text-align: center;
	font-size: 25px;
	margin-block: 30px;
} */
.ft-nav {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: var(--GAP_25) var(--GAP_60);
}
.ft-nav li{
	width: 40%;
}
.ft-nav li a {
	font-size: var(--FZ_18);
	font-weight: bold;
	display: block;
	position: relative;
}
.ft-nav li a::after{
 content: "";
	background: url(../images/nav-arrow.svg) no-repeat;
	background-size: contain;
 display: inline-block;
 width: 9px;
 height: 6px;
 position: absolute;
	right: 0;
 top: 50%;
	transform: translateY(-50%);
	transition: .3s;
}
.ft-bottom {
	background: #211714;
}
.ft-logoContainer {
	display: flex;
	align-items: center;
	justify-content: center;
}
.ft-logo__sns {
	display: flex;
	align-items: center;
	gap: var(--GAP_15);
}
.ft-foot__info{
	text-align: center;
	color: var(--WHITE);
}
.ft-foot__info--tel a{
	color: var(--WHITE);
}
.ft-foot__info--tel a span{
	margin-left: .5em;
}
.ft-foot__info--copy{
	font-size: var(--FZ_10);
}
.ft-foot__info--note{
	font-size: var(--FZ_10);
}
@media screen and (min-width: 768px){
	.ft-logoContainer {
		gap: var(--GAP_20);
		margin-bottom: var(--GAP_20);
	}
	.ft-logo__img {
		max-width: 130px;
	}
	.ft-logo__sns li {
		width: 32px;
	}
	.ft-foot__info--tel{
		margin-bottom: 20px;
	}
	.ft-foot__info--tel a{
		font-size: var(--FZ_16);
	}
	.ft-nav li a:hover::after {
		transform: translate(5px, -50%);
		transition: .3s;
	}
	.ft-bottom {
		padding: clamp(40px, 8vw, 70px) 0 calc(var(--GENERALSEC) / 2);
	}

}
@media screen and (max-width: 767px){
	.ft-logoContainer {
		flex-direction: column-reverse;
		gap: var(--GAP_50);
		margin-bottom: var(--GAP_65);
	}
	.ft-logo__img {
		max-width: 170px;
	}
	.ft-logo__sns li {
		width: 30px;
	}
	.ft-foot__info--tel {
		font-size: var(--FZ_14);
		background: var(--WHITE);
		width: 90%;
		max-width: 300px;
		margin: 0 auto 20px;
		color: var(--BLACK);
		padding: 3px 20px;
		border-radius: 20px;
	}
	.ft-foot__info--tel a{
		color: var(--BLACK);
		font-size: var(--FZ_14);
	}
	.ft-foot__info--copy {
		margin-bottom: 5px;
	}
	.ft-bottom {
		padding: var(--GENERALSEC) 0;
	}

}


/* ページトップ */
.pagetop{
	position: fixed;
	z-index: 99;
	width: 55px;
	height: auto;
	aspect-ratio: 55 / 63;
}
@media screen and (min-width: 768px){
	.pagetop{
		bottom: 90px;
		right: 3%;
	}
}
@media screen and (max-width: 767px){
	.pagetop{
		bottom: 90px;
		right: 10px;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
	display: grid;
}
@media screen and (min-width: 768px){
	.g-btnContainer{
		margin-top: var(--GAP_50);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer{
		margin-top: 30px;
		width: 100%;
	}
}
/* コンテナベース - 横並び */
.g-btnContainer--horizontal{
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 768px){
	.g-btnContainer--horizontal{
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.g-btnContainer--horizontal{
		gap: 10px;
	}
}
/* ボタンベース */
.g-btn{
	width: 100%;
}
.g-btn > a{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.2em;
	border-radius: 30px;
	position: relative;
}
@media screen and (min-width: 768px){
	.g-btn{
		max-width: 300px;
	}
	.g-btn > a{
		min-height: 50px;
	}
}
@media screen and (max-width: 767px){
	.g-btn{
		max-width: 250px;
	}
	.g-btn.g-btn--blue{
		max-width: 280px;
	}
.g-btn > a{
		min-height: 50px;
	}
}
/* ボタンベース_フォントサイズ */
@media screen and (min-width: 768px){
	.g-btn__label{
		font-size: var(--FZ_14);
	}
}
@media screen and (max-width: 767px){
	.g-btn__label{
		font-size: 12px;
	}
}
/* カラーバリエーション */
.g-btn--white > a{
	background-color: var(--WHITE);
}
.g-btn--black > a{
	background-color: var(--BLACK);
	color: var(--WHITE);
}
.g-btn--yellow > a{
	background-color: var(--YELLOW01);
	color: var(--BLACK);
}
.g-btn--blue > a{
	background-color: var(--BLUE01);
	color: var(--WHITE);
}
@media (hover: hover){
	.g-btn > a:hover{
		opacity: 1;
	}
	.g-btn--white > a:hover{
		opacity: 1;
		color: var(--WHITE);
		background-color: var(--GRAY03);
	}
	.g-btn--black > a:hover{
		opacity: 1;
		color: var(--WHITE);
		background-color: var(--GREEN);
	}
	.g-btn--yellow > a:hover{
		opacity: 1;
		color: var(--BLACK);
		background-color: var(--YELLOW02);
	}
	.g-btn--blue > a:hover{
		opacity: 1;
		color: var(--BLACK);
		background-color: var(--BLUE02);
	}
}
/* 大きさ - long */
.g-btn--long{
	width: var(--INNER_WIDTH);
	max-width: 388px;
}
/* 大きさ - small */
@media screen and (min-width: 768px){
	.g-btn--small{
		max-width: 150px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 40px;
	}
	.g-btn--small .g-btn__label{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--small{
		max-width: 128px;
	}
	.g-btn--small > a{
		padding: 7px 0;
		min-height: 30px;
	}
	.g-btn--small .g-btn__label{
		font-size: 10px;
	}
}
/* タイプ - center */
.g-btn--center{
	margin-inline: auto;
}
/* タイプ - arrow */
.g-btn--arrow > a{
	position: relative;
}
.g-btn--arrow > a::after{
	content: "";
	background: url(../images/common/arrow_bk.svg) no-repeat;
	background-size: contain;
	width: 6px;
	height: 10px;
	position: absolute;
}
.g-btn--arrow.g-btn--white > a::after{
	color: var(--BLACK);
}
.g-btn--arrow.g-btn--black > a::after{
	color: var(--WHITE);
}
@media screen and (min-width: 768px){
	.g-btn--arrow > a::after{
		top: 40%;
		right: 30px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow > a::after{
		top: 40%;
		right: 30px;
	}
}
/* タイプ - return */
.g-btn--arrow.g-btn--return a::after{
	transform: rotate(180deg) translateX(5px);
	right: unset;
}
@media screen and (min-width: 768px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--return a::after{
		left: 10px;
	}
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after{
	transform: rotate(90deg);
}
@media screen and (min-width: 768px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 12px;
		top: 35%;
		right: 10px;
	}
}
@media screen and (max-width: 767px){
	.g-btn--arrow.g-btn--anchor > a::after{
		font-size: 10px;
		top: 37%;
		right: 10px;
	}
}
/* -------------------swiper---------------------- */
[class*="swiper-button-"]{
	display: inline-block;
	background: url(../images/arrow_left.png) no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 45%;
	z-index: 2;
}
.swiper-button-prev{
	left: calc( 10% - 30px);
}
.swiper-button-next{
	right: 5%;
	transform: rotate(180deg);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
	content: none !important;
}

@media (hover: hover){
  [class*="swiper-button-"]{
    transition: .3s;
  }
	[class*="swiper-button-"]{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	[class*="swiper-button-"]{
		width: 54px;
		height: 54px;
	}
}
@media screen and (max-width: 767px){
	[class*="swiper-button-"]{
		width: 50px;
		height: 50px;
	}
	.swiper-button--prev{
		left: 35px;
	}
	.swiper-button--next{
		right: 35px;
	}
}
/* -------------------swiper-pagination-------------------- */
.swiper-pagination-bullet-active {
	background: var(--GREEN);
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: -20px;
	position: relative;
}

@media screen and (min-width: 768px){
	.swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
}
@media screen and (max-width: 767px){
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
}

/* -----------------タブ切り替え追加css----------------- */
@media screen and (min-width: 901px){
	.g-service,
	.g-example {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width:441px) and (max-width:900px) {
	.g-example {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width:551px) and (max-width:900px) {
	.g-service {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 440px){
	.g-example {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 550px){
	.g-service {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px){
	.tab-wrap--service .tab-nav,
	.tab-wrap--example .tab-nav {
		margin-bottom: var(--GAP_50);
	}
	.tab-wrap--service .tab-btn,
	.tab-wrap--example .tab-btn	{
		font-size: var(--FZ_16);
	}
	.g-service__sub{
		font-size: var(--FZ_12);
	}
	.g-example__ttl{
		font-size: var(--FZ_15);
	}
	.g-service__ttl {
		font-size: var(--FZ_16);
	}
	.g-service__ttl span::after{
		content: "";
		background: url(../images/common/arrow_yw.svg) no-repeat;
		background-size: contain;
		display: inline-block;
		position: absolute;
		width: 18px;
		height: 22px;
		right: -22px;
		top: 15%;
		}

}
@media screen and (max-width: 767px){
	.tab-nav{
		display: flex;
	}
	.tab-btn{
		flex: 1;
	}
	.tab-contents {
			height: 0;
			overflow: hidden;
			opacity: 0;
	}
	.tab-contents.show {
		cursor: auto;
			height: auto;
			overflow: unset;
			opacity: 1;
			transition: .5s opacity;
	}

}

/* fatNav */
.fn-nav{
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 80%;
	margin: 0 auto 50px;
}
.fn-nav__logo {
	max-width: 230px;
	margin-bottom: var(--GAP_50);
}
.fn-nav__logo a{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.fn-nav li a{
	font-size: var(--FZ_18);
	padding: 10px .5em;
	display: block;
	position: relative;
}
.fn-nav li a::after{
	content: "";
	background: url(../images/nav_arrow_sp.svg) no-repeat;
	background-size: contain;
	width: 14px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.fn-nav li a::before{
	content: "";
	position: absolute;
	bottom: -10px;
	width: 100%;
	left: 0;
	content: '';
	background-image: linear-gradient(to right, #E5E5E5, #E5E5E5 6px, transparent 6px, transparent 6px);
	background-size: 12px 100%;
	background-repeat: repeat-x;
	height: 1px;
	z-index: 2;
}
.fn-nav__bnr {
	width: 80%;
	margin-inline: auto;
}
/* アニメーション */
@media screen and (min-width: 768px){
/* ホバーズーム */
	.hover-zoom {
		overflow: hidden;
	}
	.hover-zoom a:hover,
	.hover-zoom:hover,
	.hover-zoom:hover img{
		opacity: 1;
	}
	.hover-zoom img {
		display: block;
		width: 100%;
		height: auto;
		transition: transform 0.3s ease;
		transform-origin: center center;
	}
	.hover-zoom:hover img {
		transform: scale(1.1);
		opacity: 1 !important;
	}

/* バーバウンス */
	.hover-bounce {
		transition: transform 0.3s ease;
	}
	.hover-bounce a:hover,
	.hover-bounce:hover,
	.hover-bounce:hover img{
		opacity: 1 !important;
	}
	.hover-bounce:hover img{
		animation: bounce 0.5s;
	}
	@keyframes bounce {
		0%   { transform: translateY(0); }
		30%  { transform: translateY(-10px); }
		50%  { transform: translateY(0); }
		70%  { transform: translateY(-5px); }
		100% { transform: translateY(0); }
	}
}

/* フェードアップ */
.fadeupTrigger {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeupTrigger.is-visible {
	opacity: 1;
	transform: translateY(0);
}







.ft-fixedBnr {
  position: fixed;
  z-index: 1000;
  display: grid;
  gap: 10px;
}
.ft-fixedBnr li{
  position: relative;
}
.ft-fixedBnr li button {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  z-index: 1;
}
.ft-fixedBnr li button::before{
  content: "";
  display: inline-block;
  --MASK: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODk2QjU4O30KPC9zdHlsZT4KPGcgaWQ9IuOCsOODq+ODvOODl180MzQ5MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgzOS42ODkgNzE1LjIzOCkgcm90YXRlKC00NSkiPgoJCgkJPHJlY3QgeD0iMTA5MS45OTEiIHk9IjE1MC4xMjQiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDIuNTM1MTU5ZS0wNiAtMi41MzUxNTllLTA2IC0xIDIxOTguOTgxIDYwMC4yNDUxKSIgY2xhc3M9InN0MCIgd2lkdGg9IjE0Ljk5OSIgaGVpZ2h0PSIzMDAiLz4KCQoJCTxyZWN0IHg9Ijk0OS40NzYiIHk9IjI5Mi42MiIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMi41MzUxNTllLTA2IC0yLjUzNTE1OWUtMDYgLTEgMjE5OC45NTE5IDYwMC4yMzY2KSIgY2xhc3M9InN0MCIgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNC45OTkiLz4KPC9nPgo8L3N2Zz4K) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: #000;
  aspect-ratio: 1/1;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (hover: hover){
  .ft-fixedBnr li button:hover{
    cursor: pointer;
  }
}
@media screen and (min-width: 768px){
	.ft-fixedBnr{
		bottom: 166px;
		right: 42px;
	}
	.ft-fixedBnr li{
		width: 55px;
	}
}
@media screen and (max-width: 767px){
	.ft-fixedBnr{
		bottom: 164px;
		right: 18px;
	}
	.ft-fixedBnr li{
		width: 40px;
	}
}