@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
p iframe {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}
.article_box  p:has(img) {
    text-align: center;
}
.sp {
	display: none;
}
.area {
	padding: 60px 0;
	box-sizing: border-box;
}
.serif {
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}
.prata {
	font-family: "Prata", serif;
	font-weight: 400;
}
.txt_center {
	text-align: center;
}
.col_white {
	color: #fff;
}
.ttl01 {
	font-family: var(--prata);
	font-size: 8rem;
	padding: 0 3%;
}
.btn_more {
	font-family: var(--prata);
	font-size: 3.3rem;
	line-height: 1;
}
.btn_more span {
	position: relative;
	padding-left: 90px;
}

.btn_more span::before {
	position: absolute;
	content: "";
	width: 70px;
	height: 1px;
	background: #000;
	left: 0;
	top: 50%;
	transform: translateY(-50%) scaleX(1);
	transform-origin: left;
}

/* ホバーでアニメーション */
.btn_more a:hover {
	opacity: 1;
}
.btn_more a:hover span::before {
	animation: line-slide 0.6s ease forwards;
}

@keyframes line-slide {
	0% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: left;
	}
	50% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: left;
	}
	51% {
		transform: translateY(-50%) scaleX(0);
		transform-origin: right;
	}
	100% {
		transform: translateY(-50%) scaleX(1);
		transform-origin: right;
	}
}

@media screen and (max-width:1200px) {
	.ttl01 {
	font-size: 6rem;
	padding: 0 3%;
}
.btn_more {
	font-size: 3rem;
}

.area {
	padding: 40px 0;
}
}

@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}

	.ttl01 {
	font-size: 3.5rem;
	padding: 0 3%;
}

.btn_more span {
	padding-left: 30px;
}
.btn_more {
	font-size: 2rem;
}
.btn_more span::before {
  width: 20px;
}
}


/*hover時画像拡大*/

.img_hover .img img {
	transition: transform 0.4s ease;
	transform: scale(1);
}

a.img_hover:hover {
	opacity: 1;
}

.img_hover:hover .img img {
	transform: scale(1.08);
}


/*スクロール表示*/
.js-fade {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-show {
	opacity: 1;
	transform: translateY(0);
}

/* header
-------------------------------------------------------*/

/* =========================
   header
========================= */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	transform: translateY(-120%);
	opacity: 0;
	visibility: hidden;
	transition:
		transform 0.45s ease,
		opacity 0.45s ease,
		visibility 0.45s ease;
	background: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.is-show {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.header .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 10px 20px;
	min-height: 80px;
}

/* =========================
   logo
========================= */
.logo {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	margin: 0;
	font-family: var(--prata);
	font-size: 5rem;
}

.logo a {
	display: inline-block;
}


.logo a .logo_kana {
	height: 2.0rem;
	width: auto;
	display: inline-block;
	vertical-align: baseline;
	margin-left: 10px;
}
.logo img {
	display: block;
	max-height: 42px;
	width: auto;
}

@media screen and (max-width:768px) {
	.logo {
	font-size: 3.4rem;
}
.logo a .logo_kana {
	height: 1.8rem;
}
}

/* =========================
   center nav
========================= */
.g_nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--prata);
}

.g_nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.g_nav a {
	position: relative;
	display: inline-block;
	color: #111;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	padding: 4px 0;
	transition: opacity 0.3s ease;
	white-space: nowrap;
}

.g_nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: #111;
	transition: width 0.3s ease;
}

.g_nav a:hover {
	opacity: 0.7;
}

.g_nav a:hover::after {
	width: 100%;
}

/* =========================
   hamburger button
========================= */
.nav_btn {
	position: relative;
	z-index: 10001;
	width: 60px;
	height: 60px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	flex: 0 0 auto;
}

.nav_btn span {
	position: absolute;
	left: 50%;
	width: 40px;
	height: 1px;
	background: #111;
	border-radius: 999px;
	transform: translateX(-50%);
	transition:
		transform 0.35s ease,
		top 0.35s ease,
		opacity 0.25s ease,
		background 0.3s ease;
}

.nav_btn span:nth-child(1) {
	top: 15px;
}

.nav_btn span:nth-child(2) {
	top: 26px;
}

.nav_btn span:nth-child(3) {
	top: 37px;
}

.nav_btn.is-open span:nth-child(1) {
	top: 26px;
	transform: translateX(-50%) rotate(45deg);
}

.nav_btn.is-open span:nth-child(2) {
	opacity: 0;
}

.nav_btn.is-open span:nth-child(3) {
	top: 26px;
	transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   overlay menu
========================= */
.overlay_menu {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:opacity 0.35s ease,visibility 0.35s ease;
	padding: 150px 20px 0 20px;
}

.overlay_menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.overlay_nav {
	margin-right: 60px;
}

.overlay_nav ul {
	font-family: var(--prata);
}

.overlay_nav li + li {
	margin-top: 24px;
}

.overlay_nav a {
	display: inline-block;
	color: #111;
	font-size: 4rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay_nav a:hover {
	opacity: 0.6;
	transform: translateY(-2px);
}

.header.menu-open .g_nav {
	display: none;
}

/* =========================
   responsive
========================= */
@media screen and (max-width: 1200px) {
	.header .inner {
		padding: 10px 20px;
	}

	.g_nav ul {
		gap: 20px;
	}

	.g_nav a {
		font-size: 13px;
	}
}

@media screen and (max-width: 960px) {
	.header .inner {
		min-height: 72px;
		padding: 10px 20px;
	}

	.logo img {
		max-height: 36px;
	}

	.g_nav {
		display: none;
	}

	.nav_btn {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.overlay_menu {
		padding-top: 80px;
		padding-bottom: 30px;
	}
	.overlay_nav a {
		font-size: 2rem;
	}

	.overlay_nav li + li {
		margin-top: 10px;
	}
}

@media screen and (max-width: 500px) {
	.header .inner {
		min-height: 40px;
		padding: 5px 20px;
	}
	.logo img {
		max-height: 25px;
	}
	.nav_btn {
  height: 40px;
  width: 40px;
}
.nav_btn span:nth-child(1) {
  top: 6px;
}
.nav_btn span:nth-child(2) {
  top: 18px;
}
.nav_btn span:nth-child(3) {
  top: 30px;
}
.nav_btn.is-open span:nth-child(1) {
  top: 18px;
}
.nav_btn.is-open span:nth-child(3) {
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}
}



.overlay-menu_wrap {
	display: flex;
	justify-content: flex-start;
}

.overlay_cont {
	margin-left: 40px;
	padding: 50px;
	border: 1px solid #000;
}

.member_ttl {
	font-size: 4rem;
	margin-bottom: 30px;
	font-family: var(--prata);
}


.btn_membership {
	margin-top: 30px;
}

.btn_membership a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 300px;
	height: 56px;
	padding: 0 56px 0 32px;
	background: #000;
	color: #fff;
	text-decoration: none;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	position: relative;
	box-sizing: border-box;
	transition: opacity 0.3s ease;
}

.btn_membership a::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

.btn_membership a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.overlay-menu_wrap {
	display: block;
}


.overlay_cont {
	margin-left: 0px;
	margin-top: 30px;
	padding: 20px;
}

.member_ttl {
	font-size: 2rem;
	margin-bottom: 10px;
}


.btn_membership {
	margin-top: 30px;
}

.btn_membership a {
	min-width: 100%;
	font-size: 1.5rem;
}

.btn_membership a::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.overlay_menu.is-open {
	overflow: scroll;
}
}

/* index
-------------------------------------------------------*/
/* index_visual */
.index_visual {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1630 / 1080;
	overflow: hidden;
	max-height: 100vh;
	margin-bottom: 70px;
}

.index_visual_in {
	position: absolute;
	inset: 0;
}
.index_visual_img {
	position: absolute;
	top: 0;
	right: 0;
	width: 82%;
	height: 100%;
	aspect-ratio: 163 / 108;
	overflow: hidden;
	border-radius: 0 0 0 30px;
	height: 100%;
}

.index_visual_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*display: block;*/
	border-radius: 0 0 0 30px;
}
.index_visual_txt {
	position: absolute;
	top: 3%;
	left: 1%;
	height: 100%;
	font-family: var(--prata);
	font-size: clamp(2rem, 6.2vw, 10rem);
	writing-mode: vertical-rl;
	text-orientation: mixed;
	line-height: 1.2;
	z-index: 2;
	position: relative;
	white-space: nowrap;
	display: block;
	color: gray;
}


@media screen and (max-width: 768px) {
  .index_visual {
    height: 95dvh;
    aspect-ratio: unset;
    max-height: none;
  }

  .index_visual_img {
    height: 100%;
    aspect-ratio: unset;
  }

  .index_visual {
	margin-bottom: 35px;
  }
}

@media screen and (max-width: 600px) {
	.index_visual_txt_pc {
		display: none;
	}
	.index_visual_txt {
		font-size: 4rem;
	}
}

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

}


.index_visual_txt span {
	background: #fff;
	padding-bottom: 5%
}
.index_visual_txt::after {
	content: "";
	position: absolute;
	left: 22%;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: #ccc;
	z-index: -1;
}
.index_visual_logo {
	position: absolute;
	left: 7%;
	bottom: 0;
	margin: 0;
	font-family: var(--prata);
	font-size: clamp(2.5rem, 9vw, 15rem);
	line-height: 1;
	z-index: 2;
	max-width: 350px;
}
@media screen and (max-width:1100px) {

	.index_visual_logo {
		max-width: 220px;
	}

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

	.index_visual_logo {
		max-width: 200px;
	}

}

/* index_whatsnew */
.index_ttl_box {
	position: relative;
}
.index_ttl_box .btn_more {
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translate(0,-50%);
}
.ttl01_whatsnew {
	position: relative;
}
.ttl01_whatsnew::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_whatsnew.png)no-repeat center/600px 111px;
	width: 600px;
	height: 111px;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.list_whatsnew {
	position: relative;
}
.list_whatsnew .slick-prev,
.list_whatsnew .slick-next {
	top: auto;
	bottom: -40px;
	height: 24px;
	width: 24px;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s;
}
.list_whatsnew .slick-prev {
	left: calc(50% - 30px);
}
.list_whatsnew .slick-next {
	right: calc(50% - 30px);
}
.list_whatsnew:hover .slick-prev,
.list_whatsnew:hover .slick-next {
	opacity: 1;
}
.list_whatsnew li {
	width: calc(100%/3);
	position: relative;
}
.list_whatsnew .img {
	width: 100%;
	/*aspect-ratio: 64 / 45;*/
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 0 0 30px 0;
	height: 100%;
}
.list_whatsnew .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_whatsnew .txt_box {
	z-index: 2;
	color: #fff;
	font-weight: 300;
}
.list_whatsnew .txt_box .ttl {
	position: absolute;
	font-size: 1.6rem;
	line-height: 1.4;
	bottom: 20px;
	left: 20px;
	width: 100%;
}
.list_whatsnew .txt_box .txt {
	font-size: 1.2rem;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 100%;
	text-align: right;
}

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

	.list_whatsnew .txt_box .ttl {
		font-size: 1.7rem;
	}
}

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

	.list_whatsnew .txt_box .ttl {
		font-size: 1.2rem;
	}
}


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

.ttl01_whatsnew::before {
    transform: scale(0.66);
    transform-origin: left bottom;
  }

	.index_whatsnew {
		padding: 30px 0;
	}

.list_whatsnew {
	display: block;
}

.list_whatsnew li {
	width: 100%;
}

.list_whatsnew .txt_box .ttl {
	font-size: 1.2rem;
	bottom: 10px;
	left: 10px;
}

.list_whatsnew li .img {
	border-radius: 0;
}

.list_whatsnew li:first-child .img {
	border-radius:  0 30px 0 0;
}

.list_whatsnew li:last-child .img {
	border-radius:  0 0 0 30px;
}


}

/* index_regulars */
.index_regulars .index_ttl_box {
	width: 50%;
}
.ttl01_regulars {
	position: relative;
}
.ttl01_regulars::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_regulars.png)no-repeat center/500px 100px;
	width: 500px;
	height: 100px;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.list_regulars {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.list_regulars li {
	width: 50%;
}
.list_regulars li:nth-child(2) {
	margin-top: -120px;
}
.list_regulars li:last-child {
	margin-top: -120px;
}
.list_regulars li a {
	position: relative;
	color: #fff;
	display: block;
}
.list_regulars .img {
	width: 100%;
	/*aspect-ratio: 96 / 55;*/
	aspect-ratio: 16 / 9;
	overflow: hidden;
	z-index: 1;
	height: 100%;
}
.list_regulars .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_regulars li:first-child .img {
	border-radius: 0 30px 0 0;
}
.list_regulars li:nth-child(2) .img {
	border-radius: 30px 0 0 0;
}
.list_regulars li:nth-child(3) .img {
	border-radius: 0 0 30px 0;
}
.list_regulars li:last-child .img {
	border-radius: 0 0 30px 0;
}
.list_regulars .txt,.list_regulars .txt_en {
	position: absolute;
	width: 100%;
}
.list_regulars .txt {
	font-family: var(--notoserif);
	z-index: 2;
	bottom: 20px;
	left: 20px;
	right: 10%;
	width: auto;
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.4;
}
/*
.list_regulars .txt_en {
	font-family: var(--prata);
	z-index: 2;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 4rem;
	right: 20px;
	top: 25px;

}*/
.list_regulars .txt_en {
  font-family: var(--prata);
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: 4rem;
  right: 20px;
  top: 25px;
}

.list_regulars .txt_en .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.list_regulars .txt_en.is-show .char {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width:1200px) {
	.list_regulars .txt {
	font-size: 2rem;
}

.list_regulars .txt_en {
	font-size: 2rem;
}
}

@media screen and (max-width:1000px) {
	.index_regulars .index_ttl_box .btn_more {
		top:0%

	}
}

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

	.ttl01_regulars::before {
		transform: scale(0.66);
    transform-origin: left bottom;
	}

	.index_regulars {
		padding: 30px 0;
	}

	.list_regulars {
		display: block;
	}

	.list_regulars li {
		width: 100%;
	}

	.index_regulars .index_ttl_box {
		width: 100%;
	}

	.list_regulars li:nth-child(2) {
	margin-top: 0px;
}
.list_regulars li:last-child {
	margin-top: 0px;
}

.list_regulars .txt {
	font-size: 1.5rem;
}

.list_regulars .txt_en {
	font-size: 1.5rem;
}

.list_regulars li:nth-child(2) .img {
  border-radius: 0;
}

.list_regulars li:nth-child(3) .img {
	border-radius: 0;
}

.list_regulars li:last-child .img {
  border-radius: 0 0 0px 30px;
}

.index_regulars .index_ttl_box .btn_more {
		top:50%

	}

}

/* index_ranking */

.tag_txt {
	margin-left: 10px;
}

.index_ranking {
	padding-bottom: 0;
}

.ttl01_ranking {
	position: relative;
	text-align: right;
}

.ttl01_ranking::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_ranking.png) no-repeat center / 500px 100px;
	width: 500px;
	height: 100px;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.list_ranking a {
	position: relative;
	display: block;
}

.list_ranking .num {
	font-family: var(--prata);
	font-size: 4rem;
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 2;
}


.list_ranking li:nth-child(4) .num,
.list_ranking li:last-child .num {
	font-size: 4rem;
}

.list_ranking .img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	z-index: 1;
	border-radius: 0 30px 0 0;
}

.list_ranking .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.list_ranking .txt_box {
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-weight: 300;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 20px;
	z-index: 2;
}

.list_ranking .txt_box .ttl {
	font-size: 1.6rem;
	line-height: 1.4;
	margin-bottom: 10px;
}

.list_ranking .txt_box .txt {
	font-size: 1.2rem;
}

.list_ranking li:nth-child(3) .ttl,.list_ranking li:nth-child(4) .ttl,
.list_ranking li:last-child .ttl {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.list_ranking li:nth-child(3) .txt,.list_ranking li:nth-child(4) .txt,
.list_ranking li:last-child .txt {
	font-size: 1.2rem;
}

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

	.list_ranking .txt_box .ttl {
		font-size: 1.2rem;
		margin-bottom: 0px;
	}

	.list_ranking .txt_box .txt {
		font-size: 1.2rem;
	}

	.list_ranking .txt_box {
		padding: 10px;
	}

	.list_ranking li:nth-child(3) .ttl,
	.list_ranking li:nth-child(4) .ttl,
	.list_ranking li:last-child .ttl {
		font-size: 1.2rem;
		margin-bottom: 0px;
	}

}

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

	.index_ranking {
		padding: 0;
	}

	.list_ranking .num {
		font-size: 2.5rem;
		left: 10px;
		top: 10px;
	}

	.list_ranking .txt_box .ttl {
		font-size: 1.2rem;
		margin-bottom: 0px;
	}

	.list_ranking .txt_box .txt {
		font-size: 1.2rem;
	}

	.list_ranking .txt_box {
		padding: 10px;
	}

	.list_ranking li:nth-child(3) .ttl,
	.list_ranking li:nth-child(4) .ttl,
	.list_ranking li:last-child .ttl {
		font-size: 1.2rem;
		margin-bottom: 0px;
	}

	.list_ranking li:nth-child(4) .num,
	.list_ranking li:last-child .num {
		font-size: 2.5rem;
	}

}

@media screen and (min-width: 768px) {

	.list_ranking {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 0;
	}

	.list_ranking li:nth-child(1) {
		grid-column: 1 / 4;
		grid-row: 1;
	}

	.list_ranking li:nth-child(2) {
		grid-column: 4 / 7;
		grid-row: 1;
	}

	.list_ranking li:nth-child(3) {
		grid-column: 1 / 3;
		grid-row: 2;
	}

	.list_ranking li:nth-child(4) {
		grid-column: 3 / 5;
		grid-row: 2;
	}

	.list_ranking li:nth-child(5) {
		grid-column: 5 / 7;
		grid-row: 2;
	}

}

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

	.list_ranking {
		display: block;
	}

	.list_ranking .img {
		border-radius: 0;
	}

	.ttl01_ranking::before {
		transform: scale(0.66);
		transform-origin: right bottom;
	}

}



/* index_movie */
.index_movie {
	background: url(../img/index/shadow_movie.png)no-repeat left center/contain;
	background-color: #f0efef;
	padding-top: 100px;
}
.index_movie_box {
  max-width: 1240px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.index_movie_box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}
.index_movie .btn_more {
	text-align: right;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {

}

/* index_instagram */
.ttl01_instagram {
	position: relative;
}
.ttl01_instagram::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_ig.png)no-repeat center/708px 109px;
	width: 708px;
	height: 109px;
	left: 0;
	bottom: 0;
	z-index: -1;
}
/*
.ttl01_instagram span {
	position: relative;
	padding-left: 110px;
}
.ttl01_instagram span::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/icon_ig_l.png)no-repeat center/81px 81px;
	width: 81px;
	height: 81px;
	left: 0;
	top: 20px;
}*/
.ttl01_instagram .ttl01_instagram_inner {
	position: relative;
	display: inline-block;
	padding-left: 90px; /* アイコン分の余白 */
}

.ttl01_instagram .ttl01_instagram_inner::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/common/icon_ig_l.png) no-repeat center/81px 81px;
	width: 81px;
	height: 81px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}


.list_ig {
	display: flex;
	gap: 15px;
	padding: 30px 20px;
}
.list_ig li {
	width:20%;
}
.list_ig li img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.list_ig {
		flex-direction: column;
	}
	.list_ig li {
		width: 100%;
	}
}

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

	.index_instagram {
		padding: 30px 0;
	}

	.ttl01_instagram::before {
		transform: scale(0.66);
    transform-origin: left bottom;
	}


.ttl01_instagram .ttl01_instagram_inner {
	padding-left: 50px;
}
.ttl01_instagram .ttl01_instagram_inner::before {
  transform: translateY(-50%) scale(0.4);
  transform-origin: left center;
  bottom: auto;
  top: 50%;
}

}

/* index_editor */

.ttl01_editor {
	position: relative;
}
.ttl01_editor::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_ep.png)no-repeat center/881px 132px;
	width: 881px;
	height: 132px;
	left: 0;
	bottom: 0;
	z-index: -1;
}

.list_editor {
	padding: 0 2%;
	display: flex;
	flex-flow: row wrap; /* ←ここ */
	align-items: flex-start;
	justify-content: flex-start; /* ←これも変更 */
	gap: 2%;
}
.list_editor li {
	width: calc((100% - 4%) / 3);
	margin-bottom: 100px;
}
.list_editor li .img {
	width: 100%;
	/*aspect-ratio: 58 / 40;*/
	aspect-ratio: 16 / 9;
	overflow: hidden;
	z-index: 1;
	border-radius: 0 0 30px 0;
	margin-bottom: 15px;
	height: 100%;
}
.list_editor li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_editor li .date {
	font-weight: 300;
	margin-bottom: 5px;
}
.list_editor li .ttl {
	font-size: 1.8rem;
	font-weight: 500;
}

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

	.ttl01_editor {
		text-align: left;
	}

	.ttl01_editor::before {
		transform: scale(0.66);
    transform-origin: left bottom;
	left: -20px;
	}

	.list_editor {
		display: block;
	}
	.list_editor li {
		width: 100%;
		margin-bottom: 30px;
	}

	.list_editor li .date {
		font-size: 1.2rem;
	}

	.list_editor li .ttl {
		font-size: 1.5rem;
	}

}

/* index_bookshelf */
.index_bookshelf {
	background: #000;
	border-radius: 0 30px 0 0;
}
.ttl01_bookshelf {
	position: relative;
}
.ttl01_bookshelf span {
	position: relative;
	z-index: 2;
}
.ttl01_bookshelf::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/index/shadow_bs.png)no-repeat center/693px 129px;
	width: 693px;
	height: 129px;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.list_bs {
	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
	max-width: 1300px;
	padding: 0 4%;
	margin: 0 auto;
	gap: 4%;
}
.list_bs li {
	background: #fff;
	border-radius: 0 30px 0 30px;
	padding: 30px 20px;
	width: calc((100% - 4%)/2);
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
}
.list_bs li .img {
	width: 40%;
	aspect-ratio: 24 / 35;
	overflow: hidden;
	z-index: 1;
	margin-bottom: 15px;
	height: 100%;
}
.list_bs li .img img {
	width: 100%;
	/*height: 100%;
	object-fit: cover;*/
}
.list_bs li .txt_box {
	width: 60%;
	margin-left: 5%;
}
.list_bs li .ttl {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.list_bs li .author {
	font-size: 1.4rem;
	font-size: 500;
	margin-bottom: 10px;
}
.list_bs li .info {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 20px;
}

.btn_buy {
	margin-top: 5px;
}
.btn_buy a {
	width: 200px;
	height: 35px;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 500;
	border-radius: 3px;
	border: 1px solid #d6d6d6;
	position: relative;
}

.btn_buy a::after {
  content: "";
  position: absolute;
  right:10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

.btn_buy a:hover {
	background: #000;
	color: #fff;
	border: 1px solid #000;
	opacity: 1;
}

.btn_buy a:hover::after {
  content: "";
  position: absolute;
  right:10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

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

	.ttl01_bookshelf::before {
		transform: scale(0.55);
    transform-origin: left bottom;
	left: -20px;
	}

	.list_bs {
		display: block;
	}

	.list_bs li {
		width: 100%;
		margin-bottom: 30px;
		display: block;
	}

	.list_bs li .img {
		width: 50%;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.list_bs li .txt_box {
		width: 100%;
		margin-left: 0;
	}

	.btn_buy a {
		margin: 0 auto;
		margin-top: 10px;
	}

	

}

/* index_hashtag */
.list_hashtag li {
	margin-right: 50px;
	width: auto;
}
.list_hashtag a {
	font-family: var(--prata);
	font-size: 3rem;
	white-space: nowrap;
	display: inline-block;
	position: relative;
}

/* 下線 */
.list_hashtag a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 14px;
	width: 100%;
	height: 10px;
	background: rgba(0,0,0,.1);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
}

/* ホバー時：右→左に伸びる */
.list_hashtag a:hover::after {
	transform: scaleX(1);
	transform-origin: right;
}

.list_hashtag a:hover {
	opacity: 1;
}


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

	.list_hashtag a {
		font-size: 1.5rem;
	}

	.index_hashtag {
		padding: 30px 0;
		padding-bottom: 0;
	}

}

/* index_about */
.index_about {
	background: url(../img/index/shadow_about.png)no-repeat right center/contain;
}
.index_about_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	padding: 0 4%;
}
.index_about_box .img {
	width: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	z-index: 1;
	border-radius: 0 0 0 30px;
	height: 100%;
}
.index_about_box .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index_about_box .txt_box {
	width: 50%;
	padding-left: 5%;
}
.index_about_box .txt_box .ttl {
	font-family: var(--notoserif);
	font-size: clamp(2.5rem, 3vw, 5rem);
	letter-spacing: 0.01em;
	line-height: 2;
	white-space: nowrap;
	margin-bottom: 30px;
}
.index_about_box .txt_box ruby {
	ruby-position: over;
}
.index_about_box .txt_box rt {
	font-size: 0.5em;
}
.index_about_box .txt_box .txt {
	font-weight: 300;
	line-height: 2;
	white-space: nowrap;
}
br.pc { display: block; }
br.sp { display: none; }
br.sp.pc { display: block; }

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

	.index_about_box {
		display: block;
	}
	.index_about_box .img {
		width: 100%;
		margin-bottom: 30px;
	}
	.index_about_box .txt_box {
		width: 100%;
		padding: 0;
	}
	.index_about_box .txt_box .ttl {
		margin-bottom: 15px;
	}
	br.sp { display: block; }

}


/* footer
-------------------------------------------------------*/
.footer {
	background: #f0efef;
	border-radius: 0 30px 0 0;
	padding: 100px 20px 130px;
	text-align: center;
}
.nav_footer,.nav_sns {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
.nav_footer {
	margin-bottom: 80px;
}
.nav_footer li {
	margin: 0 15px;
}
.nav_sns li {
	margin: 0 10px;
}
.footer_icon_x {
	max-width: 22px;
}
.footer_icon_yt {
	max-width: 31px;
}
.footer_icon_ig {
	max-width: 25px;
}
.footer_icon_tt {
	max-width: 24px;
}
.footer_icon_line {
	max-width: 25px;
}
.footer_logo {
	text-align: center;
	font-family: var(--prata);
	font-size: 5rem;
	
	max-width: 150px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.copy {
	font-family: var(--prata);
	font-size: 1.2rem;
	margin-top: 50px;
}

@media screen and (max-width:768px) {
	.footer {
		padding: 50px 20px;
	}
	.nav_footer {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.copy {
		font-size: 1rem;
	}
	.nav_footer li {
	margin: 0 5px;
	font-size: 1.2rem;
}
.footer_logo {
	max-width: 100px;

}
	
}

/* article
-------------------------------------------------------*/

.pager {
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	align-items: center;
	gap: 8px;
}

.pager_link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid #dcdcdc;
	background: #fff;
	color: #555;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	box-sizing: border-box;
	transition: 0.2s;
	position: relative;
	border-radius:  0 0 10px 0 ;
}

.pager_link:hover {
	background: #f5f5f5;
	color: #222;
}

.pager_link.is-current {
	background: #2f3138;
	border-color: #2f3138;
	color: #fff;
	pointer-events: none;
}

.pager_prev::before,
.pager_next::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #555;
	border-right: 1px solid #555;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	transition: 0.2s;
}

.pager_prev::before {
	transform: translate(-50%, -50%) rotate(-135deg);
}

.pager_next::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.pager_prev:hover::before,
.pager_next:hover::before {
	border-color: #222;
}

@media screen and (max-width: 767px) {
	.pager {
		gap: 6px;
	}

	.pager_link {
		width: 32px;
		height: 32px;
		font-size: 13px;
	}
}

.pager_link:hover {
	background: #f5f5f5;
	color: #222;
}

.pager_link.is-current {
	background: #2f3138;
	border-color: #2f3138;
	color: #fff;
	pointer-events: none;
}

.pager_next {
	font-size: 18px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
	.pager {
		gap: 6px;
	}

	.pager_link {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}
}


.page_visual {
	padding: 100px 30px;
	/*background: #F0EFEF;*/
	background: url(../img/article/page_bg01.png) no-repeat;
	background-size: cover;
	border-radius:  0 0 0 30px;
}

.page_ttl_sub {
	font-family: var(--notoserif);
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 30px;
}

.page_ttl {
	text-align: center;
	line-height: 1.2;
}

.page_ttl span {
	font-size: 3rem;
	font-family: var(--notoserif);
	display: block;
	margin-top: 15px;
}

@media screen and (max-width: 768px) {
.page_visual {
	padding: 50px 30px;
}
.page_ttl_sub {
	font-size: 1.5rem;
	margin-bottom: 20px;
}
	.page_ttl span {
	font-size: 1.5rem;
}
}

.overlay_book_wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	margin-top: 30px;
}

.overlay_book {
	width: 40%;	
}

.overlay_book_txt {
	width: 55%;
}

.overlay_book_txt .txt {
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
	.overlay_book_wrap {
		display: block;
	}
	.overlay_book {
	width: 50%;
	margin: 0 auto;
}
.overlay_book_txt {
	width: 100%;
	margin-top: 20px;
}
}



/* article-detail
-------------------------------------------------------*/

.article_detail_visual {
	min-width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1200px) {
	.article_detail_visual {
	min-width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

}

.article_ttl {
	font-family: var(--notoserif);
	font-weight: 550;
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.article_tag {
	font-family: var(--prata);
}


@media screen and (max-width: 768px) {
.article_ttl {
	font-size: 2rem;
}
}


.article_detail_wrap {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.article_detail_L {
	width: 70%;
}

.article_detail_R {
	width: 20%;
}

@media screen and (max-width: 1200px) {
	.article_detail_wrap {
		padding: 0 20px;
	}
}

@media screen and (max-width: 768px) {
	.article_detail_wrap {
		display: block;
		padding: 0;
	}
	.article_detail_L {
	width: 100%;
}

.article_detail_R {
	width: 100%;
	margin-top: 30px;
}
}


.article_index {
	padding: 30px;
	border-top: 1px solid #F0EFEF;
	border-bottom: 1px solid #F0EFEF;
}

.article_index_ttl {
	font-family: var(--prata);
	font-size: 4rem;
	margin-bottom: 10px;
}

.article_index_ttl span {
	display: inline-block;
	margin-left: 70px;
	position: relative;
	font-size: 2rem;
	font-family: var(--notoserif);
}

.article_index_ttl span::before {
	content: "";
	width: 50px;
	height: 1px;
	background: #000;
	position: absolute;
	left: -60px;
	top: 50%;
}

.article_index_list {
	padding-left: 1em;
}

.article_index_list li {
	list-style:decimal;
	margin-bottom: 10px;
}

.article_index_list li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.article_index_ttl {
	font-size: 2rem;
}
.article_index_ttl span {
	font-size: 1.5rem;
}

}


.article_box {
	margin-top: 100px;
}

.article_ttl02 {
	font-family: var(--notoserif);
	font-size: 3rem;
	padding-bottom: 10px;
	border-bottom: 5px solid #F0EFEF;
	margin-bottom: 50px;
}

.article_ttl03 {
	font-family: var(--notoserif);
	font-size: 2rem;
	padding: 10px 20px;
	background: #F0EFEF;
	margin-bottom: 50px;
	line-height: 1.2;
}

.article_ttl04 {
	font-family: var(--notoserif);
	font-size: 2rem;
	margin-bottom: 15px;
	position: relative;
	padding-left: 40px;
}
.article_ttl04::before {
	content: "";
	width: 30px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0px;
	top: 50%;
}



.article_box .txt {
	font-weight: 300;
	line-height: 2;
	margin-bottom: 50px;
}

.article_img_vertical img {
	display: block;
	max-width: 800px;
	margin: 0 auto;
}
.article_img {
	margin-bottom: 50px;
}

.article_tagbox {
	border-top: 1px solid #F0EFEF;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 30px;
}

.article_tagbox dt {
	font-weight: 500;
	font-size: 3rem;
	margin-right: 30px;
}

.article_tagbox dd span {
	margin-right: 30px;
}


@media screen and (max-width: 768px) {
.article_box {
	margin-top: 50px;
}

.article_ttl02 {
	font-size: 2rem;
	margin-bottom: 30px;
}

.article_ttl03 {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.article_ttl04 {
	font-size: 1.5rem;
	padding-left: 30px;
}
.article_ttl04::before {
	width: 20px;
	height: 1px;
}

.article_tagbox dt {
	font-size: 2rem;
	margin-right: 20px;
}
.article_tagbox dd span {
	margin-right: 20px;
}
}



.article_detail_side {
	border-top: 1px solid #F0EFEF;
	padding-top: 30px;
	margin-bottom: 50px;
}

.article_detail_side_ttl {
	font-family: var(--prata);
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 10px;
}

.article_detail_side_ttl_sub {
	margin-bottom: 20px;
}

.article_detail_magazine_box dt {
	margin-bottom: 20px;
}

.article_detail_magazine_name {
	margin-bottom: 20px;
}

.article_detail_magazine_box dd .btn_buy a {
	width: 100%;
}

.article_detail_side .list_editor {
	display: block;
}
.article_detail_side .list_editor li {
	width: 100%;
	margin-bottom: 30px;
}

.article_detail_side .list_editor li .date {
	font-size: 1.2rem;
}

.article_detail_side .list_editor li .ttl {
	font-size: 1.5rem;
}


@media screen and (max-width: 768px) {
	.article_detail_side_ttl {
	font-size: 2.5rem;
}
.article_detail_magazine_box dt {
	width: 60%;
	margin: 0 auto;
	margin-bottom: 20px;
}
.article_detail_magazine_box dd .btn_buy a {
	width: 250px;
	margin: 0 auto;
}
}

.article_sharebox {
	display: flex;
	align-items:center;
}

.article_sharebox dt {
  font-weight: 500;
  font-size: 3rem;
  margin-right: 30px;
}


.article_share_icon {
	display: flex;
	align-items:center;

}

.article_share_icon li {
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
	.article_sharebox dt {
  font-size: 2rem;
    margin-right: 20px;
}
}


.article_bottom {
	max-width: 1200px;
	margin: 0 auto;
	margin-top: 100px;
}

.article_bottom .list_editor {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.article_bottom .list_editor li {
  width: calc((100% - (2% * 3)) / 4);
  margin-bottom: 0;
}

.article_bottom .list_editor li .date {
	font-size: 1.2rem;
}

.article_bottom .list_editor li .ttl {
	font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
	.article_bottom .list_editor {
		display: block;
	}
	.article_bottom .list_editor li {
		width: 100%;
	}
	.article_bottom {
	margin-top: 50px;
}

}



.article_bottom_sns {
	display: flex;
	align-items: center;
	line-height: 1;
}

.article_bottom_sns .article_detail_side_ttl {
	margin-bottom: 0;
}

.article_bottom_sns dt {
	margin-right: 30px;
}

.article_bottom_sns ul li {
	margin-right: 30px;
}

.article_bottom_sns .footer_icon_x {
	max-width: 29px; /* 44 × 2/3 = 約29.3 */
}
.article_bottom_sns .footer_icon_yt {
	max-width: 41px; /* 62 × 2/3 = 約41.3 */
}
.article_bottom_sns .footer_icon_ig {
	max-width: 33px; /* 50 × 2/3 = 約33.3 */
}
.article_bottom_sns .footer_icon_tt {
	max-width: 32px; /* 48 × 2/3 = 32 */
}
.article_bottom_sns .footer_icon_line {
	max-width: 33px; /* 50 × 2/3 = 約33.3 */
}


@media screen and (max-width: 768px) {
	.article_bottom_sns {
		display: block;
	}
	.article_bottom_sns .article_detail_side_ttl {
	margin-bottom: 10px;
}
}


.article_list_hashtag {
	font-family: var(--prata);
	font-size: 2.5rem;
	display: flex;
	flex-wrap: wrap;
}
.article_list_hashtag li {
	margin-right: 20px;
}

.article_detail_L .pager {
	margin-bottom: 50px;

}

@media screen and (max-width: 768px) {
	.article_list_hashtag {
	font-size: 1.5rem;
}
.article_list_hashtag li {
	margin-bottom: 10px;
}
}

.article_img_cap {
	font-size: 90%;
	font-weight: 400;
	color: #999;
	display: block;
	margin-top: 10px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.article_img_cap {
		text-align: left;
	}
}


.article_profile {
	margin-top: 20px;
}

.article_profile .article_detail_side_ttl {
	font-size: 6rem;
	transform: translateY(40px);
}

@media screen and (max-width: 768px) {
  .article_profile .article_detail_side_ttl {
    font-size: 4rem;
    transform: translateY(30px);
  }
}

.article_profile_box {
	display: flex;
	justify-content: space-between;
	background: #F0EFEF;
	padding: 30px;
	border-radius: 0 0 30px 0;
	margin-bottom: 20px;
}

.article_profile_box dt {
	width: 40%;
}
.article_profile_box dd {
	width: 55%;
}

.article_profile_ttl {
	font-family: var(--prata);
	font-size: 3rem;
	margin-bottom: 10px;
	letter-spacing: 2px;
	line-height: 1;
}

.article_profile_name {
	font-family: var(--notoserif);
	font-size: 3rem;
	margin-bottom: 20px;
}

.article_profile_sns {
	margin-bottom: 20px;
}

.article_profile_sns ul {
	display: flex;
}

.article_profile_sns ul li {
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
.article_profile_box {
	display: block;
	padding: 20px;
}

.article_profile_box dt {
	width: 100%;
	margin-bottom: 20px;
}
.article_profile_box dd {
	width: 100%;
}

.article_profile_name {
	font-size: 2.5rem;
}

.article_profile_ttl {
	font-size: 2.5rem;
}


}

.article_detail_page_visual01 {
	padding: 30px 30px 100px 30px;
	background: url(../img/article/page_bg02.png) no-repeat;
	background-size: cover;
	background-position: right;
	height: 100dvh;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	position: relative;
}
main > .page_visual::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 30%;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
	pointer-events: none;
	z-index: 1;
}
@media screen and (max-width: 1200px) {
	.article_detail_page_visual01 {
	padding: 20px;
	background: url(../img/article/page_bg02_sp.png) no-repeat;
	background-size: cover;
	background-position: right;
	
}
}

@media screen and (max-width: 768px) {
	.article_detail_page_visual01 {
	height: 100dvh;
}
}

/* Regulars */
.page_visual.regulars {
	padding: 30px 30px 100px 30px;
	height: 100dvh;
	display: flex;
	justify-content: flex-start;
	align-items:flex-end;
}

.page_visual_in{
	z-index: 2;
}

.page_visual.regulars .page_visual_in {
	min-width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1200px) {
.page_visual.regulars .page_visual_in {
	
	min-width: 100%;
	max-width: 100%;
}
}

.page_visual.regulars .page_visual_in .page_ttl {
	text-align: left;
}



.regulars_profile .inner {
	padding: 0 2%;
}
.page_visual.regulars.bg_naenano {
	background: url(../img/regulars/bg_naenano.png) no-repeat right center/cover;
}
@media screen and (max-width: 1000px) {
.page_visual.regulars {
	padding: 30px 30px 50px 30px;
	height: 95dvh;
	display: flex;
	justify-content: flex-start;
	align-items:end;
}
.page_visual.regulars.bg_naenano {
	background: url(../img/regulars/bg_naenano_sp.png) no-repeat right center/cover;
}
}
.lower_ttl01 {
	text-align: center;
	font-family: var(--prata);
	margin-bottom: 50px;
	font-size: 5rem;
}
.lower_ttl01 span {
	font-family: 'Noto Sans JP';
	display: block;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	
	.lower_ttl01 {
		margin-bottom: 30px;
		font-size: 3rem;
	}
	.lower_ttl01 span {
		font-size: 1.4rem;
	}
	.regulars_profile .inner {
		padding: 0;
	}
}

.regulars_profile .article_profile {
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 20px;
}


/* 下層ページ
-------------------------------------------------------*/

.bace_page {
	padding-left: 20px;
	padding-right: 20px;
}
.bace_page .inner{
	max-width: 1000px;
	margin: 0 auto;
}

.contact_area {
	max-width: 700px;
	margin: 0 auto;
}

.contact_area dl {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.contact_area dl dt {
	width: 25%;
}

.contact_area dl dd {
	flex: 1;
	width: 100%;
}

.contact_area dl dd input[type="text"],
.contact_area dl dd input[type="email"],
.contact_area dl dd input[type="date"],
.contact_area dl dd input[type="password"]
 {
	width: 100%;
	min-height: 50px;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
}

.contact_area dl dd textarea {
	width: 100%;
	min-height: 200px;
	border-radius: 5px;
}

.send_btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.send_btn {
	background: #000;
	color: #fff;
	padding: 10px 50px;
	border-radius: 100px !important;
	text-align: center;
	border: none;
}

@media screen and (max-width: 768px) {
	.contact_area dl {
	display: block;
}

.contact_area dl dt {
	width: 100%;
	margin-bottom: 10px;
}
.contact_area dl dd input[type="text"],
.contact_area dl dd input[type="email"],
.contact_area dl dd input[type="date"],
.contact_area dl dd input[type="password"]
 {
	min-height: 40px;
}

.contact_area dl dd textarea {
	min-height: 150px;
}
}


.privacy-policy {
  padding: 6rem 0 8rem;
  background: #f5f6f8;
  color: #222;
}

.privacy-policy__inner {
  width: min(100% - 4rem, 88rem);
  margin: 0 auto;
}

.privacy-policy__header {
  margin-bottom: 4.8rem;
  padding-bottom: 2.4rem;
}

.privacy-policy__label {
  margin: 0 0 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.privacy-policy__lead {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
  color: #374151;
}

.privacy-policy__body {
  display: grid;
  gap: 3.2rem;
}

.privacy-policy__section {
  background: #fff;
  margin-bottom: 30px;
}

.privacy-policy__heading {
  margin: 0 0 1.6rem;
  font-size: 2.2rem;
  line-height: 1.5;
  font-family: var(--notoserif);
}

.privacy-policy__text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #374151;
}

.privacy-policy__text + .privacy-policy__text {
  margin-top: 1.2rem;
}

.privacy-policy__list {
  margin: 0;
  padding-left: 2rem;
}

.privacy-policy__list-item {
  font-size: 1.5rem;
  line-height: 2;
  color: #374151;
}

.privacy-policy__list-item + .privacy-policy__list-item {
  margin-top: 0.8rem;
}

@media screen and (max-width: 767px) {
  .privacy-policy {
    padding: 4rem 0 5.6rem;
  }

  .privacy-policy__inner {
    width: min(100% - 3.2rem, 100%);
  }

  .privacy-policy__header {
    margin-bottom: 3.2rem;
    padding-bottom: 2rem;
  }

  .privacy-policy__label {
    font-size: 1.1rem;
  }

  .privacy-policy__lead {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .privacy-policy__body {
    gap: 2rem;
  }


  .privacy-policy__heading {
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    font-size: 1.8rem;
    line-height: 1.6;
    border-left-width: 0.3rem;
  }

  .privacy-policy__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .privacy-policy__list {
    padding-left: 1.8rem;
  }

  .privacy-policy__list-item {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}


.article_index_member {
	border: 5px solid #F0EFEF;
	padding: 40px;
}

@media screen and (max-width: 767px) {
.article_index_member {
	border: 3px solid #F0EFEF;
	padding: 20px;
}
}


.regist_txt {
	margin-bottom: 50px;
	margin-top: 50px;
	text-align: center;
}
.regist_txt a {
	text-decoration: underline;
}

.pass_caution {
	font-size: 80%;
	margin-top: 5px;
}

.password_box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.password_box input {
  flex: 1;
}

.password_box button {
  padding: 8px 12px;
  cursor: pointer;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  min-width: 70px;
}

.error_text {
	color: #ff0000;
}

.auth-error {
	background-color: #fdf4f4;
	border-left: 3px solid #9b1c1c;
	border-radius: 0 5px 5px 0;
	color: #374151;
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 8px;
	padding: 12px 16px;
}

#auth-messages {
	margin-bottom: 24px;
}

.aligncenter {
    width: initial !important;
}

/* root
-------------------------------------------------------*/
:root {
  --prata: "Prata", serif;
  --notoserif: "Noto Serif JP", serif;
}