@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

/*------------------------------------------------------------
	CSS Variables
------------------------------------------------------------*/
:root {
	/*------------------------------------------------------------
		カラー
	------------------------------------------------------------*/
	/* ベースカラー */
	--color-text: #000;
	--color-text-light: #999;
	--color-bg: #fff;
	--color-bg-gray: #f8f8f8;

	/* アクセントカラー */
	--color-primary: #ba1b21;
	--color-primary-light: #d52d33;
	--color-secondary: ;
	--color-dark: #3f3f3f;

	/* ボーダー */
	--color-border: #000;
	--color-border-light: rgba(255, 255, 255, 0.5);

	/*------------------------------------------------------------
		フォントファミリー
	------------------------------------------------------------*/
	--font-base: 'YakuHanJP', "Roboto", hiragino-kaku-gothic-pron, sans-serif;
	--font-heading-en: "Cinzel", serif;
	--font-heading-jp: ;
	--font-accent: ;

	/*------------------------------------------------------------
		フォントサイズ
	------------------------------------------------------------*/
	--fz-xs: 12px;
	--fz-sm: 13px;
	--fz-md: 14px;
	--fz-base: 15px;
	--fz-lg: 16px;
	--fz-xl: 17px;
	--fz-2xl: 18px;
	--fz-3xl: 22px;
	--fz-4xl: 24px;
	--fz-5xl: 32px;
	--fz-display-sm: 80px;
	--fz-display-md: 100px;
	--fz-display-lg: 140px;
	--fz-display-xl: 150px;

	/*------------------------------------------------------------
		スペーシング
	------------------------------------------------------------*/
	--space-xs: 8px;
	--space-sm: 10px;
	--space-md: 15px;
	--space-lg: 20px;
	--space-xl: 25px;
	--space-2xl: 30px;
	--space-3xl: 40px;
	--space-4xl: 60px;
	--space-5xl: 80px;
	--space-6xl: 100px;
	--space-7xl: 140px;
	--space-8xl: 160px;
	--space-9xl: 200px;

	/*------------------------------------------------------------
		セクションパディング（横）
	------------------------------------------------------------*/
	--section-padding-x-sm: 5%;
	--section-padding-x: 6%;
	--section-padding-x-lg: 8%;

	/*------------------------------------------------------------
		コンテンツ幅
	------------------------------------------------------------*/
	--width-narrow: 900px;
	--width-content: 1000px;
	--width-wide: 1200px;
	--width-max: 1400px;
	--width-full: 1600px;

	/*------------------------------------------------------------
		角丸
	------------------------------------------------------------*/
	--radius-sm: 5px;
	--radius-md: 10px;
	--radius-lg: 15px;
	--radius-xl: 60px;
	--radius-full: 100vh;

	/*------------------------------------------------------------
		シャドウ
	------------------------------------------------------------*/
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.2);

	/*------------------------------------------------------------
		トランジション
	------------------------------------------------------------*/
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;
	--transition-slower: 0.5s ease-out;

	/*------------------------------------------------------------
		行間
	------------------------------------------------------------*/
	--leading-none: 1;
	--leading-tight: 1.2;
	--leading-snug: 1.5;
	--leading-normal: 1.6;
	--leading-relaxed: 1.7;
	--leading-loose: 2;

	/*------------------------------------------------------------
		字間
	------------------------------------------------------------*/
	--tracking-normal: 0.05em;
	--tracking-wide: 1px;
}

/*------------------------------------------------------------
	main contents style
------------------------------------------------------------*/
html, body {
    overflow-x: hidden;
}
html {
	scroll-behavior: auto;
}
body {
	font-family: var(--font-base);
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 1.8;
	overflow-x: hidden;
	text-size-adjust: 100%;
	animation: fadeIn 2s forwards;
}
input,
textarea,
select,
button {
	font-family: var(--font-base);
	font-size: 15px;
	letter-spacing: 0.05em;
}
img {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
a {
	color: var(--color-text);
	transition: all 0.3s ease;
}
a:hover {
	opacity: 1;
}
/* 改行制御 */
.pc_tab_br,
.pc_br {
	display: inline;
}
.tab_br,
.sp_br {
	display: none;
}
.wrapper {
	color: var(--color-text);
	position: relative;
	background-color: #fff;
	will-change: opacity;
	transform: translateZ(0);
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
/*------------------------------------------------------------
	header
------------------------------------------------------------*/
.header_wrap {
	padding: 40px var(--section-padding-x-sm) 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	transition: padding 0.3s ease, background 0.3s ease;
}
.header_wrap.is_scrolled {
	padding: 15px var(--section-padding-x-sm);
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: margin 0.3s ease;
}
.header_left {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-right: 20px;
}
.header_logo a {
	display: flex;
}
.header_logo img {
	width: 180px;
	transition: width 0.3s ease;
}
.header_wrap.is_scrolled .header_logo img {
	width: 150px;
}
.header_right {
	display: flex;
	align-items: center;
}
.gnav ul {
	display: flex;
}
.gnav ul li {
	margin-right: 30px;
}
.gnav ul li:last-of-type {
	margin-right: 0;
}
.gnav ul li a {
	font-family: var(--font-heading-en);
	color: #fff;
	padding: 15px 0;
	display: inline-block;
	font-size: 16px;
	transition: font-size 0.3s ease;
}
.header_wrap.is_scrolled .gnav ul li a {
	font-size: 16px;
	color: #000;
}
/**/
.header_com {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: margin 0.3s ease;
}
.header_com_left {
	display: flex;
	align-items: center;
}
.header_com_logo {
	margin-right: 20px;
}
.header_com_logo a {
	display: flex;
}
.header_com_logo img {
	width: 180px;
	transition: width 0.3s ease;
}
.header_wrap.is_scrolled .header_com_logo img {
	width: 150px;
}
.header_com_right {
	display: flex;
	align-items: center;
}
.gnav_com ul {
	display: flex;
}
.gnav_com ul li {
	margin-right: 30px;
}
.gnav_com ul li:last-of-type {
	margin-right: 0;
}
.gnav_com ul li a {
	font-family: var(--font-heading-en);
	padding: 15px 0;
	display: inline-block;
	font-size: 16px;
	transition: font-size 0.3s ease;
}
.header_wrap.is_scrolled .gnav_com ul li a {
	font-size: 16px;
}


/*------------------------------------------------------------
	hero
------------------------------------------------------------*/
.hero_wrap {
	width: 100%;
	height: 100vh;
	padding: 5%;
	box-sizing: border-box;
	position: relative;
	background-image: url(../image/keyvisual.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.hero_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.hero_copy_wrap {
	color: #fff;
}
.hero_copy_main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 40px;
	padding-bottom: 40px;
	position: relative;
}
.hero_copy_main::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero_copy_main.is-active::after {
	width: 100%;
}
.hero_copy_en {
	font-family: var(--font-heading-en);
	font-size: 11vw;
	font-weight: normal;
	line-height: 1;
	margin-bottom: 30px;
}
.hero_copy_en .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(40px) rotateX(90deg);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero_copy_en.is-active .char {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}
h2.hero_copy_en > span.char:first-child {
	display: none !important;
}
.hero_copy_jp {
}
.hero_copy_jp h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 10px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero_copy_jp.is-active h2 {
	opacity: 1;
	transform: translateY(0);
}
.hero_copy_jp p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0;
	transform: translateY(15px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.hero_copy_jp.is-active p {
	opacity: 1;
	transform: translateY(0);
}
.hero_copy_sub {
	display: flex;
	justify-content: space-between;
}
.hcs_corp {
	font-family: var(--font-heading-en);
	font-size: 18px;
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.hcs_corp.is-active {
	opacity: 1;
	transform: translateX(0);
}
.hcs_scrolldown {
	font-family: var(--font-heading-en);
	font-size: 18px;
	opacity: 0;
	transition: opacity 1s ease;
	position: relative;
}
.hcs_scrolldown.is-active {
	opacity: 1;
}

/*------------------------------------------------------------
	共通ページヘッダー
------------------------------------------------------------*/
.page_head_wrap {
	width: 100%;
	padding: 150px var(--section-padding-x-sm) 0;
	box-sizing: border-box;
	position: relative;
}
.page_head_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.appear {
	border-top: none;
	display: flex;
	justify-content: space-between;
	height: 17px;
	margin-bottom: 20px;
	position: relative;
}
.appear::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #000;
	transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.appear.is-active::before {
	width: 100%;
}
.appear_sd {
	width: 1px;
	height: 100%;
	background-color: #000;
}
.appear_sd:last-child {
	height: 0;
	transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1) 1.5s;
}
.appear.is-active .appear_sd:last-child {
	height: 100%;
}
.page_num {
	font-family: var(--font-heading-en);
	font-size: 18px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.page_num.is-active {
	opacity: 1;
	transform: translateY(0);
}
.square_1 {
	width: 6px;
	height: 6px;
	background-color: #000;
	margin-right: 10px;
}
.square_2 {
	width: 6px;
	height: 6px;
	background-color: #fff;
	margin-right: 10px;
}
.page_ttl_wrap {
	display: flex;
	justify-content: space-between;
	align-items: last baseline;
}
.page_ttl_wrap h2 {
	font-family: var(--font-heading-en);
	line-height: 1;
	font-size: 90px;
}
.page_ttl_wrap h2 .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(40px) rotateX(90deg);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.page_ttl_wrap h2.is-active .char {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}
.page_ttl_sub {
	display: flex;
	align-items: center;
}
.page_ttl_sub p {
	margin-right: 10px;
	opacity: 0;
	transform: rotate(-180deg) scale(0.5);
	transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.page_ttl_sub.is-active p {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}
.page_ttl_sub p img {
	width: 28px;
}
.page_ttl_sub h3 {
	font-size: 16px;
	opacity: 0;
	transform: translateX(-15px);
	transition: opacity 0.6s ease 0.2s, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.page_ttl_sub.is-active h3 {
	opacity: 1;
	transform: translateX(0);
}

.page_head_lead {
	display: flex;
	padding-top: 80px;
}
.page_head_lead p {
	display: flex;
	justify-content: flex-end;
}
.page_head_lead_ex {
	display: flex;
	padding-top: 80px;
}
.page_head_lead_ex p {
	display: flex;
	justify-content: flex-end;
}

#main {
	position: relative;
}

/*------------------------------------------------------------
	hamburger menu（モバイル用・PC非表示）
------------------------------------------------------------*/
.hamburger_btn {
    display: none;
    width: 60px;
    height: 40px;
    background-color: #00bcd4;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 101;
    display: none;
}
.hamburger_btn.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}
.hamburger_line {
    width: 24px;
    height: 1px;
    background-color: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
}
.hamburger_btn.open .hamburger_line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.hamburger_btn.open .hamburger_line:nth-child(2) {
    opacity: 0;
}
.hamburger_btn.open .hamburger_line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}
/* メニュー */
.mobile_menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 10% 6%;
    z-index: 100;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
    display: none;
}
.mobile_menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.menu_content {
    flex: 1;
}
.mobile_menu_head {
    margin-bottom: 15px;
}
.mobile_menu_head h2 {
    
}
.mobile_menu_head h2 img {
    width: 200px;
}
.menu_group {
    padding: 1.8rem 0;
    border-bottom: 1px solid #e3e3e3;
}
.menu_item {    
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: color 0.3s ease;
    cursor: pointer;
    color: #00bcd4 !important;
}
.menu_item:hover {
    color: #00bcd4;
}
.submenu_toggle {
    color: #00bcd4;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.submenu_toggle:hover {
    color: #00bcd4;
}
.submenu_toggle.active {
    color: #00bcd4;
}
.submenu_toggle .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.submenu_toggle .arrow::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.submenu_toggle .arrow::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
}
.submenu_toggle.active .arrow::after {
    opacity: 0;
}
.submenu_list {
    list-style: none;
    padding-left: 1.5rem;
    border-left: 1px solid #00bcd4;
    margin-left: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    display: block;
}
.submenu_list.open {
    max-height: 1000px;
    opacity: 1;
}
.submenu_item {
    text-decoration: none;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    list-style: none;
}
.submenu_item:hover {
    color: #00bcd4;
}
.footer_menu {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer_item {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    display: block;
    transition: color 0.3s ease;
}
.footer_item:hover {
    color: #00bcd4;
}
/*@media (max-width: 768px) {
    .hamburger_btn.active {
        display: flex;
    }
}
@media (min-width: 769px) {
    .hamburger_btn {
        display: none !important;
    }

    .mobile_menu {
        display: none !important;
    }
}*/
.hamburger_info {
    display: flex;
}
.hmi_regist {
    background-color: #ff664e;
    color: #fff !important;
    font-weight: bold;
    padding: 7px 30px;
    border-radius: 100vh;
    margin-right: 20px;
    font-size: 14px;
}
.hmi_login {
    background-color: #3f3f3f;
    color: #fff !important;
    font-weight: bold;
    padding: 7px 30px;
    border-radius: 100vh;
    font-size: 14px;
}

/*------------------------------------------------------------
	top about
------------------------------------------------------------*/
.top_about_wrap {
	width: 100%;
	padding: 140px var(--section-padding-x) 160px;
	box-sizing: border-box;
	position: relative;
}
.top_about_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.top_about_head {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	margin-bottom: 40px;
}
.top_about_head h2 {
	font-family: var(--font-heading-en);
	font-size: 90px;
	line-height: 1.2;
}
.top_about_head p {
	font-size: 15px;
	line-height: 1.7;
}
.t_appear {
	border-top: 1px solid #000;
	display: flex;
	justify-content: space-between;
	height: 17px;
}
.t_appear_sd {
	width: 1px;
	height: 100%;
	background-color: #000;
}
.top_about_cont {
	display: flex;
	justify-content: space-between;
	padding-top: 80px;
}
.tac_inner {
	width: 35%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.taci_ttl {
	display: flex;
	align-items: center;
}
.taci_ttl p {
	margin-right: 10px;
}
.taci_ttl p img {
	width: 32px;
}
.taci_ttl h3 {
	font-size: 22px;
}
.taci_txt {

}
.taci_txt p {
	margin-bottom: 25px;
}
.taci_txt p:last-of-type {
	margin-bottom: 0px;
}
.tac_image {
	width: 60%;
	display: flex;
}
.tac_image p {
	/*width: 50%;*/
	width: 100%;
}
.tac_image p img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*aspect-ratio: 0.65;*/
	aspect-ratio: 1.4;
}

/*------------------------------------------------------------
	top service
------------------------------------------------------------*/
.top_service_wrap {
	width: 100%;
	padding: 120px var(--section-padding-x) 120px;
	box-sizing: border-box;
	position: relative;
	background-image: url(../image/top_service.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 550px;
}
.top_service_inner {
	max-width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
.top_service_cont {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	color: #fff;
}
.tsc_ttl {
	font-family: var(--font-heading-en);
	font-size: 80px;
	line-height: 1.2;
}
.tsc_lead {

}
.tscl_txt {
	margin-bottom: 20px;
}
.more_link_ts {
	font-family: var(--font-heading-en);
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #fff;
}
.more_link_ts span {
	margin-right: 10px;
}
.more_link_ts span:last-of-type {
	margin-right: 0;
	margin-left: 10px;
}
.more_link_ts p {
	margin-left: 10px;
}
.more_link_ts p img {
	width: 15px;
	height: auto;
	position: relative;
	top: -2px;
}

/*------------------------------------------------------------
	top news
------------------------------------------------------------*/
.top_news_wrap {
	width: 100%;
	padding: 140px var(--section-padding-x) 160px;
	box-sizing: border-box;
	position: relative;
}
.top_news_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.top_news_head {
	display: flex;
	justify-content: space-between;
	align-items: last baseline;
	margin-bottom: 20px;
}
.top_news_ttl {

}
.top_news_ttl h2 {
	font-family: var(--font-heading-en);
	font-size: 70px;
	line-height: 1;
}
.top_news_link {

}
.tn_link {
	font-family: var(--font-heading-en);
	display: flex;
	align-items: center;
	font-size: 24px;
}
.tn_link span {
	margin-right: 10px;
}
.tn_link span:last-of-type {
	margin-right: 0;
	margin-left: 10px;
}
.tn_link p {
	margin-left: 10px;
}
.tn_link p img {
	width: 15px;
	height: auto;
	position: relative;
	top: -2px;
}

.top_news_btn_sp {
	display: none;
}

.news_list_wrap {
	border-top: 1px solid #000;
}
.news_list_wrap li {
	border-bottom: 1px solid #000;	
}
.news_list_box {
	padding: 40px 20px;
	display: flex;
	align-items: center;
}
.news_list_info {
	display: flex;
	align-items: center;
}
.nlb_date {
	width: 140px;
}
.nlb_ctgr {
	width: 180px;
}
.nlb_ctgr span {
	display: inline-block;
	padding: 3px 30px;
	background-color: #000;
	color: #fff;
	font-size: 10px;
	transition: all 0.3s ease;
}
.news_list_box:hover .nlb_ctgr span {
	background-color: var(--color-primary);
	opacity: 1;
}
.nlb_ttl {
	flex: 1;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/*------------------------------------------------------------
	contact cta
------------------------------------------------------------*/
.contact_cta_wrap {
	width: 100%;
	padding: 120px var(--section-padding-x) 120px;
	box-sizing: border-box;
	position: relative;
	background-color: #f2f2f2;
}
.contact_cta_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.contact_cta_image {
	width: 460px;
	height: auto;
	aspect-ratio: 1;
	margin: 0 auto;
	position: relative;
}
.contact_cta_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact_cta_image a {
	width: 160px;
	height: auto;
	aspect-ratio: 1;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 100vh;
	font-size: 15px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: -80px;
	bottom: -80px;
}
.contact_cta_image a:hover {
	background-color: var(--color-primary-light);
}
.contact_cta_ttl {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 1;
	font-family: var(--font-heading-en);
	font-size: 13vw;
	mix-blend-mode: difference;
	color: #fff;
}
.contact_cta_sub {
	position: absolute;
	left: 0;
	bottom: -15%;
	font-size: 15px;
}


/*------------------------------------------------------------
	service
------------------------------------------------------------*/
.service_wrap {
	width: 100%;
	padding: 100px 0 0;
	box-sizing: border-box;
	display: flex;
}
.service_main_image {
	width: 35%;
	display: none;
}
.service_main_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.service_main_cont {
	width: 100%;
	padding: 20px 0 180px;
}

.concept_loop {
    padding: 25px 0 20px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.bbs {
    align-items: center;    
    display: flex;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
}
.bbs ul {
    animation: flowing 80s linear infinite;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
}
.bbs ul li {
	font-family: var(--font-heading-en);
    display: inline-block;
    padding-right: 20px;
    font-size: 24px;
    line-height: 1;
}
.bbs ul li span {
    
}
@keyframes flowing {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.service_main_inner {
	padding: 5% var(--section-padding-x-sm) 0;
}
.smi_head_wrap {
	margin-bottom: 80px;
}
.smi_head_sub {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-bottom: 5px;
}
.smi_head_main {
	font-family: var(--font-heading-en);
	line-height: 1;
	font-size: 60px;
}
.service_main_image_sp {
	width: 100%;
	margin-bottom: 80px;
}
.service_main_image_sp img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1.6;
}
.service_blm {
	
}
.sbl_logo {
	margin-bottom: 35px;
}
.sbl_logo img {
	width: 170px;
}
.sbl_txt {
	margin-bottom: 80px;
}
.sbl_txt p {
	margin-bottom: 25px;
}
.sbl_txt p:last-of-type {
	margin-bottom: 0px;
}
.blm_link {

}
.blm_link_btn {
	display: block;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: #000;
	transition: all 0.3s ease;
}
.blm_link_btn_inner {
	background-color: #fff;
	border-radius: 40px;
	padding: 50px 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	transition: border-radius 3s ease;
}
.blm_link_btn_inner span {
	margin-left: 10px;
}
.blm_link_btn_inner span img {
	width: 14px;
}
.blm_link_btn:hover .blm_link_btn_inner {
	border-radius: 100vh;
}
/**/
.service_dg_wrap {
	width: 100%;
	padding: 160px var(--section-padding-x) 180px;
	box-sizing: border-box;
	position: relative;
	background-image: url(../image/service_dg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	color: #fff;
}
.service_dg_inner {
	max-width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
.service_dg_head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 100px;
	align-items: center;
}
.service_dg_sub {
	margin-top: 10px;
	font-size: 16px;
}
.service_dg_cont {

}
.sdc_inner {
	width: 45%;
}
.sdc_inner p {
	margin-bottom: 30px;
}
.sdc_inner p:last-of-type {
	margin-bottom: 0;
}

/*------------------------------------------------------------
	company
------------------------------------------------------------*/
.company_wrap {
	width: 100%;
	padding: 120px var(--section-padding-x) 180px;
	box-sizing: border-box;
	position: relative;
}
.company_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.company_indent {
	width: 100%;
	margin-bottom: 40px;
}
.company_indent h2 {
	font-family: var(--font-heading-en);
	font-size: 32px;
	line-height: 1;
}
.company_overview {
	flex: 1;
	border-top: 1px solid #000;
}
.company_overview dl {
	width: 100%;
	border-bottom: 1px solid #000;
	display: flex;
	align-items: center;
	padding: 50px 15px;
}
.company_overview dl dt {
	width: 20%;
	font-weight: bold;
}
.company_overview dl dt span {
	display: block;
	color: #a5a5a5;
	font-size: 11px;
	font-weight: normal;
}
.company_overview dl dd {
	width: 80%;	
}

/*------------------------------------------------------------
	news
------------------------------------------------------------*/
.news_wrap {
	width: 100%;
	padding: 120px var(--section-padding-x-sm) 180px;
	box-sizing: border-box;
	position: relative;
}
.news_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

/* ページャー */
nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;     
}
nav.cp_navi a {
    text-decoration: none;
}
nav.cp_navi {
    text-align: center;
    padding-top: 60px;
}
.cp_navi .cp_pagination {
    display: flex;
    justify-content: center;
    padding: 0 0.5em;
}
.cp_navi .cp_pagination li {
    list-style: none;
}
.cp_navi .cp_pagenum {
    font-size: 1em;
    line-height: 50px;
    display: block;
    float: left;
    transition: 400ms ease;
    letter-spacing: 0.1em;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto .5em;
}
.cp_navi .cp_pagenum:hover,
.cp_navi .cp_pagenum.current {
    font-weight: bold;
    color: #ffffff !important;
    background-color: #000;
    border-radius: 50%;
}
.cp_navi .cp_pagenum.prev:hover,
.cp_navi .cp_pagenum.next:hover {
    color: #757575 !important;
    background-color: transparent;
    border-radius: 50%;
}
@media only screen and (max-width: 960px) {
    .cp_navi .cp_pagination {
        padding: 0 10px;
    }
    .cp_navi .cp_pagenum {
    font-size: 0.8em;
    line-height: 25px;
    width: 45px;
    height: 25px;
    margin: auto .1em;
    border-radius: 0.3em;
}
    .cp_navi .cp_pagenum.prev,
    .cp_navi .cp_pagenum.next {
        padding: 0 25px 0 0;
    }
    .cp_navi .cp_pagenum:hover,
    .cp_navi .cp_pagenum.current {
        border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum.prev:hover,
    .cp_navi .cp_pagenum.next:hover {
        border-radius: 0.3em;
    }
}
@media only screen and (min-width: 120px) and (max-width: 767px) {
    .cp_navi .cp_pagenum {
    display: none;
    border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum:nth-of-type(2) {
    position: relative;
    padding-right: 20px;
    }
    .cp_navi .cp_pagenum:nth-of-type(2)::after {
    font-size: 1.2em;
    position: absolute;
    top: 0;
    left: 25px;
    content: '...';
    }
    .cp_navi .cp_pagenum:nth-child(-n+3),
    .cp_navi .cp_pagenum:nth-last-child(-n+3) {
        display: block;
    }
    .cp_navi .cp_pagenum:nth-last-child(-n+4) {
        padding: 0 5px;
    }
    .cp_navi .cp_pagenum:nth-last-child(-n+4)::after {
        content: none;
    }
    .cp_navi .cp_pagenum:hover,
    .cp_navi .cp_pagenum.current {
        border-radius: 0.3em;
    }
    .cp_navi .cp_pagenum.prev:hover,
    .cp_navi .cp_pagenum.next:hover {
        border-radius: 0.3em;
    }
}

.news_kiji_wrap {
	width: 100%;
	padding: 60px var(--section-padding-x-sm) 180px;
	box-sizing: border-box;
	position: relative;
}
.news_kiji_inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.news_sub_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.news_sub_ttl p {
	margin-right: 10px;
}
.news_sub_ttl p img {
	width: 28px;
}
.news_sub_ttl h3 {
	font-size: 15px;
}
.news_head {
	margin-bottom: 30px;
}
.news_head h2 {
	font-size: 30px;
	line-height: 1.6;
	margin-bottom: 60px;
}
.nh_info {
	display: flex;
	align-items: center;
}
.nhi_date {
	margin-right: 20px;
}
.nhi_ctgr {
	background-color: #000;
	font-size: 10px;
	line-height: 1;
	padding: 5px 30px;
	color: #fff;
}
.news_article {
	padding: 80px 30px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-bottom: 60px;
}
.news_article p {
	margin-bottom: 30px;
}
.news_article p:last-of-type {
	margin-bottom: 0px;
}
.news_list_back {
	display: flex;
	justify-content: center;
}
.nlb_link {
	font-family: var(--font-heading-en);
	display: flex;
	align-items: center;
	font-size: 18px;
}
.nlb_link span {
	margin-right: 10px;
}
.nlb_link span:last-of-type {
	margin-right: 0;
	margin-left: 10px;
}
.nlb_link p {
	margin-right: 10px;
}
.nlb_link p img {
	width: 15px;
	height: auto;
	position: relative;
	top: -2px;
}

/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
.contact_wrap {
	width: 100%;
	padding: 120px var(--section-padding-x-sm) 180px;
	box-sizing: border-box;
	position: relative;
}
.contact_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.contact_indent {
	width: 100%;
	margin-bottom: 40px;
}
.contact_indent h2 {
	font-size: 15px;
}
.contact_form_wrap {
	flex: 1;
}
.contact_form {
    
}
.contact_form dl {
    margin-bottom: 30px;    
    line-height: 1.6;
    display: flex;
    align-items: center;
}
.conf_br {
    padding-bottom: 25px;
    border-bottom: 1px solid #d1d1d1;
}
.contact_form dl:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.contact_form dl dt {
    font-weight: bold;
    width: 220px;
}
.contact_form dl dt span {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}
.contact_form dl dd {
    flex: 1;
}
.input_text {
    width: 100%;
    height: 65px;
    padding: 10px 10px 10px;
    box-sizing: border-box;
    background: #fff;
    margin: 0;
    border: none;
    border-bottom: 1px solid #000;
}
.ipw_1 {
    width: 100px !important;
}
.form_select {
    -webkit-appearance: none;
    appearance: none;
    height: 65px;
    padding: 10px 35px 10px 10px;
    background-image: url(../image/arrow_4.svg);
    background-position: right 18px center;
    background-repeat: no-repeat;
    background-size: 9px auto;
    border: none;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #000;
}
.fsw_1 {
    width: 200px !important;
}
.fsw_2 {
    width: 100px !important;
}
.textarea {
    width: 100%;
    padding: 10px;
    background: #fff;
    border: none;
    box-sizing: border-box;
    min-height: 180px;
    margin: 0;
    border-bottom: 1px solid #000;
}
.radio_btn_wrap {
    display: flex;
    flex-wrap: wrap;
}
.radio_btn {
    margin-right: 15px;
}
.contact_btn {
    
}
.apply_btn_wrap {
    margin-top: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.apply_btn {
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    margin: 0 auto;
    color: #fff;
    background-color: #000;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.apply_btn:hover {
    opacity: 0.8;
}
.apply_btn_wrap a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: underline;
    font-size: 13px;
}
.back_btn {
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    padding: 7px 15px;
    display: inline-block;
    background-color: #f2f2f2;
    font-weight: bold;
    font-size: 13px;
    margin: 20px auto 0;
}

.form_check {
    margin-bottom: 40px;
}
.retain {
    font-size: 13px;
    cursor: pointer;
}
.retain a {
    text-decoration: underline;
}
.retain_check {

}

.contact_fin_msg {
    padding: 0;
    width: 100%;
}
.contact_fin_msg h2 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact_fin_msg p {
    text-align: center;
}



/*------------------------------------------------------------
	terms / privacy policy
------------------------------------------------------------*/
.terms_wrap {
	width: 100%;
	padding: 140px var(--section-padding-x-sm) 160px;
	box-sizing: border-box;
}
.terms_inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.content_ttl {
	margin-bottom: 40px;
}
.content_ttl h3 {
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.6;
}
.content_ttl h2 {
	font-size: 32px;
	font-weight: bold;
	line-height: 1.5;
}
.terms_intro {
	margin-bottom: 40px;
}
.terms_content a {
	text-decoration: underline;
}
.terms_ttl {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.6;
	margin-top: 40px;
}
.terms_sub_ttl {
	margin-bottom: 20px;
}
.terms_sub_ttl p {
	text-indent: -1.2em;
	padding-left: 1.2em;
	line-height: 1.6;
	margin-bottom: 10px;
}
.terms_item {
	margin-bottom: 20px;
	margin-top: 15px;
}
.terms_item p {
	text-indent: -1.7em;
	padding-left: 1.7em;
	line-height: 1.6;
	margin-bottom: 10px;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
.footer_wrap {
	width: 100%;
	padding: 140px var(--section-padding-x) 140px;
	box-sizing: border-box;
	position: relative;
	background-color: #000;
	color: #fff;
}
.footer_inner {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.footer_info_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
}
.footer_logo img {
	width: 170px;
}
.footer_nav {
	display: flex;
}
.footer_nav li {
	margin-right: 35px;
}
.footer_nav li:last-child {
	margin-right: 0;
}
.footer_nav li a {
	display: block;
	letter-spacing: 1px;
	font-size: 16px;
	font-family: var(--font-heading-en);
	color: #fff;
}
.footer_bottom {
	display: flex;
	justify-content: space-between;
}
.footer_bottom_info {
	display: flex;
}
.copyright {
	font-size: 12px;
	letter-spacing: 1px;
	color: #8c8c8c;
	margin-right: 40px;
}
.footer_privacy {
	color: #8c8c8c;
	font-size: 12px;
	letter-spacing: 1px;
}
.footer_bottom_copy {
	font-family: var(--font-heading-en);
	color: #303030;
	font-size: 26px;
	line-height: 1;
}


.anchorlink {
	position: relative;
	display: block;
}


