@charset "utf-8";
/* CSS関数設定 */
:root{
	/* カラーパレット */
	--WHITE: #ffffff;
	--FONT_WHITE: #ececec;
	--BLACK: #000;
	--BLACK_OP30: rgba(0,0,0,0.3);
	--BLACK_OP70: rgba(0,0,0,0.7);
	--GRAY01: #F0F0F0;
	--GRAY02: #D1D1D1;
	--GRAY03: #A7A7A7;
	--GRAY04: #707070;
	--GRAY05: #424242;
	--GRAY06: #2e2e2e;
	--GRAY07: #888888;
	--GRAY08: #aaaaaa;
	--GRAY09: #555555;
	--DARK01: #232323;
	--DARK02 : #212121;
	--GREEN01: #396D22;
	--YELLOW01: #FFF07C;
	--YELLOW02: #FFD43B;
	--BLUE01: #00B4FF;
	--PURPLE01: #ba6fdd;
	--RED01: #dc3b3b;

	--GRADIATION01: #B721FF;
	--GRADIATION02: #5ce1ff;
	/* テキストベースカラー */
	--TXT_COLOR: var(--DARK01);
	/* ランキングカラー */
	--RANKING_1ST: #be9640;
	--RANKING_2ND: #949393;
	--RANKING_3RD: #bf804c;
	--RANKING_OTHER: #4d4c4b;
	/* 共通角丸 */
	--COMMON_BDRS: 5px;
	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px #b5b5b5;
  /* ベースフォント */
  --FF_BASE: "Noto Sans JP", serif;
  /* 明朝体 */
  --FF_MINCHO:  'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	/* 英数字フォント */
	--FF_NUM: 'Bitter', serif;
	--FF_EN: 'Bitter', serif;
	--FF_MPLUS: 'M PLUS Rounded 1c', sans-serif;
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out .6s forwards;
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media screen and (min-width: 768px){
	:root{
		/* セクション余白 */
		--GENERALSEC: 150px;
		/* マージン */
		--MG_S: 20px;
		--MG_M: 50px;
		--MG_L: 100px;
		/* インナー幅 */
		--INNER_WIDTH: 95%;
		--MAX_WIDTH: 1280px;
	}
}
@media screen and (max-width: 767px){
	:root{
		/* セクション余白 */
		--GENERALSEC: 60px;
		/* マージン */
		--MG_S: 20px;
		--MG_M: 50px;
		--MG_L: 100px;
		/* インナー幅 */
		--INNER_WIDTH: 85%;
	}
}
/* リセット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: normal;font-size: 100%;margin: 0;}
p{margin: 0;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: 400;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.1em;
	width:100%;
	background-color: var(--DARK02);
	color: var(--FONT_WHITE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
.body-container{
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 77px);
}
main{
	flex: 1;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--FONT_WHITE);
}
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 input[type="checkbox"],
.formReset select{
	background-color: unset;
	color: var(--TXT_COLOR);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--FF_BASE);
	color: var(--TXT_COLOR);
}
time{
	font-family: var(--FF_NUM);
}
/* フォントCSS */
.mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.bitter,
[class*="en"]{
	font-family: 'Bitter', serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.generalmg{
	margin-bottom: var(--GENERALSEC);
}
.generalpd{
	padding: var(--GENERALSEC) 0;
}
/* グリッド、フレックス */
.grid{
	display: grid;
}
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
/* スライダー読み込みまで非表示 */
.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;
}
/* タイトルの文字間 */
[class*="ttl"]{
  letter-spacing: 0.1em;
}
/* テキスト行間 */
[class*="txt"],
[class*="excerpt"],
[class*="name"]{
  line-height: 2;
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px !important;
	}
	body{
		font-size: 15px;
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
  .formReset input[type="checkbox"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.inner,
	.pc-inner{
		width: var(--INNER_WIDTH);
		max-width: var(--MAX_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.sp{
		display: none !important;
	}
	.hamburger{
		display: none !important;
	}
	.pc-tategaki{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.pc-order-1st { order: 1; }
	.pc-order-2nd { order: 2; }
	.pc-order-3rd { order: 3; }
	.pc-order-4th { order: 4; }
	.pc-order-5th { order: 5; }
	.pc-order-6th { order: 6; }
	.pc-order-7th { order: 7; }
	.pc-order-8th { order: 8; }
	.pc-order-9th { order: 9; }
	.pc-order-10th { order: 10; }
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 80px !important;
	}
	body{
		font-size: 14px;
		line-height: 1.6;
	}
	.inner,
	.sp-inner{
		width: var(--INNER_WIDTH);
		margin-left: auto;
		margin-right: auto;
	}
	.pc{
		display: none !important;
	}
	.sp-y-scroll{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-x-scroll{
		overflow-x: scroll;
		overflow-y: auto;
		padding-left: calc((100% - var(--INNER_WIDTH)) / 2);
		padding-right: calc((100% - var(--INNER_WIDTH)) / 2);
	}
	.sp-pc-tategaki{
		writing-mode: vertical-rl;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */

#popupSearch  .popup-box{
	min-height: unset;
	overflow-y: auto;
}
#popupSearch .popup-content{
	background-color: unset;
	box-shadow: unset
}
#popupSearch button.closePopup{
	background-color: unset;
	border: none;
}
#popupSearch button.closePopup::before{
	font-weight: 100;
	font-size: 50px;
}
.header-ttl__en{
	font-family: var(--FF_EN);
}
.header-ttl__ja{
	font-family: var(--FF_MPLUS);
}
@media (hover: hover){
	.header-ttl:hover{
		opacity: 1;
	}
	.header-search button.header-search__popupTrigger i{
		transition: .3s;
	}
	.header-search button.header-search__popupTrigger:hover i{
		animation: shake 0.8s ease-in-out;
	}
	@keyframes shake {
		0%, 100% {
			transform: translateX(0);
		}
		10%, 30%, 50%, 70%, 90% {
			transform: translateX(-5px);
		}
		20%, 40%, 60%, 80% {
			transform: translateX(5px);
		}
	}
}
#searchform{
	position: relative;
}
#searchform input[type="text"]{
	width: 100%;
	border: 1px solid var(--WHITE);
	border-radius: 70px;
	color: var(--FONT_WHITE);
}
#searchform input[type="text"]::placeholder{
	color: var(--GRAY03);
}
#searchform button[type="submit"]{
	aspect-ratio: 1/1;
	position: absolute;
	top: 50%;
	color: var(--FONT_WHITE);
	transform: translateY(-50%);
}
@media screen and (min-width: 768px){
	#popupSearch .popup-box{
		padding: 80px 30px;
	}
	#searchform input[type="text"]{
		font-size: 20px;
		padding: 20px 60px 20px 35px;
	}
	#searchform button[type="submit"]{
		font-size: 30px;
		right: 30px;
	}
	.popupSearch-keyword{
		display: flex;
		margin-top: 15px;
		padding: 0 20px;
	}
	.popupSearch-keyword__ttl{
		width: fit-content;
		font-size: 18px;
	}
	.popupSearch__tags{
		flex: 1;
		margin-left: 20px;
		gap: 20px 10px;
	}
	.popupSearch__tags li a{
		font-size: 16px;
		padding: 8px 10px 8px 23px;
	}
	.popupSearch__tags li a::before{
		left: 10px;
	}
}
#header{
	left: 50%;
	z-index: 999;
}
.header-logo img{
	filter: drop-shadow(0px 0px 16px rgba(255,255,255,0.6));
}
@media screen and (min-width: 768px){
	body{
		padding-top: 110px;
	}
	#header{
		position: fixed;
		top: 15px;
		width: 95%;
		transform: translateX(-50%);
	}
	.header-wrap{
		display: flex;
		align-items: center;
		gap: 10px;
		background-color: var(--GRADIATION01);
		background-image: linear-gradient(270deg, var(--GRADIATION01) 0%, var(--GRADIATION02) 85%);
		box-shadow: 0px 0px 31px 2px #727070;
		border-radius: 100px;
	}
	.header-container{
		flex: 1;
		padding: 5px 0px 5px clamp( 30px, 4vw, 50px);
		display: flex;
		align-items: center;
	}
	.header-logoContainer{
		width: fit-content;
		display: flex;
		align-items: center;
		gap: clamp( 10px, 1.1vw, 20px);
		margin-right: clamp( 15px, 2vw, 30px);
	}
	.header-logo{
		width: clamp( 150px, 18vw, 200px);
	}
	.header-catch{
		font-size: clamp( 10px, 1.1vw, 13px);
		color: var(--TXT_COLOR);
		text-shadow: 4px 2px 7px rgba(255, 255, 255);
	}
	.header-navContainer{
		flex: 1;
		max-width: 500px;
		margin-left: auto;
	}
	.header-nav{
		display: flex;
		padding: clamp( 10px, 1.2vw, 15px) 0;
	}
	.header-nav > li{
		flex-grow: 	1;
		text-align: center;
		position: relative;
	}
	.header-nav > li::before{
		content: "";
		display: inline-block;
		width: 100%;
		height: calc(100% + 30px);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: -1;
	}
	.header-nav > li:has(.header-childContainer){
		position: relative;
	}
	.header-nav > li:has(.header-childContainer)::after{
		font-family: 'Font Awesome 5 Pro';
		font-weight: 500;
		content: '\f107';
		font-size: 13px;
		color: var(--WHITE);
		position: absolute;
		bottom: -19px;
		left: 50%;
		transform: translateX(-50%);
	}
	.header-ttl{
		font-size: clamp( 11px, 1.2vw, 15px);
		display: block;
		height: clamp( 15px, 1.8vw, 23px);
		position: relative;
		color: var(--WHITE);
	}
	.header-ttl span{
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		transform-style: preserve-3d;
		transition: .2s;
	}
	.header-ttl__en{
		transform: rotateX(0deg);
		transform-origin: 0 50% -10px;
	}
	.header-nav li:hover .header-ttl__en{
		transform: rotateX(90deg);
	}
	.header-ttl__ja{
		transform: rotateX(-90deg);
    transform-origin: 0 50%  -10px;
		white-space: nowrap;
	}
	.header-nav li:hover .header-ttl__ja{
		display: block;
		transform: rotateX(0deg);
	}
	.header-childContainer{
		pointer-events: none;
		visibility: hidden;
		opacity: 0;
		z-index: -1;
		transition: .2s;
		padding-top: 28px;
		position: absolute;
		top: calc(100% - 10px);
		left: 50%;
		transform: translateX(-50%);
	}
	.header-nav > li[ontouchstart=""]:hover .header-childContainer{
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
		z-index: 99;
	}
	.header-child__nav{
		width: 150px;
		border: 1px solid var(--WHITE);
	}
	.header-child__nav li:not(:last-child){
		border-bottom: 1px solid var(--WHITE);
	}
	.header-child__nav li a{
		display: block;
		background-color: var(--BLACK_OP70);
		padding: 5px 0;
		color: var(--WHITE);
		font-family: var(--FF_EN);
		transition: .2s;
	}
	.header-child__nav li a:hover{
		background-color: var(--BLUE01);
		opacity: 1;
	}
	.header-search{
		width: fit-content;
	}
	.header-search button.header-search__popupTrigger{
		width: 63px;
		aspect-ratio: 1/1;
		border-left: 1px solid var(--WHITE);
		text-align: left;
		padding-left: 17px;
	}
	.header-search__popupTrigger i{
		font-size: 18px;
		color: var(--FONT_WHITE);
	}
}
@media screen and (max-width: 767px){
	body{
		padding-top: 72px;
	}
	#header{
		position: absolute;
		background-color: var(--GRADIATION01);
		background-image: linear-gradient(270deg, var(--GRADIATION01) 0%, var(--GRADIATION02) 65%);
		padding: 11px 0 7px;
		top: 10px;
		width: 95%;
		transform: translate(-50%,0%);
		border-radius: 50px;
		overflow: hidden;
	}
	body.scroll #header{
		position: fixed;
		animation: fadeIn .5s ease-in-out .3s forwards;
		opacity: 0;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
			transform: translate(-50%,-100%);
		}
		100% {
			opacity: 1;
			transform: translate(-50%,0%);
		}
	}
	.header-logo{
		width: 146px;
		margin: 0 auto 5px;
	}
	.header-catch{
		font-size: 9px;
		text-align: center;
		text-shadow: 1px 1px 9px var(--BLACK_OP30);
	}
}

/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
#footer{
	background-color: var(--GRADIATION01);
	background-image: linear-gradient(270deg, var(--GRADIATION01) 0%, var(--GRADIATION02) 85%);
	padding: 20px 0;
	border-radius: 30px 30px 0 0;
}
.footer-copy{
	font-size: 11px;
	text-align: center;
	color: var(--FONT_WHITE);
	letter-spacing: 0.2em;
	text-shadow: 1px 1px 9px var(--DARK02);
}
.footer-inner{
	margin: 0 auto;
	position: relative;
}
.footer-link li,
.footer-link li a{
	color: var(--FONT_WHITE);
	text-shadow: 1px 1px 9px var(--DARK02);
}
.footer-link li:first-child::after{
		content: '・';
	}
@media screen and (min-width: 1001px){
	.footer-link{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
}
@media screen and (min-width: 768px) and (max-width: 1000px){
	.footer-copy{
		margin-bottom: 10px;
	}
	.footer-link{
		justify-content: center;
	}
}
@media screen and (min-width: 768px){
	.footer-inner{
		width: 95%;
		max-width: 1280px;
	}
	.footer-link li a{
		padding: 5px;
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.footer-copy{
		margin-bottom: 10px;
	}
	.footer-copy .ja{
		font-size: 10px;
	}
	.footer-link{
		justify-content: center;
	}
	.footer-link li a{
		padding: 3px;
		font-size: 10px;
	}
}


/* ■■■■■■■■■■■■■■■■■■■■■■side■■■■■■■■■■■■■■■■■■■■■■ */


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* -----------------タブ切り替え共通css----------------- */
.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;
}
@media screen and (min-width: 768px){
	.tab-btn:hover{
		cursor: pointer;
	}
	.tab-btn.show{
		cursor: auto;
	}
}
/* -----------------ポップアップ共通css----------------- */
body.fixed {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
.popup-overlay {
  display: none; 
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup-overlay.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--WHITE);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-box{
	overflow-y: scroll;
}
.popup-overlay button.closePopup{
	position: absolute;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid var(--FONT_WHITE);
	background-color: var(--TXT_COLOR);
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}
.popup-overlay button.closePopup::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f00d';
	display: block;
	line-height: 1;
	height: 1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--FONT_WHITE);
}
@media (hover: hover){
	.popup-overlay button.closePopup:hover{
		cursor: pointer;
	}
}
@media screen and (min-width: 768px){
	.popup-overlay .popup-content{
		width: 95%;
		max-width: 900px;
	}
	.popup-overlay .popup-box{
		padding: 50px 30px;
		max-height: 90vh;
	}
	.popup-overlay button.closePopup{
		width: 40px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
}
@media screen and (max-width: 767px){
	.popup-overlay .popup-content{
		width: 90%;
	}
	.popup-overlay .popup-box{
		padding: 30px 15px;
		max-height: 80vh;
	}
	.popup-overlay button.closePopup::before{
		font-size: 23px;
	}
	.popup-overlay button.closePopup{
		width: 30px;
	}
	.popup-overlay button.closePopup::before{
		font-size: 18px;
	}
}

/* -------------------articleSec-------------------- */
.article__thumbContainer{
	position: relative;
}
.article__thumb{
	position: relative;
	z-index: 1;
}
.article__thumb img{
	aspect-ratio: 1200/630;
	object-fit: cover;
}
.article__bookmark{
	background-color: unset;
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
	position: absolute;
	z-index: 2;
}
.article__bookmark i{
	color: var(--YELLOW02);
	font-weight: 100;
	text-shadow: 0px 0px 20px var(--YELLOW01);
}
.article__bookmark.active i{
	font-weight: 900;
}
.article__cat{
	position: absolute;
	top: 0;
	z-index: 2;
}
.article__cat::after{
	content: "";
	display: inline-block;
	background: var(--BLUE01);
	filter: contrast(50%);
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	aspect-ratio: 1/1;
	position: absolute;
	top: 100%;
	left: 0;
}
.article__cat a{
	font-family: var(--FF_EN);
	display: block;
	width: fit-content;
	color: var(--WHITE);
	background-color: var(--BLUE01);
	line-height: 1;
}
.article__tags{
	display: flex;
	flex-wrap: wrap;
}
.article__tags li a{
	display: inline-block;
	border: 1px solid var(--GRAY02);
	border-radius: 70px 10px 10px 70px;
	line-height: 1;
	position: relative;
	clip-path: var(--TAG_CLIP_PATH);
	font-family: var(--FF_BASE);
	letter-spacing: 0.05em;
	text-shadow: 0px 0px 5px var(--DARK02);
}
.article__tags li a::before{
	content: '';
	border-radius: 50%;
	background-color: var(--GRAY02);
	aspect-ratio: 1/1;
	width: 3px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
@media (hover: hover){
	.article__cat{
		transition: .1s;
	}
	.article__cat:hover{
		left: -15px;
	}
	.article__cat a:hover{
		opacity: 1;
	}
	.article__thumb a:hover,
	.article__thumb a:hover img,
	.article__ttl a:hover{
		opacity: 1 !important;
	}
	.article__thumb a{
		display: block;
		overflow: hidden;
	}
	.article__thumb a img{
		transition: .3s;
	}
	.article__thumb a:hover img,
	.article article:has(.article__ttl a:hover) .article__thumb a img{
		transform: scale(1.1);
	}
	.article__bookmark i{
		transition: .5s;
	}
	.article__bookmark:hover i{
		transition: .3s;
		font-weight: 900;
		cursor: pointer;
	}
	.article__desc::before{
		content: "";
		display: inline-block;
		background-color: var(--GRADIATION01);
		background-image: linear-gradient(270deg, var(--GRADIATION01) 0%, var(--GRADIATION02) 85%);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		transition: transform .5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
		transform: scale(0, 1);
	 transform-origin: right top;
	}
	.article article:has(.article__thumb a:hover) .article__desc::before,
	.article article:has(.article__ttl a:hover) .article__desc::before{
		transform-origin:left top;
		transform:scale(1, 1);
	}
	.article__date,
	.article__ttl a{
		text-shadow: 0px 0px 5px var(--DARK02);
	}
	.article__tags li a:hover{
		opacity: 1;
		background: var(--BLUE01);
	}
}

@media screen and (min-width: 768px){
	.article{
		display: grid;
	}
	.article__cat{
		left: -10px;
	}
	.article__cat::after{
		width: 10px;
	}
	.article__cat a{
		font-size: 13px;
		padding: 5px 10px 5px 10px;
	}
	.article__desc{
		border-left: 3px solid var(--BLUE01);
		display: grid;
		grid-template: auto 1fr / auto 1fr;
		position: relative;
	}
	.article__date{
		writing-mode: vertical-rl;
		grid-row: 1 / span 2;
	}
	.article__ttl{
		line-height: 1.5;
	}
}
@media screen and (max-width: 767px){
	.article{
		display: grid;
		gap: 40px;
	}
	.article__cat{
		left: -10px;
	}
	.article__cat::after{
		width: 10px;
	}
	.article__cat a{
		font-size: 13px;
		padding: 5px 10px 5px 10px;
	}
	.article article .article__bookmark{
		top: 8px;
		right: 5px;
	}
	.article article .article__bookmark i{
		font-size: 25px;
	}
	.article__desc{
		border-left: 2px solid var(--BLUE01);
		display: grid;
		grid-template: auto 1fr / auto 1fr;
		position: relative;
	}
	.article article .article__desc{
		margin-top: 10px;
		padding: 5px;
	}
	.article__date{
		writing-mode: vertical-rl;
		grid-row: 1 / span 2;
	}
	.article article .article__date{
		font-size: 12px;
		margin: 0 10px 0 2px;
	}
	.article__ttl{
		line-height: 1.5;
	}
	.article article .article__ttl{
		font-size: 16px;
		margin: -5px 0 10px;
	}
	.article .article__tags{
		gap: 6px;
	}
	.article .article__tags li a{
		font-size: 10px;
		padding: 6px 6px 5px 15px;
	}
	.article .article__tags li a::before{
		left: 7px;
		width: 2px;
	}
}
/* -------------------g-heading-------------------- */
.g-heading:has(.g-heading__ja) .g-heading__en{
	line-height: 1.1;
}
.g-heading__en{
	display: block;
	text-align: center;
}
.g-heading__ja{
	display: block;
	text-align: center;
}
@media screen and (min-width: 768px){
	.g-heading{
		text-align: center;
		margin-bottom: 50px;
	}
  .g-heading__en{
		font-size: 50px;
	}
	.g-heading__ja{
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){
	.g-heading{
		text-align: center;
		margin-bottom: 20px;
	}
  .g-heading__en{
		font-size: 25px;
	}
	.g-heading__ja{
		font-size: 12px;
	}
}

/* -------------------breadcrumbs-------------------- */
.breadcrumbs{
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
}
.breadcrumbs li{
	display: flex;
	align-items: center;
}
.breadcrumbs__single{
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box !important;
}
.breadcrumbs li:not(:last-child)::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f105';
	display: inline-block;
}
.breadcrumbs li::before{
	display: inline-block;
	width: fit-content;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
}
.breadcrumbs__home::before{
	content: '\f015';
}
.breadcrumbs__postType::before{
	content: '\f07b';
}
.breadcrumbs__cat::before{
	content: '\f07c';
}
.breadcrumbs__single::before{
	content: '\f15b';
}
.breadcrumbs li a{
	display: block;
}

@media screen and (min-width: 768px){
	.breadcrumb{
		width: 95%;
		max-width: 1200px;
		margin: 30px auto 50px;
	}
	.breadcrumbs li,
	.breadcrumbs li a{
		font-size: 13px;
		line-height: 1;
	}
	.breadcrumbs li::before{
		font-size: 13px;
		min-width: 14px;
		margin-right: 3px;
	}
	.breadcrumbs li.breadcrumbs__single::before{
		min-width: 10px;
	}
	.breadcrumbs li:not(:last-child)::after{
		font-size: 10px;
		margin-inline: 5px 8px;
	}
}
@media screen and (max-width: 767px){
	.breadcrumb{
		width: 90%;
		margin: 20px auto 30px;
		row-gap: 5px;
	}
	.breadcrumbs li,
	.breadcrumbs li a{
		font-size: 11px;
		line-height: 1.2;
	}
	.breadcrumbs li::before{
		font-size: 12px;
		margin-right: 3px;
		min-width: 14px;
		text-align: center;
	}
	.breadcrumbs li.breadcrumbs__single::before{
		min-width: 8px;
	}
	.breadcrumbs li:not(:last-child)::after{
		font-size: 10px;
		margin-inline: 5px 8px;
	}
}

/* ------------------btn---------------- */
.btn{
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--FONT_WHITE) !important;
	position: relative;
	width: 100%;
	font-family: var(--FF_BASE);
	margin-inline: auto;
	border-radius: 35px !important;
	overflow: hidden;
}
.btn__label{
	color: var(--FONT_WHITE);
	text-shadow: 1px 1px 9px var(--DARK02);
}
@media (hover: hover){
	.btn:hover{
		opacity: 1;
	}
	.btn::before{
		content: "";
		display: inline-block;
		background-color: var(--GRADIATION01);
		background-image: linear-gradient(270deg, var(--GRADIATION01) 0%, var(--GRADIATION02) 85%);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		transition: transform .5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
		transform: scale(0, 1);
		transform-origin: right top;
	}
	.btn:hover::before{
		transform-origin:left top;
		transform:scale(1, 1);
	}
}
@media screen and (min-width: 768px){
	.btnContainer{
		margin-top: 50px;
	}
	.btn{
		max-width: 300px;
		min-height: 55px;
	}
	.btn__label{
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){
	.btnContainer{
		margin-top: 30px;
	}
	.btn{
		max-width: 280px;
		min-height: 40px;
		border-width: 1px;
	}
	.btn__label{
		font-size: 14px;
	}
}

.btnContainer--mt0{
	margin-top: 0;
}
/* ------------------準備中---------------- */
.ready{
	display: grid;
}
.ready::before{
	content: "";
	display: block;
	width: fit-content;
	margin-inline: auto;
	background: url(/asset2025/images/common/man_working.svg) no-repeat center center / 100%;
	aspect-ratio: 123/273;
}
.ready p{
	font-family: var(--FF_MPLUS);
	text-align: center;
}
@media screen and (min-width: 768px){
	.ready{
		gap: 20px;
	}
	.ready::before{
		width: 80px;
	}
	.ready p{
		font-size: 20px;
	}
}
@media screen and (max-width: 767px){
	.ready{
		gap: 20px;
	}
	.ready::before{
		width: 60px;
	}
	.ready p{
		font-size: 14px;
	}
}