/*--------------------------------------------------------------
# カスタムプロパティ
--------------------------------------------------------------*/
:root {
	/* 色 */
	--color-green-dark: #2dbcbc;
	--color-pink-light: #ef98db;
	--color-pink-dark: #ff63db;
	--color-yellow-dark: #e1cf0d;
	--color-yellow-light: #efdb0d;
	--color-purple-dark: #ba93c4;
	--color-blue-dark: #7988c5;
	--color-highlight: #FF420E;
	--color-danger: #ff2020;
	--color-light: #666;
	--color-light-grey: #ddd;
	--color-grey: #b0b0b0;
	/* 基準画面サイズ400px */
	--vw8: 2vw;
	--vw10: 2.5vw;
	--vw14: 3.5vw;
	--vw16: 4vw;
	--vw20: 5vw;
	--vw24: 6vw;
	--vw32: 8vw;
	--vw40: 10vw;
	--vw48: 12vw;
	--vw56: 14vw;
	--vw64: 17vw;
	--vw72: 18vw;
	--vw80: 20vw;
	--vw96: 24vw;
	/* コンテナーの幅 */
	--container-width: 90%;
	/* コンテナーの幅(上書き用) */
	--container-width-narrow: 90%;
	/* コンテナーの最大幅 */
	/* --container-max-width: 1260px; */
	/* コンテナーの最大幅 */
	/* --container-max-width-narrow: 960px; */
	/* グリッド余白 */
	--grid-gap: 2vw;
	/* 余白 */
	--footer-padding: var(--vw20);/* フッター */
	--main-area-padding: 6rem;/* メイン領域の上下 */
	--section-padding: 6rem;/* セクションの上下 */
	/* Fontawesome */
	--fontawesome: "Font Awesome 6 Pro";
	--fontawesome-sharp: "Font Awesome 6 sharp";
	--fontawesome-brands: "Font Awesome 6 Brands";
	/* font-family */
	--font-main: "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-logo: "magistral", "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-accent: "kallisto", "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/* フォントサイズ */
	--font-size-small: .75rem;
	/* ヘッダーの高さ */
	--header-height: 100px;
	/* 影 */
	--shadow-outer: drop-shadow(0 0 8px rgba(58, 126, 193, .1));
	/* アニメーション */
	--transition-default: .2s;
}

@media screen and (min-width: 768px) {
	:root {
		/* 基準画面サイズ800px */
		--vw8: 1vw;
		--vw10: 1.25vw;
		--vw14: 1.75vw;
		--vw16: 2vw;
		--vw20: 2.5vw;
		--vw24: 3vw;
		--vw32: 4vw;
		--vw40: 5vw;
		--vw48: 6vw;
		--vw56: 7vw;
		--vw64: 8.5vw;
		--vw72: 9vw;
		--vw80: 10vw;
		--vw96: 12vw;
	}
}

@media screen and (min-width: 992px) {
	:root {
		/* 基準画面サイズ1200px */
		--vw8: 0.6667vw;
		--vw10: 0.8333vw;
		--vw14: 1.1667vw;
		--vw16: 1.3333vw;
		--vw20: 1.6667vw;
		--vw24: 2vw;
		--vw32: 2.6667vw;
		--vw40: 3.3333vw;
		--vw48: 4vw;
		--vw56: 4.6667vw;
		--vw64: 5.3333vw;
		--vw72: 6vw;
		--vw80: 6.6667vw;
		--vw96: 8vw;
		/* ヘッダーの高さ */
		--header-height: 100px;
		/* コンテナーの幅 */
		--container-width: 80%;
		/* コンテナーの幅(上書き用) */
		--container-width-narrow: 80%;
		/* コンテナーの最大幅 */
		--container-max-width-narrow: 960px;
		/* 余白 */
		--main-area-padding: 8rem;/* メイン領域の上下 */
		/* TOTOPボタンの直径 */
		--btn-totop-width: 5rem;
		/* グリッド余白 */
		--grid-gap: 1vw;
		/* 余白 */
		--section-padding: 8rem;/* セクションの上下 */
	}
}

@media screen and (min-width: 1200px) {
	:root {
		/* 基準画面サイズ1400px */
		--vw8: 0.5714vw;
		--vw10: 0.7143vw;
		--vw14: 1vw;
		--vw16: 1.1429vw;
		--vw20: 1.4286vw;
		--vw24: 1.7143vw;
		--vw32: 2.2857vw;
		--vw40: 2.8571vw;
		--vw48: 3.4286vw;
		--vw56: 4vw;
		--vw64: 4.8571vw;
		--vw72: 5.1429vw;
		--vw80: 5.7143vw;
		--vw96: 6.8571vw;
	}
}

/* 色の割り当て
--------------------------------------------- */
:root {
	/* 文字色 */
	--color-headline-primary: #030646;
	--color-text-primary: #030646;
	/* 背景色 */
	--color-background: #fff;
	--color-background-sub: #1b1b1b;
	/* ボタン背景 */
	--btn-background-color: var(--gradient-primary-horizonal);
	/* テキストリンク文字色 */
	--btn-text-color: var(--color-primary);
	--btn-text-hover-color: var(--color-highlight);
	/* ボーダー */
	--border-color: #3a7ec133;
	/* グラデーション */
	--gradient-primary-horizonal: linear-gradient(to right,  rgba(159, 10, 132, 1) 0%, rgba(37, 114, 186, 1) 100%);
	--gradient-primary-vertical: linear-gradient(to bottom,  rgba(159, 10, 132, 1) 0%, rgba(37, 114, 186, 1) 100%);
}

.color__green {
	color: var(--color-green-dark);
}

.color__pink {
	color: var(--color-pink-light);
}

.color__yellow {
	color: var(--color-yellow-light);
}

.color__purple {
	color: var(--color-purple-dark);
}

.color__blue {
	color: var(--color-blue-dark);
}

.fa-solid.fa-sparkle {
	padding-right: .15em;
}

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

body {
	position: relative;
}

a:hover, a:focus, a:active {
	color: inherit;
}

a {
	cursor: pointer;
}

a,
a:visited {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
}

.post,
.page {
	margin: 0;
}

summary {
	list-style: none;
}

/*--------------------------------------------------------------
# レイアウト崩れ防止
--------------------------------------------------------------*/
/* footerが常に画面最下部にいるように固定
--------------------------------------------- */
#page {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site__footer {
	margin-top: auto;
}

/*--------------------------------------------------------------
# 背景
--------------------------------------------------------------*/
body::after {
	content: '';
	position: absolute;
	display: block;
	background: url(../img/background.webp) center center repeat;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: .9;
	z-index: -1;
}

/*--------------------------------------------------------------
# 汎用
--------------------------------------------------------------*/
html {
	font-family: var(--font-main);
	font-size: 16px;
}

body {
	font-family: var(--font-main);
	background: var(--color-background);
	color: var(--color-text-primary);
	line-height: 2em;
	overflow-y: scroll;
}

p {
	line-height: 2em;
}

p:not(:last-child) {
	margin-bottom: 1em;
}

img {
	display: block;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.home h1,
.home h2,
.home h3,
.home h4,
.home h5,
.home h6,
.sub-header h1,
p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding-left: 1.25em;
}

ul li::marker {
	color: var(--color-green-dark);
}

/* 改行調整
--------------------------------------------- */
span.br {
	display: inline-block;
}

/* セクション
--------------------------------------------- */
.front__section {
	padding: var(--vw48) 0;
}

@media (min-width: 768px) {
	.front__section {
		padding: var(--vw72) 0;
	}
	
}

/* コンテナー
--------------------------------------------- */
.container {
	width: var(--container-width);
	margin-right: auto;
	margin-left: auto;
}

/* テキスト
--------------------------------------------- */
.text__primary {
	font-family: var(--font-main);
	font-size: var(--vw16);
	font-weight: 500;
	margin-bottom: 1em;
}

.text__primary:last-child {
	margin-bottom: 0;
}

ul li,
ol li {
	font-family: var(--font-main);
	font-size: var(--vw16);
	font-weight: 500;
	margin-bottom: .5em;
}

table {
	font-family: var(--font-main);
	font-size: var(--vw16);
	font-weight: 500;
}

/* 見出し
--------------------------------------------- */
.title__radiovision {
	font-family: var(--font-logo);
	font-weight: 500;
}

h2.title__h2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--vw24);
	font-family: var(--font-main);
	font-size: var(--vw32);
	font-weight: 700;
	color: #00a0a0;
	text-align: center;
	line-height: 1.5em;
	margin-bottom: var(--vw48);
}

h2.title__h2::before {
	content: '';
	background: url(../img/asset_title.webp) center center / contain no-repeat;
	display: block;
	aspect-ratio: 295 / 62;
	width: 60vw;
	height: 100%;
}

h3.title__h3 {
	font-family: var(--font-main);
	font-size: var(--vw24);
	font-weight: 700;
	line-height: 1.75em;
}

h4.title__h4 {
	font-family: var(--font-main);
	font-size: var(--vw20);
	font-weight: 700;
}

h3.section__item__title {
	font-family: var(--font-main);
	font-size: var(--vw24);
	font-weight: 700;
	margin-bottom: var(--vw16);
	line-height: 1.75em;
}

@media (min-width: 768px) {
	h2.title__h2::before {
		width: 25vw;
	}

	h2.title__h2:not(:last-child) {
		margin-bottom: var(--vw80);
	}
}

/* リンク
--------------------------------------------- */
/* ボタン */
a.button__primary {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--vw8);
	font-size: var(--vw16);
	font-weight: 700;
	background: var(--color-text-primary);
	color: #fff;
	width: 100%;
	margin: auto;
	padding: var(--vw16) var(--vw32);
	border-radius: var(--vw32);
	transition: transform .25s, filter .25s;
	filter: drop-shadow(2px 2px 0 rgba(58, 126, 193, .1));
}

a.button__primary:hover {
	transform: translateY(-2px);
	filter: drop-shadow(4px 4px 0 rgba(58, 126, 193, .1));
}

a.button__primary:active {
	transform: translateY(0);
	filter: none;
}

/* サービスサイトへボタン */
a.button__home > img {
	width: calc(var(--vw72) * 2);
	height: auto;
}

/* MAPボタン */
a.button__map {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--vw14);
	font-size: var(--vw16);
	font-weight: 700;
	background: var(--color-green-dark);
	color: #fff;
	width: 100%;
	margin-top: auto;
	padding: var(--vw16) var(--vw32);
	border-radius: var(--vw32);
}

a.button__map::before {
	content: '\f3c5';
	font-family: var(--fontawesome);
	font-size: var(--vw20);
	font-weight: 700;
}

@media (min-width: 768px) {
	a.button__primary,
	a.button__map {
		width: fit-content;
	}

	a.button__home {
		padding-left: var(--vw16);
	}

	a.button__home::before {
		content: '\f053';
		display: flex;
		justify-content: center;
		align-items: center;
		font-family: var(--fontawesome);
		font-weight: 700;
		background: #fff;
		color: var(--color-text-primary);
		width: 2em;
		height: 2em;
		margin-right: var(--vw8);
		border-radius: 50%;
	}
}

/* カードレイアウト
--------------------------------------------- */
/* 外側 */
.card__wrapper {
	display: grid;
	gap: var(--vw24);
}

ol.card__wrapper {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* カード本体 */
.card__primary {
	position: relative;
	background: #fff;
	padding: var(--vw32);
	border-radius: var(--vw8);
	filter: var(--shadow-outer);
}

.card__secondary {
	position: relative;
	background: #70c4c4;
	height: fit-content;
	text-align: center;
	padding: var(--vw16);
	border-radius: var(--vw8);
	filter: var(--shadow-outer);
}

.card__secondary .card__secondary__inner {
	background: #fff;
	padding: var(--vw24);
	border-radius: var(--vw8);
}

.splide .card__primary {
	filter: none;
}

.splide:has(.card__primary) {
	filter: var(--shadow-outer);
}

.card__primary.has_article {
	padding: 0;
	overflow: hidden;
}

.card__primary.has_article a.post__link .entry__header {
	padding: var(--vw24);
}

.card__primary.has_article a.post__link .entry__footer {
	padding: 0 var(--vw24) var(--vw24) var(--vw24);
}

.card__primary article {
	width: 100%;
	height: 100%;
}

a.post__link {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	text-align: left;
}

/* カード内ヘッダー */
.card__header {
	color: #fff;
	padding: var(--vw8) var(--vw8) var(--vw24);
}

@media (min-width: 768px) {
	.card__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* カード内側 */
.card__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* カード内バッジ */
.card__badge {
	position: absolute;
	font-size: var(--vw10);
	font-weight: 500;
	top: 0;
	right: 0;
	width: fit-content;
	margin-top: .5em;
	padding: .75em;
	border: 1px solid;
	border-radius: var(--vw24);
	line-height: 1em;
	opacity: .5;
}

@media (max-width: 767px) {
	.card__badge {
		position: relative;
		margin-top: 0;
		margin-bottom: var(--vw8);
	}
}

/* カードレイアウト カード内グループ
--------------------------------------------- */
.card__inner__group {
	display: flex;
	flex-direction: column;
	gap: var(--vw32);
	margin-top: var(--vw32);
}

.card__inner__group__border {
	display: flex;
	background: #ddd;
	width: 75%;
	height: 1px;
	margin: auto;
}

.card__primary .image__contain {
	width: 75%;
	height: auto;
	margin: 0 auto var(--vw16);
}

.card__inner h3.card__title {
	margin-bottom: var(--vw16);
}

.card__inner h4.card__title {
	margin-bottom: var(--vw8);
}

@media (min-width: 768px) {
	.card__inner__group {
		flex-direction: row;
		gap: var(--vw24);
		margin-top: var(--vw40);
	}

	.card__inner__group__item {
		flex: 1;
	}

	.card__inner__group__border {
		background: var(--border-color);
		width: 1px;
		height: calc(var(--vw80) * 2.5);
	}

	.card__primary .image__contain {
		aspect-ratio: 1 / 1;
		max-width: calc(var(--vw80) * 2.5);
	}

	.card__primary .image__contain > img {
		object-fit: contain;
		object-position: center center;
		width: 100%;
		height: 100%;
	}
}

/* 2カラムレイアウト
--------------------------------------------- */
.section__item__2col__wrapper {
	display: flex;
	flex-direction: column;
	row-gap: var(--vw40);
}

.section__item__2col {
	display: grid;
	row-gap: var(--vw24);
	align-items: center;
}

.section__item__2col__image {
	aspect-ratio: 7 / 4;
}

.section__item__2col__image > img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
	.section__item__2col__wrapper {
		row-gap: var(--vw72);
		margin-top: var(--vw80);
	}

	.section__item__2col {
		grid-template-columns: repeat(2, 1fr);
		column-gap: var(--vw40);
	}

	.section__item__2col:nth-child(odd) .section__item__2col__image {
		order: 2;
	}


}

/* ページ内メニュー
--------------------------------------------- */
ul.list__shortcut {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--vw16);
	list-style: none;
	margin: 0;
	padding: 0;
}

.list__shortcut__item a {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: var(--vw20);
	background: rgba(255, 255, 255, .25);
	height: 100%;
	padding: var(--vw24);
	border: 2px solid #fff;
	border-radius: var(--vw8);
	filter: var(--shadow-outer);
	transition: background-color .25s;
}

.list__shortcut__item a:hover {
	background: #fff;
}

.list__shortcut__item__image {
	flex: auto;
}

.list__shortcut__item__image > img {
	object-fit: contain;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.list__shortcut__item__title {
	font-size: var(--vw16);
	font-weight: 700;
	text-align: center;
}

@media (max-width: 767px) {
	ul.list__shortcut {
		display: none;
	}
}

@media print {
	ul.list__shortcut {
		display: none;
	}
}

/* Splide
--------------------------------------------- */
.splide__inner {
	position: relative;
	padding: 0 20%;
}

.splide__track {
	overflow: visible;
}

.splide__slide {
	text-align: center;
}

/*--------------------------------------------------------------
# Webフォントちらつき防止
--------------------------------------------------------------*/
html {
	visibility: hidden;
}

html.wf-active,
html.wfno-load {
	visibility: visible;
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
a.cta__fixed {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--vw16);
	font-weight: 700;
	background: var(--color-text-primary);
	color: #fff;
	top: var(--vw8);
	right: var(--vw8);
	line-height: 1.75em;
	padding: var(--vw8) var(--vw24);
	border-radius: var(--vw24);
	z-index: 1000;
}

@media (min-width: 768px) {
	a.cta__fixed {
		top: var(--vw16);
		right: var(--vw16);
		padding: var(--vw16) var(--vw32);
		border-radius: var(--vw32);
	}
}

/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
.site__footer {
	background: var(--color-text-primary);
	font-size: calc(var(--vw16) * .75);
	font-weight: 500;
	text-align: center;
	color: #fff;
	padding: var(--footer-padding) 0;
}

.site__footer__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.navigation__bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
}

.navigation__bottom .navigation__parent__item > a {
	font-size: calc(var(--vw16) * .75);
	font-weight: 500;
	text-decoration: underline;
	padding: .25em .5em;
}

copyright {
	display: block;
}

@media (min-width: 992px) {
	.site__footer__inner {
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}
}

/*--------------------------------------------------------------
# reCaptchaのバッジ非表示
--------------------------------------------------------------*/
.grecaptcha-badge {
	display: none;
}
