/*
Theme Name: hs_2026
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Tags: 
Text Domain: 
*/
@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
 * 
 * リセットCSS      css / destyle.min.css
 * モジュール系CSS  css / module.css
 * ページ共通CSS    style.css
 * 各ページCSS      css / (top.css, business.css, message.css,,,)
********************************************************************
--------------------------------------------------------------------*/

:root {
	/* 黒系 */
	--black-1: #1d1d1d; /* ベースの黒 - 主にテキストに使用 */
	/* グレー系 */
	--gray-1:  #939393;
	--gray-2:  #efefef;
	/* グリーン系 */
	--green-1: #22afc3;
	--green-2: #76eeff;
	--green-3: #d6eef1;
	/* 赤系 */
	--red-1:   #ef1b25;
	/* その他の色 */
	--white-1: #fff;
	
	/* コンテンツ幅 */
	--content-pc-width-1: 1280px;
	--content-pc-width-2: 1728px;
	--content-sp-width-1: 90%;

	/* 固定ヘッダーの高さ */
	--scroll-margin-top-pc: 120px;
	--scroll-margin-top-sp: 60px;
}


/*--------------------------------------------------
**************************************************
  基本
**************************************************
--------------------------------------------------*/
html {
	scroll-behavior: smooth; /* スムーススクロール */
	font-size: 62.5%; /* ブラウザ標準16pxの62.5% → 1rem = 10px */
}
@media (max-width: 767px) {
	html {
		font-size: 2.6vw;
	}
}

body {
	margin: 0;
	padding: 0;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--black-1);
}

/* スマホでハンバーガーメニューを開いた時にスクロールさせない */
body.no_scroll {
	overflow: hidden;
	height: 100vh; /* iOS対策 */
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	shape-margin: 0.75rem;
}

.container {
	position: relative;
	padding: var(--scroll-margin-top-pc) 0 0;
	overflow-x: hidden;
}

/* スクロール時の位置調整（ヘッダー固定表示分の調整） */
.anchor_target {
	scroll-margin-top: var(--scroll-margin-top-pc);
}


.inner {
	width: min(var(--content-pc-width-1), var(--content-sp-width-1));
	margin-inline: auto;
}

/* SP */
@media screen and (max-width: 767px) {
	.container {
		padding-top: var(--scroll-margin-top-sp);
	}
	
	/* スクロール時の位置調整（ヘッダー固定表示分の調整） */
	.anchor_target {
		scroll-margin-top: var(--scroll-margin-top-sp);
	}
	
	.container.menu_open::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;
		display: block;
		width: 100%;
		height: 100vh;
		min-height: 100vh;
		background: #f5f5f5;
	}
}


/*--------------------------------------------------
**************************************************
  Webフォント
**************************************************
--------------------------------------------------*/
.roboto {
	font-family: "Roboto", sans-serif;
}

.poppins {
	font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------
**************************************************
  テキスト
**************************************************
--------------------------------------------------*/
.tategaki {
	writing-mode: vertical-rl;
	white-space: nowrap;
}


/*--------------------------------------------------
**************************************************
  色
**************************************************
--------------------------------------------------*/



/*--------------------------------------------------
**************************************************
  リンク系
**************************************************
--------------------------------------------------*/
a {
	text-decoration: none;
	color: var(--black-1);
	transition: all 1s ease;
}

a[href^="tel:"] {
	pointer-events: none;
	color: var(--black-1);
}

a:hover {
	color: var(--black-1);
}

a img{
	transition: 0.5s;
}

a img:hover {
	opacity: 0.7;
	transition: 0.5s;
}

.icon_arrow_right_1 {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(imgs/common/arrow_1.svg) no-repeat center / cover;
}

.link_1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	min-width: 380px;
	padding: 13px 40px;
	background: var(--black-1);
	border-radius: 50px;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--white-1);
}

.link_1:hover {
	color: #ffe400;
}

.link_1 .arrow {
	display: inline-block;
	width: 40px;
	height: 46px;
	background: url(imgs/common/arrow_2.svg) no-repeat right center / 8px;
	border-left: rgba(255, 255, 255, 0.4) 1px solid;
}

/* SP */
@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		pointer-events: auto;
	}

	.link_1 {
		gap: 10px;
		min-width: auto;
		width: var(--content-sp-width-1);
		margin-inline: auto;
		padding: 15px 28px;
		font-size: 1.4rem;
	}

	.link_1 .arrow {
		height: 30px;
	}
}


/*--------------------------------------------------
**************************************************
  ヘッダー
**************************************************
--------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 120px;
	padding-left: 96px;
	background: var(--white-1);
}

.header_logo {
	white-space: nowrap;
	font-size: 2.4rem;
	font-weight: 800;
}

/* タブレット */
@media screen and (max-width: 1440px) {
	header {
		height: 80px;
		padding-inline: 48px;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	header {
		height: 60px;
		padding-inline: 20px;
	}

	.header_logo {
		font-size: 1.8rem;
	}
}


/*--------------------------------------------------
**************************************************
  ハンバーガーメニュー（スマホ）
**************************************************
--------------------------------------------------*/
.menu_btn {
	cursor: pointer;
	position: relative;
	width: 30px;
	height: 19px;
	background: none;
	border: none;
}

.menu_btn .bar {
	position: relative;
	display: block;
	width: 100%;
	height: 3px;
	background: var(--black-1);
	transition: all 0.3s ease;
}

.menu_btn .bar:nth-child(2) {
	position: absolute;
	/* top: 8px; */
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.menu_btn .bar:nth-child(3) {
	position: absolute;
	left: 0;
	bottom: 0;
}

/* 開いた時 */
.menu_btn.open .bar:nth-child(1) {
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
}

.menu_btn.open .bar:nth-child(2) {
	opacity: 0;
}

.menu_btn.open .bar:nth-child(3) {
	transform: rotate(-45deg);
	position: absolute;
	top: 8px;
}

/* PC */
@media screen and (min-width: 1441px) {
	.menu_btn {
		display: none;
	}
}


/*--------------------------------------------------
**************************************************
  グローバルナビゲーション
**************************************************
--------------------------------------------------*/
.header_nav_box {
	display: flex;
	align-items: center;
	gap: 65px;
}

.header_nav > ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header_nav > ul > li {
	position: relative;
}

.sub-menu-toggle {
	display: none;
}

.sub-menu-toggle--label {
	cursor: auto;
	display: inline-block;
	padding: 0;
	background: transparent;
	border: none;
	color: var(--black-1);
}

.sub-menu-toggle--label .sub-menu-toggle__label {
	display: inline-block;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.3;
}

.sub-menu-toggle--label .sub-menu-toggle__line {
	display: none;
}

.sub-menu-toggle--label .en {
	display: block;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--gray-1);
}

.header_nav a {
	display: inline-block;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.3;
}

.header_nav a .en {
	display: block;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--gray-1);
}

.header_nav .sub-menu {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	z-index: 5;
	width: max-content;
	min-width: 280px;
	padding: 40px;
	background: var(--green-3);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.header_nav .sub-menu::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	border-right: 10px solid transparent;
	border-bottom: 12px solid var(--green-3);
	border-left: 10px solid transparent;
}

.header_nav .sub-menu li {
	list-style: none;
	margin-left: 0;
}

.header_nav .sub-menu li + li {
	margin-top: 16px;
}

.header_nav .sub-menu a {
	display: block;
	position: relative;
	padding: 0;
	padding-left: 1.1em;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
}

.header_nav .sub-menu a::before {
	content: "•";
	position: absolute;
	top: 0;
	left: 0;
	color: currentColor;
	line-height: 1.5;
}

.header_cta a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 180px;
	padding-top: 10px;
	background: var(--black-1) url(imgs/common/header_cta_turn.png) no-repeat right bottom / 80px;
	transition: all 0.3s ease;
}

.header_cta a.is-shrink {
	height: 120px;
	padding-top: 0;
}

.header_cta .fukidashi {
	position: relative;
	display: inline-block;
	padding: 2px 24px 4px;
	min-width: 140px;
	max-width: 100%;
	background: var(--white-1);
	border-radius: 20px;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--black-1);
}

.header_cta .fukidashi::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 15px;
	height: 10px;
	background: var(--white-1);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.header_cta .name {
	margin-top: 15px;
	font-size: 2.0rem;
	font-weight: 800;
	line-height: 1;
	color: var(--green-2);
}

.header_cta .en {
	margin-top: 7px;
	font-family: "Roboto", sans-serif;
	font-style: italic;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	color: var(--white-1);
}

/* PC */
@media screen and (min-width: 1441px) {
	.header_nav > ul > li.menu-item-has-children:hover > .sub-menu,
	.header_nav > ul > li.menu-item-has-children:focus-within > .sub-menu,
	.header_nav > ul > li.menu-item-has-children.is-hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}

	.header_nav .sub-menu a:hover,
	.header_nav .sub-menu a:focus-visible {
		color: var(--green-1);
	}
}

/* タブレット */
@media screen and (max-width: 1440px) {
	.header_nav_box {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease;
		position: absolute;
		top: 80px;
		left: 0;
		z-index: -1;
		display: block;
		width: 100%;
		height: calc(100dvh - 80px - 68px);
		max-height: calc(100dvh - 80px - 68px);
		min-height: calc(100vh - 80px - 68px);
		padding-inline: 48px;
		padding-bottom: calc(68px + 16px);
		background: var(--white-1);
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.header_nav_box.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: 10;
	}

	.header_nav > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.header_nav > ul > li {
		width: 100%;
		border-bottom: var(--gray-1) 1px solid;
	}

	.header_nav > ul > li.menu-item-has-children {
		padding-block: 16px 0;
	}

	.header_nav a {
		display: block;
		width: 100%;
		padding-block: 16px;
		text-align: left;
		font-size: 1.6rem;
		line-height: 1;
	}

	.sub-menu-toggle--label {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		width: 100%;
		padding: 0 64px 16px 0;
		text-align: left;
		cursor: pointer;
	}

	.sub-menu-toggle--label .sub-menu-toggle__label {
		text-align: left;
		font-size: 1.6rem;
		line-height: 1;
	}

	.sub-menu-toggle--label .sub-menu-toggle__line {
		display: block;
		position: absolute;
		top: 15px;
		right: 9px;
		width: 14px;
		height: 2px;
		border-radius: 999px;
		background: var(--black-1);
		transition: opacity 0.2s ease;
	}

	.sub-menu-toggle__line--vertical {
		transform: rotate(90deg);
	}

	.sub-menu-toggle.is-open .sub-menu-toggle__line--vertical {
		opacity: 0;
	}

	.header_nav a .en,
	.sub-menu-toggle--label .en {
		margin-top: 5px;
		font-size: 1.4rem;
	}

	.header_nav .sub-menu {
		position: static;
		width: 100%;
		min-width: 0;
		margin-top: 0;
		padding: 0;
		background: transparent;
		opacity: 1;
		visibility: visible;
		transform: none;
		overflow: hidden;
		transition: margin-top 0.2s ease, max-height 0.2s ease, opacity 0.2s ease;
	}

	.header_nav > ul > li.menu-item-has-children.is-collapsed .sub-menu {
		margin-top: 0;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
	}

	.header_nav > ul > li.menu-item-has-children:not(.is-collapsed) .sub-menu {
		max-height: 500px;
		opacity: 1;
		visibility: visible;
	}

	.header_nav .sub-menu::before {
		content: none;
	}

	.header_nav .sub-menu li {
		background: transparent;
		border-top: var(--gray-1) 1px solid;
		list-style: none;
		margin-left: 0;
	}

	.header_nav .sub-menu li + li {
		margin-top: 0;
	}

	.header_nav .sub-menu a {
		padding: 16px 24px;
		font-size: 1.6rem;
		font-weight: 800;
		line-height: 1.4;
	}

	.header_nav .sub-menu a::before {
		content: none;
	}

	.header_cta .en {
		display: none;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.header_nav_box {
		top: 60px;
		height: calc(100dvh - 60px - 68px);
		max-height: calc(100dvh - 60px - 68px);
		min-height: calc(100vh - 60px - 68px);
		padding-inline: 20px;
		padding-bottom: calc(68px + 16px);
	}
}


/*--------------------------------------------------
**************************************************
  パンくず
**************************************************
--------------------------------------------------*/
.breadcrumb {
	width: 90%;
	margin: 40px auto 0;
	display: flex;
	gap: 0 15px;
}

/* 下層ページでページタイトルに画像がある時の調整用 */
.page_title_add_thumb .breadcrumb {
	margin-bottom: 32px;
}

.breadcrumb span {
	font-size: 1.4rem;
	font-weight: 600;
}

/* SP */
@media screen and (max-width: 767px) {
	.breadcrumb {
		margin: 20px auto 0;
		white-space: nowrap;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		gap: 0 10px;
	}

	.page_title_add_thumb .breadcrumb {
		margin-bottom: 20px;
	}

	.breadcrumb span {
		font-size:1.2rem;
	}
}


/*--------------------------------------------------
**************************************************
  フッター手前のCTA
**************************************************
--------------------------------------------------*/
.page_bottom_common_cta {
	width: 100%;
	height: 711px;
	padding: 120px 0;
	background-color: var(--gray-2);
	background-image:
		url(imgs/common/page_bottom_common_cta_bg_1.png),
		url(imgs/common/page_bottom_common_cta_bg_2.png);
	background-repeat: no-repeat;
	background-position:
		top left,
		top right;
	background-size: auto 100%;
	text-align: center;
}

.page_bottom_common_cta .text_1 {
	display: inline-block;
	padding: 20px 15px 21px;
	background: var(--black-1);
	font-size: 5.0rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--white-1);
}

.page_bottom_common_cta .text_1 span,
.page_bottom_common_cta .text_1_1 span {
	color: var(--green-2);
}

.page_bottom_common_cta .text_2 {
	display: inline-block;
	margin-top: 24px;
	padding: 20px 15px 21px;
	background: var(--white-1);
	font-size: 5.0rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--black-1);
}

.page_bottom_common_cta .link_list {
	display: flex;
	justify-content: center;
	gap: 40px;
	width: min(100%, var(--content-pc-width-1));
	margin: 64px auto 0;
}

.page_bottom_common_cta .link_list li {
	width: 50%;
}

.page_bottom_common_cta .link_list a {
	display: block;
	width: 100%;
	padding: 38px 5% 40px;
	background: var(--green-1);
	border-radius: 8px;
	color: var(--white-1);
}

.page_bottom_common_cta .link_list li:nth-child(even) a {
	background: rgba(255, 255, 255, 0.8);
	color: var(--black-1);
}

.page_bottom_common_cta .link_title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.2rem;
	font-weight: 800;
}

.page_bottom_common_cta .link_title .icon_arrow_right_1 {
	width: 32px;
	height: 32px;
	margin: 5px 0 0 15px;
}

.page_bottom_common_cta .link_description {
	margin-top: 10px;
	font-weight: 700;
}

/* SP */
@media screen and (max-width: 767px) {
	.page_bottom_common_cta {
		height: auto;
		padding: 64px 5%;
		background: url(imgs/common/page_bottom_common_cta_bg_1_sp.png) no-repeat top center / cover;
	}

	.page_bottom_common_cta .text_1_1,
	.page_bottom_common_cta .text_1_2,
	.page_bottom_common_cta .text_2 {
		display: inline-block;
		margin: 0 0 8px;
		padding: 4px 8px 6px;
		background: var(--white-1);
		font-size: 2.6rem;
		font-weight: 800;
		line-height: 1;
		color: var(--black-1);
	}

	.page_bottom_common_cta .text_1_1 {
		background: var(--black-1);
		color: var(--white-1);
	}

	.page_bottom_common_cta .link_list {
		flex-direction: column;
		gap: 16px;
		margin-top: 32px;
	}

	.page_bottom_common_cta .link_list li {
		width: 100%;
	}

	.page_bottom_common_cta .link_list a {
		padding: 32px 5px;
	}

	.page_bottom_common_cta .link_list > li:nth-child(1) a {
		background: rgba(34, 175, 195, 0.8);
		backdrop-filter: blur(30px)
	}

	.page_bottom_common_cta .link_title {
		font-size: 2.2rem;
	}

	.page_bottom_common_cta .link_list > li:nth-child(2) .link_title {
		font-size: 1.8rem;
	}

	.page_bottom_common_cta .link_title .icon_arrow_right_1 {
		width: 28px;
		height: 28px;
		margin: 5px 0 0 15px;
	}

	.page_bottom_common_cta .link_description {
		margin-top: 16px;
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
**************************************************
  フッター
**************************************************
--------------------------------------------------*/
footer {
	position: relative;
	display: flex;
	background: var(--green-1);
}

.footer_management {
	width: 37%;
	padding: 120px 5% 250px 5%;
	background: var(--white-1);
	clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}

.footer_management_strong_point {
	display: flex;
	align-items: center;
	gap: 5px;
}

.footer_management_strong_point .text {
	padding: 8px;
	border: var(--black-1) 1px solid;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 800;
}

.footer_management_site_name {
	margin-top: 16px;
}

.footer_management_site_name .sub {
	font-size: 1.6rem;
	font-weight: 600;
}

.footer_management_site_name .main {
	font-size: 4.0rem;
	font-weight: 800;
	line-height: 1;
}

.footer_tel_sns {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin-top: 70px;
}

.footer_tel a {
	font-size: 4.0rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.footer_tel .footer_tel_time {
	font-size: 1.6rem;
	font-weight: 600;
}

.footer_sns {
	display: flex;
	gap: 17px;
}

.footer_sns > li {
	width: 30px;
}


.footer_sitemap {
	width: calc(100% - 37%);
	padding: 120px 5% 250px;
	/* background: var(--green-1); */
}

.footer_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}

.footer_menu_item > p {
	display: inline-block;
	padding: 2px 15px;
	border: var(--white-1) 1px solid;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--white-1);
}

.footer_menu_item > ul {
	margin-top: 20px;
}

.footer_menu_item > ul li + li {
	margin-top: 5px;
}

.footer_menu_group_title {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white-1);
}

.footer_submenu {
	margin-top: 5px;
	padding-left: .25em;
}

.footer_submenu li {
	position: relative;
	padding-left: 1em;
}

.footer_submenu li::before {
	content: "-";
	position: absolute;
	top: 0;
	left: 0;
	color: var(--white-1);
}

.footer_submenu li + li {
	margin-top: 5px;
}

.footer_menu_item > ul a {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--white-1);
}

#copyright {
	position: absolute;
	left: 50%;
	bottom: 120px;
	transform: translateX(-50%);
	width: 90%;
	padding-top: 40px;
	border-top: var(--white-1) 1px solid;
	text-align: center;
	font-size: 1.4rem;
	color: var(--white-1);
}

/* 狭い画面 */
@media screen and (max-width: 1290px) {
	footer {
		flex-direction: column;
	}

	.footer_management {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 40px 5%;
		clip-path: none;
	}

	.footer_management_strong_point .text {
		padding: 4px 8px 6px;
		font-size: 1.3rem;
	}

	.footer_management_site_name {
		margin-top: 18px;
		text-align: center;
	}

	.footer_management_site_name .sub {
		font-size: 1.2rem;
	}

	.footer_management_site_name .main {
		margin-top: 8px;
		font-size: 3.0rem;
	}

	.footer_tel_sns {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		gap: 16px;
		margin-top: 30px;
	}

	.footer_tel a {
		font-size: 3.0rem;
	}

	.footer_tel .footer_tel_time {
		font-size: 1.3rem;
	}

	.footer_sns {
		gap: 10px;
	}

	.footer_sns > li {
		width: 26px;
	}


	.footer_sitemap {
		width: 100%;
		padding-block: 40px 90px;
		background: var(--green-1);
	}

	.footer_menu {
		flex-direction: column;
	}
	
	.footer_menu_item > p {
		font-size: 1.4rem;
	}

	.footer_menu_item > ul a {
		font-size: 1.3rem;
	}

	.footer_menu_group_title {
		font-size: 1.3rem;
	}

	#copyright {
		position: static;
		transform: none;
		display: block;
		width: 100%;
		margin-top: 43px;
		padding-top: 32px;
		font-size: 1.2rem;
	}
}


/*--------------------------------------------------
**************************************************
  スマホのCTA メニューオープン時と画面下部固定
**************************************************
--------------------------------------------------*/
/* PC */
@media screen and (min-width: 1441px) {
	.sp_bottom_cta {
		display: none;
	}
}

/* タブレット～SP */
@media screen and (max-width: 1440px) {
	.header_cta,
	.sp_bottom_cta {
		left: 0;
		bottom: 0;
		width: 100%;
		height: calc(60px + 8px); /* 8px は border-bottom の分 */
	}

	.header_cta {
		/* position: absolute; */
		position: fixed;
	}
	
	.sp_bottom_cta {
		position: fixed;
		z-index: 10;
	}
	
	.header_cta a,
	.sp_bottom_cta a {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
		width: 100%;
		height: 100%;
		padding: 0 30px;
		background: var(--black-1) url(imgs/common/header_cta_turn.png) no-repeat right bottom / 30px;
		border-bottom: var(--green-1) 8px solid;
	}

	.header_cta .fukidashi,
	.sp_bottom_cta .fukidashi {
		position: relative;
		display: inline-block;
		padding: 2px 10px 4px;
		min-width: 120px;
		background: var(--white-1);
		border-radius: 20px;
		text-align: center;
		font-size: 1.2rem;
		font-weight: 700;
		line-height: 1;
		color: var(--black-1);
	}

	.header_cta .fukidashi::after,
	.sp_bottom_cta .fukidashi::after {
		content: "";
		position: absolute;
		top: 50%;
		left: unset;
		right: -5px;
		transform: translateY(-50%);
		width: 15px;
		height: 15px;
		background: var(--white-1);
		clip-path: polygon(100% 50%, 0 0, 0 100%);
	}

	.header_cta .name,
	.sp_bottom_cta .name {
		margin: 0;
		background: linear-gradient(90.93deg, #76EEFF 0.8%, #85DFFF 99.81%);
		-webkit-background-clip: text;
		background-clip: text;
		font-size: 2.0rem;
		font-weight: 800;
		line-height: 1.1;
		color: transparent;
	}

}
