/*------------------------------------------------------------------------------

Theme Name: This is グループ専用テーマ
Author: Shimizu [ bran-new-days.com ]
Description: 2022/9/21

------------------------------------------------------------------------------*/

/* font-family: 'Prompt', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;600&display=swap');

/* /////////////////////////////////////////////////////////////////////////////

 全体 style

///////////////////////////////////////////////////////////////////////////// */

/* Contact Form 7 – CSS変数エイリアス（style.css 全体で参照可能） */
:root {
	--cf7-border      : #d8d9c4;
	--cf7-focus       : var(--color-primary);
	--cf7-error       : var(--color-dred);
	--cf7-success-bg  : #f0f7ec;
	--cf7-success-txt : #2a7a3b;
	--cf7-radius      : 6px;
	--cf7-transition  : .2s ease;
}

:root {
	--color-text      : #262626;
	--color-body      : #FFF;
	--color-bg-light  : #f6f7e9;

	--color-primary   : #f3f24c;
	--color-secondary : #bdc096;
	--color-tertiary  : #e7e9cb;

	--color-line      : #22ba4f;
	--color-fb        : #315096;

	--color-white     : #FFF;
	--color-gray-100  : #EEE;
	--color-gray-200  : #CCC;
	--color-gray-600  : #666;
	--color-gray-700  : #505050;
	--color-gray-800  : #333;
	--color-gray-900  : #222;
	--color-black     : #000;
	
	--color-pink      : #cf8791;
	--color-dred      : #C00;
	
	--layer_dark      : rgba(0,0,0,.7);
  
	--font-main        : 'Noto Sans JP', sans-serif;
	--font-mincho      : '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	--font-en          : 'Prompt', sans-serif;
}

main, article, aside, header, canvas, details, figcaption, figure, footer, nav, section, summary {
	display: block;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	overflow: hidden;
	position: relative;
	left: 0;
	word-wrap: break-word;
	color: var(--color-text);
	font-size: 1rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	background-color: var(--color-body);
	background-attachment: fixed;
}

a {
	color: var(--color-text);
	text-decoration: underline;
}

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}


.font-gothic {
  font-family: var(--font-main);
}
.font-mincho {
  font-family: var(--font-mincho);
}

video, object {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}

.vibtn {
	position: absolute;
	visibility: hidden;
}

/* iframeのレスポンシブ */
.youtube_container {
	position: relative;
	margin-bottom: 8px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

[hidden] {
	display: none !important;
}

/* /////////////////////////////////////////////////////////////////////////////

 layout

///////////////////////////////////////////////////////////////////////////// */

/*------------------------------------------------------------------------------

 header

------------------------------------------------------------------------------*/

.header__wrapper {
	height: 0;
}
.header {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}
.header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 10px;
}

.header_main .logo {
	width: 50%;
	transition:all 300ms 0ms ease;
}
.header_main .logo a {
	display: block;
	text-decoration: none;
}
.header_main .logo img {
	width: 100%;
}

.header_slim {
	box-shadow: 0 0 4px rgba(0,0,0,.2);
	background-color: rgba(0 0 0 / 60%);
}
.header_slim .header_line {
	display: none;
}

/* gnavi
------------------------------------------------------------- */

.gnavi {
	display: flex;
	transition:all 300ms 0ms ease;
}
.gnavi li {
	flex-grow: 1;
}
.gnavi li:last-child {
	border-right: none;	
}
.gnavi a {
	display: block;
	padding: 8px 0;
	color: var(--color-white);
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}


/* menu
------------------------------------------------------------- */

/* menu open btn */
.burger_btn_area {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
}
.burger_btn_area .layer {
	position: absolute;
}
input[type="checkbox"]#burger_btn {
	position: absolute;
	visibility: hidden;
	bottom: 0;
}

/* ハンバーガーメニュー */
.burger_open_btn {
	position: absolute;
	top: 7px;
	right: 5px;
	display: block;
	width: 40px;
	height: 40px;
	z-index: 2147483647;
}
.burger_open_btn span {
	position: relative;
	display: block;
	width: 30px;
	height: 2px;
	margin: 19px auto 0;
	background-color: var(--color-white);
	transition: 0.4s;
}
.burger_open_btn span::before ,
.burger_open_btn span::after {
	position: absolute;
	content: '';
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--color-white);
	transition: 0.4s;
}
.burger_open_btn span::before {
	top: -10px;
}
.burger_open_btn span::after {
	bottom: -10px;
}

/* ハンバーガーメニューを変形 */
#burger_btn:checked + .burger_open_btn span {
	background: transparent;
}
#burger_btn:checked + .burger_open_btn span::before {
	top: 0;
	transform: rotate(45deg);
}
#burger_btn:checked + .burger_open_btn span::after {
	bottom: 0;
	transform: rotate(-45deg);
}

/* レイヤー */
#burger_btn:checked ~ .layer {
	position: fixed;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	top: 0;
	right: 0;
	visibility: visible;
	z-index: 2147483645;
}

/* メニュー：OPEN/CLOSE */
.burger_content {
	position:fixed;
	top:0;
	right: -105%;
	width: 100%;
	height: 100%;
	padding: 40px 20px;
	background: center / cover url(./images/common/bg_footer.jpg) no-repeat var(--color-black);
	color: var(--color-white);
	transition: 0.1s ease-in-out;
}
#burger_btn:checked ~ .burger_content {
	overflow: scroll;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	z-index: 2147483646;
	right: 0;
}
.burger_content a {
	color: inherit;
}

.burger_content .logo {
	width: 70%;
	margin-bottom: 30px;
}
.burger_content .bnavi {
	border-top: 1px solid var(--color-gray-200);
}
.burger_content .bnavi li {
	border-bottom: 1px solid var(--color-gray-200);
}
.burger_content .bnavi li a {
	display: block;
	height: auto;
	padding: .5em;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.6;

	opacity : 0;
	transform : translate(100px, 0);
	transition : all 900ms;
}
#burger_btn:checked ~ .burger_content .bnavi li a {
	opacity : 1;
	transform : translate(0, 0);
}
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(1) a { transition-delay: 0ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(2) a { transition-delay: 80ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(3) a { transition-delay: 160ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(4) a { transition-delay: 240ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(5) a { transition-delay: 320ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(6) a { transition-delay: 400ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(7) a { transition-delay: 480ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(8) a { transition-delay: 540ms; }
#burger_btn:checked ~ .burger_content .bnavi li:nth-child(9) a { transition-delay: 620ms; }

@media only screen and (max-width: 767px) {
	.header_line ,
	.gnavi {
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.burger_btn_area {
		display: none;
	}
	.header__inner {
		padding: 20px 20px;
	}
	.header_main {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header_main .logo {
		width: 25%;
	}
	.header_main .gnavi_block {
		width: 720px;
		max-width: 70%;
	}
	.header_slim .header__inner {
		padding: 15px 20px;
	}	
	.header_slim .header__inner .logo {
		width: 16%;
	}
	
}

/*------------------------------------------------------------------------------

 side bar

------------------------------------------------------------------------------*/

.side h4 {
	margin-bottom: 10px;
	padding: 4px 4px 10px;
	border-bottom: 2px solid var(--color-gray-200);
	font-weight: bold;
}

.side .wiget_box div {
	margin-bottom: 20px;
}

.side .wiget_box ul {
	margin-left: 10px;
	font-size: .875rem;
}

.side .tagcloud {
	margin-left: 10px;
}

.side .tagcloud a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: 14px !important;
	font-weight: bold;
	vertical-align: middle;
}
.side .tagcloud a::before {
	content: '#';
}


/* new post
-----------------------------------------------------------*/

.newpost {
	margin: 0 auto 20px;
	font-size: .875rem;
}
.newpost__list li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted var(--color-gray-200);
}
.newpost__list a {
	display: flex;
	gap: 15px;
}
.newpost__list .fig_box {
	display: block;
	width: 100px;
	height: auto;
}
.newpost__list .text_box {
	flex: 1;
}
.newpost__list .data {
	display: block;
	font-size: .75rem;
}
.newpost__list .title {
	font-weight: 600;
}


/* calender
-----------------------------------------------------------*/

.side .calendar_wrap {
	position: relative;
	margin: 0 15px;
}
.wp-calendar-table {
	width: 100%;
}
.wp-calendar-table th {
	padding: 4px 0;
	border-bottom: 2px solid var(--color-gray-600);
	text-align: center;
}
.wp-calendar-table td {
	padding: 4px 0;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: center;
}
.calendar_wrap .wp-calendar-nav {
	position: absolute;
	width: 100%;
	top: 0;
}
.calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
	display: block;
	float: right;
}


/* 検索フォーム
-----------------------------------------------------------*/

.side aside .search_area {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 0px;
}
.search_area input[type="text"].search_input {
	height: 34px;
	padding: 5px 65px 10px 5px;
	width: 100%;
	border: 1px solid var(--color-gray-200);
	border-radius: 4px;
	font-size: .875rem;
	z-index: 10;
}
.search_area .searchsubmit {
	overflow: hidden;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 40px;
	height: 30px;
	border: none;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%234b4b4b%22%3E%3Cpath%20d%3D%22m361.7%20301.5c19.4-30.4%2030.6-66.5%2030.6-105.2%200-108.3-88-196.3-196.1-196.3-38.7%200-74.8%2011.2-105.2%2030.7-24.3%2015.4-44.9%2036.1-60.3%2060.3-19.4%2030.4-30.7%2066.6-30.7%20105.3%200%20108.2%2088%20196.3%20196.2%20196.3%2038.7%200%2074.8-11.3%20105.2-30.7%2024.2-15.5%2044.8-36.1%2060.3-60.4zm-101.9%2018.7c-19.1%209.8-40.7%2015.4-63.6%2015.4-76.8%200-139.3-62.5-139.3-139.4%200-22.9%205.6-44.6%2015.4-63.6%2013.3-25.9%2034.5-47%2060.3-60.3%2019.1-9.8%2040.7-15.4%2063.6-15.4%2076.8%200%20139.3%2062.5%20139.3%20139.4%200%2022.9-5.6%2044.5-15.4%2063.6-13.4%2025.8-34.5%2047-60.3%2060.3z%22%2F%3E%3Cpath%20d%3D%22m499.5%20439.2-113.2-113c-16.1%2023.6-36.8%2044.2-60.3%2060.3l113.2%20113c8.3%208.3%2019.2%2012.5%2030.1%2012.5s21.8-4.2%2030.2-12.5c16.7-16.7%2016.7-43.7%200-60.3z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
	background-size: auto 70%;
	text-indent: 200%;
	white-space: nowrap;
	z-index: 20;
}


/* -----------------------------------------------------------------------------

 contact

----------------------------------------------------------------------------- */

.contact .tel_box {
	margin-bottom: 20px;
	text-align: center;
}
.contact .circle-btn_box a {
	margin: auto;
}

@media only screen and (min-width: 768px) {
	.contact {
		display: flex;
		align-items: center;
		gap: 4%;
	}
	.contact .title_block {
		margin-bottom: 0;
		flex: 2;
	}
	.contact .tel_box {
		flex: 3;
		margin-bottom: 0;
		text-align: left;
	}
	
}


/* -----------------------------------------------------------------------------

 .footer

----------------------------------------------------------------------------- */

.footer {
	background: center / cover url(./images/common/bg_footer.jpg) no-repeat var(--color-black);
	color: var(--color-white);
}
.footer_inner {
	max-width: 1130px;
	margin: 0 auto;
	padding: 50px 10%;
}
.footer_inner a {
	color: inherit;
}

.footer__info .logo a {
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
}
.footer__info p {
	font-size: .875rem;
}
.footer__info h2 {
	margin-top: 1em;
}

.fnavi li a {
	display: block;
}


@media only screen and (max-width: 767px) {
	.footer__info {
		margin-bottom: 40px;
	}
	.fnavi__wrap {
		margin-bottom: 40px;
	}
	.fnavi:first-child {
		border-top: 1px solid var(--color-gray-200);
	}
	.fnavi li {
		border-bottom: 1px solid var(--color-gray-200);
	}
	.fnavi a {
		padding: .5em;
		font-weight: 600;
		text-decoration: none;
	}
	.copy_area {
		font-size: .75rem;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.footer_inner {
		display: flex;
		padding: 80px 15px;
		gap: 4%;
	}
	.footer__info {
		width: 440px;
		max-width: 40%;
	}
	.footer__info .logo a {
		width: 260px;
	}
	.footer__body {
		flex: 1;
	}
	.fnavi {
		display: flex;
		gap: 1em;
	}
	.fnavi + .fnavi {
		margin-top: 1.5em;
	}
	.fnavi li {
		width: calc((100% - 1em * 3) 4);
	}
	.fnavi li:nth-child(1) {
		flex: 4;
	}
	.fnavi li:nth-child(2) {
		flex: 6;
	}
	.fnavi li:nth-child(3) {
		flex: 3;
	}
	.fnavi li:nth-child(4) {
		flex: 7;
	}
	.copy_area {
		margin-top: 40px;
		font-size: .875rem;
		text-align: right;
	}
}

/* footer SNS
-----------------------------------------------------------*/
.footer__sns {
	display: flex;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	justify-content: center;
}
.footer__sns li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	opacity: .8;
	transition: opacity .2s;
}
.footer__sns li a:hover {
	opacity: 1;
}
.footer__sns li a img {
	width: 100%;
	height: auto;
	display: block;
}

@media only screen and (min-width: 768px) {
	.footer__sns {
		justify-content: flex-start;
		margin-top: 28px;
	}
}

/* page top
-----------------------------------------------------------*/

.page_top_fx {
	position: fixed;
	overflow: hidden;
	bottom: 10px;
	right: 10px;
	z-index: 99999;
}
.page_top_fx a {
	cursor: pointer;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50vw;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%2036%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%2036%2020%22%20width%3D%2236%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m35.6%2018.1c0%20.5-.2.9-.5%201.3-.7.7-1.8.7-2.5%200l-14.8-15.2-14.8%2015.2c-.7.7-1.8.7-2.5%200s-.7-1.8%200-2.5l16.1-16.4c.7-.7%201.8-.7%202.5%200l16%2016.4c.3.3.5.8.5%201.2z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') rgba(0,0,0,0.3)  50% 45% no-repeat;
	background-size: 40% auto;
	text-indent: 100%;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.page_top_fx.is-show a {
	opacity: 1;
	visibility: visible;
}


/* -----------------------------------------------------------------------------

 contents

----------------------------------------------------------------------------- */

.contents_wrapper {
	clear: both;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}

.main_contents {
	flex: 1;
	max-width: 1000px;
	margin: 0 auto;
}


/* 背景横突き抜け：ブロック
------------------------------------------------------------- */

.content {
	clear: both;
	zoom: 100%;
}
.content--yw {
	background: #fff;
}
.content--yw .title_block .ja {
	color: #000;
}
/*.content--bl .title_block .ja {
	color: var(--color-primary);
}*/
.content--bl {
	background: var(--color-black);
	color: var(--color-white);
}
.content--bl a {
	color: inherit;
}
.content--service {
	background: center top / 100% auto url(./images/home/bg_service.jpg) no-repeat var(--color-black);
}
.content--page-about01 {
	background: center top / 100% auto url(./images/about/bg_page-about01.jpg) no-repeat var(--color-black);
}
.content--page-about02 {
	background: center top / cover url(./images/about/bg_page-about02.webp) no-repeat;
}
.content--page-service01 {
	background: center top / 200% auto url(./images/service/bg_service.webp) no-repeat #e7e9cb;
}

.content__inner {
	max-width: 1030px;
	margin: 0 auto;
	padding: 50px 15px;
}
.content__inner + .content__inner {
	padding-top: 0;
}
.content__inner--full {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}
.content__inner--sp_full {
	padding-left: 0;
	padding-right: 0;
}

.wrapper :not(.mw-container) .main_contents .content {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}


@media only screen and (min-width: 768px) {
	.contents_wrapper {
		display: flex;
	}
	.side {
		width: 240px;
		margin-left: 40px;
	}
	.content__inner {
		padding: 120px 15px;
	}
	.content--contact .content__inner {
		padding: 80px 15px;
	}
	.content--page-service01 {
		background-size: 100% auto;
	}
}


/* -----------------------------------------------------------------------------

 fixed * lp レイアウト

----------------------------------------------------------------------------- */

.mw-container {
	position: relative;
	overflow: hidden;
	max-width: 440px;
	margin: 0 auto;
	background: rgb(203,207,207);
	background: linear-gradient(180deg, rgba(203,207,207,1) 0%, rgba(238,240,240,1) 150px);
	background-repeat: no-repeat;
}

.wrapper .mw-container .main_contents .content {
	margin-right: auto;
	margin-left: auto;
}

.mw-container .header {
	position: absolute;
}

@media only screen and (min-width: 768px) {
	.mw-container {
		margin: 60px auto;
		box-shadow: 0 0 40px rgba(0,0,0,.15);
		z-index: 999999;
	}
}

/* pc_container
-----------------------------------------------------------*/

.pc_container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
}
.pc_content {
	position: relative;
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
	padding-right: 14px;
}
.pc_container .left_contents ,
.pc_container .right_contents {
	width: calc((100% - 440px - 20px) / 2);
}
.pc_container .left_contents {
	display: flex;
	align-items: center;
	padding: 0 20px 40px;
}
.pc_container .right_contents {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 20px 40px;
}

@media only screen and (min-width: 841px) {
	.mw-container .gnavi_block {
		display: none;
	}
}
@media only screen and (max-width: 840px) {
	.pc_container {
		display: none;
	}
}


/* /////////////////////////////////////////////////////////////////////////////

 メインコンテンツ

///////////////////////////////////////////////////////////////////////////// */

/* パンくず
-----------------------------------------------------------*/

.breadcrumb {
	clear: both;
	max-width: 1030px;
	margin: 0 auto;
	padding: 0 15px;
	color: var(--color-gray-200);
	font-size: .8125rem;
	text-align: right;
}
.breadcrumb li {
	display: inline-block;
	padding-left: .5em;
}
.breadcrumb a {
	color: inherit;
}


/* ページネーション/ページャー
-----------------------------------------------------------*/

.pagination {
	clear: both;
	position: relative;
	font-size: .875rem;
	line-height: 1;
}
.pagination span,
.pagination a {
	display: inline-block;
	min-width: 2.4em;
	height: 2.4em;
	margin-right: .5em;
	margin-top: .5em;
	padding: .2em .5em;
	text-align: center;
	line-height: 2;
}
.pagination a {
	border: 1px solid var(--color-gray-200);
	text-decoration: none;
}
.pagination a:hover {
	color: var(--color-white);
	border: 1px solid var(--color-gray-600);
	background-color: var(--color-gray-600);
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
	border: 1px solid var(--color-gray-100);
	background-color: var(--color-gray-100);
}


/* ボタンボックス
-----------------------------------------------------------*/

.btn_box {
	clear: both;
	color: var(--color-text);
	text-align: center;
}
.btn_box:not(:first-child) {
	margin-top: 30px;
}

.btn_box :where(a,label) {
	display: inline-block;
	width: 320px;
	max-width: 100%;
	padding: .75em;
	border-radius: 50vh;
	background: var(--color-primary);
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}
.btn_box :where(a,label):hover {
	background-color: var(--color-black);
}

.btn_box--bl :where(a,label) {
	background: var(--color-black);
	color: var(--color-primary);
}
.btn_box--bl :where(a,label):hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn_box--min :where(a,label) {
	width: 160px;
	max-width: 100%;
	padding: .5em;
}

/* LINE */
.btn_box.btn_box--line a {
	background: var(--color-line);
	color: var(--color-white);
}
.btn_box.btn_box--line a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.45em;
	background: url(./images/common/icon_sns_linewh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* 円ボタン */
.circle-btn_box a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: var(--color-primary);
	font-weight: 600;
	text-align: left;
	text-decoration: none;
}
.circle-btn_box a .inner {
	position: relative;
	display: block;
	padding-bottom: 2em;
}
.circle-btn_box a .inner::after {
	position: absolute;
	content: '';
	left: calc(50% - 2em);
	bottom: 0;
	width: 4em;
	height: 1.5em;
	background: center / contain no-repeat;
	background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2052.8%2012.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23262626%22%3E%3Cpath%20d%3D%22m0%206h52%22%2F%3E%3Cpath%20d%3D%22m46.3.4%205.7%205.7-5.7%205.7%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}
.circle-btn_box a:hover {
	color: var(--color-white);
	background-color: var(--color-text);
}
.circle-btn_box a:hover .inner::after {
	background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2052.8%2012.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%3E%3Cpath%20d%3D%22m0%206h52%22%2F%3E%3Cpath%20d%3D%22m46.3.4%205.7%205.7-5.7%205.7%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.tel_box .tel-wrap a {
	display: inline-block;
	font-size: min(2.125rem,7vw);
	font-family: var(--font-en);
	text-decoration: none;
	letter-spacing: .1em;
}


/* animation parts
------------------------------------------------------------- */

/* fadein */
.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 900ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein--left {
	opacity : 0;
	transform : translate(-100px, 0);
	transition : all 900ms;
}
.fadein--left.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein--right {
	opacity : 0;
	transform : translate(100px, 0);
	transition : all 900ms;
}
.fadein--right.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


/* blur */
.onload-blurin {
  transform: scale(1.03);
  filter: blur(10px);
  opacity: 0;
  animation: blurZoom 800ms ease-out forwards;
}
@keyframes blurZoom {
	0% {
		transform: scale(1.5);
		filter: blur(10px);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		filter: blur(0);
		opacity: 1;
	}
}

.onload-fadein {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 400ms ease-out forwards;
}
.onload-fadein--delay {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 400ms ease-out forwards;
	animation-delay: 200ms;
}
@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* modal
------------------------------------------------------------- */

.modal_wrap input {
	display: none;
}
.modal_wrap label {
	text-decoration: none;
}
.modal_layer {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	background-color: var(--layer_dark);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}
.modal_layer_close {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.modal_content {
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 800px;
	max-height: 80%;
	transform: scale(0.3);
	transition: 0.25s;
}
.modal_close_button {
	position: fixed;
	cursor: pointer;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color-gray-900);
	color: var(--color-white);
	font-size: 40px;
	line-height: 32px;
	text-align: center;
}

.modal_content__inner {
	padding: 25px 25px;
	background-color: var(--color-gray-100);
	font-size: .875rem;
}
.modal_content h1 {
	margin-bottom: 20px;
	font-size: 1.125rem;
	text-align: center;
}
.modal_content h2 {
	margin-bottom: .75em;
}
.modal_content p {
	margin-bottom: 1em;
}

.modal_wrap input:checked + .modal_layer {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}
.modal_wrap input:checked + .modal_layer .modal_content {
	transform: scale(1);
}



/* /////////////////////////////////////////////////////////////////////////////

 投稿 post

///////////////////////////////////////////////////////////////////////////// */

.cate_box {
	line-height: 1;
}
.cate_box a {
	display: inline-block;
	margin: 0 .5em .5em 0;
	padding: .5em 1em;
	background: var(--color-text);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	vertical-align: middle;
}

.tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.tag_box a::before {
	content: '#';
}

/*------------------------------------------------------------------------------

 アーカイブ archive / blog

------------------------------------------------------------------------------*/

/* アーカイブ一覧表示 dl
-----------------------------------------------------------*/

.entry-explain__list dt {
	position: relative;
	clear: both;
	float: left;
	width: 120px;
}
.entry-explain__list dt img {
	width: 100%;
}
.entry-explain__list dd {
	min-height: 140px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	padding-left: 140px;
	border-bottom: 1px dotted var(--color-gray-200);
}
.entry-explain__list dd:last-child {
	border-style: none;
}

/* cate */
.entry-explain__list dt .cate_box {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
}


/* アーカイブ一覧表示
-----------------------------------------------------------*/

.entry-vertical__list {
	max-height: 240px;
	overflow-y: auto;
	font-size: .875rem;
	border-top: 1px solid var(--color-gray-200);
}
.entry-vertical__list dt {
	margin-top: 1em;
}
.entry-vertical__list dd {
	margin-top: .25em;
	border-bottom: 1px solid var(--color-gray-200);
}
.entry-vertical__list .data_box {
	display: inline-block;
	background: #000;
	color: var(--color-primary);
	font-weight: 600;
	padding: 2px 10px;
	border-radius: 4px;
}
.entry-vertical__list .entry__title {
	display: block;
}

@media only screen and (min-width: 768px) {
	.entry-vertical__list dt {
		clear: both;
		float: left;
		display: flex;
		width: 12em;
		margin: 0;
		padding: 1.5em 0;
	}
	.entry-vertical__list .data_box {
		display: block;
	}
	.entry-vertical__list dd {
		margin: 0;
		padding: 1.5em 0;
		padding-left: 10em;
	}
}


/* アーカイブ一覧表示 block
-----------------------------------------------------------*/

.entry-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}
.entry-card__list li {
	position: relative;
	flex-grow: 0;
	width: calc((100% - 15px) / 2);
}
.entry-card__list a {
	display: block;
	text-decoration: none;
}
.entry-card__list .thumb {
	display: block;
	margin-bottom: 15px;
}
.entry-card__list .thumb img {
	width: 100%;
	height: auto;
}

.entry-card__list .cate_box {
	position: absolute;
	display: block;
	top: -2px;
	right: -2px;
}

.entry-card__list em.entry-cards__title {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2.8em;
	margin: 8px 0 8px;
	line-height: 1.4;
}
.entry-card__list em.entry-cards__title::before ,
.entry-card__list em.entry-cards__title::after {
	position: absolute;
	background: inherit;
}
.entry-card__list em::before {
	content: '\FF65\FF65\FF65';
	bottom: 0;
	right: 0;
	padding-left: 3px;
}
.entry-card__list em.entry-cards__title::after {
	content: '';
	width: 100%;
	height: 100%;
}

.entry-card__list em.entry-cards__title--oneline {
	height: 1.4em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.entry-card__list .entry_info {
	height: 1.2em;
	margin-bottom: 8px;
	font-size: .875rem;
	line-height: 1.2;
}
.entry-card__list .entry_txt {
	display: block;
	height: 5em;
	font-size: .875rem;
	line-height: 1.4;
}

.entry-card__list li {
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0,0,0,.08);
	transition: .3s;
}

.entry-card__list li:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.entry-card__list .thumb {
	margin-bottom: 0;
	overflow: hidden;
}

.entry-card__list .thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: .4s;
}

.entry-card__list li:hover .thumb img {
	transform: scale(1.05);
}

.entry-card__list a {
	color: #333;
	padding-bottom: 20px;
}

.entry-card__list .cate_box {
	top: 12px;
	right: 12px;
	z-index: 10;
}

.entry-card__list .cate_box a {
	display: inline-block;
	padding: 5px 12px;
	background: #000;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	border-radius: 20px;
}

.entry-card__list em.entry-cards__title {
	display: block;
	padding: 15px 20px 0;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	font-style: normal;
	color: #111;
}

.entry-card__list .entry_info {
	padding: 8px 20px 0;
	margin: 0;
	color: #888;
	font-size: 13px;
}

.entry-card__list .entry_txt {
	padding: 10px 20px 0;
	height: auto;
	color: #666;
	line-height: 1.7;
}

@media only screen and (min-width: 768px) {
	.entry-card__list {
		gap: 30px;
	}

	.entry-card__list li {
		width: calc((100% - 60px) / 3);
	}
}


/*------------------------------------------------------------------------------

 記事 single / page

------------------------------------------------------------------------------*/

.entry_content {
	line-height: 1.8;
}

.entry_title {
	margin-bottom: 20px;
	padding: 10px 8px;
	border-bottom: 1px solid var(--color-gray-200);
	font-size: 140%;
	text-align: left;
	line-height: 1.8;
}


/* title 下
-----------------------------------------------------------*/

.entry_content .entry_info {
	margin-bottom: 10px;
	line-height: 1.2;
	font-size: .875rem;
}
.entry_content .entry_info p {
	margin: 0;
}

.entry_content .cate_box {
	float: left;
}

.entry_content .data_box {
	padding: 0 8px;
	text-align: right;
}

.entry_content .data_box span {
	display: inline-block;
}


/* 汎用
-----------------------------------------------------------*/

.entry_content p {
	margin-bottom: 1.6em;
}

.entry_content hr {
	margin-bottom: 1.6em;
}

.page_content hr {
	margin-top: 1.6em;
	margin-bottom: 1.6em;
}

.entry_content em {
	display: inline-block;
	font-weight: bold;
}


/* 記事内見出し ----------------------------- */

.entry_content h2 {
	position: relative;
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h3 {
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h4 {
	margin-bottom: 15px;
}

.entry_content h5 {
	margin-bottom: 15px;
}

.entry_content h6 {
	margin-bottom: 10px;
}


/* テーブル ----------------------------- */

.entry_content table {
	min-width: 70%;
	margin: 10px 0 30px 10px;
	border-collapse: collapse;
	text-align: left;
}
.entry_content table th {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
	font-weight: bold;
}
.entry_content table td {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
}


/* リスト ----------------------------- */

.entry_content ul {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ul li {
	list-style-type: disc;
}

.entry_content ol {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ol li {
	list-style-type: decimal;
}


/* 引用  ------------------------------- */
/* 引用じゃないけど引用と同じデザインにしたい時 */
.entry_content blockquote ,
.quote_area {
	margin: 20px 0 20px 10px;
	padding: 30px 20px 20px 40px;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ddd%22%3E%3Cpath%20d%3D%22m392.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3Cpath%20d%3D%22m119.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') var(--color-gray-100) no-repeat 10px 10px;
	background-size: 80px auto;
}

.entry_content blockquote p ,
.quote_area p {
	margin: 0;
}


/* 画像 ------------------------------- */

/* 投稿画像 */
img.size-full ,
img.size-large {
	margin-bottom: 10px;
}
.image_iblock {
	display: inline-block;
	margin: 10px 10px 20px;
	font-size: .75rem;
	vertical-align: top;
}
.image_iblock .wp-caption {
	position: relative;
	max-width: 100%;
	height: auto;
}
.image_iblock .wp-caption-text {
	position: absolute;
	bottom: -10px;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	background: var(--layer_dark);
	color: var(--color-white);
	text-align: center;
}
.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: var(--color-white);
}

/* 画像位置 */
img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
img.float-left {
	float: left;
}
img.float-right {
	float: right;
}
.wp-caption {
	text-align: center;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* SNS share
-----------------------------------------------------------*/

.share_area {
	max-width: 600px;
	margin: 20px auto;
}
 
.share__list {
	display: flex;
}
.share__list li {
	width: 25%;
	padding: 2px;
}
.share__list li span {
	display: none;
}
.share__list li a {
	display: block;
	padding: 2px;
	border-radius: 50vh;
	color: var(--color-white);
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
.share__list li a:hover {
	opacity: .8;
}
.share__list li i {
	margin-right: .3em;
}
.share__list .tweet a {
	background: #55acee;
}
.share__list .line a {
	background: var(--color-line);
}
.share__list .facebook a {
	background: var(--color-fb);
}
.share__list .hatena a {
	background: #008fde;
}
.fa-hatena:before {
	font-family: Verdana;
	font-weight: bold;
	content: 'B!';
}

@media only screen and (min-width: 768px) {
	.share_area {
		margin: 40px auto;
	}
	.share__list li span {
		display: inline-block;
	}
}
.contents_wrapper {
	max-width: 1180px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	gap: 40px;
}

.main_contents {
	flex: 1;
	min-width: 0;
}

.entry_content {
	background: #fff;
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.entry_title {
	margin: 0 0 20px;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
	color: #111;
}

.entry_info {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 35px;
	font-size: 14px;
	color: #777;
}

.entry_info p {
	margin: 0;
}

.cate_box a {
	display: inline-block;
	padding: 6px 14px;
	background: #111;
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.data_box {
	color: #888;
}

.entry_content p {
	margin: 0 0 1.8em;
	line-height: 2;
	font-size: 16px;
	color: #333;
}

.entry_content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.share_area {
	margin-top: 30px;
}

.share__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.share__list li a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	padding: 12px 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
}

.share__list .facebook a { background: #1877f2; }
.share__list .tweet a { background: #111; }
.share__list .line a { background: #06c755; }
.share__list .hatena a { background: #00a4de; }

.side {
	width: 300px;
	flex-shrink: 0;
}

.wiget_box > div {
	margin-bottom: 24px;
	padding: 24px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.wp-block-heading {
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #111;
	font-size: 18px;
	font-weight: 700;
}

.wiget_box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wiget_box li {
	border-bottom: 1px solid #eee;
}

.wiget_box li:last-child {
	border-bottom: none;
}

.wiget_box li a {
	display: block;
	padding: 10px 0;
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.wiget_box li a:hover {
	color: #000;
	text-decoration: underline;
}

/* スマホ */
@media screen and (max-width: 767px) {
	.contents_wrapper {
		display: block;
		padding: 40px 16px;
	}

	.entry_content {
		padding: 28px 20px;
		border-radius: 12px;
	}

	.entry_title {
		font-size: 1.5rem;
	}

	.entry_info {
		display: block;
	}

	.entry_info .cate_box {
		margin-bottom: 10px;
	}

	.share__list li {
		width: calc((100% - 10px) / 2);
	}

	.share__list li a {
		min-width: auto;
		width: 100%;
	}

	.side {
		width: 100%;
		margin-top: 40px;
	}
}

/* PREV NEXT
-----------------------------------------------------------*/

.entry-navi {
	position: relative;
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--color-gray-200);
	border-bottom: 1px solid var(--color-gray-200);
	font-size: .875rem;
}
.entry-navi::before {
	position: absolute;
	content: '';
	top: 20px;
	left: 50%;
	width: 0;
	height: calc(100% - 20px);
	border-left: 1px solid var(--color-gray-200);
}

.entry-navi__item {
	padding: 0 15px;
}
.entry-navi__item--prev {
	float: right;
	width: 50%;
	text-align: right;
}
.entry-navi__item--prev img {
	float: right;
	width: 100px;
	margin-left: 15px;
}

.entry-navi__item--next {
	float: left;
	width: 50%;
}
.entry-navi__item--next img {
	float: left;
	width: 100px;
	margin-right: 15px;
}

.entry-navi__item a {
	display: block;
	text-decoration: none;
}
.entry-navi__item a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.entry-navi__title {
	display: block;
}
.entry-navi__title .icon {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: var(--color-gray-600);
	color: var(--color-white);
}
.entry-navi__title .title {
	display: block;
	font-weight: normal;
}


/* /////////////////////////////////////////////////////////////////////////////

 ページ

///////////////////////////////////////////////////////////////////////////// */


/* ページヘッド
-----------------------------------------------------------*/

.page_head {
	padding: 100px 15px 40px;
	background: center top / cover url(./images/common/bg_footer.jpg) no-repeat var(--color-black);
	animation: bgDrop 1.2s ease-out forwards;
}
  @keyframes bgDrop {
	0% {
		background-position: center 20%;
	}
	100% {
		background-position: center top;
	}
}

@media only screen and (min-width: 768px) {
	.page_head {
		padding-top: 160px;
	}
}


/* タイトル
-----------------------------------------------------------*/

/* title */
.title_block {
	margin-bottom: 30px;
	text-align: center;
}
.title_block.left {
	text-align: left;
}
.title_block :where(h1,h2,h3) {
	line-height: 1.6;
}
.title_block .title--fw400 {
	font-weight: 400;
}
.title_block .ja {
	display: inline-block;
	color: #000;
	font-size: min(1.125rem,4vw);
}
.title_block .ja--wh {
	color: #FFFFFF;
}
.title_block .ja--bl {
	color: var(--color-gray-800);

}
.title_block .ja--medium {
	font-size: min(2rem,6.5vw);
}
.title_block .ja--large {
	font-size: min(2.5rem,7vw);

}
.title_block .en {
	display: inline-block;
	font-size: min(3.125rem,10vw);
	font-family: var(--font-en);
	letter-spacing: .1em;
}
.title_block .en--min {
	color: var(--color-primary);
	font-size: .9375rem;
	font-weight: normal;
}

.title_block .label {
	position: relative;
	display: inline-block;
	min-width: 6em;
	margin-bottom: .2em;
	padding: .1em 1.25em;
	color: var(--color-primary);
	font-size: min(2.5rem,8vw);
	font-family: var(--font-en);
	text-align: center;
	line-height: 1.4;
}
.title_block .label::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-black);
	transform: skewX(-15deg);
	z-index: 1;
}
.title_block .label .in {
	position: relative;
	padding-left: .05em;
	letter-spacing: .05em;
	z-index: 2;
}

@media only screen and (min-width: 768px) {
	.title_block {
		margin-bottom: 60px;
	}
}


/* コンテンツエリア
-----------------------------------------------------------*/

.content_area {
	padding: 40px 20px;
	background: var(--color-bg-light);
	color: var(--color-gray-900);
}
.content_area:not(:last-child) {
	margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
	.content_area {
		padding: 80px;
	}
}


/* テキスト
-----------------------------------------------------------*/

.text_block {
	line-height: 2;
}
.text_block p {
	margin-bottom: 1.8em;
}
.text_block p:last-child {
	margin-bottom: .4em;
}

.marker__txt {
	display: inline;
}
.marker__txt.yw {
	background: #faf6c6;
}
.marker__txt.ywh {
	background: linear-gradient(transparent 50%, #faf6c6 0%);
}

.color--yw {
	color: var(--color-primary);
}
.color--rd {
	color: var(--color-dred);
}

.text__ls500 {
	padding-left: .5em;
	letter-spacing: .5em;
}
.text__ls200 {
	padding-left: .2em;
	letter-spacing: .2em;
}

.text__dots {
	padding-top: .5em;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 1.0em .3em;
	background-image: radial-gradient(.15em .15em at center center,var(--color-text),var(--color-text) 100%,transparent,transparent);
}
.text__ls200 .text__dots {
	background-size: 1.2em 0.3em;
}
@media print {
	.text__dots {
		background: none;
		text-emphasis: circle;
		-webkit-text-emphasis: circle;
	}
}


/* 画像関係
-----------------------------------------------------------*/

.fig_block img {
	border-radius: 20px;
}

.figLeft,
.figRight {
	display: block;
	margin: 0 auto 15px;
	text-align: center;
}

.fig__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -5px 20px;
}
.fig__list li {
	flex-grow: 0;
	width: 50%;
	padding: 0 5px 10px;
}
.fig__list.sepa01 li {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.figLeft {
		float: left;
		margin-right: 30px;
		margin-bottom: 10px;
	}
	.figRight {
		float: right;
		margin-left: 20px;
		margin-bottom: 10px;
	}
	.fig__list {
		margin: 0 -10px;
	}
	.fig__list li {
		padding: 0 10px 20px;
	}
	.fig__list.sepa01 li {
		width: 70%;
	}
	.fig__list.sepa02 li {
		width: 50%;
	}
	.fig__list.sepa03 li {
		width: 33.33333%;
	}
	.fig__list.sepa04 li {
		width: 25%;
	}
}


/* table
------------------------------------------------------------- */

.tbl {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border-top: 1px solid var(--color-gray-200);
}
.tbl th {
	padding: 20px 10px;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: center;
	white-space: nowrap;
}
.tbl td {
	padding: 20px 10px;
	border-bottom: 1px solid var(--color-gray-200);
}

@media only screen and (max-width: 767px) {
	.tbl tr ,.tbl th,.tbl td{
		display: block;
	}
	.tbl th {
		padding-bottom: 0;
		border-bottom: none;
		text-align: left;
	}
	.tbl td {
		padding-top: 5px;
	}
}

/* infinite slide
------------------------------------------------------------- */

.infinite_slide {
	position: relative;
}
.infinite_slide_inner {
	display: flex;
	gap: 20px;
}
.infinite_slide_list {
	display: flex;
	gap: 20px;
}
.infinite_slide_list.left {
	animation :infinity-scroll-left 30s infinite linear .4s both;
}
.infinite_slide_list.right {
	animation :infinity-scroll-right 30s infinite linear .4s both;
}
.infinite_slide_list li {
	width: 160px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.infinite_slide_list li .inner {
	display: block;
	width: 100%;
	overflow: hidden;
}
/* 奇数：長方形 */
.infinite_slide_list li:nth-child(odd) .inner {
	aspect-ratio: 4 / 3;
}
/* 偶数：正方形 */
.infinite_slide_list li:nth-child(even) .inner {
	aspect-ratio: 1 / 1;
}
.infinite_slide_list img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.infinite_slide_list label {
	cursor: pointer;
}

@media only screen and (min-width: 769px) {
	.infinite_slide_inner {
		gap: 40px;
	}
	.infinite_slide_list {
		gap: 40px;
	}
	.infinite_slide_list li {
		width: 250px;
	}
}

@keyframes infinity-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}
@keyframes infinity-scroll-right {
	from { transform: translateX(-100%); }
	to { transform: translateX(0%); }
}


/* -----------------------------------------------------------------------------

 index

----------------------------------------------------------------------------- */

/* cover
-----------------------------------------------------------*/

.cover {
	position: relative;
}

.cover__image {
	position: relative;
	background-color: var(--color-gray-800);
}

.cover__catch .catch-inner {
	padding-left: 4%;
	padding-bottom: 4%;
	line-height: 1.4;
}
.cover__catch .catch01 {
	margin-bottom: .75em;
}

/* splide */
.cover_splide .splide__slide {
	overflow: hidden;
	position: relative;
}
.cover_splide .splide__slide .cover-catch {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #000;
	font-size: min(3.125rem,8vw);
	font-weight: 900;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	text-shadow: 0 0 8px #fff, 0 0 16px #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
	z-index: 10;
}
.cover_splide .splide__slide .cover-catch .text {
	display: block;	
}
.cover_splide .splide__slide picture {
	display: block;
	width: 100%;
	height: 100%;
}
.cover_splide .splide__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 4s ease;
}
.cover_splide .splide__slide.is-active img {
	transform: scale(1.05);
}


@media only screen and (min-width: 768px) {
}

/* about
-----------------------------------------------------------*/

.about {
	max-width: 800px;
	margin: auto;
}
.about .text_block ,
.about-intro .text_block {
	font-size: min(1.25rem,4vw);
}
.about .circle-btn_box a {
	float: right;
}

.content--about {
	position: relative;
	padding-bottom: 160px;
	margin-bottom: 80px;
}
.about-slide {
	clear: both;
	margin-top: -40px;
}
.about-slide .infinite_slide {
	position: absolute;
	left: 0;
	bottom: -60px;
	width: 100%;
}
.about-slide__title {
	margin-bottom: -2em;
	color: var(--color-tertiary);
	font-size: min(6rem,9.5vw);
	font-family: var(--font-en);
	text-align: center;
	line-height: 1;
}

@media only screen and (min-width: 768px) {
	.content--about {
		padding-bottom: 110px;
		margin-bottom: 40px;
	}
	.about-slide {
		margin-top: -80px;
	}
	.about-slide .infinite_slide {
		bottom: -110px;
	}
	.about .circle-btn_box {
		margin-top: -120px;
	}
	.about-slide__title {
		margin-bottom: -.25em;
		text-align: right;
	}
}


/* news
-----------------------------------------------------------*/

@media only screen and (min-width: 768px) {
	.news {
		display: flex;
		align-items: center;
		padding: 40px;
	}
	.news .title_block {
		width: 30%;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.news .entry-vertical__list {
		flex: 1;
	}
}



/* service
-----------------------------------------------------------*/

.service__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.service__item {
	background-color: var(--color-white);
	color: var(--color-gray-800);
}
.service__head {
	position: relative;
}
.service__label {
	position: absolute;
	left: 0;
	top: -1.25em;
	width: 100%;
	text-align: center;
	z-index: 3;
}
.service__label .label {
	display: inline-block;
	min-width: 12em;
	padding: .25em 1em;
	border-radius: 50vh;
	background: var(--color-bg-light);
	font-size: min(1.25rem,4vw);
	font-weight: 600;
	letter-spacing: .1em;
}
.service__fig {
	position: relative;
}
.service__fig img {
	width: 100%;
}
.service__fig::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 60%);
}
.service__title {
	position: absolute;
	left: 0;
	top: calc(50% - .75em);
	width: 100%;
	color: #ffff55;
	font-size: min(1.875rem,6vw);
	text-align: center;
}
.service__text {
	padding: 20px;
	font-size: .875rem;
}


@media only screen and (min-width: 768px) {
	.service__list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 80px 45px;
	}
	.service__item {
		width: calc((100% - 45px) / 2);
	}
	.service__item:nth-child(3) {
		margin-left: 1%;
		margin-right: 1%;
	}
}


/* recruit
-----------------------------------------------------------*/

.recruit {
	position: relative;
	margin-bottom: 10%;
	padding: 30px 20px;
	border-radius: 15px;
	background: var(--color-primary);
}
.recruit .title_block {
	margin-bottom: 20px;
}
.recruit .btn_box__wrap {
	margin-bottom: 20px;
}
.recruit__image {
	position: relative;
	margin-bottom: -20%;
	text-align: center;
}

.social-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.social-list a {
	display: block;
	padding: 1.5em .5em;
	border-radius: 15px;
	background: var(--color-bg-light);
	text-align: center;
	text-decoration: none;
}
.social-list a img {
	width: auto;
	height: 2em;
}

@media only screen and (min-width: 768px) {
	.recruit {
		padding: 50px 7%;
		border-radius: 30px;
	}
	.recruit__body {
		display: flex;
		align-items: center;
		gap: 4%;
		margin-bottom: 40px;
	}
	.recruit .title_block {
		margin-top: -1em;
		margin-bottom: 0;
	}
	.recruit .btn_box__wrap {
		margin-bottom: 0;
	}
	.recruit__image {
		margin-bottom: -15%;
	}
	.social-list {
		display: flex;
		flex-direction: row;
	}
	.social-list li {
		width: calc((100% - 20px * 2) / 3);
	}
}



/* -----------------------------------------------------------------------------

 aboutus

----------------------------------------------------------------------------- */

/* about-intro
-----------------------------------------------------------*/

.about-intro__contents {
	margin-top: 40px;
}

.about-intro__head {
	padding: 20px 10px;
	background: center / cover url(./images/about/bg_about_head01.jpg);
}
.about-intro__head-title {
	font-size: min(2rem,5vw);
	font-weight: 600;
}
.about-intro__head-title .en {
	color: var(--color-white);
	font-size: 1.25rem;
	font-weight: normal;
	font-family: var(--font-en);
}

.about-intro__text ,
.about-intro__head .text {
	margin-top: 2em;
	font-size: min(1.125rem,3.5vw);
	font-weight: bold;
}

.about-value {
	counter-reset: number 0;
}
.about-value .about-intro__head {
	position: relative;
	margin-top: 40px;
	padding-top: 30px;
}
.about-value .about-intro__head::before {
	position: absolute;
	counter-increment: number 1;
	content: '0' counter(number);
	top: -.5em;
	left: calc(50% - .5em);
	font-size: min(3.75rem,10vw);
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-style: italic;
	line-height: 1;
}

@media only screen and (max-width: 767px) {
	.about-intro__text ,
	.about-intro__head .text {
		text-align: left;
	}
}
@media only screen and (min-width: 768px) {
	.about-intro__contents {
		margin-top: 80px;
	}
	.about-intro__item:not(:last-child) {
		margin-bottom: 50px;
	}
	.about-intro__head {
		padding: 60px 15px;
	}
	.about-intro__text ,
	.about-intro__head .text {
		margin-top: 2.5em;
	}
	.about-value .about-intro__head {
		margin-top: 50px;
		padding-top: 40px;
	}
}

/* about-greeting
-----------------------------------------------------------*/

.about-greeting {
	background: var(--color-bg-light);
}
.about-greeting__head {
	padding: 15px;
	border-bottom: 1px dashed var(--color-text);
	text-align: center;
}
.about-greeting__head .label {
	color: #f8d72a;
}
.about-greeting__head .caption {
	font-size: min(2.125rem,6vw);
	font-weight: 600;
}
.about-greeting__body {
	padding: 15px;
	font-weight: 600;
}
.about-greeting__title {
	margin-bottom: 1.5em;
	font-size: min(2.125rem,6vw);
}
.about-greeting__body p:not(.right) {
	font-size: min(1.125rem,5vw);
}
@media only screen and (min-width: 768px) {
	.about-greeting {
		display: flex;
	}
	.about-greeting__head {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 30px;
		padding: 60px 40px;
		border-bottom: none;
		border-right: 1px dashed var(--color-text);
		text-align: center;
	}
	.about-greeting__head .label {
		display: block;
		font-size: .9375rem;
	}	
	.about-greeting__head .caption {
		writing-mode: vertical-rl;
	}
	.about-greeting__body {
		padding: 60px 50px;
	}
}


/* -----------------------------------------------------------------------------

 service

----------------------------------------------------------------------------- */

/* service
-----------------------------------------------------------*/

.service-intro {
	margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
	.service-intro {
		display: flex;
		gap: 4%;
	}
	.service-intro__text {
		flex: 1;
	}
	.service-intro__image {
		width: 600px;
		max-width: 55%;
	}
}

.service-present__item:not(:last-child) {
	margin-bottom: 40px;
}
.service-present__body {
	position: relative;
	padding-top: 40px;
	background: var(--color-gray-900);
	color: var(--color-white);
}
.service-present__label {
	position: absolute;
	left: 0;
	top: -1.5em;
	width: 100%;
	text-align: center;
}
.service-present__label .label {
	display: inline-block;
	padding: .5em 2em;
	border-radius: 50vh;
	background: var(--color-primary);
	color: var(--color-gray-900);
	font-weight: 600;
}
.service-present__title {
	margin-bottom: .25em;
	color: var(--color-primary);
	font-size: min(1.5rem,5.5vw);
	text-align: center;
}
.service-present__catch {
	font-size: min(1.25rem,5.5vw);
	font-weight: 600;
	text-align: center;
}
.service-present__text {
	padding: 20px;
}
.service-present__text {
	font-size: .875rem;
}
.service-present__link a {
	position: relative;
	display: block;
	padding: .75em;
	background: var(--color-primary);
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}
.service-present__link a::after {
	position: absolute;
	content: '';
	top: calc(50% - .5em);
	right: .5em;
	width: 1em;
	height: 1em;
	background: center / contain no-repeat;
	background-image: url('data:image/svg+xml,%3Csvg%20height%3D%2225%22%20width%3D%2219%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m4.134%204.057%207.444%207.443-7.444%207.443%22%20fill%3D%22none%22%20stroke%3D%22%231a1a1a%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%224%22%2F%3E%3C%2Fsvg%3E');
}

@media only screen and (min-width: 768px) {
	.service-present {
		padding-top: 60px;
	}
	.service-present__item:not(:last-child) {
		margin-bottom: 160px;
	}
	.service-present__item {
		display: flex;
		align-items: flex-start;
	}
	.service-present__item:nth-child(even) {
		flex-direction: row-reverse;
	}
	.service-present__image {
		width: 680px;
		max-width: 65%;
	}
	.service-present__item:nth-child(odd) .service-present__image {
		margin-top: -70px;
		margin-right: -10%;
	}
	.service-present__item:nth-child(even) .service-present__image {
		margin-left: -10%;
	}
	.service-present__item:nth-child(even) .service-present__body {
		margin-top: -70px;
	}
	.service-present__body {
		flex: 1;
	}
	.service-present__text {
		padding: 20px 30px;
	}
}



/* -----------------------------------------------------------------------------

 company

----------------------------------------------------------------------------- */

/* company
-----------------------------------------------------------*/

.company {
}
.company__contents {
}

/* -----------------------------------------------------------------------------

recruit

----------------------------------------------------------------------------- */


.bg-recruit {
	background: center top / cover url(./images/recruit/bg_contents.jpg);
}


/* title
-----------------------------------------------------------*/

.problem-inner h2,
.recruit-info-section h2,
.recruit-info-section h2,
.promise-section h2 {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  text-align: center;
}



.solution-content h2 {
 color: #000;
  font-size: clamp(28px, 4vw, 32px);
   font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-align: center;
}


.voice-section h2,
.message-section h2,
.final-message-section h2,
.entry-section h2
{
  color: #f3f24c;
  font-size: clamp(28px, 4vw, 32px);
   font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  text-align: center;
}


.solution-content h3 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #000;
  margin-bottom: 50px;
}
.message-text h3 {
font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.promise-section h2,
	.voice-section h2,
	.message-section h2,
	.recruit-info-section h2,
	.final-message-section h2,
	.entry-section h2
	{
		font-size: 28px;
		margin-bottom: 20px;
	}
.message-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
  }

}

@media screen and (min-width: 768px) {
	.solution-content h2 {
		font-size: 28px;
	}
	.solution-content h3 {
		font-size: 18px;
		margin-bottom: 35px;
	}
}


/* recruit
-----------------------------------------------------------*/

.page-recruit {
  max-width: none;
  width: 100%;
}

.contents_wrapper:has(.page-recruit) {
  max-width: none;
  width: 100%;
  padding: 0;
  display: block;
}

.page-recruit .fv-recruit,
.page-recruit .solution-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-recruit .solution-section {
	overflow: visible;
}

.fv-recruit {
  position: relative;
 	min-height: 720px;
  background: url(./images/recruit/bg_fv.jpg);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.fv-content {
  position: relative;
	width: 620px;
	max-width: 100%;
	background: #000;
	padding: 40px 30px;
}

.fv-title {
  margin: 0 0 45px;
  line-height: 1;
}

.fv-title img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

.yellow {
  color: #f3f24c;
}

.fv-content p {
  font-size: 18px;
  line-height: 2.4;
  margin-bottom: 45px;
}

.fv-btn {
  display: inline-block;
  background: #f3f24c;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  padding: 20px 70px;
  text-decoration: none;
  transition: 0.3s;
}

.fv-btn:hover {
  background: #fff;
  color: #000;
}

@media screen and (max-width: 768px) {
  .fv-recruit {
    min-height: 640px;
    padding: 70px 20px;
  }

  .fv-bg {
    width: 50%;
    opacity: 0.18;
  }

 
  .fv-title {
    margin-bottom: 35px;
  }

  .fv-title img {
    max-width: 92%;
  }


  .fv-content p {
    font-size: 15px;
    line-height: 2;
  }

  .fv-btn {
    width: 100%;
    max-width: 320px;
    padding: 18px 20px;
    font-size: 17px;
  }
}

/* 
-----------------------------------------------------------*/

.problem-section {
  position: relative;
  color: #fff;
  padding: 90px 100px;
  text-align: center;
  overflow: hidden;
}

/*.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/problem-bg.jpg") center / cover no-repeat;
  opacity: 0.22;
  filter: grayscale(100%) blur(2px);
}*/

.problem-inner {
  position: relative;
  margin: 0 auto;
}

.problem-box {
  border: 1px solid #f3f24c;
  background: rgba(30, 30, 30, 0.75);
  padding: 45px 55px;
  margin: 0 auto 50px;
  text-align: left;
 max-width: 800px;
}

.problem-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-box li {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 42px;
  margin-bottom: 24px;
}

.problem-box li:last-child {
  margin-bottom: 0;
}

.problem-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: #f3f24c;
  color: #000;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}

.problem-inner p {
  font-size: 17px;
  line-height: 2.2;
  margin: 0 0 22px;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .problem-section {
    padding: 70px 20px;
  }

  .problem-box {
    padding: 30px 20px;
  }

  .problem-box li {
    font-size: 15px;
    padding-left: 36px;
  }

  .problem-inner p {
    font-size: 15px;
  }

  .sp-only {
    display: block;
  }
}

/* 
-----------------------------------------------------------*/

.solution-section {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 100px 20px;
}

.solution-bg {
  position: absolute;
  inset: 0;
  background: url("https://coregym.xsrv.jp/thisisgroup/wp-content/uploads/yellow-brush.png") center center / contain no-repeat;
  z-index: 1;
}

.solution-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 200px;
}

.solution-fig {
	position: absolute;
}
.solution-fig01 {
	top: -15%;
	right: -15%;
	display: block;

}
.solution-fig02 {
	bottom: -15%;
	left: -15%;

}
@media screen and (min-width: 768px) {
	.solution-fig01 {
		top: -5%;
		right: -15%;
	
	}
	.solution-fig02 {
		bottom: -5%;
		left: -15%;
	}
}

.solution-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}

.solution-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
}

.solution-image {
  position: absolute;
  z-index: 3;
}

.solution-image img {
  width: 100%;
  display: block;
}

.solution-image-top {
  top: 0;
  right: 40px;
  width: 250px;
}

.solution-image-bottom {
  left: 60px;
  bottom: 0;
  width: 260px;
}

@media screen and (max-width: 768px) {

  .solution-section {
    padding: 70px 20px;
  }

  .solution-bg {
    background-size: cover;
    background-position: center;
  }

  .solution-content {
    padding: 70px 10px;
  }




  .solution-content p {
    font-size: 15px;
    line-height: 2;
  }

  .solution-image-top {
    position: relative;
    top: auto;
    right: auto;
    width: 180px;
    margin: 0 0 20px auto;
  }

  .solution-image-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    width: 180px;
    margin: 30px auto 0 0;
  }
}

/* 
-----------------------------------------------------------*/

.promise-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.promise-inner {
  max-width: 1200px;
  margin: 0 auto;
}



.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promise-card {
  border: 1px solid #f3f24c;
  background: linear-gradient(
    180deg,
    rgba(28,28,28,0.96) 0%,
    rgba(10,10,10,0.96) 100%
  );
  padding: 55px 28px;
}

.promise-card h3 {
  color: #f3f24c;
  text-align: center;
  font-size: 22px;
  line-height: 1.9;
  font-weight: 900;
  margin-bottom: 35px;
}

.promise-card h3 span {
  display: block;
  font-size: 30px;
}

.promise-card p {
  font-size: 16px;
  line-height: 2.1;
  color: #f2f2f2;
}

.promise-btn {
  text-align: center;
  margin-top: 70px;
}

.promise-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 100%;
  height: 86px;
  background: #f3f24c;
  color: #000;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s;
}

.promise-btn a:hover {
  background: #fff;
}

@media screen and (max-width: 768px) {

  .promise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promise-section {
    padding: 70px 20px;
  }



  .promise-card {
    padding: 40px 24px;
  }

  .promise-card h3 {
    font-size: 20px;
  }

  .promise-card h3 span {
    font-size: 28px;
  }

  .promise-card p {
    font-size: 15px;
    line-height: 2;
  }

  .promise-btn a {
    width: 100%;
    height: 74px;
    font-size: 22px;
  }
}
/* 
-----------------------------------------------------------*/
.voice-section {
  position: relative;
  background: #000;
  padding: 100px 20px;
  overflow: hidden;
}

.voice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/voice-bg.jpg") center center / cover no-repeat;
  opacity: 0.18;
  filter: blur(2px);
}

.voice-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}


.voice-item + .voice-item {
  margin-top: 90px;
}

.voice-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
  color: #fff;
}

.voice-head h3 {
  font-size: 32px !important;
  font-weight: 900 !important;
}

.voice-head span {
  font-size: 22px;
}

.voice-image {
  margin-bottom: 35px;
}

.voice-image img {
  width: 100%;
  display: block;
}

.voice-text {
  max-width: 760px;
  margin: 0 auto;
}

.voice-text p {
  color: #fff;
  font-size: 18px;
  line-height: 2.3;
}

@media screen and (max-width: 768px) {

  .voice-section {
    padding: 70px 20px;
  }



  .voice-item + .voice-item {
    margin-top: 70px;
  }

  .voice-head {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
  }

  .voice-head h3 {
    font-size: 30px;
  }

  .voice-head span {
    font-size: 18px;
  }

  .voice-text p {
    font-size: 15px;
    line-height: 2;
  }
}
/* 
-----------------------------------------------------------*/
.message-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.message-inner {
  max-width: 1100px;
  margin: 0 auto;
}



.message-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.message-image {
  width: 320px;
  flex-shrink: 0;
}

.message-image img {
  width: 100%;
  display: block;
}

.message-text {
  flex: 1;
  max-width: 560px;
}



.message-text p {
  font-size: 18px;
  line-height: 2.4;
  margin-bottom: 45px;
}

.message-sign {
  text-align: right;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {

  .message-section {
    padding: 70px 20px;
  }



  .message-content {
    flex-direction: column;
    gap: 40px;
  }

  .message-image {
    width: 75%;
    max-width: 320px;
  }



  .message-text p {
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 35px;
  }

  .message-sign {
    font-size: 18px;
    line-height: 1.7;
  }
}
/* 
-----------------------------------------------------------*/
.final-message-section {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 140px 20px;
}

.final-message-bg {
  position: absolute;
  inset: 0;
  background: url("https://this-is-group.com/wp-content/uploads/black-brush.jpg") center center / cover no-repeat;
  opacity: 0.95;
}

.final-message-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}



.final-copy {
  color: #fff;
  font-size: clamp(16px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.8;
  margin-bottom: 90px;
}

.final-text {
  color: #fff;
}

.final-text p {
  font-size: 15px;
  line-height: 2.8;
  margin-bottom: 42px;
}

.final-text .last {
  font-size: 24px;
  font-weight: 700;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {

  .final-message-section {
    padding: 80px 20px;
  }

  .final-message-bg {
    background-position: center;
  }


  .final-copy {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .final-text p {
    font-size: 15px;
    line-height: 2.4;
    margin-bottom: 28px;
  }

  .final-text .last {
    font-size: 24px;
    margin-top: 40px;
  }
}
/* 
-----------------------------------------------------------*/
.recruit-info-section {
  background: #000;
  padding: 110px 20px;
  color: #fff;
}

.recruit-info-inner {
  max-width: 1000px;
  margin: 0 auto;
}



.recruit-table {
  background: linear-gradient(
    180deg,
    rgba(28,28,28,0.96) 0%,
    rgba(16,16,16,0.96) 100%
  );
  padding: 40px 50px;
}

.recruit-row {
  display: flex;
  gap: 50px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255,255,255,0.7);
}

.recruit-row:last-child {
  border-bottom: none;
}
.recruit-info-section {
  background: #000;
  padding: 110px 20px 130px;
  color: #fff;
}

.recruit-info-inner {
  max-width: 1000px;
  margin: 0 auto;
}



.recruit-table {
  background: #1c1c1c;
  padding: 45px 55px;
}

.recruit-row {
  display: flex;
  gap: 55px;
  padding: 45px 0;
  border-bottom: 1px solid rgba(255,255,255,0.75);
}

.recruit-row:last-child {
  border-bottom: none;
}

.recruit-head {
  width: 140px;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 2;
  color: #fff;
}

.recruit-body {
  flex: 1;
  font-size: 17px;
  line-height: 2.1;
  color: #fff;
}

.recruit-body strong {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .recruit-info-section {
    padding: 70px 20px 90px;
  }



  .recruit-table {
    padding: 25px 22px;
  }

  .recruit-row {
    display: block;
    padding: 30px 0;
  }

  .recruit-head {
    width: auto;
    font-size: 16px;
    margin-bottom: 12px;
    color: #f3f24c;
  }

  .recruit-body {
    font-size: 14px;
    line-height: 2;
  }
}
/* 
-----------------------------------------------------------*/
.entry-section {
  background: #000;
  padding: 110px 20px 130px;
  color: #fff;
}

.entry-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.entry-form-box {
  background: #f3f24c;
  padding: 80px 80px 70px;
  min-height: 560px;
}

.entry-form {
  max-width: 760px;
  margin: 0 auto;
}

.entry-form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 35px;
}

.entry-form-row label {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.entry-form-row input {
  width: 100%;
  height: 48px;
  border: none;
  background: #fff;
  padding: 0 15px;
  font-size: 18px;
}

.entry-submit {
  text-align: center;
  margin-top: 380px;
}

.entry-submit button {
  width: 300px;
  height: 72px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.entry-submit button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .entry-section {
    padding: 70px 20px 90px;
  }



  .entry-form-box {
    padding: 40px 22px;
    min-height: auto;
  }

  .entry-form-row {
    display: block;
    margin-bottom: 25px;
  }

  .entry-form-row label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .entry-submit {
    margin-top: 60px;
  }

  .entry-submit button {
    width: 100%;
  }
}

/* -----------------------------------------------------------------------------

 reserve / contact

----------------------------------------------------------------------------- */

/* reserve
------------------------------------------------------------- */

.reserve_area {
	text-align: center;
}

.reserve_block.tel a svg {
	display: inline-block;
	width: 32px;
	margin-right: .2em;
	fill: #4d2b16;
}
.reserve_block.tel .tel a:hover svg {
	fill: #75685d;
}

.dot_line {
	width: 500px;
	max-width: 90%;
	margin: 20px auto 40px;
	height: 14px;
	border: none;
	background-color: transparent;
	background-image: radial-gradient(#999 30%, transparent 30%);
	background-size: 3.5px 3.5px;
}

.reserve_block .btn_box {
	padding-top: 0;
}


/* contact form
------------------------------------------------------------- */

.form_info {
	max-width: 800px;
	margin: 0 auto 20px;
}
.form_info > p {
	margin-bottom: 20px;
}
.form_info .privacy_area {
	overflow-y: auto;
	height: 140px;
	padding: 20px;
	margin-bottom: 20px;
	font-size: .875rem;
	border: 1px solid var(--color-gray-200);
}
.form_info .privacy_area p {
	margin-bottom: 1.6em;	
}

.contact_txt {
	max-width: 800px;
	margin: 0 auto 40px;
}
.contact_txt .catch {
	margin-bottom: 20px;
	font-weight: bold;
}


/* step
------------------------------------------------------------- */

.form_step {
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto 40px;
	background: var(--color-primary);
	font-size: 100%;
}
.form_step li {
	float: left;
	width: 34%;
}
.form_step li:first-child {
	width: 32%;
}
.form_step em {
	position: relative;
	display: block;
	padding: 10px 0 10px 25px;
	background: var(--color-gray-100);
	font-size: .875rem;
	text-align: center;
	text-decoration: none;
}
.form_step em span {
	display: block;
}
.form_step li:first-child em {
	padding-left: 20px;
}
.form_step em::after,
.form_step em::before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -45px;
	border-top: 45px solid transparent;
	border-bottom: 45px solid transparent;
	border-left: 30px solid;
	right: -30px;
}
.form_step em::after {
	z-index: 2;
	border-left-color: var(--color-gray-100);
}
.form_step em::before {
	border-left-color: var(--color-white);
	right: -32px;
	z-index: 1;
}
.form_step li:last-child::before ,
.form_step li:last-child::after {
	content: normal;
}

/* class:active型 */
.form_step .active {
	color: var(--color-white);
	font-weight: bold;
	background: none;
}
.form_step .active::after {
	z-index: 2;
	border-left-color: var(--color-primary);
}

/* ラッパーで判断するが型 */
.mw_wp_form_input .form_step li:nth-child(1) em ,
.mw_wp_form_confirm .form_step li:nth-child(2) em ,
.mw_wp_form_complete .form_step li:nth-child(3) em {
	color: var(--color-white);
	font-weight: bold;
	background: none;
}
.mw_wp_form_input .form_step li:nth-child(1) em::after ,
.mw_wp_form_confirm .form_step li:nth-child(2) em::after ,
.mw_wp_form_complete .form_step li:nth-child(3) em::after {
	border-left-color: var(--color-primary);
}


/* form
------------------------------------------------------------- */

.form_box {
	max-width: 840px;
	margin: 0 auto 20px;
	border-top: 1px solid var(--color-gray-200);
}
.form_box dt {
	padding: 10px 10px 5px;
	font-weight: 600;
}
.form_box dt .req {
	display: inline-block;
	margin-left: 10px;
	padding: 2px 6px;
	border-radius: 2px;
	background: var(--color-pink);
	color: var(--color-white);
	font-size: .75rem;
	font-weight: normal;
	line-height: 1.4;
	white-space: nowrap;
	vertical-align: middle;
}
.form_box dd {
	padding: 0 10px 10px;
	border-bottom: 1px solid var(--color-gray-200);
}

.form_box input[type="text"] ,
.form_box input[type="email"] ,
.form_box input[type="tel"] ,
.form_box textarea {
	border: 1px solid var(--color-gray-200);
	background-color: var(--color-white);
	border-radius: 4px;
}
.form_box input[type="text"] ,
.form_box input[type="email"] ,
.form_box input[type="tel"] {
	max-width: 100%;
}
.form_box textarea {
	width: 100%;
}
.form_box .zip_wrap {
	display: block;
}
.form_box .zip_wrap input {
	display: inline-block;
	width: 4em;
}
::placeholder{
	color: var(--color-gray-200);
}

.form_btn_box {
	margin-left: -5px;
	margin-right: -5px;
	text-align: center;
}
.form_btn_box input ,
.form_btn_box button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 320px;
	max-width: 46%;
	padding: 10px;
	border: none;
	border-radius: 50vh;
	background: var(--color-tertiary);
	color: var(--color-white);
	font-size: 1.125rem;
}
.form_btn_box input:hover ,
.form_btn_box button:hover {
	opacity: .5;
}
.form_btn_box button.confirm::before ,
.form_btn_box button.send::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-top: solid 2px var(--color-white);
	border-right: solid 2px var(--color-white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.form_btn_box button.back {
	background: var(--color-gray-200);
}
.form_btn_box button.back::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 20px;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	border: 0px;
	border-bottom: solid 2px var(--color-white);
	border-left: solid 2px var(--color-white);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form_btn_box .wpcf7-spinner {
	display: block;
}

@media only screen and (min-width: 768px) {
	/* contact ----------------------- pc */
	.form_info {
		margin-bottom: 40px;
	}
	.form_step em {
		padding: 20px 15px 20px 45px;
		font-size: 1rem;
	}
	.form_step em span {
		display: inline-block;
	}
	.form_box dt {
		padding: 20px 40px 10px;
	}
	.form_box dd {
		padding: 0 40px 20px;
	}
}



/* /////////////////////////////////////////////////////////////////////////////

 汎用CSS

///////////////////////////////////////////////////////////////////////////// */

/* テキスト関係 --------------------- */

.attention { /* 注意色(基本赤) */
	color: var(--color-dred);
}

.bold {
	font-weight: bold;
}

.text_SS {
	font-size: 75%;
}

.text_S {
	font-size: 86%;
}

.text_L {
	font-size: 120%;
}

.text_LL {
	font-size: 150%;
}

.text_LLL {
	font-size: 180%;
}


/* テキスト位置設定 ---------------- */

.entry_content p.center ,
.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


/* マージン関係 ------------------- */

.m0 {
	margin: 0;
}

.m10 {
	margin: 10px;
}

.mT10 {
	margin-top: 10px;
}

.mT20 {
	margin-top: 20px;
}

.mB5 {
	margin-bottom: 5px;
}

.mB10 {
	margin-bottom: 10px;
}

.mB20 {
	margin-bottom: 20px;
}

.mR5 {
	margin-right: 5px;
}

.mR10 {
	margin-right: 10px;
}

.mR20 {
	margin-right: 20px;
}

.mL5 {
	margin-left: 5px;
}

.mL10 {
	margin-left: 10px;
}

.mL20 {
	margin-left: 20px;
}

.mRL10 {
	margin: auto 10px;
}

/*　パディング関係 ------------------ */
.p0 {
	padding: 0;
}

.p10 {
	padding: 10px;
}

.pT5 {
	padding-top: 5px;
}

.pT10 {
	padding-top: 10px;
}

.pB10 {
	padding-bottom: 10px;
}

.pR10 {
	padding-right: 10px;
}

.pL10 {
	padding-left: 10px;
}

.pB20 {
	padding-bottom: 20px;
}

.pRL10 {
	padding: auto 10px;
}

/* フロート関係 ------------------- */

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clear,
.clearBoth {
	clear: both;
}

.clearfix:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}


@media only screen and (max-width: 767px) {
	.sp_hide {
		display: none;
	}
	.sp_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.pc_hide {
		display: none;
	}
	.pc_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}


/* =============================================================================

 Contact Form 7 – お問い合わせフォーム
 page-contact 専用スタイル

============================================================================= */

/* ── ページレイアウト調整 ─────────────────────────────────────── */

.page-contact {
	max-width: 800px;
	margin-inline: auto;
	padding-block: 40px;
}

/* ── フォームラッパー ─────────────────────────────────────────── */

.cf7-form-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* ── 行（ラベル + インプット） ─────────────────────────────────── */

.cf7-row {
	display: grid;
	grid-template-columns: 1fr;
	border-bottom: 1px solid var(--cf7-border);
	padding: 22px 0;
}

.cf7-row:first-child {
	border-top: 1px solid var(--cf7-border);
}

.cf7-row.cf7-submit-row {
	border-bottom: none;
	padding-top: 36px;
	padding-bottom: 0;
	align-items: center;
	justify-items: center;
}

@media only screen and (min-width: 768px) {
	.cf7-row {
		grid-template-columns: 220px 1fr;
		align-items: center;
		gap: 20px;
	}
	.cf7-row.cf7-submit-row {
		grid-template-columns: 1fr;
	}
}

/* ── ラベル ────────────────────────────────────────────────────── */

.cf7-label {
	display: block;
	font-weight: 600;
	font-size: .95rem;
	margin-bottom: 8px;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {
	.cf7-label {
		margin-bottom: 0;
	}
}

/* 必須バッジ */
.cf7-label .required {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 8px;
	border-radius: 3px;
	background: var(--cf7-error);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .04em;
	vertical-align: middle;
}

/* ── 共通インプットスタイル ──────────────────────────────────────── */

.cf7-input,
.cf7-select,
.cf7-textarea,
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--cf7-border);
	border-radius: var(--cf7-radius);
	background: #fff;
	color: var(--color-text);
	font-family: var(--font-main);
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color var(--cf7-transition), box-shadow var(--cf7-transition);
	appearance: none;
	-webkit-appearance: none;
}

.cf7-input:focus,
.cf7-select:focus,
.cf7-textarea:focus {
	outline: none;
	border-color: var(--cf7-focus);
	box-shadow: 0 0 0 3px rgba(248, 215, 42, .25);
}

.cf7-input::placeholder,
.cf7-textarea::placeholder {
	color: var(--color-gray-200);
}

/* ── ラジオボタン ──────────────────────────────────────────────── */

.wpcf7 .wpcf7-form-control.wpcf7-radio {
	border: none;
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	width: auto;
}

/* ── セレクトボックス ─────────────────────────────────────────── */

.cf7-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23505050' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}

/* ── テキストエリア ──────────────────────────────────────────── */

.cf7-textarea {
	min-height: 160px;
	resize: vertical;
	line-height: 1.7;
}

/* ── 送信ボタン ────────────────────────────────────────────────── */

.cf7-submit,
.wpcf7 input[type="submit"].cf7-submit {
	display: inline-block;
	min-width: 280px;
	padding: .8em 2.5em;
	border: none;
	border-radius: 50vh;
	background: var(--color-primary);
	color: var(--color-text);
	font-family: var(--font-main);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .08em;
	cursor: pointer;
	transition: background var(--cf7-transition), color var(--cf7-transition), transform .15s ease;
}

.cf7-submit:hover,
.wpcf7 input[type="submit"].cf7-submit:hover {
	background: var(--color-black);
	color: var(--color-primary);
	transform: translateY(-2px);
}

.cf7-submit:active {
	transform: translateY(0);
}

/* ── バリデーションエラー ────────────────────────────────────── */

.wpcf7-form-control-wrap {
	position: relative;
	display: block;
}

.wpcf7-not-valid {
	border-color: var(--cf7-error) !important;
	box-shadow: 0 0 0 3px rgba(204, 0, 0, .15) !important;
}

.wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	color: var(--cf7-error);
	font-size: .8rem;
	font-weight: 600;
}

/* ── レスポンスメッセージ ────────────────────────────────────── */

.wpcf7-response-output {
	margin: 28px 0 0;
	padding: 16px 20px;
	border-radius: var(--cf7-radius);
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.5;
}

/* 送信成功 */
.wpcf7-mail-sent-ok {
	border: 1.5px solid var(--cf7-success-txt);
	background: var(--cf7-success-bg);
	color: var(--cf7-success-txt);
}

/* 送信失敗・エラー */
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing,
.wpcf7-spam-blocked {
	border: 1.5px solid var(--cf7-error);
	background: #fdf0f0;
	color: var(--cf7-error);
}

/* ── スピナー（送信中） ──────────────────────────────────────── */

.wpcf7 .ajax-loader {
	display: inline-block;
	margin-left: 12px;
	vertical-align: middle;
}

/* ── CF7 デフォルト p タグを無効化 ─────────────────────────── */

.wpcf7 form p {
	margin: 0;
}


/* =============================================================================

 採用情報LP（page-recruit-02）専用スタイル

============================================================================= */

/* ── 共通変数・リセット ──────────────────────────────────────────── */
.rct-hero,
.rct-problem,
.rct-solution,
.rct-cta-mid,
.rct-voice,
.rct-message,
.rct-person,
.rct-motivation,
.rct-requirements,
.rct-entry {
	width: 100%;
}

/* ── セクションタイトル共通 ─────────────────────────────────────── */
.rct-section-title {
	text-align: center;
	margin-bottom: 40px;
}
.rct-section-title .en {
	display: block;
	font-family: var(--font-en);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary);
	letter-spacing: .1em;
	margin-bottom: 4px;
}
.rct-section-title .ja {
	display: block;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	font-weight: 700;
	line-height: 1.4;
}
.rct-section-title--wh .ja {
	color: var(--color-white);
}

/* ── ボタン ──────────────────────────────────────────────────────── */
.rct-btn {
	display: inline-block;
	min-width: 240px;
	padding: .85em 2.5em;
	border-radius: 50vh;
	background: var(--color-primary);
	color: var(--color-black);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .06em;
	text-decoration: none;
	text-align: center;
	transition: background .2s, color .2s, transform .15s;
}
.rct-btn:hover {
	background: var(--color-black);
	color: var(--color-primary);
	transform: translateY(-2px);
}
.rct-btn--wh {
	background: var(--color-white);
	color: var(--color-black);
}
.rct-btn--wh:hover {
	background: var(--color-primary);
	color: var(--color-black);
}

/* ══════════════════════════════════════════════════════════
   採用LP 共通
══════════════════════════════════════════════════════════ */
.rct-hero,
.rct-problem,
.rct-solution,
.rct-motivation,
.rct-voice,
.rct-message,
.rct-person,
.rct-requirements,
.rct-entry {
	width: 100%;
}
.rct-section-title {
	text-align: center;
	margin-bottom: 48px;
}
.rct-section-title .en {
	display: block;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: .08em;
	color: var(--color-primary);
	line-height: 1;
}
.rct-section-title .ja {
	display: block;
	font-size: clamp(1.5rem, 4.5vw, 2rem);
	font-weight: 700;
	color: var(--color-black);
	margin-top: 8px;
}
.rct-section-title--wh .ja,
.rct-section-title--wh .en {
	color: var(--color-white);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--color-black);
}
.rct-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.rct-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: .35;
}
.rct-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0,0,0,.6) 0%,
		rgba(0,0,0,.35) 60%,
		rgba(248,215,42,.08) 100%
	);
	z-index: 1;
}
.rct-hero__deco {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 80px;
	background: var(--color-primary);
	clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 0);
	z-index: 2;
}
.rct-hero__inner {
	position: relative;
	z-index: 3;
	max-width: 860px;
	margin: 0 auto;
	padding: 100px 24px 120px;
	text-align: center;
}
.rct-hero__title {
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.35;
	margin-bottom: 28px;
	letter-spacing: .02em;
}
.rct-hero__title--accent {
	color: var(--color-primary);
	font-style: normal;
}
.rct-hero__text {
	color: rgba(255,255,255,.85);
	font-size: clamp(.9rem, 2vw, 1.05rem);
	line-height: 2;
	margin-bottom: 40px;
}
.rct-hero__btn-wrap {
	text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROBLEM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-problem {
	background: #111;
	padding: 80px 24px;
}
.rct-problem__inner {
	max-width: 760px;
	margin: 0 auto;
}
.rct-problem__lead {
	margin-top: 40px;
	color: rgba(255,255,255,.65);
	font-size: .9rem;
	line-height: 2;
	text-align: center;
}

/* チェックリスト共通 */
.rct-check-list {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	padding: 0;
}
.rct-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 24px;
	border: 1px solid rgba(248,215,42,.25);
	border-radius: 6px;
	background: rgba(255,255,255,.03);
	color: var(--color-white);
	font-size: .95rem;
	line-height: 1.7;
}
.rct-check-list li::before {
	content: '✓';
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary);
	color: var(--color-black);
	font-size: .8rem;
	font-weight: 700;
	border-radius: 4px;
	margin-top: 1px;
}
/* NG（✗）バリアント */
.rct-check-list--ng li::before {
	content: '✓';
	background: var(--color-primary);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOLUTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-solution__head {
	background: var(--color-primary);
	padding: 70px 24px 60px;
}
.rct-solution__head-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.rct-solution__headline {
	font-size: clamp(2rem, 5vw, 2.8rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-black);
	margin-bottom: 24px;
}
.rct-solution__headline em {
	font-style: normal;
}
/* SP専用改行 */
.sp-br { display: none; }
@media only screen and (max-width: 767px) {
	.sp-br { display: block; }
}
/* SP非表示（句読点など） */
.sp-hide { display: inline; }
@media only screen and (max-width: 767px) {
	.sp-hide { display: none; }
}

.rct-solution__sub {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 20px;
}
.rct-solution__lead {
	font-size: .95rem;
	line-height: 2;
	color: var(--color-black);
	text-align: left;
}
@media only screen and (min-width: 768px) {
	.rct-solution__lead { text-align: center; }
}
.rct-solution__photo {
	margin-top: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.rct-solution__photo img {
	width: 100%;
	height: auto;
	display: block;
}
.rct-solution__body {
	background: var(--color-black);
	padding: 60px 24px 80px;
}
.rct-solution__body-inner {
	max-width: 1000px;
	margin: 0 auto;
}
.rct-promises-label {
	text-align: center;
	font-size: clamp(1.3rem, 4vw, 1.8rem);
	font-weight: 700;
	color: var(--color-primary);
	letter-spacing: .06em;
	margin-bottom: 36px;
}
.rct-promises {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.rct-promise {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(248,215,42,.3);
	border-radius: 8px;
	padding: 36px 28px;
	text-align: center;
}
.rct-promise__title {
	font-size: clamp(1.4rem, 3.5vw, 1.75rem);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.6;
	margin-bottom: 16px;
}
.rct-promise__title em {
	font-style: normal;
}
.rct-promise__text {
	font-size: .875rem;
	color: rgba(255,255,255,.75);
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.rct-promise__text {
		text-align: left;
	}
}

@media only screen and (min-width: 768px) {
	.rct-promises {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA（中間）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-cta-mid {
	padding: 56px 24px;
	text-align: center;
	background: #111;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VOICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-voice {
	background: #111;
	padding: 80px 24px;
}
.rct-voice__inner {
	max-width: 760px;
	margin: 0 auto;
}
.rct-voice-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.rct-voice-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rct-voice-item__name {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--color-primary);
	margin: 0;
}
.rct-voice-item__profile {
	display: inline-block;
	font-size: .8rem;
	color: rgba(255,255,255,.55);
	font-weight: 400;
	margin-left: 12px;
}
.rct-voice-item__video {
	width: 100%;
	aspect-ratio: 16/9;
}
.rct-video-placeholder {
	width: 100%;
	height: 100%;
	background: #2a2a2a;
	border-radius: 4px;
}
.rct-voice-item__text {
	font-size: .9rem;
	line-height: 1.9;
	color: rgba(255,255,255,.75);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CEO MESSAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-message {
	background: #0d0d0d;
	padding: 80px 24px;
}
.rct-message__inner {
	max-width: 900px;
	margin: 0 auto;
}
.rct-message__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
}
.rct-message__photo {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 3/4;
	background: var(--color-gray-800);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin: 0 auto;
}
.rct-message__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.rct-message__photo-placeholder {
	color: rgba(255,255,255,.3);
	font-size: .75rem;
	letter-spacing: .1em;
}
.rct-message__headline {
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 20px;
	line-height: 1.3;
}
.rct-message__quote {
	border-left: 4px solid var(--color-primary);
	padding-left: 24px;
	font-size: .95rem;
	line-height: 2;
	color: rgba(255,255,255,.8);
	margin: 0 0 24px;
}
.rct-message__name {
	font-size: .9rem;
	line-height: 1.8;
	color: rgba(255,255,255,.6);
	text-align: right;
}
.rct-message__name strong {
	font-size: 1rem;
	color: var(--color-white);
}

@media only screen and (min-width: 768px) {
	.rct-message__body {
		flex-direction: row;
		align-items: flex-start;
	}
	.rct-message__photo {
		margin: 0;
	}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PERSON TYPE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-person {
	background: #111;
	padding: 80px 24px;
}
.rct-person__inner {
	max-width: 760px;
	margin: 0 auto;
}
.rct-person__note {
	color: rgba(255,255,255,.55);
	font-size: .85rem;
	line-height: 1.8;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,.1);
	padding-top: 24px;
	margin-top: 32px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOTIVATION CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-motivation {
	position: relative;
	background-color: var(--color-black);
	background-image: url(images/recruit/rec_bg.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 100px 24px;
	overflow: hidden;
}
.rct-motivation__deco {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.55);
	pointer-events: none;
}
.rct-motivation__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.rct-motivation__title {
	font-size: clamp(1.4rem, 4vw, 2.2rem);
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1.5;
	margin-bottom: 28px;
	letter-spacing: .02em;
}
.rct-motivation__lead {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 32px;
}
.rct-motivation__text {
	color: rgba(255,255,255,.75);
	font-size: .95rem;
	line-height: 2.2;
	margin-bottom: 44px;
	text-align: center;
}
.rct-motivation__text p {
	margin-bottom: 24px;
}
.rct-motivation__btn {
	text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REQUIREMENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-requirements {
	background: #0d0d0d;
	padding: 80px 24px;
}
.rct-requirements__inner {
	max-width: 860px;
	margin: 0 auto;
}
.rct-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}
.rct-table th,
.rct-table td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(255,255,255,.08);
	vertical-align: top;
	line-height: 1.9;
	text-align: left;
	color: var(--color-white);
}
.rct-table th {
	width: 130px;
	min-width: 110px;
	font-weight: 700;
	white-space: nowrap;
	background: rgba(248,215,42,.08);
	color: var(--color-primary);
	border-right: 3px solid var(--color-primary);
}
.rct-table td small {
	display: block;
	color: rgba(255,255,255,.5);
	font-size: .8rem;
	margin-top: 4px;
}

@media only screen and (max-width: 599px) {
	.rct-table th,
	.rct-table td {
		display: block;
		width: 100%;
	}
	.rct-table th {
		border-right: none;
		border-bottom: none;
		padding-bottom: 8px;
	}
	.rct-table td {
		padding-top: 8px;
		padding-bottom: 20px;
	}
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ENTRY FORM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rct-entry {
	background: #111;
	padding: 80px 24px;
}
.rct-entry__inner {
	max-width: 680px;
	margin: 0 auto;
}
.rct-entry__lead {
	text-align: center;
	font-size: .9rem;
	color: rgba(255,255,255,.6);
	margin-bottom: 40px;
}
.rct-entry__form {
	background: var(--color-white);
	border-radius: 8px;
	padding: 40px 32px;
	box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.rct-entry__btn-wrap {
	text-align: center;
	margin-top: 8px;
}
.rct-btn--lg {
	font-size: 1.05rem;
	padding: 18px 48px;
}
