@charset "UTF-8";

/*
Theme Name: child
Theme URI:
Description:
Template: twentytwentyone
Author: makesview
Author URI: https://makes-view.co.jp/
Version: 1.0.0
*/

:root {
	--main-color: #000;
	--sub-color: #fff;
}

body {
	color: #000000;
	font-size: 16px;
	line-height: 1.7;
}

a[href $='.pdf'] {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	text-decoration: underline;
	color: #000;
	line-height: 1.5;
}

a[href $='.pdf']::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 30px;
	height: 38px;
	background-image: url(/wp-content/themes/child/image/icon/icon_pdf.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-right: 15px;
}

a[href $='.pdf']:hover {
	text-decoration: none;
}

.wrap {
	width: 1140px;
	margin: 0 auto;
}

.wrap.mid {
	width: 1240px;
}

.wrap.lr {
	width: 1340px;
}

/* PC固定ページ 共通設定 */
.common_page_main {
	background: #F5F5F5;
	padding-block: 140px;
	margin-block: 0 1em;
}

.common_page_main .title_box {
	text-align: center;
}

.common_page_main .title_box .title {
	font-size: 40px;
	letter-spacing: .08em;
	font-weight: 700;
	line-height: 1.5;
}

.common_page_wrap {
	padding: 100px 0;
}

.not_found .text {
	text-align: center;
}

.reserve_text {
	text-align: center;
	font-size: 30px;
}

/* パンくず */
.breadcrumb {
	font-size: 12px;
	color: #3E3E3E;
	letter-spacing: .08em;
}

.breadcrumb a {
	text-decoration: none;
	color: #3E3E3E;
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
	letter-spacing: .08em;
	font-weight: 400;
	text-align: center;
	margin-block: 0 3.8em;
}

.contact_form_disc .text {
	font-size: 15px;
	margin-block: 0 1em;
	font-weight: 600;
	text-align: left;
}

.contact_form_disc .caution {
	font-size: 14px;
	font-weight: 500;
	text-align: left;
}

.common_contact_form .form_box {
	margin-block: 0 50px;
}

.common_contact_form .form_box dl {
	padding-bottom: 25px;
	display: grid;
	grid-template-columns: 26.5% 1fr;
	align-items: center;
	gap: 80px;
	border-bottom: 2px solid #F0F0F0;
}

.common_contact_form .form_box dl.start {
	align-items: flex-start;
}

.common_contact_form .form_box dl+dl {
	margin-block: 1.6em 0;
}

.common_contact_form .form_box dl dt {
	display: flex;
	align-items: center;
	gap: 1.3em;
	font-size: 16px;
	letter-spacing: .08em;
	font-weight: 700;
	padding-inline: 0 0.5em;
	position: relative;
}

.common_contact_form .form_box dl dt .label {
	flex-shrink: 0;
	font-size: 14px;
	letter-spacing: .2em;
	font-weight: 700;
	border-radius: 2px;
	padding: 0.2em 0.9em;
}

.common_contact_form .form_box dl dt .label.hissu {
	background: #F2A905;
	color: #fff;
}

.common_contact_form .form_box dl dt .label.ninni {
	background: #919191;
	color: #fff;
}

.common_contact_form .form_box dl dt::after {
	content: "";
	width: 1px;
	height: 30px;
	background: #FAFAFA;
	position: absolute;
	top: 0;
	right: 0;
}

.common_contact_form input[type="text"],
.common_contact_form input[type="email"],
.common_contact_form #zip {
	width: 100%;
	background: #FAFAFA;
	border-radius: 2px;
	font-size: 15px;
	letter-spacing: .08em;
	font-weight: 400;
	padding: 0.8em 1em;
}

.common_contact_form textarea {
	width: 100%;
	height: 180px;
	background: #FAFAFA;
	border-radius: 2px;
	padding: 1em;
	font-size: 15px;
	letter-spacing: .08em;
	font-weight: 400;
}

.common_contact_form input::placeholder,
.common_contact_form textarea::placeholder {
	color: #C7C4C4;
}

.common_contact_form select {
	width: 47.5%;
	background: #F8F8F8;
	border: 1px solid #E6E6E6;
	border-radius: 4px;
	font-size: 14px;
	letter-spacing: .08em;
	padding: 1.1em 1em;
}

.common_contact_form select.empty {
	color: #C7C4C4;
}

.page_contact #btn_wrap {
	justify-content: center;
	text-align: right;
	width: 74%;
	margin: auto;
}

.page_contact #btn_wrap button {
	background-color: #F2A905;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	color: #fff;
	display: block;
	width: 310px;
	line-height: 60px;
	font-size: 14px;
	font-weight: 600;
	transition: .3s;
	text-align: center;
	letter-spacing: .08em;
	margin: auto;
	position: relative;
	/* 矢印用の余白を追加 */
	padding-right: 2.5em;
}

.page_contact #btn_wrap button::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 1;
}

.page_contact #btn_wrap button::before {
	content: "";
	position: absolute;
	right: calc(17px + 30px / 2);
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: 2px solid #F2A905;
	border-right: 2px solid #F2A905;
	pointer-events: none;
	z-index: 2;
	background: none;
}

.page_contact #btn_wrap button[name="submitBack"] {
	background: #333;
	margin-top: 20px;
}

.page_contact #btn_wrap button:hover {
	opacity: .8;
}

.privacy_term_outer .privacy_term_inner {
	height: 200px;
	margin: auto;
	overflow: auto;
}

.privacy_term_outer .privacy_term_inner .privacy_index {
	font-size: 14px;
}

.privacy_term_outer .privacy_term_inner .main_text {
	font-size: 14px;
	margin-bottom: 25px;
	font-weight: 500;
}

.privacy_term_outer .privacy_term_inner dl dt {
	font-size: 14px;
	padding-left: 1em;
	margin-bottom: 5px;
	position: relative;
	font-weight: 500;
}

.privacy_term_outer .privacy_term_inner dl dt::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: #2E2E2E;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.privacy_term_outer .privacy_term_inner dl dd {
	font-size: 13px;
}

.privacy_term_outer .privacy_term_inner dl+dl {
	margin-top: 30px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar {
	width: 8px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-track {
	background: transparent;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 10px;
}

.privacy_term_outer {
	padding: 30px 20px;
	background-color: #FAFAFA;
	width: 720px;
	height: 200px;
	margin: 35px auto 50px;
}

.privacy_check_list .mwform-checkbox-field-text {
	padding-right: 0;
}

.privacy_check_list .error {
	font-size: 12px;
}

.privacy_term_detail {
	text-align: center;
	font-size: 13px;
	margin: 20px 0;
	position: relative;
	font-weight: 600;
}

.privacy_term_detail::after {
	content: "";
	margin: 5px auto 0;
	border: solid #333;
	border-width: 2px 2px 0 0;
	width: 10px;
	aspect-ratio: 1 / 1;
	min-width: 0;
	rotate: 135deg;
	display: block;
}

.mw_wp_form_confirm .privacy_check_list,
.mw_wp_form_confirm .privacy_term_detail {
	display: none;
}

/* ラジオボタン デザイン */
.radio_btns,
.checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1.5em;
}

/* ラジオボタンを隠す */
.radio_btns input[type=radio].radio_btns__item {
	display: none;
}

.radio_btns label {
	display: inline-block;
	cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
/* .radio_btns .radio_btns__item+span {
    font-size: 14px;
    letter-spacing: .08em;
    font-weight: 500;
    padding-left: 2em;
    display: inline-block;
    position: relative;
} */

/* 各パーツを作成 */
/* .radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #2E2E2E;
    border-radius: 1px;
    width: 15px;
    aspect-ratio: 1;
    min-width: 0;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
} */

/* after上書き */
/* .radio_btns .radio_btns__item+span::after {
    width: 10px;
    aspect-ratio: 1;
    min-width: 0;
    top: 1px;
    left: 2px;
    border: none;
    background: #5A5A5A;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
} */

/* spanの左側にボタンを配置するスペースを作る */
.radio_btns .radio_btns__item+span {
	color: #3E3E3E;
	font-size: 15px;
	letter-spacing: .08em;
	font-weight: 600;
	padding-left: 2em;
	display: inline-block;
	position: relative;
}

/* 各パーツを作成 */
.radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
	content: '';
	display: block;
	position: absolute;
	border: 1px solid #E6E6E6;
	background: #F8F8F8;
	border-radius: 50%;
	width: 20px;
	aspect-ratio: 1;
	min-width: 0;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

/* after上書き */
.radio_btns .radio_btns__item+span::after {
	width: 10px;
	aspect-ratio: 1;
	min-width: 0;
	top: 0px;
	left: 5px;
	border: none;
	background: #5A5A5A;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	transition: all .3s;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio_btns .radio_btns__item:checked+span::after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* チェックボックス デザイン */
.page_contact input[type="checkbox"] {
	/* デフォルトcheckボックス非表示*/
	display: none;
}

.mwform-checkbox-field label {
	cursor: pointer;
}

.mwform-checkbox-field-text {
	color: #3E3E3E;
	font-size: 15px;
	letter-spacing: .08em;
	font-weight: 600;
	display: inline-block;
	position: relative;
	padding: 0 0 0 30px;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
	content: "";
	position: absolute;
	display: block;
}

.mwform-checkbox-field-text::before {
	background: #F8F8F8;
	border: 1px solid #E6E6E6;
	border-radius: 2px;
	width: 20px;
	aspect-ratio: 1 / 1;
	min-width: 0;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.mwform-checkbox-field-text::after {
	border-width: 3px;
	border-color: transparent transparent #333 #333;
	border-style: solid;
	width: 20px;
	aspect-ratio: 2/1;
	min-width: 0;
	margin-top: -0.2em;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(-45deg);
	opacity: 0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
	opacity: 1;
}

.mw_wp_form .horizontal-item {
	display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
	margin-left: 0 !important;
}

/* サンクスページ */

.page_contact .thanks_textArea .name {
	font-size: 16px;
	line-height: 2;
	text-align: center;
	margin-bottom: 20px;
}

.page_contact .thanks_textArea .contact_text {
	margin: 0 auto 50px;
	width: 62%;
}

.page_contact .thanks_textArea .ichiran_link {
	background-color: var(--main-color);
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	color: #fff;
	display: block;
	width: 300px;
	line-height: 50px;
	border-radius: 4px;
	font-size: 16px;
	transition: .3s;
	margin: 0 auto;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: .08em;
	text-align: center;
}

.page_contact .thanks_textArea .ichiran_link:hover {
	opacity: .8;
}

.page_contact .thanks_textArea .contact_text .space {
	display: block;
}

.page_contact .thanks_textArea .contact_text .space {
	display: block;
	margin-top: 10px;
}

/* ステップバー デザイン */
.page_contact .progressbar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5.6em;
	margin-block: 0 3em;
}

.page_contact .progressbar .item {
	color: #3E3E3E;
	font-size: 16px;
	letter-spacing: .08em;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
	position: relative;
}

.page_contact .progressbar .item+.item::before {
	content: "";
	width: 50px;
	height: 1px;
	background: #E6E6E6;
	position: absolute;
	top: 64%;
	left: -5em;
}

.page_contact .progressbar .item .mark {
	width: 30px;
	aspect-ratio: 1;
	background: #fff;
	border: 1px solid #AFAFAF;
	border-radius: 50%;
	display: block;
	margin: 0 auto 0.5em;
	position: relative;
}

.page_contact .progressbar .item .mark::before {
	content: "";
	width: 76%;
	aspect-ratio: 1;
	background: #F2A905;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	opacity: 0;
}

.page_contact .progressbar .item.active .mark::before {
	opacity: 1;
}

.page_contact .progressbar .item .en {
	display: block;
	letter-spacing: 0;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 15px;
	font-weight: 500;
}

.privacy_check_list {
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}

.privacy_check_list .hissu {
	background: #c70200;
	color: #fff;
	padding: 2px 15px;
	font-size: 10px;
	letter-spacing: .08em;
	border-radius: 30px;
	font-weight: 600;
}

.mw_wp_form .privacy_check_list .horizontal-item {
	margin: 0;
}

/* PC固定ページ 個人情報保護方針 */
.page_privacy .main_text {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 3em;
}

.page_privacy dl {
	margin-bottom: 50px;
}

.page_privacy dl:last-child {
	margin-bottom: 0;
}

.page_privacy dl dt {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: .5em;
	border-left: 3px solid #ccc;
	padding-left: 1em;
}

.page_privacy dl dd {
	font-size: 14px;
	line-height: 2;
}

/* PC固定ページ 404ページ */
#page_404 {
	text-align: center;
}

#page_404 .num {
	font-size: 100px;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#page_404 .text {
	margin-bottom: 1em;
	font-size: 16px;
}

/* PC固定ページ アーカイブページ */
/* 投稿リスト表示 */
.archive_page_list>article {
	padding-bottom: 15px;
	padding-top: 15px;
	border-bottom: 1px dashed #eee;
	padding-right: 30px;
}

.archive_page_list>article:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	right: 5px;
	bottom: 0;
	margin: auto;
	border: solid #ccc;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
}

.archive_page_list>article .date {
	font-weight: bold;
	font-size: 80%;
	width: 100px;
}

.archive_page_list>article .content_area {
	width: calc(100% - 100px);
}

.archive_page_list>article .content_area .ttl {
	font-weight: bold;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.archive_page_list>article .content_area .content {
	font-size: 80%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

/* wp-pagenavi base */
.wp-pagenavi {
	text-align: center;
	margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-block;
	color: #999;
	background-color: #FFF;
	border: solid 1px #e0e0d2;
	padding: 8px 15px;
	margin: 0 2px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
}

.wp-pagenavi a:hover {
	color: #FFF;
	background-color: var(--main-color);
	border-color: var(--main-color);
}

.wp-pagenavi .current {
	color: #FFF;
	background-color: var(--main-color);
	border-color: var(--main-color);
	font-weight: bold;
}



*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

img,
picture {
	max-width: 100%;
	display: block;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: source-han-sans-japanese, sans-serif;
	color: #2e2e2e;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
}

@font-face {
	font-family: "Zou002";
	src: url("fonts/002zouver.2-Regular.ttf") format("woff");
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "DelaGothicOne";
	src: url("fonts/DelaGothicOne-Regular.ttf") format("woff");
	font-weight: 400;
	font-style: normal;
}

body.is-fixed {
	overflow: hidden;
	height: 100%;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}

a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.6;
}

.wrap_1 {
	max-width: 1140px;
	margin: 0 auto;
}

.wrap_2 {
	max-width: 1240px;
	margin: 0 auto;
}

.wrap_3 {
	max-width: 1340px;
	margin: 0 auto;
}

.pc {
	display: block;
}

.sp {
	display: none !important;
}

/* header */
.header {
	min-width: 1440px;
	width: 100%;
	position: absolute;
	z-index: 100;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}

.header .inner {
	padding: 30px 50px 0;
	width: 100%;
	height: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header .logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .logo a {
	width: 250px;
	font-family: "DelaGothicOne", sans-serif;
	display: block;
}

.header .logo a img {
	width: 100%;
}

.header .nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
}

.header .nav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.header .nav_item,
.header .nav_item_b {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header .nav_item:not(:first-child),
.header .nav_item_b:not(:first-child) {
	margin-left: 30px;
}

.header .nav_item a,
.header .nav_item_b a {
	height: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: 0.18em;
	position: relative;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	/* もし英語に戻すならこれ戻す */
	/* font-family: "Zou002", sans-serif; */
	font-weight: 900;
}

.header .nav_item a:hover,
.header .nav_item_b a:hover {
	color: #F2A905;
	opacity: 1;
}

.header .nav_item:not(:last-child) a::after,
.header .nav_item_b:not(:last-child) a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	-webkit-transition: width 0.3s ease;
	transition: width 0.3s ease;
}

.header .nav_item a:hover::after,
.header .nav_item_b a:hover::after {
	width: 100%;
}

.header .nav_item:last-child a,
.header .nav_item_b:last-child a {
	padding: 18px 50px;
	height: 50px;
	color: #ffffff;
	background-color: #2e2e2e;
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.header .nav_item:last-child a::before,
.header .nav_item_b:last-child a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #F2A905;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	z-index: -1;
}

.header .nav_item:last-child a:hover::before,
.header .nav_item_b:last-child a:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.header .nav_item:last-child a,
.header .nav_item_b:last-child a {
	position: relative;
	z-index: 1;
}

.header .nav_item:last-child a:hover,
.header .nav_item_b:last-child a:hover {
	color: #ffffff;
	opacity: 1;
}

.header .nav_item:last-child a,
.header .nav_item_b:last-child a {
	/* Ensure text is above the pseudo-element */
	position: relative;
	z-index: 1;
}

.header_hamburger_wrap,
.header_drawer {
	display: none;
}

/* fv */
.fv {
	position: relative;
	background-image: url("image/fv.jpg");
	background-size: cover;
	background-position: center center;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	min-width: 1440px;
	height: 720px;
	/* z-index: 3; */
	width: 100%;
}

.fv::before {
	content: "";
	inset: 0;
	background: linear-gradient(to bottom, rgba(186, 71, 5, 0) 0%, rgba(186, 71, 5, 0.1) 50%, rgba(186, 71, 5, 0.3) 100%);
	mix-blend-mode: color-burn;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.fv .inner {
	padding-top: 551px;
	height: inherit;
	width: 100%;
	position: relative;
	z-index: 2;
}

.fv .title {
	font-size: 112px;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.fv .title_1 {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-animation: fadeUpAnime 1s ease-out forwards;
	animation: fadeUpAnime 1s ease-out forwards;
}

.fv .title_2 {
	margin-top: 10px;
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-animation: fadeUpAnime 1s ease-out forwards;
	animation: fadeUpAnime 1s ease-out forwards;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

@-webkit-keyframes fadeUpAnime {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.fv .title .bg_yellow {
	margin-left: 10px;
	padding: 0 20px;
	font-size: 144px;
	position: relative;
}

.fv .title .bg_yellow::before {
	content: "";
	display: block;
	width: 100%;
	height: 170px;
	background-color: #F2A905;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.fv .title .yellow {
	color: #F2A905;
	background-image: radial-gradient(circle at center, #F2A905 13%, transparent 13%);
	/* 点の色とサイズ調整 */
	background-position: top right;
	/* 点の位置 */
	background-repeat: repeat-x;
	/* 横方向に繰り返し */
	background-size: 1em 0.4em;
	/* 点の間隔とサイズ調整 */
	padding-top: 0.1em;
	/* 縦方向の位置調整 */
}

/* message */
.message {
	min-width: 1440px;
	width: 100%;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #FFFAEF calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #FFFAEF calc(100% - 1px));
	background-size: 50px 50px;
	background-repeat: repeat;
	background-position: center center;
}

.message .loop_wrap {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	background-color: #F2A905;
	color: #ffffff;
	padding-bottom: 10px;
}

.message .loop_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: loop-slide 60s infinite linear 1s both;
	animation: loop-slide 60s infinite linear 1s both;
	list-style: none;
	margin: 0;
	padding: 0;
}

.message .loop_area .loop_title {
	padding: 0 0.4em;
	font-size: 50px;
	font-family: "Zou002", sans-serif;
}

@-webkit-keyframes loop-slide {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes loop-slide {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.message .title {
	/* margin-top: 100px; */
	text-align: right;
	font-size: 40px;
	font-weight: 900;
	color: #F2A905;
	/* text-decoration: underline; */
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.message .title .title_1 {
	font-family: "Zou002", sans-serif;
}

.message .title .title_2 {
	font-size: 60px;
	font-weight: 900;
	margin-top: 15px;
	letter-spacing: 0.1em;
}

.message .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	/* align-items: center; */
	margin-top: 90px;
	z-index: -1;
}

.message .img_wrap {
	aspect-ratio: 520/680;
	max-width: 520px;
	width: 100%;
	position: relative;
}

.message .img_wrap img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.message .text_wrap {
	margin-left: 70px;
	max-width: 620px;
	font-size: 24px;
	font-weight: 700;
	color: #F2A905;
	flex-grow: 1;
}

.message .text_wrap .text_box+.text_box {
	margin-top: 50px;
}

.message .text_wrap .text_box .title {
	font-size: 20px;
	color: #ffffff;
	padding: 14px;
	background-color: #2e2e2e;
	display: inline-block;
	text-decoration: unset;
	margin-bottom: .5em;
}

.message .text_wrap .text_box .title .en {
	font-size: 28px;
	margin-right: 0.2em;
	font-family: "Zou002", sans-serif;
}

.message .text_wrap .text_box .text {
	color: #F2A905;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.5;
	padding: 0.5em;
	letter-spacing: 0.1em;
	background-color: #fff;
	border: 3px solid #2e2e2e;
	box-shadow: 5px 5px 0px rgb(0, 0, 0);
}

.message .text+.text {
	/* margin-top: 50px; */
}

.message .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.message .swiper_1 {
	margin-top: 100px;
}

.message .swiper-slide {
	aspect-ratio: 480/270;
	width: 100%;
}

.message .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.message .swiper_2 {
	margin-top: 25px;
	position: relative;
}

.message .swiper_2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 140px;
	background-color: #F2A905;
}

/* about */
.about {
	padding-top: 104px;
	min-width: 1440px;
	width: 100%;
	background-color: #F2A905;
}

.about .title_wrap {
	padding-left: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	position: relative;
}

.about .title_wrap::before {
	content: "";
	position: absolute;
	bottom: 28px;
	left: 0;
	width: 60px;
	height: 40px;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
	background-position: 20px 20px, 40px 40px;
	background-size: 40px 40px;
	z-index: 1000;
	pointer-events: none;
}

.about .title_wrap::after {
	content: "";
	position: absolute;
	bottom: 28px;
	right: 0;
	width: 592px;
	height: 40px;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
	background-position: 20px 20px, 40px 40px;
	background-size: 40px 40px;
	z-index: 1000;
	pointer-events: none;
}

.about .title_wrap .en_title {
	margin-top: -56px;
	font-size: 88px;
	color: #ffffff;
	font-family: "Zou002", sans-serif;
}

.about .title_wrap .title {
	margin-left: 4px;
	font-size: 56px;
	color: #ffffff;
	font-family: "DelaGothicOne", sans-serif;
}

.about .content {
	margin-top: 50px;
}

.about .content .img_wrap {}

.about .content .img_wrap.img_renovation {
	width: 100%;
}

.about .content .img_wrap.img_renovation+.img_wrap.img_renovation {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 2px dashed #fff;
}

.about .content .img_wrap.img_exterior,
.about .content .img_wrap.img_interior {
	aspect-ratio: 755/338;
	max-width: 755px;
	width: 100%;
}

.about .content .img_wrap.img_interior {
	margin-top: 24px;
}

.about .content .img_wrap {
	position: relative;
}

.about .content .img_wrap img {
	padding: 10px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

.about .content .img_wrap::before {}

.about .content .img_wrap {
	position: relative;
}

.about .content .img_wrap .img_title {
	position: absolute;
	color: rgba(255, 255, 255, 0.23);
	z-index: 1;
	font-family: "Zou002", sans-serif;
}

.about .content .img_wrap .img_title.about_01 {
	top: 28px;
	right: -40px;
	font-size: 104px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 0.001em;
}

.about .content .img_wrap .img_title.about_02,
.about .content .img_wrap .img_title.about_03 {
	bottom: -20px;
	right: 10px;
	font-size: 88px;
}

.about .content .img_wrap .text_wrap {
	color: #ffffff;
	font-weight: 700;
	z-index: 2;
}

.about .content .img_wrap .text_wrap .title_en {
	color: #ffffff;
	padding: 14px;
	background-color: #2e2e2e;
	display: inline-block;
	font-family: "Zou002", sans-serif;
}

.about .content .img_wrap .text_wrap .flex_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about .content .img_wrap .text_wrap .en_ttl {
	font-size: 40px;
	font-family: "Zou002", sans-serif;
	opacity: .6;
}

.about .content .img_wrap .text_wrap .title_ja {
	padding: 0.4em;
	font-size: 48px;
	line-height: 1;
	font-weight: 900;
	color: #F2A905;
	background-color: #ffffff;
	display: inline-block;
}

.about .content .img_wrap .text_wrap .text {
	margin-bottom: 0.6em;
	letter-spacing: -0.001em;
	font-size: 16px;
}

.about .content .img_wrap .text_wrap .text_renovation {}

.about .content .img_wrap .text_wrap .inner_grid_area {
	display: grid;
	gap: 10px;
	margin-top: 30px;
}

.about .content .img_wrap .text_wrap .inner_grid_area.two {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.about .content .img_wrap .text_wrap .inner_grid_area.three {
	grid-template-columns: repeat(3, 1fr);
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_btn {
	background-color: #F2A905;
	color: #fff;
	text-align: center;
	padding: 1em;
	font-size: 16px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 2px solid #fff;
	font-weight: 700;
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn {
	display: block;
	position: relative;
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn .btn_img {
	width: 100%;
	aspect-ratio: 5/3;
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn .btn_img img {
	width: 100%;
	height: 100%;
	padding: 0;
	object-fit: cover;
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn .letter {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #F2A905;
	font-weight: normal;
	padding: 0.8em;
	line-height: 1.5;
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	position: relative;
}

.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn .letter::after,
.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.8em;
	width: .55em;
	height: .55em;
	border: 2px solid currentColor;
	border-left: none;
	border-bottom: none;
	transform: translateY(-50%) rotate(45deg);
}

.about .content .img_wrap .text_wrap .text_exterior,
.about .content .img_wrap .text_wrap .text_interior {}

/* strength */
.strength {
	padding-top: 100px;
	padding-bottom: 120px;
	min-width: 1440px;
	width: 100%;
	background-color: #F2A905;
}

.strength .title_wrap {
	padding-left: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	position: relative;
}

.strength .title_wrap::before {
	content: "";
	position: absolute;
	bottom: 28px;
	left: 0;
	width: 60px;
	height: 40px;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
	background-position: 20px 20px, 40px 40px;
	background-size: 40px 40px;
	z-index: 1000;
	pointer-events: none;
}

.strength .title_wrap::after {
	content: "";
	position: absolute;
	bottom: 28px;
	right: 0;
	width: 468px;
	height: 40px;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
	background-position: 20px 20px, 40px 40px;
	background-size: 40px 40px;
	z-index: 1000;
	pointer-events: none;
}

.strength .title_wrap .en_title {
	margin-top: -56px;
	font-size: 88px;
	color: #ffffff;
	font-family: "Zou002", sans-serif;
}

.strength .title_wrap .title {
	margin-left: 4px;
	font-size: 56px;
	color: #ffffff;
	font-family: "DelaGothicOne", sans-serif;
}

.strength .content {
	margin-top: 50px;
}

.strength .content .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 55px;
}

.strength .content .item:not(:first-child) {
	margin-top: 80px;
}

.strength .content .item:nth-child(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.strength .content .item .img_wrap {
	aspect-ratio: 760/460;
	max-width: 760px;
	width: 100%;
	background-color: #ffffff;
}

.strength .content .item .img_wrap img {
	padding: 10px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.strength .content .item .text_wrap {
	max-width: 505px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
}

.strength .content .item .text_wrap .title_en {
	font-size: 24px;
	font-weight: 400;
	color: #ffffff;
	background-color: #2e2e2e;
	padding: 14px;
	display: inline-block;
	font-family: "Zou002", sans-serif;
}

.strength .content .item:nth-child(even) .text_wrap .title_en {
	margin-left: 23px;
}

.strength .content .item .text_wrap .title_ja {
	margin-top: 15px;
	padding: 0 10px;
	font-size: 72px;
	font-weight: 900;
	color: #2e2e2e;
	background-color: #ffffff;
	display: inline-block;
	white-space: nowrap;
	z-index: 1;
	position: relative;
}

.strength .content .item .text_wrap .title_ja_2 {
	margin-top: 0;
}

.strength .content .item:nth-child(even) .text_wrap .title_ja {
	margin-left: -268px;
}

.strength .content .item .text_wrap .title_ja span {
	color: #F2A905;
}

.strength .content .item .text_wrap .text {
	margin-top: 30px;
	font-size: 19px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.strength .content .item .text_wrap .number {
	position: absolute;
	bottom: -63px;
	right: -25px;
	font-size: 160px;
	font-weight: 400;
	font-family: "Zou002", sans-serif;
	color: #F2A905;
	mix-blend-mode: multiply;
	opacity: 0.3;
}

/* interview */
.interview {
	padding-top: 113px;
	padding-bottom: 120px;
	min-width: 1440px;
	width: 100%;
	background-image: url(image/interview_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.interview .title_wrap {
	margin-left: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	font-weight: 400;
}

.interview .title_wrap .en_title {
	font-size: 88px;
	color: #F2A905;
	font-family: "Zou002", sans-serif;
}

.interview .title_wrap .title {
	margin-top: 60px;
	margin-left: 4px;
	font-size: 56px;
	font-family: "DelaGothicOne", sans-serif;
}

.interview .content {
	margin-top: 53px;
	padding: 0 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
}

.interview .content .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.interview .content .item .comment_wrap {
	margin-bottom: 20px;
	padding: 16px;
	position: relative;
	display: inline-block;
	width: 420px;
	border: 3px solid #2e2e2e;
	background-color: #ffffff;
	text-align: center;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.5;
	z-index: 1;
	-webkit-box-shadow: 5px 5px 0px rgb(0, 0, 0);
	box-shadow: 5px 5px 0px rgb(0, 0, 0);
}

.interview .content .item .comment_wrap::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #2e2e2e transparent transparent;
	translate: -50% 100%;
	-webkit-transform: skew(-22deg);
	transform: skew(-22deg);
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-filter: drop-shadow(5px 5px 0px rgb(0, 0, 0));
	filter: drop-shadow(5px 5px 0px rgb(0, 0, 0));
}

.interview .content .item .comment_wrap::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 13.3px 6.6px 0 6.6px;
	border-color: #ffffff transparent transparent;
	translate: -50% 100%;
	-webkit-transform: skew(-22deg);
	transform: skew(-22deg);
	-webkit-transform-origin: top;
	transform-origin: top;
}

.interview .content .item .comment_wrap span {
	color: #F2A905;
	font-size: 32px;
	font-weight: 900;
}

.interview .content .item .img_wrap {
	margin-top: -40px;
	aspect-ratio: 450/620;
	max-width: 450px;
	width: 100%;
	position: relative;
}

.interview .content .item .img_wrap::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(33%, rgba(0, 0, 0, 0.36)), color-stop(66%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.36) 33%, rgba(0, 0, 0, 0.8) 66%, rgba(0, 0, 0, 0.8) 100%);
}

.interview .content .item .img_wrap .img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.interview .content .item .text_wrap {
	position: absolute;
	bottom: 24px;
	left: 25px;
	width: 400px;
	color: #ffffff;
	z-index: 1;
}

.interview .content .item .text_wrap .position {
	padding: 0 24px;
	font-size: 16px;
	font-weight: 700;
	background-color: #F2A905;
	display: inline-block;
}

.interview .content .item .text_wrap .name {
	margin-top: 10px;
	font-size: 40px;
	font-weight: 900;
	position: relative;
	line-height: 1.3;
}

.interview .content .item .text_wrap .name span {
	position: absolute;
	bottom: 4px;
	right: 104px;
	width: 110px;
}

.interview .content .item .text_wrap .text {
	margin-top: 15px;
	font-weight: 700;
	line-height: 1.6;
}

/* recruit */
.recruit {
	padding-top: 100px;
	min-width: 1440px;
	width: 100%;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #FFFAEF calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #FFFAEF calc(100% - 1px));
	background-size: 50px 50px;
	background-repeat: repeat;
	background-position: center center;
}

.recruit .title_wrap {
	text-align: center;
	position: relative;
}

.recruit .en_title {
	font-size: 146px;
	color: #F2A905;
	font-family: "Zou002", sans-serif;
}

.recruit .title {
	position: absolute;
	top: 113px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0 10px;
	font-size: 48px;
	color: #ffffff;
	background-color: #2e2e2e;
	display: inline-block;
	font-family: "DelaGothicOne", sans-serif;
	line-height: 1.4;
	-webkit-text-stroke: 0.5px #2E2E2E;
	text-stroke: 0.5px #2E2E2E;
}

.recruit .content {
	margin-top: 50px;
	background-color: #ffffff;
}

.recruit tr:nth-child(odd) {
	background-color: #FFF7E3;
}

.recruit th {
	padding: 18px 50px;
	font-weight: 700;
	width: 260px;
}

.recruit td {
	padding: 18px 30px 18px 50px;
	font-weight: 500;
}

.recruit td .frame {
	font-size: 0.9em;
	background-color: #fff;
	border: 1px solid #F2A905;
	display: inline-block;
	line-height: 1;
	padding: .3em;
	border-radius: 2px;
}

.recruit td p+p {
	margin-top: 1em;
}

.recruit .text_margin {
	margin-top: 25px;
}

.recruit .swiper {
	margin-top: 100px;
	width: 100%;
	height: auto;
	position: relative;
}

.recruit .swiper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 108px;
	background-image: url(image/contact_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.recruit .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.recruit .swiper-slide {
	aspect-ratio: 350/350;
	width: 100%;
}

.recruit .swiper-slide img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* page_contact */
.page_contact {
	padding-top: 32px;
	padding-bottom: 130px;
	min-width: 1440px;
	width: 100%;
	background-color: #F2A905;
	background-image: url(image/contact_bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page_contact .title_wrap {
	text-align: center;
	position: relative;
}

.page_contact .en_title {
	font-size: 146px;
	color: #ffffff;
	font-family: "Zou002", sans-serif;
}

.page_contact .title {
	position: absolute;
	top: 122px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0 10px;
	font-size: 48px;
	color: #ffffff;
	background-color: #2e2e2e;
	display: inline-block;
	font-family: "DelaGothicOne", sans-serif;
	line-height: 1.4;
	-webkit-text-stroke: 0.5px #2E2E2E;
	text-stroke: 0.5px #2E2E2E;
}

.page_contact .content {
	margin-top: 30px;
	padding: 80px 100px;
	background-color: #ffffff;
}

/* footer */
.footer {
	margin-top: 10px;
	padding-bottom: 100px;
	min-width: 1440px;
	width: 100%;
	position: relative;
}

.footer::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
	background-position: 10px 10px, 20px 20px;
	background-size: 20px 20px;
	z-index: 1000;
	pointer-events: none;
}

.footer .loop_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

.footer .loop_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-animation: loop-slide 60s infinite linear 1s both;
	animation: loop-slide 60s infinite linear 1s both;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .loop_area .title {
	font-size: 104px;
	font-weight: 900;
}

.footer .loop_area .title .bg_yellow {
	padding: 0 20px;
	color: #ffffff;
	background-color: #F2A905;
	font-size: 136px;
}

.footer .loop_area .title .yellow {
	color: #F2A905;
}

@keyframes loop-slide {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.footer .content {
	margin-top: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer .logo {
	width: 270px;
	display: block;
}

.footer .address_wrap {
	margin-top: 25px;
	font-weight: 700;
}

.footer .tel_fax {
	margin-top: 10px;
	font-weight: 700;
}

.footer .corporate_site {
	margin-top: 25px;
}

.footer .corporate_site a {
	border-bottom: 1px solid #2e2e2e;
	font-weight: 700;
}

.footer .sns_wrap {
	margin-top: 20px;
}

.footer .sns_item {
	background-color: #2e2e2e;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-block;
}

.footer .sns_item .img_1 {
	position: relative;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.footer .sns_item .img_2 {
	position: relative;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 22px;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.footer .sns_item+.sns_item {
	margin-left: 10px;
}

.footer .copyright_wrap {
	margin-top: 25px;
}

.footer .copyright_wrap .copyright {
	font-size: 12px;
	font-weight: 500;
}

.footer .nav_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: 41px;
	max-width: 542px;
}

.footer .nav_item:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.footer .nav_item:nth-child(2) {
	grid-column: 1;
	grid-row: 2;
}

.footer .nav_item:nth-child(3) {
	grid-column: 1;
	grid-row: 3;
}

.footer .nav_item:nth-child(4) {
	grid-column: 2;
	grid-row: 1;
}

.footer .nav_item:nth-child(5) {
	grid-column: 2;
	grid-row: 2;
}

.footer .nav_item:nth-child(6) {
	grid-column: 2;
	grid-row: 3;
}

.footer_nav_item {
	text-align: left;
}

.footer .nav_item a {
	font-size: 24px;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
	font-family: "Zou002", sans-serif;
	line-height: 1.2;
}

.footer .nav_item a:hover {
	opacity: 1;
	color: #F2A905;
}

.footer .nav_item_sub {
	font-size: 16px;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 700;
}

.message .img_wrap .message_img_slider,
.fv .bg_img_slider {
	position: absolute;
	inset: 0;
}

.message .img_wrap .message_img_slider .img,
.fv .bg_img_slider .img {
	width: 100%;
	height: 100%;
}

.message .img_wrap .message_img_slider .img img,
.fv .bg_img_slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.message .img_wrap .message_img_slider .slick-track,
.message .img_wrap .message_img_slider .slick-list,
.fv .bg_img_slider .slick-track,
.fv .bg_img_slider .slick-list {
	height: 100%;
}

.about .content .img_wrap .text_wrap .theme {
	font-size: 22px;
	font-weight: 700;
	margin: 1em 0 0.4em;
	letter-spacing: .04em;
}

.about .content .img_wrap .text_wrap .text_area {
	border: 2px solid #fff;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 25px;
	margin-top: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.about .content .img_wrap .text_wrap .text_area .list_text {
	font-size: 16px;
	letter-spacing: .04em;
}

@media (max-width: 750px) {
	.wrap {
		max-width: 90%;
	}

	a[href $='.pdf']::before {
		width: 7vw;
		height: 8vw;
		margin-right: 2.5vw;
	}

	a[href $='.pdf']:hover {
		text-decoration: underline;
	}

	body {
		/* font-size: 13px; */
		/* padding-top: 55px; */
	}

	/* SPヘッダー */
	#sp_header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		background: #fff;
		box-shadow: 1px 1px #ccc;
		z-index: 999;
		height: 55px;
	}

	#sp_header .logo {
		position: absolute;
		left: 10px;
		top: 10px;
		line-height: 0;
	}

	#sp_header .logo img {
		height: 40px;
	}

	#sp_header .icon {
		color: #000;
		position: absolute;
	}

	#sp_header .mail {
		right: 70px;
		top: 13px;
		font-size: 25px;
	}

	#sp_header .tel {
		right: 110px;
		top: 15px;
		font-size: 20px;
	}

	/* SP固定ページ 共通設定 */
	.common_page_main {
		padding-block: 20vw;
	}

	.common_page_main .title_box .title {
		font-size: 5.6vw;
	}

	.common_page_wrap {
		padding: 20vw 0;
	}

	.reserve_text {
		font-size: 6vw;
	}

	/* パンくず */
	.breadcrumb {
		font-size: 3vw;
	}

	/* SP固定ページ お問い合わせ */
	.contact_form_disc {
		margin-block: 0 2em;
	}

	.contact_form_disc .text {
		font-size: 3.6vw;
		margin-block: 0 0.8em;
	}

	.contact_form_disc .caution {
		font-size: 3.1vw;
		letter-spacing: .06em;
	}

	.common_contact_form .form_box {
		margin-block: 0 10vw;
	}

	.common_contact_form .form_box dl {
		grid-template-columns: 1fr;
		gap: 0.6em;
	}

	.common_contact_form .form_box dl+dl {
		margin-block: 1.3em 0;
	}

	.common_contact_form .form_box dl dt {
		flex-direction: row-reverse;
		justify-content: space-between;
		font-size: 4.1vw;
		padding-inline: 0;
	}

	.common_contact_form .form_box dl dt .label {
		font-size: 3.1vw;
	}

	.common_contact_form .form_box dl dt::after {
		content: none;
	}

	.common_contact_form input[type="text"],
	.common_contact_form input[type="email"],
	.common_contact_form #zip {
		font-size: 3.6vw;
	}

	.common_contact_form select {
		width: 100%;
		font-size: 3.6vw;
	}

	.common_contact_form textarea {
		height: 33vw;
		font-size: 3.6vw;
	}

	.radio_btns,
	.checkboxes {
		gap: 0.5em 2.5em;
	}

	.page_contact #btn_wrap button {
		width: 83%;
		line-height: 15.5vw;
		font-size: 4.6vw;
	}

	.page_contact #btn_wrap button[name="submitBack"] {
		margin-top: 4vw;
	}

	.page_contact .progressbar .item .en {
		font-size: min(3.07vw, 12px);
	}

	.contact_form_disc .text,
	.contact_form_disc .caution {
		text-align: center;
		letter-spacing: 0.05em;
	}

	.radio_btns .radio_btns__item+span {
		font-size: min(3.58vw, 14px);
	}

	.radio_btns .radio_btns__item+span::before,
	.radio_btns .radio_btns__item+span::after {
		width: min(3.84vw, 15px);
	}

	.radio_btns .radio_btns__item+span::after {
		width: min(2.56vw, 10px);
		top: 0;
	}

	.page_contact #btn_wrap button::after {
		right: min(5.12vw, 20px);
		width: min(7.69vw, 30px);
		height: min(7.69vw, 30px);
	}

	.page_contact #btn_wrap button::before {
		right: calc(min(4.35vw, 17px) + min(7.69vw, 30px) / 2);
		width: min(2.05vw, 8px);
		height: min(2.05vw, 8px);
	}

	.mwform-checkbox-field.horizontal-item {
		display: block;
	}

	.page_contact #btn_wrap {
		width: 100%;
		text-align: center;
	}

	.privacy_check_list .mwform-checkbox-field-text {
		font-size: 3.8vw;
		padding-left: 11vw;
	}

	.mw_wp_form .privacy_check_list .horizontal-item {
		margin-right: 4vw;
	}

	.privacy_check_list .hissu {
		padding: 0.3vw 4vw;
	}

	.privacy_check_list {
		margin-bottom: 6vw;
	}

	.privacy_term_detail {
		font-size: 3.4vw;
		margin: 5vw 0;
	}

	.privacy_term_outer {
		width: min(79.48vw, 310px);
		height: min(38.46vw, 150px);
		padding: 5vw 0;
	}

	.privacy_term_outer .privacy_term_inner .main_text {
		font-size: 3.4vw;
		line-height: 1.6;
		margin-bottom: 5vw;
	}

	.privacy_term_outer .privacy_term_inner dl dt {
		font-size: 3.5vw;
		margin-bottom: 1.5vw;
	}

	.privacy_term_outer .privacy_term_inner dl dd {
		font-size: 3.5vw;
		line-height: 1.6;
	}

	.privacy_term_outer .privacy_term_inner dl+dl {
		margin-top: 7vw;
	}

	.privacy_term_detail::after {
		width: 2.5vw;
		margin: 1.5vw auto 0;
	}

	/* サンクスページ */
	.page_contact .thanks_textArea .name {
		font-size: 4vw;
		margin-bottom: 3vw;
	}

	.page_contact .thanks_textArea .contact_text {
		font-size: 3.5vw;
		margin-bottom: 2em;
		width: 100%;
	}

	.page_contact .thanks_textArea .ichiran_link {
		width: 80%;
		line-height: 12vw;
		font-size: 4vw;
	}

	/* ステップバー デザイン */
	.page_contact .progressbar {
		gap: 4.5em;
		margin-block: 0 2.5em;
	}

	.page_contact .progressbar .item {
		font-size: 3.1vw;
	}

	.page_contact .progressbar .item+.item::before {
		width: 5.7vw;
		top: 63%;
		left: -3.3em;
	}

	.page_contact .progressbar .item .mark {
		width: 7.7vw;
		margin: 0 auto 0.4em;
	}

	/* SP固定ページ 個人情報保護方針 */
	.page_privacy .main_text {
		font-size: 3.5vw;
	}

	.page_privacy dl {
		margin-bottom: 10vw;
	}

	.page_privacy dl dt {
		font-size: 4vw;
	}

	.page_privacy dl dd {
		font-size: 3.5vw;
		margin-left: 5vw;
	}

	/* SP固定ページ 404ページ */
	#page_404 .num {
		font-size: 20vw;
		line-height: 1.5;
	}

	#page_404 .text {
		font-size: 3.5vw;
	}

	/* SP投稿ページ アーカイブページ */
	.archive_page_list>article {
		padding-right: 20px;
	}

	.archive_page_list>article .date {
		width: 80px;
	}

	.archive_page_list>article .content_area {
		width: calc(100% - 80px);
	}

	.archive_page_list>article:after {
		width: 7px;
		height: 7px;
	}

	/* SP固定ページ サイトマップ */
	ul#sitemap_list li {
		margin: 0;
	}

	body #sitemap_list li a {
		font-size: 4vw;
		padding: 1vw 2vw;
		line-height: 9vw;
		margin-bottom: 1vw;
	}

	body #sitemap_list li.home-item {
		margin-bottom: 4vw;
	}

	body #sitemap_list {
		padding: 0;
	}

	.wrap_1,
	.wrap_2,
	.wrap_3 {
		padding: 0 min(2.56vw, 10px);
		width: 100%;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block !important;
	}

	a:hover {
		opacity: 1;
	}

	/* header */
	.header {
		height: 80px;
		min-width: auto;
		width: 100%;
	}

	.header .inner {
		padding: 0 min(2.56vw, 10px);
	}

	.header .logo a {
		width: 39vw;
	}

	.header .nav {
		display: none;
	}

	.header_hamburger_wrap,
	.header_drawer {
		display: block;
	}

	.header_hamburger_wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.header_hamburger_entry {
		padding: min(3.07vw, 12px) min(3.58vw, 14px);
		font-size: min(3.58vw, 14px);
		color: #ffffff;
		background-color: #2e2e2e;
		font-family: "Zou002", sans-serif;
	}

	.header_hamburger {
		margin-left: min(2.56vw, 10px);
		position: relative;
		padding: 0;
		outline: none;
		border: none;
		z-index: 999;
		width: min(12.82vw, 50px);
		height: 12.82vw;
		background-color: #F2A905;
		cursor: pointer;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.header_hamburger span {
		position: relative;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		display: block;
		width: 6.66vw;
		height: 2px;
		background-color: #ffffff;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}

	.header_hamburger span:nth-of-type(1) {
		top: -5px;
	}

	.header_hamburger span:nth-of-type(2) {
		top: 5px;
	}

	.header_hamburger.is_open span:nth-of-type(1) {
		top: 0;
		-webkit-transform: translateX(-50%) rotate(45deg);
		transform: translateX(-50%) rotate(45deg);
		background-color: #ffffff;
	}

	.header_hamburger.is_open span:nth-of-type(2) {
		top: -2px;
		-webkit-transform: translateX(-50%) rotate(-45deg);
		transform: translateX(-50%) rotate(-45deg);
		background-color: #ffffff;
	}

	.header_drawer {
		padding-top: 100px;
		display: none;
		position: absolute;
		z-index: 900;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #FFF7E3;
		overflow-y: scroll;
		scrollbar-width: none;
	}

	.header_drawer::-webkit-scrollbar {
		display: none;
	}

	.header_drawer .drawer_nav {
		padding-top: min(12.3vw, 48px);
	}

	.header_drawer .drawer_nav_item {
		padding: min(4.61vw, 18px) min(5.12vw, 20px);
		display: block;
		color: #2e2e2e;
		font-size: min(6.15vw, 24px);
		line-height: 1;
		letter-spacing: 0.05em;
		cursor: pointer;
		position: relative;
	}

	.header_drawer .drawer_nav_item::after {
		content: "";
		position: absolute;
		right: min(5.12vw, 20px);
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: min(7.69vw, 30px);
		height: min(7.69vw, 30px);
		background-color: #F2A905;
		border-radius: 50%;
		z-index: 1;
	}

	.header_drawer .drawer_nav_item::before {
		content: "";
		position: absolute;
		right: calc(min(5.12vw, 20px) + min(7.69vw, 30px) / 2 - min(1vw, 4px));
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		width: min(2vw, 8px);
		height: min(2vw, 8px);
		border-top: 2px solid #ffffff;
		border-right: 2px solid #ffffff;
		pointer-events: none;
		z-index: 2;
		background: none;
	}

	.header_drawer .drawer_nav_item a {
		font-family: "Zou002", sans-serif;
	}

	.header_drawer .drawer_nav_item_sub {
		padding-top: min(2.56vw, 10px);
		font-size: min(3.58vw, 14px);
		font-family: source-han-sans-japanese, sans-serif;
		font-weight: 700;
	}

	.header_drawer .drawer_nav_item_entry {
		margin: 0 min(5.12vw, 20px);
		margin-top: min(7.69vw, 30px);
		padding: min(5.12vw, 20px) min(6.15vw, 24px);
		color: #ffffff;
		font-size: min(6.15vw, 24px);
		background-color: #2e2e2e;
		position: relative;
	}

	.header_drawer .drawer_nav_item_entry a {
		font-family: "Zou002", sans-serif;
	}

	.header_drawer .drawer_nav_item_entry::after {
		content: "";
		position: absolute;
		right: min(5.12vw, 20px);
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		width: min(7.69vw, 30px);
		height: min(7.69vw, 30px);
		background-color: #ffffff;
		border-radius: 50%;
		z-index: 1;
	}

	.header_drawer .drawer_nav_item_entry::before {
		content: "";
		position: absolute;
		right: calc(min(5.12vw, 20px) + min(7.69vw, 30px) / 2 - min(1vw, 4px));
		top: 50%;
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
		width: min(2vw, 8px);
		height: min(2vw, 8px);
		border-top: 2px solid #2e2e2e;
		border-right: 2px solid #2e2e2e;
		pointer-events: none;
		z-index: 2;
		background: none;
	}

	.header_drawer .drawer_nav_item_entry_sub {
		margin-left: min(11.28vw, 44px);
		font-size: min(3.58vw, 14px);
		font-family: source-han-sans-japanese, sans-serif;
		font-weight: 700;
	}

	.header_drawer .drawer_corporate_site {
		margin-top: min(26.92vw, 105px);
		padding: 0 min(5.12vw, 20px);
		font-size: min(3.84vw, 15px);
		position: relative;
	}

	.header_drawer .drawer_corporate_site::before {
		content: "";
		position: absolute;
		bottom: -30px;
		left: 0;
		width: 100vw;
		height: 20px;
		background-color: #FFF7E3;
		background-image: linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
		background-position: 10px 10px, 20px 20px;
		background-size: 20px 20px;
		z-index: 1000;
		pointer-events: none;
	}

	.header_drawer .drawer_corporate_site a {
		border-bottom: 1px solid #2e2e2e;
	}

	.header_drawer .drawer_corporate_site .fas {
		margin-left: 10px;
	}

	a:hover {
		opacity: 1;
	}

	/* fv */
	.fv {
		min-width: auto;
		background-image: url("image/fv_sp.jpg");
		height: 84.61vw;
	}

	.fv::before {
		background: linear-gradient(to bottom, rgba(186, 71, 5, 0) 0%, rgba(186, 71, 5, .3) 50%, rgba(186, 71, 5, .3) 100%);
		mix-blend-mode: color;
	}

	.fv .inner {
		padding-top: 66.02vw;
	}

	.fv .title {
		font-size: 7.5vw;
	}

	.fv .title .title_2 {
		margin-top: 2.56vw;
		letter-spacing: 0.03em;
	}

	.fv .title .bg_yellow {
		padding: 0 0.1em;
		font-size: 10.51vw;
	}

	.fv .title .bg_yellow::before {
		height: 100%;
	}

	.fv .title .yellow {
		font-size: 10.48vw;
		background-image: radial-gradient(circle at center, #F2A905 10%, transparent 10%);
		/* 点の色とサイズ調整 */
		background-size: 1em 0.3em;
		/* 点の間隔とサイズ調整 */
		padding-top: 0.01em;
		/* 縦方向の位置調整 */
	}

	/* message */
	.message {
		min-width: auto;
		background-size: 30px 30px;
	}

	.message .loop_wrap {
		margin-top: min(8.97vw, 35px);
		height: min(15.38vw, 60px);
	}

	.message .loop_area {
		-webkit-animation: loop-slide 50s infinite linear 1s both;
		animation: loop-slide 50s infinite linear 1s both;
	}

	.message .loop_area .loop_title {
		font-size: min(8.2vw, 32px);
	}

	.message .title {
		/* margin-top: min(12.82vw, 50px); */
		/* text-align: left; */
		font-size: min(10.25vw, 40px);
	}

	.message .text_wrap {
		margin-left: 70px;
		max-width: 620px;
		font-size: 24px;
		font-weight: 700;
		color: #F2A905;
		flex-grow: 1;
	}

	.message .text_wrap .text_box+.text_box {
		margin-top: 7vw;
	}

	.message .text_wrap .text_box .title {
		font-size: 4vw;
		color: #ffffff;
		padding: .5em;
		margin-bottom: .5em;
	}

	.message .text_wrap .text_box .title .en {
		font-size: 6vw;
		font-family: "Zou002", sans-serif;
	}

	.message .text_wrap .text_box .text {
		font-size: 5.5vw;
		font-weight: 700;
	}

	.message .content {
		margin-top: 7vw;
	}

	.message .text_wrap {
		margin-left: 0;
		padding: 0 min(2.56vw, 10px);
		max-width: auto;
		font-size: min(4.1vw, 16px);
	}

	.message .text {
		/* margin-top: min(7.69vw, 30px); */
	}

	.message .swiper_1 {
		margin-top: min(8.97vw, 35px);
	}

	.message .swiper-slide {
		aspect-ratio: 298/168;
		max-width: 298px;
		width: 100%;
	}

	.message .swiper_2 {
		margin-top: min(3.84vw, 15px);
	}

	.message .swiper_2::after {
		height: min(21.53vw, 84px);
	}

	/* about */
	.about {
		padding-top: min(14.35vw, 56px);
		min-width: auto;
	}

	.about .title_wrap {
		padding-left: 0;
		display: block;
		text-align: center;
	}

	.about .title_wrap::before {
		bottom: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		width: min(5.12vw, 20px);
		height: min(23.07vw, 90px);
		background-position: min(2.56vw, 10px) min(2.56vw, 10px), min(5.12vw, 20px) min(5.12vw, 20px);
		background-size: min(5.12vw, 20px) min(5.12vw, 20px);
	}

	.about .title_wrap::after {
		bottom: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
		width: min(5.12vw, 20px);
		height: min(23.07vw, 90px);
		background-image: linear-gradient(-45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(-45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
		background-position: min(2.56vw, 10px) min(2.56vw, 10px), min(5.12vw, 20px) min(5.12vw, 20px);
		background-size: min(5.12vw, 20px) min(5.12vw, 20px);
	}

	.about .title_wrap .en_title {
		margin-top: 0;
		font-size: min(10.25vw, 40px);
	}

	.about .title_wrap .title {
		margin-left: 0;
		font-size: min(8.2vw, 32px);
	}

	.about .content {
		margin-top: min(6.41vw, 25px);
		display: block;
	}

	.about .content .img_wrap.img_renovation {
		overflow: hidden;
		aspect-ratio: unset;
		max-width: unset;
	}

	.about .content .img_wrap.img_renovation+.img_wrap.img_renovation {
		margin-top: 10vw;
		padding-top: 10vw;
	}

	.about .content .img_wrap.img_exterior,
	.about .content .img_wrap.img_interior {
		margin-top: min(2.56vw, 10px);
		aspect-ratio: unset;
		max-width: unset;
		padding: 10vw 5vw;
	}

	.about .content .img_wrap img {
		padding: min(1.28vw, 5px);
	}

	.about .content .img_wrap .img_title.about_01 {
		top: min(4.35vw, 17px);
		right: min(-7.69vw, -30px);
		font-size: min(17.43vw, 68px);
		display: none;
	}

	.about .content .img_wrap .img_title.about_02,
	.about .content .img_wrap .img_title.about_03 {
		bottom: min(-1.79vw, -7px);
		right: 0;
		font-size: min(12.82vw, 50px);
		display: none;
	}

	.about .content .img_wrap .text_wrap {
		position: relative;
		bottom: unset;
		left: unset;
		right: unset;
	}

	.about .content .img_wrap .text_wrap .title_en {
		padding: min(2.05vw, 8px) min(3.07vw, 12px);
		font-size: min(3.58vw, 14px);
	}

	.about .content .img_wrap .text_wrap .flex_box {}

	.about .content .img_wrap .text_wrap .en_ttl {
		font-size: 5vw;
	}

	.about .content .img_wrap .text_wrap .title_ja {
		font-size: 6vw;
	}

	.about .content .img_wrap .text_wrap .text {
		margin-top: min(3.84vw, 15px);
		font-size: 3.5vw;
	}

	.about .content .img_wrap .text_wrap .text_renovation {
		max-width: 84.61;
	}

	.about .content .img_wrap .text_wrap .text_exterior,
	.about .content .img_wrap .text_wrap .text_interior {}

	/* strength */
	.strength {
		padding-top: min(14.1vw, 55px);
		padding-bottom: min(15.38vw, 60px);
		min-width: auto;
	}

	.strength .title_wrap {
		padding-left: 0;
		display: block;
		text-align: center;
	}

	.strength .title_wrap::before {
		bottom: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		width: min(5.12vw, 20px);
		height: min(23.07vw, 90px);
		background-position: min(2.56vw, 10px) min(2.56vw, 10px), min(5.12vw, 20px) min(5.12vw, 20px);
		background-size: min(5.12vw, 20px) min(5.12vw, 20px);
	}

	.strength .title_wrap::after {
		bottom: auto;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
		width: min(5.12vw, 20px);
		height: min(23.07vw, 90px);
		background-image: linear-gradient(-45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%), linear-gradient(-45deg, #F2A905 25%, transparent 25%, transparent 75%, #F2A905 75%);
		background-position: min(2.56vw, 10px) min(2.56vw, 10px), min(5.12vw, 20px) min(5.12vw, 20px);
		background-size: min(5.12vw, 20px) min(5.12vw, 20px);
	}

	.strength .title_wrap .en_title {
		margin-top: 0;
		font-size: min(9.8vw, 38px);
	}

	.strength .title_wrap .title {
		margin-left: 0;
		font-size: min(8.2vw, 32px);
	}

	.strength .content {
		margin-top: min(6.41vw, 25px);
	}

	.strength .content .item {
		display: block;
		gap: 0;
	}

	.strength .content .item:not(:first-child) {
		margin-top: min(8.97vw, 35px);
	}

	.strength .content .item:nth-child(odd) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.strength .content .item .img_wrap {
		aspect-ratio: 360/210;
		max-width: min(153.84vw, 600px);
	}

	.strength .content .item .img_wrap img {
		padding: min(1.28vw, 5px);
	}

	.strength .content .item .text_wrap {
		margin-top: min(-17.94vw, -70px);
		max-width: 100%;
	}

	.strength .content .item .text_wrap .title_en {
		font-size: min(3.58vw, 14px);
		padding: min(2.05vw, 8px) min(3.07vw, 12px);
	}

	.strength .content .item:nth-child(even) .text_wrap .title_en {
		margin-left: 0;
	}

	.strength .content .item .text_wrap .title_ja {
		margin-top: min(1.28vw, 5px);
		padding: 0 min(2.56vw, 10px);
		font-size: min(8.2vw, 32px);
	}

	.strength .content .item .text_wrap .title_ja_2 {
		margin-top: 0;
	}

	.strength .content .item:nth-child(even) .text_wrap .title_ja {
		margin-left: 0;
	}

	.strength .content .item .text_wrap .text {
		margin-top: min(3.84vw, 15px);
		font-size: min(3.58vw, 14px);
	}

	.strength .content .item .text_wrap .number {
		bottom: min(-8.97vw, -35px);
		right: min(1.28vw, 5px);
		font-size: min(28.71vw, 112px);
	}

	/* interview */
	.interview {
		padding-top: min(14.61vw, 57px);
		padding-bottom: min(15.64vw, 61px);
		min-width: auto;
		width: 100%;
		background-image: url(image/interview_bg_sp.jpg);
	}

	.interview .title_wrap {
		margin-left: 0;
		display: block;
	}

	.interview .title_wrap .en_title {
		margin-left: min(5.12vw, 20px);
		font-size: min(10.25vw, 40px);
	}

	.interview .title_wrap .title {
		margin-top: 0;
		margin-left: min(2.56vw, 10px);
		font-size: min(8.2vw, 32px);
	}

	.interview .content {
		margin-top: min(6.41vw, 25px);
		padding: 0;
	}

	.interview .content .item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.interview .content .item .comment_wrap {
		margin-bottom: min(5.12vw, 20px);
		padding: min(3.84vw, 15px) 0;
		position: relative;
		display: inline-block;
		max-width: min(76.92vw, 300px);
		width: 100%;
		border: 3px solid #2e2e2e;
		background-color: #ffffff;
		text-align: center;
		font-size: min(5.12vw, 20px);
		font-weight: 900;
		line-height: 1.5;
		z-index: 1;
		-webkit-box-shadow: 5px 5px 0px rgb(0, 0, 0);
		box-shadow: 5px 5px 0px rgb(0, 0, 0);
	}

	.interview .content .item .comment_wrap::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		border-style: solid;
		border-width: min(5.12vw, 20px) min(2.56vw, 10px) 0 min(2.56vw, 10px);
		border-color: #2e2e2e transparent transparent;
		translate: -50% 100%;
		-webkit-transform: skew(-22deg);
		transform: skew(-22deg);
		-webkit-transform-origin: top;
		transform-origin: top;
		-webkit-filter: drop-shadow(5px 5px 0px rgb(0, 0, 0));
		filter: drop-shadow(5px 5px 0px rgb(0, 0, 0));
	}

	.interview .content .item .comment_wrap::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		border-style: solid;
		border-width: min(3.4vw, 13.3px) min(1.69vw, 6.6px) 0 min(1.69vw, 6.6px);
		border-color: #ffffff transparent transparent;
		translate: -50% 100%;
		-webkit-transform: skew(-22deg);
		transform: skew(-22deg);
		-webkit-transform-origin: top;
		transform-origin: top;
	}

	.interview .content .item .comment_wrap span {
		color: #F2A905;
		font-size: min(6.15vw, 24px);
		font-weight: 900;
	}

	.interview .content .item .img_wrap {
		margin-top: min(-10.25vw, -40px);
		aspect-ratio: 350/570;
		position: relative;
	}

	.interview .content .item .img_wrap .img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}

	.interview .content .item .text_wrap {
		padding: 0 min(5.12vw, 20px);
		position: absolute;
		bottom: min(5.12vw, 20px);
		left: 0;
		width: 100%;
		color: #ffffff;
	}

	.interview .content .item .text_wrap .position {
		padding: 0 min(4.1vw, 16px);
		font-size: min(3.58vw, 14px);
		font-weight: 700;
		background-color: #F2A905;
		display: inline-block;
	}

	.interview .content .item .text_wrap .name {
		margin-top: min(1.28vw, 5px);
		font-size: min(8.2vw, 32px);
		font-weight: 900;
		line-height: 1.2;
		position: relative;
	}

	.interview .content .item .text_wrap .name span {
		position: absolute;
		bottom: min(-2.05vw, -8px);
		right: min(18.46vw, 72px);
		width: min(21.53vw, 84px);
	}

	.interview .content .item .text_wrap .text {
		margin-top: min(3.84vw, 15px);
		font-weight: 700;
		font-size: min(3.58vw, 14px);
		letter-spacing: 0.05em;
	}

	.interview .swiper-button-prev,
	.interview .swiper-button-next {
		background-color: #F2A905;
		top: min(10.25vw, 40px);
		width: min(12.82vw, 50px);
		height: min(12.82vw, 50px);
		border-radius: 50%;
	}

	.interview .swiper-button-prev {
		left: calc((100vw - 390px) / 2 + 14px);
	}

	.interview .swiper-button-next {
		right: calc((100vw - 390px) / 2 + 14px);
	}

	.interview .swiper-button-next:after,
	.interview .swiper-button-prev:after {
		font-size: min(3.58vw, 14px);
		font-weight: 900;
		color: #ffffff;
	}

	/* recruit */
	.recruit {
		padding-top: min(14.35vw, 56px);
		min-width: auto;
		background-size: 30px 30px;
	}

	.recruit .en_title {
		font-size: min(14.35vw, 56px);
	}

	.recruit .title {
		top: min(17.69vw, 69px);
		padding: 0 min(2.56vw, 10px);
		font-size: min(8.2vw, 32px);
	}

	.recruit .content {
		margin-top: min(15.38vw, 60px);
		padding: 0 min(2.56vw, 10px);
	}

	.recruit table,
	.recruit thead,
	.recruit tbody,
	.recruit th,
	.recruit td,
	.recruit tr {
		display: block;
		width: 100%;
	}

	.recruit th {
		padding: min(5.12vw, 20px) min(5.12vw, 20px) min(1.28vw, 5px) min(5.12vw, 20px);
		width: auto;
		font-size: min(3.58vw, 14px);
	}

	.recruit td {
		padding: min(1.28vw, 5px) min(5.12vw, 20px) min(5.12vw, 20px) min(5.12vw, 20px);
		font-size: min(3.58vw, 14px);
	}

	.recruit .text_margin {
		margin-top: min(6.41vw, 25px);
	}

	.recruit .swiper {
		margin-top: min(11.79vw, 46px);
	}

	.recruit .swiper::after {
		height: min(22.56vw, 88px);
	}

	.recruit .swiper-slide {
		aspect-ratio: 175/175;
		max-width: 175px;
		width: 100%;
	}

	/* page_contact */
	.page_contact {
		padding-top: min(15.38vw, 60px);
		padding-bottom: min(15.38vw, 60px);
		min-width: auto;
		background-image: url(image/contact_bg_sp.jpg);
	}

	.page_contact .en_title {
		font-size: min(14.35vw, 56px);
	}

	.page_contact .title {
		top: min(17.17vw, 67px);
		padding: 0 min(2.56vw, 10px);
		font-size: min(8.2vw, 32px);
		white-space: nowrap;
	}

	.page_contact .content {
		margin-top: min(15.38vw, 60px);
		padding: min(12.82vw, 50px) min(5.12vw, 20px);
	}

	/* footer */
	.footer {
		margin-top: min(2.56vw, 10px);
		padding-bottom: min(12.82vw, 50px);
		min-width: auto;
	}

	.footer::before {
		height: min(2.56vw, 10px);
		background-position: min(1.28vw, 5px) min(1.28vw, 5px), min(2.56vw, 10px) min(2.56vw, 10px);
		background-size: min(2.56vw, 10px) min(2.56vw, 10px);
	}

	.footer .loop_area .title {
		font-size: min(10.25vw, 40px);
	}

	.footer .loop_area .title .bg_yellow {
		padding: 0 min(2.56vw, 10px);
		font-size: min(14.35vw, 56px);
	}

	.footer .content {
		margin-top: min(8.46vw, 33px);
		display: block;
	}

	.footer .information {
		font-size: min(3.58vw, 14px);
	}

	.footer .logo {
		width: 70vw;
		margin: 0 auto;
	}

	.footer .address_wrap {
		margin-top: min(6.41vw, 25px);
		text-align: center;
	}

	.footer .tel_fax {
		margin-top: min(3.84vw, 15px);
	}

	.footer .corporate_site {
		margin-top: min(5.12vw, 20px);
		text-align: center;
	}

	.footer .sns_wrap {
		margin-top: min(3.84vw, 15px);
		text-align: center;
	}

	.footer .sns_item {
		width: min(10.25vw, 40px);
		height: min(10.25vw, 40px);
	}

	.footer .sns_item .img_1 {
		width: min(6.15vw, 24px);
		height: min(6.15vw, 24px);
	}

	.footer .sns_item .img_2 {
		width: min(5.12vw, 20px);
		height: min(5.64vw, 22px);
	}

	.footer .sns_item+.sns_item {
		margin-left: min(2.56vw, 10px);
	}

	.footer .copyright_wrap {
		margin-top: min(6.41vw, 25px);
		text-align: center;
	}

	.footer .copyright_wrap .copyright {
		font-size: min(3.07vw, 12px);
	}

	.about .content .img_wrap .text_wrap .inner_grid_area {
		gap: 3vw;
		margin-top: 4vw;
	}

	.about .content .img_wrap .text_wrap .inner_grid_area.two {
		grid-template-columns: repeat(2, 1fr);
		gap: 5vw;
	}

	.about .content .img_wrap .text_wrap .inner_grid_area.three {
		grid-template-columns: 1fr;
	}

	.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_btn {
		font-size: 3.6vw;
	}

	.about .content .img_wrap .text_wrap .inner_grid_area .inner_grid_img_btn .letter {
		font-size: 3.6vw;
	}

	.about .content .img_wrap .text_wrap .theme {
		font-size: 4.2vw;
	}

	.about .content .img_wrap .text_wrap .text_area {
		padding: 3.5vw;
		margin-top: 4vw;
		gap: .5vw;
		justify-content: left;
	}

	.about .content .img_wrap .text_wrap .text_area .list_text {
		font-size: 3.5vw;
	}

}