@charset "UTF-8";

:root {
	--basic: #3b4043;
	--black: #000000;
	--green: #88bf5a;
	--pink: #d67881;
	--blue: #8acae6;
	--yellow: #f3cd45;
	--ja: "Zen Maru Gothic", sans-serif;
	--en: "Noto Serif JP", serif;
	--en_g: "Gelasio", serif;
}
html {
	scroll-padding-top: 140px;
}
@media (max-width: 767px) {
	html {
		scroll-padding-top: 60px;
	}
}
body {
	font-family: var(--ja);
	font-feature-settings: "palt";
	color: var(--basic);
	letter-spacing: -0.01em;
}
body * {
	box-sizing: border-box;
}
.post, .page {
	margin: 0;
}
.site {
	min-width: 320px;
}
a,
a:hover,
a:visited {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
	word-break: break-all;
}
a.nolink {
	pointer-events: none;
}
img {
	vertical-align: bottom;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.4;
	font-weight: 700;
}
dl, dt, dd {
	font-weight: 400;
	margin: 0;
}
table {
	border-collapse: collapse; /* 枠線を重ねる */
	border-spacing: 0;        /* セル間の余白をゼロに */
}
.container {
	width: 100%;
	max-width: 1060px;
	padding: 0 50px;
	margin: 0 auto;
}
.en {
	font-family: var(--en);
	font-feature-settings: "palt";
	font-weight: 700;
}
.en_g {
	font-family: var(--en_g);
	font-feature-settings: "palt";
	font-weight: 500;
}
.pink {
	color: var(--pink);
}
.green {
	color: var(--green);
}
.blue {
	color: var(--blue);
}
.yellow {
	color: var(--yellow);
}
.row {
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.sp-only {
		display: none;
	}
	a:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.container {
		max-width: 575px;
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* ------------------------------ */
/* p, ul, ol, img 他 */
/* ------------------------------ */

p, ul, ol {
	margin: 0 0 1rem 0;
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
ul.none,
ul.indent {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.indent li {
	text-indent: -1em;
	padding-left: 1em;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
.img_cover {
	overflow: hidden;
}
.img_cover > img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
/* 基本は非表示 */
.br-md-only {
	display: none !important;
}

/* 768px 〜 991px の間だけ表示 */
@media (min-width: 768px) and (max-width: 991px) {
	.br-md-only {
		display: block !important;
	}
}

/* ------------------------------ */
/* a, .btn */
/* ------------------------------ */

.btn,
.btn:visited {
	position: relative;
	display: flex;
	align-items: center;
	width: fit-content;
	min-height: 40px;
	border-radius: 40px;
	background-color: var(--basic);
	color: #ffffff;
	line-height: 1.2;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	padding: 10px 40px 10px 25px;
}
.btn::after {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--basic);
	font-size: 20px;
	font-weight: 300;
}
@media (min-width: 768px) {
	.btn:hover {
		color: #ffffff;
	}
}
@media (max-width: 767px) {
	.btn {
		font-size: 14px;
	}
}

/* ------------------------------ */
/* .bg_btn */
/* ------------------------------ */

.bg_btn {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 50px;
	border-radius: 50px;
	border: 3px solid #ffffff;
	color: var(--basic);
	line-height: 1.2;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	padding: 10px 60px 10px 25px;
}
.bg_btn::after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--basic);
	font-size: 160%;
	font-weight: 300;
}
.bg_pink {
	background-image: url("../img/common/bg_pink.png")
}
.bg_green {
	background-image: url("../img/common/bg_green.png")
}

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

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
}
.header .container {
	max-width: 100%;
	padding: 30px 30px 0 30px;
}
.header .inner {
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	padding: 0 20px;
}
.header .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	max-width: 1080px;
	height: 80px;
	margin: 0 auto;
}
.header .row .col-logo > * {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}
.header .col-nav > ul {
	display: flex;
	align-items: center;
}
.header .col-nav > ul > li {
	padding-left: 20px;
}
.header .col-nav > ul > li:last-child {
	padding-left: 30px;
}
.header .col-nav > ul > li > a {
	font-weight: 500;
}
@media (max-width: 1199px) {
	.header .col-nav > ul li {
		padding-left: 10px;
	}
	.header .col-nav > ul > li:last-child {
		max-width: 120px;
		padding-left: 20px;
	}
	.header .col-nav > ul li a {
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	.header .container {
		max-width: 100%;
		padding: 15px 15px 0 15px;
	}
	.header .inner {
		border-radius: 10px;
		padding: 0 50px 0 20px;
	}
	.header .row {
		height: 50px;
	}
	.header .col-nav > ul > li {
		display: none;
	}
	.header .col-nav > ul > li:last-child {
		display: block;
		max-width: initial;
	}
	.header img.pc-only {
		display: none;
	}
	.header img.sp-only {
		display: inline;
	}
}
@media (max-width: 767px) {
	.header .inner {
		padding-left: 15px;
	}
	.header .col-nav > ul > li:last-child {
		width: 100%;
		max-width: 100%;
		padding-left: 10px;
	}
}

/* ------------------------------ */
/* .hamburger */
/* ------------------------------ */

.hamburger {
	position: fixed;
	right: 20px;
	top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 10px;
	line-height: 1;
	cursor: pointer;
	z-index: 1000;
}
.hamburger .navbar-toggler-icon {
	position: relative;
	height: 7px;
}
.hamburger .navbar-toggler-icon::before,
.hamburger .navbar-toggler-icon::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 23px;
	height: 1px;
	background-color: #000000;
	transform-origin: center;
	transition: 0.3s;
}
.hamburger .navbar-toggler-icon::before {
	top: 0;
	transform: translateX(-50%);
}
.hamburger .navbar-toggler-icon::after {
	bottom: 0;
	transform: translateX(-50%);
}
.hamburger dl dd {
	font-weight: 700;
	text-align: center;
	margin-top: 3px;
}

/*オープン*/
.hamburger.open .navbar-toggler-icon::before {
	top: 50%;
	transform: translate(-50%,-50%) rotate(25deg);
}
.hamburger.open .navbar-toggler-icon::after {
	top: 50%;
	bottom: auto;
	transform: translate(-50%,-50%) rotate(155deg);
}
.hamburger.open dl dd {
	display: none;
}
@media (min-width: 992px) {
	.hamburger {
		display: none;
	}
}

/* ------------------------------ */
/* SPメニュー */
/* ------------------------------ */

.sp-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 200px;
	background-color: #ffffff;
	border-radius: 30px 0 0 30px;
	font-size: 14px;
	line-height: 1.3;
	z-index: 999;
	overflow: auto;
	padding: 80px 20px;
	transition: transform 0.3s;
	transform: translateX(100%);
}
.sp-nav.open {
	transform: translateX(0);
}

/* .main-menu */
.sp-nav .list-wrap > ul > li {
	font-weight: 500;
	margin-bottom: 20px;
}
.sp-nav .list-wrap > ul > li > a {
	position: relative;
	color: var(--basic);
}
.sp-nav .list-wrap > ul > li > ul > li {
	position: relative;
	padding-left: 20px;
	margin-top: 5px;
}
.sp-nav .list-wrap > ul > li > ul > li::before {
	position: absolute;
	left: 0;
	top: 8px;
	content: "";
	background-color: var(--basic);
	width: 10px;
	height: 1px;
}
.sp-nav .list-wrap > ul > li > ul > li > a {
	font-size: 12px;
	color: #666666;
}
.sp-nav .list-wrap .small {
	font-size: 12px;
	font-weight: 400;
}
.sp-nav .contact_wrap {
	text-align: center;
	border-top: 1px dashed var(--basic);
	padding-top: 25px;
	margin-top: 10px;
}
.sp-nav .contact_wrap dl dt {
	border: 1px solid var(--basic);
	border-radius: 5px;
	width: fit-content;
	font-size: 12px;
	font-weight: 500;
	margin: 20px auto 0 auto;
	padding: 1px 10px 3px 10px;
}
.sp-nav .contact_wrap dl dd {
	font-size: 10px;
	margin-top: 10px;
}

/* body.black */
body.black {
	position: fixed;
	width: 100%;
	overflow: hidden;
}
body::after {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 10;
	pointer-events: none;
}
body.black::after {
	opacity: 0.4;
	visibility: visible;
}

/*----------------------------------------*/
/* .contact__wrap */
/*----------------------------------------*/

.contact__wrap {
	font-size: 16px;
	line-height: 1.6;
}
.contact__wrap .title_wrap {
	text-align: center;
	margin-bottom: 30px;
}
.contact__wrap .title_wrap .fukidashi {
	margin-bottom: 30px;
}
.contact__wrap .title_wrap .en {
	font-size: 14px;
}
.contact__wrap .title_wrap .title {
	font-size: 30px;
	margin: 0;
}
.contact__wrap .title_wrap p {
	margin-top: 20px;
}
.contact__wrap .col p {
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
}
.contact__wrap .col .tel {
	display: block;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	background-color: #ebecec;
	border-radius: 50px;
	padding: 10px 20px;
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.contact__wrap .row {
		justify-content: space-between;
		margin: 0 -10px;
	}
	.contact__wrap .col {
		width: 50%;
		max-width: 484px;
		padding: 0 10px;
	}
}
@media (max-width: 767px) {
	.contact__wrap {
		font-size: 14px;
	}
	.contact__wrap .col + .col {
		margin-top: 20px;
	}
	.contact__wrap .title_wrap .fukidashi {
		margin-bottom: 20px;
	}
	.contact__wrap .title_wrap .title {
		font-size: 22px;
	}
	.contact__wrap .col .tel {
		font-size: 16px;
		margin-bottom: 15px;
	}
}

/*----------------------------------------*/
/* .recruit__wrap */
/*----------------------------------------*/

.footer .recruit__wrap {
	padding: 90px 0;
}
@media (max-width: 767px) {
	.footer .recruit__wrap {
		padding: 50px 0;
	}
}

/*----------------------------------------*/
/* .img__slider__wrap */
/*----------------------------------------*/

.img__slider__wrap {
	display: flex;
	overflow: hidden;
}
.img__slider__wrap ul {
	display: flex;
	animation: img-infinity-left 60s infinite linear 0.5s both;
}
.img__slider__wrap ul li {
	width: 280px;
	margin-right: 20px;
}
.img__slider__wrap ul li img {
	width: 100%;
}
@keyframes img-infinity-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}
@media (max-width: 767px) {
	.img__slider__wrap ul li {
		width: 100px;
		margin-right: 10px;
	}
}

/*----------------------------------------*/
/* .footer */
/*----------------------------------------*/

.footer {
	line-height: 1.4;
	background-image: url("../img/common/footer/bg.png");
	background-repeat: no-repeat;
	background-position: center center;
}
.footer .row_nav {
	padding-top: 90px;
}
.footer .row_nav .col_left dl {
	margin-bottom: 30px;
}
.footer .row_nav .col_left dl dt {
	font-weight: 500;
}
.footer .row_nav .col_left dl dt .title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 5px 0;
}
.footer .row_nav .col_right .row {
	justify-content: space-between;
}
.footer .col_nav > ul > li {
	font-weight: 500;
	margin-bottom: 20px;
}
.footer .col_nav > ul > li > ul {
	margin-top: 10px;
}
.footer .col_nav > ul > li > ul > li {
	font-size: 85%;
	font-weight: 400;
	margin-top: 5px;
}
.footer .col_nav > ul > li > ul > li a {
	position: relative;
	display: inline-block;
	color: #666666;
	padding-left: 20px;
}
.footer .col_nav > ul > li > ul > li a::before {
	position: absolute;
	left: 0;
	top: 8px;
	content: "";
	width: 10px;
	height: 1px;
	background-color: #666666;
}
.footer .col_nav ul li a .small {
	font-size: 85%;
	font-weight: 400;
}
.footer .col_nav .insta_list {
	margin-top: 30px;
}
.footer .col_nav .insta_list ul li {
	margin: 3px 0;
}
.footer .col_nav .insta_list ul li a {
	display: inline-flex;
	align-items: center;
	background-image: url("../img/common/footer/insta.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 21.5px;
	min-height: 22px;
	color: #666666;
	font-size: 14px;
	font-weight: 400;
	padding-left: 30px;
}
.footer .col_nav .btn {
	width: 195px;
	height: 47px;
}
.footer .sitename dl dt {
	font-size: 14px;
	font-weight: 500;
}
.footer .sitename dl dt .wrap {
	border: 1px solid var(--basic);
	border-radius: 10px;
	width: fit-content;
	padding: 3px 20px;
	margin-bottom: 5px;
}
@media (min-width: 768px) {
	.footer .row {
		justify-content: space-between;
		margin: 0 -15px;
	}
	.footer .row > * {
		padding: 0 15px;
	}
	.footer .row_nav .col_left {
		width: 35%;
	}
	.footer .row_nav .col_right {
		width: 65%;
	}
}
@media (min-width: 992px) {
	.footer .sitename dl {
		display: flex;
		align-items: center;
	}
	.footer .sitename dl dd {
		flex: 1;
		padding-left: 20px;
	}
	.footer .row_bnr {
		align-items: center;
	}
}
@media (max-width: 991px) {
	.footer .row_bnr.pc-only {
		display: none;
	}
	.footer .sitename.sp-only {
		display: block;
	}
	.footer .row_nav {
		padding-top: 30px;
	}
	.footer .sitename {
		text-align: center;
		margin-top: 40px;
	}
	.footer .sitename dl dt {
		margin-bottom: 10px;
	}
	.footer .sitename dl dt .wrap {
		margin: 0 auto 5px auto;
	}
	.footer .sitename dl dd img {
		max-width: 240px;
	}
}
@media (max-width: 767px) {
	.footer {
		font-size: 14px;
	}
	.footer .row {
		margin: 0 -5px;
	}
	.footer .row > * {
		padding: 0 5px;
	}
	.footer .row_nav {
		justify-content: center;
		padding-top: 30px;
	}
	.footer .sitename {
		margin-top: 30px;
	}
	.footer .row_nav .col_left {
		text-align: center;
	}
	.footer .row_nav .col_left dl dt .title {
		font-size: 18px;
	}
	.footer .row_nav .col_right .row .col_nav:nth-child(1) {
		width: 33.33%;
	}
	.footer .row_nav .col_right .row .col_nav:nth-child(2) {
		width: 66.66%;
	}
	.footer .row_nav .col_right .row .col_nav:nth-child(2) > ul {
		display: flex;
		margin: 0 -5px;
	}
	.footer .row_nav .col_right .row .col_nav:nth-child(2) > ul > li {
		width: 50%;
		padding: 0 5px;
	}
	.footer .col_insta {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		max-width: 370px;
		margin: 0 -5px;
	}
	.footer .col_insta > * {
		padding: 0 5px;
		margin: 0 !important;
	}
}

/*----------------------------------------*/
/* .copyright */
/*----------------------------------------*/

.copyright {
	position: relative;
	display: flex;
	align-items: center;
	background-image: url("../img/common/footer/bg_img.jpg");
	background-position: center top;
	background-size: cover;
	height: 360px;
	color: #ffffff;
	margin-top: 70px;
}
.copyright dl {
	width: 100%;
	letter-spacing: 0.05em;
	padding-bottom: 30px;
}
.copyright dl dt {
	font-weight: 500;
	font-style: italic;
}
.copyright dl dd {
	font-size: 45px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0.2em;
}
.copyright p {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	width: 100%;
	font-size: 10px;
	text-align: center;
	margin: 0;
}
@media (max-width: 767px) {
	.copyright {
		background-image: url("../img/common/footer/bg_img_sp.jpg");
		height: 150px;
		margin-top: 40px;
	}
	.copyright dl {
		text-align: center;
		padding-bottom: 20px;
	}
	.copyright dl dt {
		font-size: 10px;
	}
	.copyright dl dd {
		font-size: 24px;
	}
	.copyright p {
		bottom: 15px;
	}
}

/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	padding: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: 0.5s;
	transform: translateY(20px);
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	opacity: 1;
}
@media (min-width: 768px) {
	.to-top.visible:hover {
		opacity: 0.5;
	}
}
@media (max-width: 767px) {
	.to-top {
		bottom: 10px;
		right: 10px;
	}
	.to-top img {
		width: 90px;
	}
}

/* ------------------------------ */
/* .swiper リセット */
/* ------------------------------ */

/* 1. ページネーション全体の配置リセット（必要に応じて） */
.swiper-pagination {
	position: relative !important;
	/* スライダーの下に置く場合 */
	bottom: 0 !important;
	margin: 0;
}

/* 2. ドット（数字）自体のリセットとスタイル設定 */
.swiper-pagination-bullet {
	all: unset;
	/* 標準の丸いスタイルをすべて解除 */
	cursor: pointer;
	display: inline-block;
	margin: 0 10px !important;
	/* 数字同士の間隔 */

	/* 数字の見た目 */
	font-size: 16px;
	font-family: sans-serif;
	color: #999;
	/* 通常時の色 */
	transition: color 0.3s;
}

/* Swiperが強制付与する不透明度をリセット */
.swiper-pagination-bullet {
	opacity: 1 !important;
}

/* 1. 本体（枠、背景、配置など）のリセット */
.swiper-button-prev,
.swiper-button-next {
	all: unset;
	/* 標準のスタイル（ボタンの枠線など）を解除 */
	position: static;
	/* デフォルトの absolute を解除（自由に配置可能に） */
	margin: 0;
	/* デフォルトの margin-top を解除 */
	width: auto;
	/* デフォルトの width (27px等) を解除 */
	height: auto;
	/* デフォルトの height (44px等) を解除 */
	cursor: pointer;
	/* divタグに変更したため、クリックできるカーソルを明示 */
	display: inline-block;
	/* 横並びにするなど、扱いやすいdisplayに変更 */
}
.swiper-button-prev svg,
.swiper-button-next svg {
	display: none !important;
}
/* 2. Swiper標準の「青い矢印アイコン」を消去（最重要） */
.swiper-button-prev::after,
.swiper-button-next::after {
	content: none;
	/* アイコンを完全に非表示にする */
}
/* 3. 無効時（最初/最後のスライド到達時）のスタイルリセット */
.swiper-button-disabled {
	opacity: 0.3;
	/* デフォルトで薄くなるのを好みに変更可能（不要なら 1 に） */
	cursor: default;
	/* クリックできないカーソルにする */
	pointer-events: none;
	/* クリックイベントを無効化 */
}


/* ------------------------------ */
/* .swiper__sp */
/* ------------------------------ */

@media (min-width: 768px) {
	.swiper__sp .swiper-nav,
	.swiper__sp_02 .swiper-nav,
	.swiper__sp_03 .swiper-nav,
	.swiper__sp_04 .swiper-nav {
		display: none !important;
	}
}
@media (max-width: 767px) {
	.swiper__sp__wrap {
		overflow: hidden;
	}
	.swiper__sp,
	.swiper__sp_02,
	.swiper__sp_03,
	.swiper__sp_04 {
		overflow: visible;
		margin: 0 auto;
	}
}

/* カスタマイズ */
.swiper__sp .swiper-pagination,
.swiper__sp_02 .swiper-pagination,
.swiper__sp_03 .swiper-pagination,
.swiper__sp_04 .swiper-pagination {
	position: relative;
	display: flex;
}
.swiper__sp .swiper-pagination::after,
.swiper__sp_02 .swiper-pagination::after,
.swiper__sp_03 .swiper-pagination::after,
.swiper__sp_04 .swiper-pagination::after {
	display: none;
}
.swiper__sp .swiper-pagination-bullet,
.swiper__sp_02 .swiper-pagination-bullet,
.swiper__sp_03 .swiper-pagination-bullet,
.swiper__sp_04 .swiper-pagination-bullet {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d8d9d9;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	font-size: 0;
	line-height: 1;
	margin: 0 8px !important;
	z-index: 1;
}
.swiper__sp .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper__sp_02 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper__sp_03 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper__sp_04 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #9d9fa1;
}


/* カスタマイズ */
.swiper__sp .swiper-nav,
.swiper__sp_02 .swiper-nav,
.swiper__sp_03 .swiper-nav,
.swiper__sp_04 .swiper-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	margin: 50px auto 0 auto;
}
.swiper__sp .swiper-button-prev,
.swiper__sp .swiper-button-next,
.swiper__sp_02 .swiper-button-prev,
.swiper__sp_02 .swiper-button-next,
.swiper__sp_03 .swiper-button-prev,
.swiper__sp_03 .swiper-button-next,
.swiper__sp_04 .swiper-button-prev,
.swiper__sp_04 .swiper-button-next {
	position: relative;
	background-color: #000000;
	border-radius: 50%;
	width: 46px;
	height: 46px;
}
.swiper__sp .swiper-button-prev::after,
.swiper__sp .swiper-button-next::after,
.swiper__sp_02 .swiper-button-prev::after,
.swiper__sp_02 .swiper-button-next::after,
.swiper__sp_03 .swiper-button-prev::after,
.swiper__sp_03 .swiper-button-next::after,
.swiper__sp_04 .swiper-button-prev::after,
.swiper__sp_04 .swiper-button-next::after {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: "Material Symbols Sharp";
	content: "\ef7d";
	color: #ffffff;
	font-size: 24px;
}
.swiper__sp .swiper-button-next::after,
.swiper__sp_02 .swiper-button-next::after,
.swiper__sp_03 .swiper-button-next::after,
.swiper__sp_04 .swiper-button-next::after {
	content: "\e941";
}
.swiper__sp .swiper-pagination,
.swiper__sp_02 .swiper-pagination,
.swiper__sp_03 .swiper-pagination,
.swiper__sp_04 .swiper-pagination {
	flex: 1;
	padding: 0 30px;
}
@media (max-width: 767px) {
	

}

/* ------------------------------ */
/* .text_slider */
/* ------------------------------ */

.text_slider {
	display: flex;
	overflow: hidden;
	border-top: 2px solid #d8d9d9;
	border-bottom: 2px solid #d8d9d9;
	padding: 12px 0 8px 0;
}
.text_slider ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	animation: infinity-left 95s infinite linear 0.5s both;
}
.text_slider ul li {
	width: 705px;
	margin-right: 50px;
}
.text_slider ul li img {
	width: 100%;
}

@keyframes infinity-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}
@media (max-width: 767px) {
	.text_slider ul li {
		width: 320px;
		margin-right: 15px;
	}
}

/* ------------------------------ */
/* .news */
/* ------------------------------ */

.section.news {
	position: relative;
	line-height: 1.4;
	padding: 100px 0 0 0;
	z-index: 1;
}
.section.news .section__title {
	text-align: left;
}
.section.news .news__tab ul li {
	position: relative;
	cursor: pointer;
	font-size: 18px;
	padding-right: 30px;
	margin-top: 20px;
}
.section.news .news__tab ul li::after {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--basic);
	color: #ffffff;
	font-size: 100%;
	font-weight: 300;
}
.section.news .news__tab__content {
	display: none;
}
.section.news .news__tab__content.active {
	display: block;
}
.section.news .col_right ul li a {
	display: block;
}
.section.news .col_right dl dt .img_wrap {
	overflow: hidden;
}
.section.news .col_right dl dd .date {
	letter-spacing: 0.05em;
	margin-right: 10px;
}
.section.news .col_right dl dd .category {
	background-color: var(--basic);
	border-radius: 10px;
	width: fit-content;
	min-width: 150px;
	line-height: 1.2;
	text-align: center;
	color: #ffffff;
	padding: 5px 20px;
}
.section.news .col_right dl dd .title {
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	margin: 15px 0 0 0;
}
.section.news .btn {
	width: 165px;
	padding-left: 15px;
	margin: 40px auto 0 auto;
}
@media (min-width: 768px) {
	.section.news .row {
		justify-content: space-between;
	}
	.section.news .col_left {
		width: 180px;
	}
	.section.news .col_right {
		flex: 1;
		max-width: 750px;
		padding-left: 30px;
	}
	.section.news .col_right ul li {
		border-top: 1px solid var(--basic);
	}
	.section.news .col_right ul li:last-child {
		border-bottom: 1px solid var(--basic);
	}
	.section.news .col_right ul li a {
		background-color: #ffffff;
		padding: 20px 0;
	}
	.section.news .col_right dl {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		width: 100%;
		max-width: 660px;
		margin: 0 auto;
		padding: 0 20px;
	}
	.section.news .col_right dl dt {
		width: 30%;
	}
	.section.news .col_right dl dt .img_wrap {
		aspect-ratio: 4 / 3;
		border-radius: 20px;
	}
	.section.news .col_right dl dd {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		width: 70%;
		padding-left: 7%;
	}
}
@media (max-width: 767px) {
	.section.news .section__title {
		margin-bottom: 30px;
	}
	.section.news .col_left,
	.section.news .col_right {
		width: 100%;
	}
	.section.news .news__tab ul {
		display: flex;
		flex-wrap: wrap;
		gap: 4%;
		margin-bottom: 10px;
	}
	.section.news .news__tab ul li {
		display: flex;
		align-items: center;
		width: 48%;
		font-size: 16px;
		margin: 0 0 20px 0;
	}
	.section.news .col_right ul {
		display: flex;
		flex-wrap: wrap;
		border-top: 1px solid var(--basic);
		font-size: 14px;
	}
	.section.news .col_right ul li {
		width: 50%;
		border-bottom: 1px solid var(--basic);
		padding: 20px 0;
	}
	.section.news .col_right ul li:nth-child(odd) {
		padding-right: 7px;
	}
	.section.news .col_right ul li:nth-child(even) {
		padding-left: 7px;
	}
	.section.news .col_right dl dt .img_wrap {
		aspect-ratio: 3 / 2;
		border-radius: 15px;
	}
	.section.news .col_right dl dd .date {
		font-size: 12px;
		margin: 10px 0 5px 0;
	}
	.section.news .col_right dl dd .category {
		min-width: 100%;
	}
	.section.news .col_right dl dd .title {
		font-size: 14px;
		margin: 10px 0 0 0;
	}
}


/* .fv__news */
.fv__news .inner {
	max-width: 740px;
	margin: 0 auto;
}
.fv__news .btn_news {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #ffffff;
	border-radius: 70px;
	min-height: 70px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	padding: 10px 60px 10px 0;
}
.fv__news .btn_news::after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 38px;
	height: 38px;
	background-image: url("../img/top/btn_arrow.png");
	background-size: cover;
}
.fv__news .btn_news dl {
	display: flex;
	align-items: center;
	width: 100%;
	line-height: 1.4;
}
.fv__news .btn_news dl dt {
	width: 180px;
	font-size: 18px;
	text-align: center;
}
.fv__news .btn_news dl dd {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	border-left: 1px dashed var(--basic);
	min-height: 40px;
	padding: 0 15px;
}
.fv__news .btn_news .item > * {
	display: inline-block;
}
.fv__news .btn_news .date {
	color: #999999;
	margin-right: 1em;
}
.fv__news .btn_news .item .title {
	font-weight: 500;
}
@media (max-width: 767px) {
	.fv__news {
		font-size: 14px;
	}
	.fv__news .btn_news {
		padding-right: 40px;
	}
	.fv__news .btn_news::after {
		width: 22px;
		height: 22px;
	}
	.fv__news .btn_news dl dt {
		width: 90px;
		font-size: 14px;
	}

}