@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Outfit:wght@100..900&display=swap');

/*

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name
.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

// <weight>: Use a value from 200 to 900
// <uniquifier>: Use a unique and descriptive class name
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #91743e;
	/*テンプレートのメインまたはアクセントとなる色*/
	--primary-inverse-color: #fff;
	/*primary-colorの対として使う色*/
	--primary-color-rgb: 164, 141, 99;
	/*primary-colorをrgb数値にしたもの。個別に透明度を調整して使い回す為のものです。*/
	--global-space: 3vw;
	/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {
		left: -200px;
	}

	100% {
		left: 0px;
	}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/*spinのキーフレーム設定（トップページの大きな円形の文字が回るアニメーション）
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	overflow-y: scroll !important;
	word-break: break-word;
	/* scroll-behavior: smooth;
	scroll-padding-top: 0px; */
}

/* body {
	margin: 0 !important;
	color: #333;
	font-size: 1.5rem;
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: left;
} */


body {
	margin: 0;
	padding: 0;
	/* font-family: "M PLUS 1", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	/*フォント種類*/
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.4rem;
	-webkit-text-size-adjust: none;
	background: #e7e6d4 url('../img/bg.png') repeat center top / 150px;
	/*背景色、背景壁紙の読み込み。壁紙の幅を150pxに指定してリピート。*/
	color: #262626;
	/*文字色*/
	line-height: 1.8;
	/*行間*/
	animation: opa1 0.2s 0.5s both;
	/*0.5秒待機後、0.2秒かけてフェードイン表示*/
	letter-spacing: 0.04em;
}

@media print,
screen and (min-width: 950px) {
	html {
		/* scroll-padding-top: 140px; */
	}

	body {
		font-size: 1.6rem;
	}
}

/*リセット*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

nav ul {
	list-style: none;
}

input {
	font-size: 1rem;
}

/*ul,ol*/
ul,
ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

/*table全般の設定*/
table {
	border-collapse: collapse;
}

/*画像全般の設定*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: crisp-edges;
	image-rendering: -webkit-optimize-contrast;
}

/*videoタグ
video {max-width: 100%;}*/

/*iframeタグ*/
iframe {
	width: 100%;
}

/*sectionが続く場合*/
section+section {
	margin-top: 9vw;
	/*sectionの上に空けるスペース*/
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #262626;
	/*リンクテキストの色*/
	transition: 0.3s;
	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}

a:hover {
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	filter: brightness(1.2);
	/*マウスオン時に少し明るくする*/
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: url('../img/bg1.png') no-repeat center top / 100%;
	/*画像の読み込み、リピートせず、左右中央に配置、上部に配置で幅100%で配置*/
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: url('../img/bg2.png') no-repeat left top / 100%;
	/*画像の読み込み、リピートせず、左に配置、上部に配置で幅100%で配置*/
}


/*container
---------------------------------------------------------------------------*/
#container {
	overflow-x: hidden;
}


/*contents
---------------------------------------------------------------------------*/
#contents {
	padding: 6vw var(--global-space);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*h1テキスト。このテンプレートでは、画面最上部の帯の左側に小文字で入れているテキストです。*/
header h1 {
	font-weight: normal;
	margin: 0;
	padding: 0;
	font-size: 0.8rem;
	/*文字サイズを80%*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広く*/
}

/*画面幅700px以下の追加指定*/
@media screen and (max-width:700px) {

	header h1 {
		/* display: none; */
		/*表示しない*/
	}

}

/*追加指定ここまで*/


/*ヘッダー内のheader-inner（ロゴ画像とメニューブロックを囲むボックス）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.header-inner {
	position: relative;
	display: flex;
	/*直接の子要素を横並びにする。この場合、ロゴとメニューブロックが対象。*/
	align-items: center;
	/*天地中央に配置*/
	height: 60px;
	background: #fff;
	/*背景色*/
}

/*トップページでのボックス*/
.home .header-inner {
	display: block;
	/*flexを解除する*/
}


/*ヘッダー内のロゴ
---------------------------------------------------------------------------*/

#logo {
	margin: 0 0 0 3.2vw;
}

#logo a {
	display: grid;
	grid-template-columns: 60px 10px auto;
	text-decoration: none;
	line-height: 1.2;
	color: #194c9e;
}

#logo a>img {
	grid-column: 1 / 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	/* background: #F00; */
}

#logo a>span {
	grid-column: 3 / 4;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	font-size: 2.4rem;
}

#logo a .en {
	margin-left: 0.25em;
	font-size: 50%;
	letter-spacing: 1.01em;
	font-family: "Outfit", sans-serif;
}

#logo a .jp {
	margin: -0.0em 0 0.15em;
	font-weight: 800;
}

@media screen and (min-width:901px) {

	/*トップページのロゴ画像*/
	.home #logo {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 300px;
		/*ロゴ画像の幅*/
		aspect-ratio: 1 / 0.5;
		position: absolute;
		z-index: 1;
		left: 50%;
		top: 0px;
		margin: 0;
		padding: 0 30px;
		transform: translateX(-50%);
		background: #FFF;
		border-radius: 0 0 150px 150px;
	}

	.home #logo a {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.home #logo a>img {
		width: 60px;
		margin: -20px 0 10px;
	}

	.home #logo a>span {
		font-size: 1.6rem;
		letter-spacing: -0.02em;
	}

	.home #logo a .en {
		margin-left: 0.55em;
		/* font-size: 52%; */
		letter-spacing: 0.55em;
	}

	.home #logo a .jp {
		margin: 0 0 0.24em;
	}

}

/*画面幅900px以下の追加指定*/
@media screen and (max-width:900px) {

	#logo {
		/* margin: 0; */
		/* padding: 0; */
		/* width: 280px; */
		/*ロゴ画像の幅*/
		margin: 0 0 0 6px;
	}

	#logo a {
		grid-template-columns: 50px 6px auto;
	}

	#logo a>img {}

	#logo a>span {
		font-size: min(5vw, 1.9rem);
	}

	#logo a .en {
		letter-spacing: 0.935em;
	}

	#logo a .jp {
		margin: -0.08em 0 0.15em;
		letter-spacing: -0.02em;
	}

	.home .header-inner {
		display: flex;
	}

}

/*追加指定ここまで*/


/*header-top（headerの最上部の帯ブロック）
---------------------------------------------------------------------------*/
header {
	position: relative;
	z-index: 2;
}

/*ブロック全体*/
#header-top {
	padding: 5px var(--global-space);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	display: flex;
	/*直接の子要素を横並びにする。この場合はh1テキストと、言語ボックスが対象。*/
	justify-content: space-between;
	/*それぞれ両サイドに配置*/
	font-size: 0.8rem;
	/*文字サイズを80%に*/
}

/*画面幅700px以下の追加指定*/
@media screen and (max-width:700px) {

	/*ブロック全体*/
	#header-top {
		justify-content: flex-end;
		/*h1テキストが非表示になり、言語ボックスが左によるので、右側にとどまるように指定を変更*/
	}

}

/*追加指定ここまで*/

/*リンクテキスト*/
#header-top a {
	color: inherit;
}

/*言語ボックス全体の設定*/
#header-top .lang {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: -5px;
	/*上にずらす。#header-topの上下paddingの数字と合わせる。*/
	display: flex;
	/*各言語を横に並べる*/
	gap: 1rem;
	/*各言語同士に空けるスペース。１文字分。*/
}

/*言語ボックス１個あたり*/
#header-top .lang a {
	display: block;
	text-decoration: none;
	border-radius: 0px 0px 3px 3px;
	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	padding: 0 1rem;
	/*ボックス内の余白。上下、左右。*/
	background: rgba(255, 255, 255, 0.2);
	/*背景色。255,255,255は白の事で0.2は色が20%出た状態。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
	display: block;
}

.small-screen #menubar.display-block {
	display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
	display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
	/* display: none; */
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";
	/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;
	/*この手の設定がないとアイコンが出ない場合があります*/
	font-size: 10px;
	/*文字サイズを70%に*/

	/*右側に空ける余白。0.5文字分。*/
	position: absolute;
	right: 10px;
}


/*大きな端末、小さな端末共通のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar a {
	display: block;
	text-decoration: none;
}

/*小文字の英語部分*/
#menubar .jp {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	line-height: 1.4;
}

#menubar .en {
	display: block;
	width: 100%;
	font-size: 0.8em;
	/*文字サイズを親要素の70%に*/

	/*文字間隔を少しだけ広くとる*/
	opacity: 0.4;
	/*透明度。色が60%出た状態。*/
	line-height: 1.4;
	font-family: "Outfit", sans-serif;
	margin: 2px 0 -1px;
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックを囲むボックス*/
.large-screen #menubar {
	/* flex: 1; */
}

.large-screen .header-inner {
	height: auto;
	justify-content: space-between;
}

/*大きな端末では１番目メニュー（ホーム）を非表示にする*/
.large-screen #menubar>nav>ul>li:nth-of-type(1) {
	/* display: none; */
}

/*メニューブロック全体の設定*/
.large-screen #menubar>nav>ul {
	display: flex;
	/*メニューを横並びにする*/
	/* justify-content: space-between; */
	align-items: center;
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li {
	/* flex: 1; */
	/*個々のメニューを均等にし、幅いっぱいまで使う設定*/
	position: relative;
	/*ドロップダウンの幅となる基準を作っておく*/
	text-align: center;
	/*テキストをセンタリング*/
	font-size: min(1.5vw, 1.6rem);
	font-weight: 500;
	margin-right: 3.2vw;
}

.large-screen #menubar li li {
	flex: 1;
	margin-right: 0;
	font-size: 88%;
	font-weight: 400;
}

/*現在表示中メニュー（current）*/
.large-screen #menubar li.current>a {
	border-bottom: 2px solid var(--primary-color);
	/*下線の幅、線種、varは色のことでcss冒頭で指定しているprimary-colorを読み込みます。。*/
}

/*トップページの3個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul {
	justify-content: center;
}

/*トップページの3個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul>li:nth-of-type(5) {
	margin-right: -75px;
}

.home.large-screen #menubar>nav>ul>li:nth-of-type(3) {
	margin-right: 180px;
	/*右側に空けるスペース。ロゴに重ならないようにする為。*/
}

/*トップページの4個目のメニューへの指定　※html側で順番をカウントして下さい。*/
.home.large-screen #menubar>nav>ul>li:nth-of-type(4) {
	margin-left: 150px;
	/*左側に空けるスペース。ロゴに重ならないようにする為。*/
}

/*リンク（a要素）の設定*/
.large-screen #menubar li a {
	padding: 0.8rem 0;
	/*上下、左右の余白*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;
	z-index: 2;
	min-width: 150px;
	top: 100%;
	left: 50%;
	white-space: nowrap;
	transform: translateX(-50%);
}

.large-screen #menubar a.ddmenu::before {
	display: none;
}

/*ドロップダウンメニュー1個あたりの上下、左右への余白。*/
.large-screen #menubar ul ul a,
.large-screen #menubar ul ul .a {
	padding: 0.6rem 3rem !important;
	/*上下、左右へのメニュー内の余白*/
	background: #fff;
	/*背景色*/
	margin: 3px 3px 0;
	/*メニューの外側に空けるスペース。上、左右、下への順番。*/
	border-radius: 5px;
	/*角を丸くする指定*/
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
}

.large-screen #menubar ul ul .a {
	padding: 0 !important;
	overflow: hidden;
}

.large-screen #menubar ul ul .a a.title {
	margin: 0;
	border: none;
	border-radius: 0;
	/* border-bottom: 1px solid #CCC; */
}

.large-screen #menubar ul ul .a .a-inner {
	font-size: 90%;
	font-weight: 400;
	border-top: 1px solid #CCC;
}

.large-screen #menubar ul ul .a .a-inner a {
	margin: 0;
	padding: 0.4rem 3rem !important;
	border: none;
	border-radius: 0;
}

/*マウスオン時*/
.large-screen #menubar ul ul a:hover {
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	background: var(--primary-color) no-repeat left bottom / 100vw;
	/*背景色、背景画像の読み込み。画像は画面幅に合わせる*/
	animation: animation1 0.2s both;
	/*animation1を実行する。0.2sは0.2秒の事。*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;
	/*枠線の幅、線種、色*/
	margin: 1rem;
	/*メニューの外側に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

.small-screen #menubar a {
	position: relative;
	color: inherit;
	padding: 1rem 1.5rem;
	/*メニュー内の余白。上下、左右へ。*/
	font-size: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.small-screen #menubar li li a {
	background: var(--primary-inverse-color);
	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	font-size: 1.3rem;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	top: 15px;
	/*上からの配置場所*/
	right: 2vw;
	/*右からの配置場所*/
	width: 50px;
	/*幅*/
	height: 50px;
	/*高さ*/
	padding: 15px;
	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: rgba(0, 0, 0, 0.4);
	/*背景色*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;
	/*線の太さ*/
	background-color: #fff;
	/*線の色*/
	border-radius: 2px;
	/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {
	top: 0;
}

#menubar_hdr div span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

#menubar_hdr div span:nth-child(3) {
	bottom: 0;
}

#menubar_hdr.ham div span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

#menubar_hdr.ham div span:nth-child(2) {
	opacity: 0;
}

#menubar_hdr.ham div span:nth-child(3) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}


/*mainブロック
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	position: relative;
	max-width: 1260px;
	margin: 0 auto;
}

/*h2見出し*/
main h2 {
	position: relative;
	text-align: center;
	/*テキストをセンタリング*/
	margin: 0 0 1.5em;
	/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: min(8vw, 4.6rem);
	/*文字サイズ*/
	font-weight: 600;
	/*文字の太さ。100から900まで指定可能。*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	line-height: 1.6;
	font-family: "Noto Serif JP", serif;
}

.home main h2 {
	margin: 0.5em 0 0.8em;
}

main h2.s {
	font-size: min(6.4vw, 4.4rem);
}

@media screen and (min-width: 900px) {
	main h2 {
		margin: 0 0 2.5em;
	}
}

/*装飾用の小文字*/
main h2 .small {
	display: block;
	font-size: 0.4em;
	/*文字サイズを親要素の50%に*/
	opacity: 0.5;
	/*透明度。色が70%出た状態。*/
	font-weight: 400;
	/*文字の太さ。100から900まで指定可能。*/
	font-family: "Outfit", sans-serif;
}

/*h3見出し*/
main h3 {
	font-size: 1.4rem;
	/*文字サイズ*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	font-weight: normal;
	/*デフォルトの太字を標準に*/
}

.home main h3 {
	display: flex;
	margin: 0 0 2.0em;
}

.home main h3 span {
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	font-size: min(6vw, 3.2rem);
	/*文字サイズを150%に*/
	font-weight: 600;
	/*文字の太さ。100から900まで指定可能。*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	/*カギカッコを絶対配置する為に必要な指定*/
	padding: 0 1rem;
	/*上下、左右へのh3内の余白*/
	margin: 0 auto;
	/*左右の中央に配置*/
	text-align: center;
	font-family: "Noto Serif JP", serif;
}

.home main h3 span::before,
.home main h3 span::after {
	content: "";
	position: absolute;
	width: 20px;
	/*カギカッコの幅。お好みで。*/
	height: 40px;
	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--primary-color);
	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}

.home main h3 span::before {
	top: -8px;
	/*テキストからの距離。お好みで。*/
	left: -15px;
	/*テキストからの距離。お好みで。*/
	border-right: none;
	/*右の線は消す*/
	border-bottom: none;
	/*下の線は消す*/
}

.home main h3 span::after {
	bottom: -8px;
	/*テキストからの距離。お好みで。*/
	right: -15px;
	/*テキストからの距離。お好みで。*/
	border-left: none;
	/*左の線は消す*/
	border-top: none;
	/*上の線は消す*/
}

@media screen and (min-width: 900px) {
	.home main h3 {}
}


/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents,
#footermenu {
	padding: 2rem var(--global-space);
	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: rgba(var(--primary-color-rgb), 0.75)
  /* url('../img/bg_footer.svg') */
  repeat-x left bottom / 1000px;
	/*背景色はcss冒頭のvar(primary-color-rgb)を読み込み、0.8で透明度も指定。残りは背景画像の読み込み、横軸にリピート、左下から配置。幅1000px。*/
	color: var(--primary-inverse-color);
	/*文字色*/
}

#footer-contents a {
	color: inherit;
}

#footer-contents a:hover {
	text-decoration: none;
}

#footer-contents .logo {
	font-weight: normal;
}

#footer-contents .logo a {
	display: grid;
	grid-template-columns: 60px 10px auto;
	text-decoration: none;
	line-height: 1.2;
	color: #194c9e;
}

#footer-contents .logo a>img {
	grid-column: 1 / 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	/* background: #F00; */
}

#footer-contents .logo a>span {
	grid-column: 3 / 4;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	font-size: 2.4rem;
}

#footer-contents .logo a .en {
	margin-left: 0.2em;
	font-size: 50%;
	letter-spacing: 1.005em;
	font-family: "Outfit", sans-serif;
}

#footer-contents .logo a .jp {
	margin: -0.0em 0 0.15em;
	font-weight: 800;
}


@media screen and (max-width:900px) {

	#footer-contents .logo {}

	#footer-contents .logo a {
		grid-template-columns: 50px 6px auto;
	}

	#footer-contents .logo a>img {}

	#footer-contents .logo a>span {
		font-size: min(5vw, 1.9rem);
	}

	#footer-contents .logo a .en {
		letter-spacing: 0.935em;
	}

	#footer-contents .logo a .jp {
		margin: -0.08em 0 0.15em;
		letter-spacing: -0.02em;
	}

}



/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 30px;
	/*下に空けるスペース*/
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
	border: 2px solid var(--primary-inverse-color);
	/*枠線の幅、線種、色。色についてはcss冒頭の（primary-inverse-color）を読み込みます。*/
}

#footer-contents .footermenu {
	margin-left: 1em;
	padding-top: 15px;
	line-height: 1.3;
}

#footer-contents .footermenu ul {
	margin-bottom: 0;
}

#footer-contents .footermenu li {
	margin-bottom: 10px;
}

#footer-contents .footermenu ul ul {
	margin-top: 2px;
	margin-left: 2.5rem;
	font-size: 94%;
}

#footer-contents .footermenu ul ul li {
	margin-bottom: 2px;
}

#footer-contents .footermenu a {}

#footer-contents .banner {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

#footer-contents .banner a {
	display: block;
	width: calc(50% - 6px);
}

#footer-contents .banner img {
	display: block;
	width: 100%;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	#footer-contents {
		display: flex;
		/*直接の子要素を横並びにします*/
		gap: var(--global-space);
		/*左右のボックスの間のマージン的な設定。css冒頭で指定しているglobal-spaceを読み込みます。*/
		padding-bottom: 4rem;
	}

	/*左側のブロック*/
	#footer-contents .left {
		flex: 1;
		margin-bottom: 0;
		/*下のマージン（外側への余白）をリセット*/

		/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

	/*右側のブロック*/
	#footer-contents .right {
		/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

	#footer-contents img.site-title {
		display: block;
		width: 480px;
		margin-bottom: 30px;
	}

	#footer-contents .footermenu {
		display: flex;
		line-height: 1.4;
	}

	#footer-contents .footermenu ul {
		margin-left: 7rem;
	}

	#footer-contents .footermenu li {
		margin-bottom: 15px;
	}

	#footer-contents .footermenu ul ul {
		margin-top: 5px;
	}

	#footer-contents .footermenu ul ul li {
		margin-bottom: 5px;
	}

	#footer-contents .banner {
		flex-wrap: nowrap;
	}

	#footer-contents .banner a {
		width: auto;
	}

}

/*追加指定ここまで*/


/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}

.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

@media screen and (min-width:900px) {
	.iframe-box {
		aspect-ratio: 1 / 0.5;
		max-width: 740px;
		height: auto;
		padding-top: 0;
	}
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	font-size: 0.8rem;
	/*文字サイズ。*/
	display: flex;
	/*直接の子要素を横並びにします*/
	justify-content: space-between;
	/*並びかたの種類の指定*/
	align-items: flex-start;
	/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;
	list-style: none;
	padding: 0 0.3em;
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;
	/*太字にする*/
	padding-bottom: 5px;
	/*下に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
small {
	font-size: 100%;
}

footer {
	font-size: 1.1rem;
	/*文字サイズ*/
	background: #1d1b1b;
	/*背景色*/
	color: #fff;
	/*文字色*/
	text-align: center;
	/*内容をセンタリング*/
	padding: 1rem;
	/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {
	color: inherit;
	text-decoration: none;
}

/*著作部分*/
footer .pr {
	display: block;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;
	/*アイコン同士のマージン的な要素。１文字分。*/
}

.icons i {
	font-size: 40px;
	/*アイコンサイズ*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.faq dt {
	border-radius: 3px;
	/*枠を角丸にする指定*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
	background: #fff;
	/*背景色*/
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	text-indent: -2rem;
	/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 0.5rem 1em 0.5rem 3em;
	/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	/*Font Awesomeを使う指定*/
	content: "\f059";
	/*アイコンのコード*/
	padding-right: 1rem;
	/*アイコンとテキストとの間のスペース*/
	color: var(--primary-color);
	/*アイコンの色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*回答*/
.faq dd {
	padding: 0 1rem 1rem 3rem;
	/*ボックス内の余白。上、右、下、左への順番。*/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;
	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*list-normal（activities.htmlで使っているシンプルな２カラムボックス）
---------------------------------------------------------------------------*/
.list-normal * {
	margin: 0;
	padding: 0;
}

/*ボックス１個あたり*/
.list-normal .list {
	display: flex;
	/*直接の子要素を横並びにする*/
	gap: 2vw;
	/*左右の間のマージン的なスペース*/
	margin-bottom: 3vw;
	/*ボックスの下に空けるスペース*/
}

/*左右の並びを入れ替える場合*/
.list-normal .list.reverse {
	flex-direction: row-reverse;
}

/*テキストブロック*/
.list-normal .text {
	flex: 1;
}

/*画像ブロック*/
.list-normal .image {
	width: 40%;
	/*幅。お好みで。*/
}

/*h4見出し*/
.list-normal h4 {
	font-weight: 500;
	/*文字の太さ。100から900まで指定可能。*/
	font-size: 1.3rem;
	/*文字サイズを130%に。*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	margin-bottom: 0.5em;
	/*見出しの下に0.5文字分のスペースを空ける*/
}

.list-normal h4 a {
	color: inherit;
}


/*list-half（トップページの「人気のアクティビティスポット」で使っている左右にわかれた装飾ボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.list-half {
	display: flex;
	/*直接の子要素を横並びにする*/
	flex-direction: column;
	/*一旦縦並びにしておく*/
}

/*list-halfが続く場合に間にマージンを空ける*/
.list-half+.list-half {
	margin-top: 5vw;
	/*画面幅100%＝100vwです。*/
}

/*h3見出し*/
.list-half h3 {
	margin: 0;
	padding: 0;
	text-align: center;
	/*テキストをセンタリング*/
}

/*h4テキスト*/
.list-half h4 {
	font-weight: normal;
	margin: 0;
	font-size: 1.5rem;
	/*文字サイズを1.5倍に*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	/*下の飾り画像の基点*/
	padding-right: 100px;
	/*右に空けるスペース。テキスト右側の小さな画像と重ならないようにする為です。*/
}

/*h4テキスト右側の飾り画像*/
.list-half h4 .kazari {
	position: absolute;
	right: 0px;
	top: -3rem;
	width: 100px;
	/*画像の幅*/
}

/*左右のラインの装飾*/
.list-half h3::before,
.list-half h3::after {
	content: "|";
	/*このテキストを出力します*/
	display: inline-block;
}

/*左のラインの装飾への追加設定*/
.list-half h3::before {
	transform: rotate(-30deg);
	/*回転角度*/
	margin-right: 0.5rem;
	/*右に空けるスペース*/
}

/*右のラインの装飾への追加設定*/
.list-half h3::after {
	transform: rotate(30deg);
	/*回転角度*/
	margin-left: 0.5rem;
	/*左に空けるスペース*/
}

/*h3テキスト内のアイコン*/
.list-half h3 i {
	margin-left: 0.5rem;
	/*左に0.5文字分のマージンを空ける*/
	font-size: 2rem;
	/*文字サイズ２倍*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	opacity: 0.6;
	/*透明度。60%だけ色を出す。*/
}

/*テキストブロック*/
.list-half .text {
	background: #fff;
	/*背景色*/
	padding: 1rem 2rem;
	/*上下、左右へのブロック内の余白*/
	margin-bottom: 30px;
	/*下に空けるスペース*/
	border-radius: 1vw;
	/*角を丸くする指定。px指定でもOKです。*/
}


/*画面幅599px以下の追加指定（並び順を変更します。数字が小さな順に並びます。）*/
@media screen and (max-width:599px) {

	/*h3見出し*/
	.list-half h3 {
		order: 1;
	}

	/*画像ブロック*/
	.list-half .image {
		order: 2;
	}

	/*テキストブロック*/
	.list-half .text {
		order: 3;
	}

}

/*追加指定ここまで*/


/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	/*ボックス全体*/
	.list-half {
		flex-direction: row;
		/*縦並びから横並びにする*/
		justify-content: space-between;

		/*以下は変更不要*/
		margin-right: calc(-1 * var(--global-space));
		margin-left: calc(-1 * var(--global-space));
	}

	/*ボックス全体（※reverse用）変更不要*/
	.list-half.reverse {
		flex-direction: row-reverse;
		/*逆向きに並べる*/
		margin-left: calc(-1 * var(--global-space));
	}

	/*h3テキスト*/
	.list-half h3 {
		writing-mode: vertical-rl;
		/*縦書きの指定。*/
		text-orientation: upright;
		/*文字の向き*/
		font-size: 0.85rem;
		/*文字サイズを85%*/
		margin-top: 10vw;
		/*上に空けるスペース。画面幅100%＝100vwです。*/
	}

	/*上のラインの装飾への追加設定*/
	.list-half h3::before {
		transform: rotate(-60deg);
		/*回転角度*/
		margin-bottom: 0.5rem;
		/*下に空けるスペース*/
	}

	/*上のラインの装飾への追加設定（※reverse用）*/
	.list-half.reverse h3::before {
		transform: rotate(60deg);
		/*回転角度*/
	}

	/*下のラインの装飾への追加設定*/
	.list-half h3::after {
		transform: rotate(60deg);
		/*回転角度*/
		margin-top: 0.5rem;
		/*上に空けるスペース*/
	}

	/*下のラインの装飾への追加設定（※reverse用）*/
	.list-half.reverse h3::after {
		transform: rotate(-60deg);
		/*回転角度*/
	}

	/*h3テキスト内のアイコン*/
	.list-half h3 i {
		margin: 0;
		margin-top: 0.5rem;
		/*上に0.5文字分のマージンを空ける*/
	}

	/*テキストブロック*/
	.list-half .text {
		margin-bottom: 0;
		flex: 1;
		align-self: flex-start;
		/*上寄せになります*/
		margin-top: 8vw;
		/*上寄せですが、この分だけ下に下げます。写真とテキストがななめに配置されるイメージで設定しました。*/
		position: relative;
		z-index: 1;
		margin-right: -10vw;
		/*この分だけ画像にテキストブロックが重なります。画面幅100%＝100vwです。*/
		box-shadow: 2vw 2vw rgba(var(--primary-color-rgb), 0.1);
		/*ボックスの影。右へ、下へ。色はcss冒頭のvar(primary-color-rgb)を読み込み、0.1で透明度も指定。*/
	}

	/*テキストブロック（※reverse用）*/
	.list-half.reverse .text {
		margin-right: 0;
		margin-left: -10vw;
		box-shadow: -2vw 2vw rgba(var(--primary-color-rgb), 0.1);
	}

	/*画像ブロック*/
	.list-half .image {
		padding: 0;
		/*余白をリセット*/
		width: 50vw;
		/*幅。画面の50%*/
		border-radius: 3vw 0px 0px 3vw;
		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
		overflow: hidden;
	}

	/*画像ブロック（※reverse用）*/
	.list-half.reverse .image {
		border-radius: 0px 3vw 3vw 0px;
	}

}

/*追加指定ここまで*/


/*list-grid1（トップページの「今の季節に人気の観光地」で使っている３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {
	margin: 0;
	padding: 0;
}

/*ボックス１個あたり*/
.list-grid1 .list {
	display: grid;
	margin-bottom: 1rem;
	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;
	/*文字サイズを85%に*/
	line-height: 1.5;
	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;
	/*ボックス内の余白。１文字分。*/
	background: #fff;
	/*背景色*/
	grid-template-rows: auto 1fr auto;
	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;
	/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;
	/*画像の下に空けるスペース*/
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;
		/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;
		/*下に空けるスペースをなくす*/
	}

}

/*追加指定ここまで*/


/*list-free（destinations.htmlで使用しているレイアウトフリー用）
---------------------------------------------------------------------------*/
.list-free * {
	/* margin: 0; */
	/* padding: 0; */
	/* margin: 0 0 1.4em; */
}

/*list-freeボックス*/
.list-free {
	display: flex;
	/*直接の子要素を横並びに*/
	flex-direction: column;
	/*一旦縦並びにしておく*/
	align-items: flex-start;
	/*子要素を上に揃える*/
	margin-bottom: 80px;
	/*ボックスの下（外側）に空けるスペース*/
	gap: 5vw;
	/*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg3内のlist-freeの下マージンをなくす。そのままだと広く取りすぎるので。*/
.bg3 .list-free {
	margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
	align-self: flex-start;
	flex: 1;
	width: 100%;
}

/*h3見出し*/
.list-free h3 {
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広くする*/
	font-size: min(6vw, 3.2rem);
	/*文字サイズを150%に*/
	font-weight: 600;
	/*文字の太さ。100から900まで指定可能。*/
	color: var(--primary-color);
	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;
	/*カギカッコを絶対配置する為に必要な指定*/
	padding: 0 1rem;
	/*上下、左右へのh3内の余白*/
	margin: 0 auto 1em;
	/*左右の中央に配置*/
	text-align: center;
	font-family: "Noto Serif JP", serif;
}

/*h3見出しのカギカッコ装飾（共通設定）*/
.list-free h3::before,
.list-free h3::after {
	content: "";
	position: absolute;
	width: 20px;
	/*カギカッコの幅。お好みで。*/
	height: 40px;
	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--primary-color);
	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-colorを読み込みます*/
}

/*h3見出しの最初のカギカッコの設定*/
.list-free h3::before {
	top: -10px;
	/*テキストからの距離。お好みで。*/
	left: -15px;
	/*テキストからの距離。お好みで。*/
	border-right: none;
	/*右の線は消す*/
	border-bottom: none;
	/*下の線は消す*/
}

/*h3見出しの最後のカギカッコの設定*/
.list-free h3::after {
	bottom: -10px;
	/*テキストからの距離。お好みで。*/
	right: -15px;
	/*テキストからの距離。お好みで。*/
	border-left: none;
	/*左の線は消す*/
	border-top: none;
	/*上の線は消す*/
}

/*h4見出し*/
.list-free h4 {
	font-weight: 500;
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0 0 1em;
}

@media screen and (min-width: 900px) {
	.list-free h4 {
		font-size: 2.4rem;
	}
}

/*画像ブロック*/
.list-free .image {
	box-shadow: 0px 0px 30px rgba(var(--primary-color-rgb), 0.3);
	/*ボックスの影。右へ、下へ、ぼかす量。rgba以降は色で、css冒頭のvar(primary-color-rgba)を読み込み、0.3で透明度を指定。*/
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image>div {
	background: #fff;
	/*背景色*/
	font-size: 0.7rem;
	/*文字サイズを70%*/
	padding: 1rem 2rem;
	/*上下、左右への余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 900px) {

	/*list-freeボックス*/
	.list-free {
		flex-direction: row;
		/*縦並びから横並びにする*/
		margin-bottom: 10vw;
	}

	/*h3見出し*/
	.list-free h3 {
		writing-mode: vertical-rl;
		/*縦書きの指定。*/
		text-orientation: upright;
		/*文字の向き*/
		margin: 0;
		padding: 1rem 0.5rem;
		/*上下、左右へのh3内の余白*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.list-free .w1 {
		width: 30%;
	}

	.list-free .w2 {
		width: 50%;
	}

	.list-free .order1 {
		order: 1;
	}

	.list-free .order2 {
		order: 2;
		width: auto;
	}

	.list-free .order3 {
		order: 3;
	}

	.list-free .mt1 {
		margin-top: 10vw;
	}

	.list-free .mt2 {
		margin-top: 20vw;
	}

}

/*追加指定ここまで*/


/*ボタン（btn）
---------------------------------------------------------------------------*/
.btn {
	display: flex;
	justify-content: center;
	margin: 2em 0 4.5em;
}

.btn a {
	display: block;
	text-decoration: none;
	min-width: 12em;
	padding: 10px 22px;
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	/*テキストをセンタリング*/
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	border-radius: 3px;
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/

	/*ボタン内の余白*/

	/*ボタンの外（上）に空けるスペース*/
	line-height: 1.2;
}

@media screen and (min-width: 900px) {
	.btn {
		margin: 3em 0 4.5em;
	}

	.btn a {
		padding: 12px 22px;
		font-size: 1.6rem;
	}
}


/*bg3（トップページの「お知らせ」などで使っている背景）
---------------------------------------------------------------------------*/
/*背景画像の指定。上側だけ作っておけばOKです。*/
.bg3,
.bg3::before {
	background: url('../img/bg3.svg') repeat-x center top / auto 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
}

/*背景ブロック全体*/
.bg3 {
	position: relative;
	padding-top: 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
	padding-bottom: 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/

	/*以下は変更不要*/
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
}

/*下の背景画像への追加指定*/
.bg3::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 50px;
	/*bg3で何ヶ所かある50pxの数値は変更してもいいが、全て合わせておく*/
	left: 0px;
	bottom: 0px;
	transform: scaleY(-1);
	/*上下反転*/
}

/*backgroundには、上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.bg3>div {
	padding: 1px;
	background: #ad9db2;
	/*背景色。背景画像と同じ色を指定して下さい。*/
	padding-left: var(--global-space);
	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);
	/*変更不要。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-top: 5vw;
	/*ボックス内の上への余白。お好みで。*/
	padding-bottom: 5vw;
	/*ボックス内の下への余白。お好みで。*/
}

.bg3 a {
	color: inherit;
}


/*bg3内のh2で使うテキスト左右へのバブルの装飾
---------------------------------------------------------------------------*/
.kazari3-wrap {
	position: relative;
	display: inline-block;
}

/*左右の装飾の共通の設定*/
.kazari3-wrap::before,
.kazari3-wrap::after {
	content: "";
	position: absolute;
	top: 0px;
	width: 100px;
	/*画像の幅*/
	height: 100px;
	/*画像の高さ*/
	background-image: url('../img/kazari3.svg');
	/*背景画像の指定*/
	background-repeat: no-repeat;
	/*リピートしない*/
	background-size: cover;
	/*サイズに合わせて画像を調整*/
}

/*左の装飾への追加指定*/
.kazari3-wrap::before {
	left: -150px;
	/*左にずらす*/
}

/*右の装飾への追加指定*/
.kazari3-wrap::after {
	right: -150px;
	/*右にずらす*/
	transform: scaleX(-1);
	/*左右を反転させる*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	background: rgba(0, 0, 0, 0.02);
	/*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
	overflow: hidden;
	margin-bottom: 4rem;
	/*ブロックの下に空けるスペース。4文字分。*/
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.new dt:nth-of-type(odd),
.new dd:nth-of-type(odd) {
	background: rgba(0, 0, 0, 0.04);
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;
	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;
	/*上、左右、下へのdd内の余白*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;
	/*行間（アイコンの高さ）*/
	border-radius: 3px;
	/*角を丸くする指定*/
	padding: 0 0.5rem;
	/*上下、左右へのブロック内の余白*/
	width: 8rem;
	/*幅。8文字分。*/
	transform: scale(0.8);
	/*80%のサイズに縮小*/
	background: #fff;
	/*背景色*/
	color: #777;
	/*文字色*/
	border: 1px solid #999;
	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);
	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);
	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	border-color: transparent;
	/*枠線を出したくないので透明にする*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;
	/*背景色*/
	color: #fff;
	/*文字色*/
	border-color: transparent;
	/*枠線を出したくないので透明にする*/
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;
		/*gridを使う指定*/
		grid-template-columns: auto 1fr;
		/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1rem;
		/*dd内の余白*/
	}

}

/*追加指定ここまで*/


/*2・3カラム（main-contents、sub-contents設定）
---------------------------------------------------------------------------*/
/*main-contentsブロック*/
.main-contents {
	margin-bottom: 2vw;
	/*ボックスの下に空けるスペース*/
}

/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	margin: 0;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.sub-contents h3::first-letter {
	border-left: 3px solid var(--primary-color);
	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	/*カラムで使う為の指定*/
	main.column {
		display: flex;
		/*横並びにする*/
		justify-content: space-between;
		/*並びかたの種類の指定*/
		gap: 3vw;
		/*main-contentsとsub-contentsの間のマージン的な隙間*/
	}

	/*main-contentsブロック*/
	.main-contents {
		margin-bottom: 0;
		order: 2;
		/*並び順。数字の小さい順番に表示されます。*/
		flex: 1;
	}

	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 210px;
		/*幅。お好みで変更して下さい。*/
	}

	/*1つ目のsub-contents*/
	.sub-contents:nth-child(2) {
		order: 1;
		/*並び順。数字の小さい順番に表示されます。*/
	}

	/*2つ目のsub-contents（※３カラムで使いたい場合用）*/
	.sub-contents:nth-child(3) {
		order: 3;
		/*並び順。数字の小さい順番に表示されます。３番目という意味なので一番右側に表示されます。*/
	}

}

/*追加指定ここまで*/


/*サブメニュー設定
---------------------------------------------------------------------------*/
.submenu * {
	margin: 0;
	padding: 0;
}

/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
	/*上、左右、下へのマージン*/
	border-top: 1px solid #ccc;
	/*上の枠線の幅、線種、色*/
}

/*メニュー１個あたり*/
.submenu a {
	display: block;
	text-decoration: none;
	padding: 0.2rem 1rem;
	/*上下、左右へのメニュー内の余白*/
	background: #fff;
	/*背景色*/
}

/*メニュー１個あたり（子メニュー以外）*/
.submenu>li {
	border: 1px solid #ccc;
	/*枠線の幅、線種、色*/
	border-top: none;
	/*上の線だけなくす*/
}

/*子メニュー*/
.submenu li li a {
	padding-left: 2rem;
	/*左に余白を空ける*/
}


/*box1
---------------------------------------------------------------------------*/
.box1 {
	padding: 1rem;
	/*ボックス内の余白*/
	margin-bottom: 1rem;
	/*ボックスの下に空けるスペース*/
	background: rgba(0, 0, 0, 0.05);
	/*背景色*/
	border: solid 1px #ccc;
	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;
	/*ボックスの影。右へ、下へ、ぼかし幅、距離。#fffは白のことでinsetは内側へ向けての影の指定。*/
}

/*box1内のsubmenuの下マージンをなくす*/
.box1 .submenu {
	margin-bottom: 0;
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view-parts {
	max-width: 1000px;
	/*最大幅*/
	margin: 0 auto 1rem;
	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;
	/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 2rem;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

/*サムネイル画像*/
.thumbnail-parts img {
	width: 100px;
	/*サムネイルの幅*/
	margin: 2px;
	/*サムネイル間のスペース*/
	cursor: pointer;
	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;
	/*マウスオンまでにかける時間。3秒。*/
	flex-shrink: 0;
}

.thumbnail-parts img:hover {
	opacity: 0.8;
	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


/*animation-text（トップページの大きな円形の文字が回るアニメーション）
---------------------------------------------------------------------------*/
/*サイズや場所の指定*/
.animation-text {
	position: absolute;
	z-index: -1;
	width: 100vw;
	/*画像の幅*/
	right: -50vw;
	/*画面の右半分に収まるように*/
	top: 25vw;
	/*上からの距離*/
}

/*アニメーションに関する指定*/
.spin {
	animation: spin 150s linear infinite;
	/*150s（150秒）が１回転する速度です。お好みで変更して下さい。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 0.5rem 1rem;
	/*ボックス内の余白*/
	background: var(--primary-color);
	/*背景色*/
	color: var(--primary-inverse-color);
	/*文字色*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #999;
	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	/*幅*/
	margin-bottom: 1rem;
	/*テーブルの下に空けるスペース*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #999;
	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
	padding: 1rem;
	/*ボックス内の余白*/
	word-break: break-all;
	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;
	/*幅*/
	text-align: left;
	/*左よせにする*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	/*th（左側）のみの設定*/
	.ta1 th {
		width: 20%;
		/*幅*/
	}

}

/*追加指定ここまで*/


/*テーブル（ta2）activities_item.htmlの予約状況に使用。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	text-align: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-weight: bold;
	/*太字に*/
	padding: 10px;
	/*ボックス内の余白*/
}

/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 2rem;
	/*テーブルの下に空けるスペース*/
	text-align: center;
	/*センタリング*/
	background: #fff;
	/*背景色*/
	color: #333;
	/*文字色*/
}

.ta2,
.ta2 td,
.ta2 th {
	word-break: break-all;
	border: 1px solid #ccc;
	/*テーブルの枠線の幅、線種、色*/
}

/*曜日と午前午後*/
.ta2 th {
	background: #fffbe3;
}


/*テーブルを小さな端末で横スクロールさせる為の準備
---------------------------------------------------------------------------*/
/*テーブルを囲むブロック*/
.ta-box {
	overflow-x: auto;
	margin-bottom: 1rem;
}

/*ブロック内にあるta2のみ最小幅を設定*/
.ta-box .ta2 {
	min-width: 600px;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
	display: block;
}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;
	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 10px;
	/*右からの配置場所指定*/
	bottom: 10px;
	/*下からの配置場所指定*/
	color: #fff;
	/*文字色*/
	font-size: 1.5rem;
	/*文字サイズ*/
	background: rgba(0, 0, 0, 0.2);
	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;
	/*幅*/
	line-height: 60px;
	/*高さ*/
	border-radius: 50%;
	/*円形にする*/
}


/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
	display: inline-block;
	background: linear-gradient(transparent 80%, yellow 80%);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-check,
.color-check a {
	color: #ff0000 !important;
}

.l {
	text-align: left !important;
}

.c {
	text-align: center !important;
}

.r {
	text-align: right !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb5vw {
	margin-bottom: 5vw !important;
}

.look {
	display: inline-block;
	padding: 0px 10px;
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.small {
	font-size: 87.5%;
}

.large {
	font-size: 138%;
	/* letter-spacing: 0.1em; */
}

.pc {
	display: none;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}

}

/*追加指定ここまで*/


/*SEO追加
---------------------------------------------------------------------------*/
@media screen and (max-width: 899px) {
	.hide-m {
		display: none !important;
	}
}

@media screen and (min-width: 900px) {
	.hide-d {
		display: none !important;
	}
}

/* text */
p {
	margin: 0 0 1.4em;
}

p.aligncenter {
	text-align: center;
}

p.alignleft {
	text-align: left;
}

p.alignright {
	text-align: right;
}

p.none {
	margin-bottom: 0;
}

/* indent */
.indent {
	text-indent: -1em;
	margin-left: 1em !important;
}

.indent2 {
	text-indent: -2em;
	margin-left: 2em !important;
}

.indent3 {
	text-indent: -3em;
	margin-left: 3em !important;
}

.indent4 {
	text-indent: -4em;
	margin-left: 4em !important;
}

.indent1-8 {
	display: block;
	text-indent: -1.8em;
	margin-left: 1.8em !important;
}

.indent6-4 {
	text-indent: -6.4em;
	padding-left: 6.4em;
	display: block;
}

.indent-5 {
	display: block;
	text-indent: -3.8em;
	margin-left: 3.8em !important;
}

.indent-5-5 {
	text-indent: -5.5em;
	margin-left: 5.5em !important;
}

.indent-6-5 {
	text-indent: -6.5em;
	margin-left: 6.5em !important;
}

/* align */
img.aligncenter,
img.alignleft,
img.alignright,
div.aligncenter,
div.alignleft,
div.alignright {
	display: block;
	margin: 0 auto 1.5em;
	text-align: center;
}

div.aligncenter img,
div.alignleft img,
div.alignright img {
	display: block;
	margin-bottom: 0.2em;
}

@media screen and (min-width: 900px) {

	p.aligncenter-d {
		text-align: center;
	}

	img.alignleft,
	div.alignleft {
		float: left;
		clear: left;
		max-width: 35%;
		margin: 0 60px 60px 0;
	}

	img.alignright,
	div.alignright {
		float: right;
		clear: right;
		max-width: 35%;
		margin: 0 0 40px 40px;
	}
}

/* table */
table {
	width: 100%;
	margin-bottom: 6rem;
	background: #FFF;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
}

table th,
table td {
	vertical-align: top;
	padding: 10px 15px;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}

table.table-company th {
	padding: 10px 0;
	width: 7.0em;
	color: #FFF;
	background: #a48d63;
}

table td {}

table th {
	border-right: 1px solid #c1af8d;
	border-bottom: 1px solid #c1af8d;
}

@media screen and (max-width: 899px) {

	table.table-company th,
	table.table-company td {
		display: block;
		width: 100%;
		margin: 0;
	}
}

/* history-point */

.history-point {
	filter: drop-shadow(0px 0px 20px rgba(var(--primary-color-rgb), 0.25));
}

.history-point .history-point-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 4.8em;
	margin: 0 0 10px;
	color: #af5539;
	/* font-family: "Noto Serif JP", serif; */
	font-size: 115%;
	font-weight: 700;
	text-align: center;
	background: #FFF;
	line-height: 1.5;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

@media screen and (min-width: 900px) {
	.history-point {
		display: flex;
		gap: 20px;
		margin-bottom: 40px;
	}

	.history-point .history-point-item {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0;
		min-height: 5.5em;
		font-size: 120%;
	}
}

/* history-map */

.history-map {
	position: relative;
	padding: 30px 0 0;
	/* overflow: hidden; */
}

.history-map::before {
	content: '';
	position: absolute;
	top: 0;
	left: 30px;
	width: 10px;
	height: 100%;
	margin-left: -5px;
	background: linear-gradient(180deg, transparent, white 50px, white calc(100% - 50px), transparent);
}

.history-map .history-map-item {
	position: relative;
	margin: 0 0 30px 30px;
	padding-left: 2.5em;
}

.blur:not(.blurstyle) .history-map .history-map-item {
	opacity: 0;
	transform: translateX(-50px);
}

.history-map .history-map-item:nth-child(1) {
	transition: 0.6s 0.6s;
}

.history-map .history-map-item:nth-child(2) {
	transition: 0.6s 0.7s;
}

.history-map .history-map-item:nth-child(3) {
	transition: 0.6s 0.8s;
}

.history-map .history-map-item:nth-child(4) {
	transition: 0.6s 0.9s;
}

.history-map .history-map-item:nth-child(5) {
	transition: 0.6s 1.0s;
}

.history-map .history-map-item:nth-child(6) {
	transition: 0.6s 1.1s;
}

.history-map .history-map-item:last-child {
	margin-bottom: 20px;
}

.history-map .history-map-item .history-map-year {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.2em;
	height: 4.2em;
	margin-left: -2.1em;
	color: #FFF;
	font-size: 90%;
	font-weight: bold;
	background: #d94925;
	border-radius: 100%;
	text-align: center;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.history-map .history-map-item .history-map-title {
	margin-bottom: 8px;
	padding: 3px 0 8px;
	font-weight: 700;
	line-height: 1.4;
	font-size: 1.5rem;
	font-family: "Noto Serif JP", serif;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.history-map .history-map-item .history-map-text {
	margin-bottom: 0;
	font-size: 90%;
}

.history-map .history-map-item .history-map-text strong {}

@media screen and (min-width: 900px) {
	.history-map {
		margin: 0;
	}

	.history-map::before {
		left: 50px;
	}

	.history-map .history-map-item {
		margin: 0 0 40px 50px;
		padding-left: 3.5em;
	}

	.history-map .history-map-item:last-child {}

	.history-map .history-map-item .history-map-year {
		width: 4.6em;
		height: 4.6em;
		margin-left: -2.3em;
		font-size: 100%;
	}

	.history-map .history-map-item .history-map-title {
		font-size: 128%;
	}

	.history-map .history-map-item .history-map-text {
		font-size: 100%;
	}

	.history-map .history-map-item .history-map-text strong {}
}

/* business-field */

.business-field {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* gap: 40px; */
	margin: 0 -5px;
	filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.25));
}

.home .business-field {
	margin-bottom: 3.6em;
}

.business-field .business-field-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 47%;
	margin: 0 auto;
	padding-top: 5px;
	aspect-ratio: 1 / 1;
	color: #FFF;
	text-align: center;
	border-radius: 100%;
}

.blur:not(.blurstyle) .business-field .business-field-item {
	transform: translateY(100px);
	opacity: 0;
}

.business-field .business-field-item:nth-child(1) {
	transition: 0.6s 0.6s;
}

.business-field .business-field-item:nth-child(2) {
	transition: 0.6s 0.7s;
}

.business-field .business-field-item:nth-child(3) {
	transition: 0.6s 0.8s;
}

.business-field .business-field-item:nth-child(1) {
	background: url(../img/service/business-field01.png) no-repeat center;
	background-size: 100%;
}

.business-field .business-field-item:nth-child(2) {
	background: url(../img/service/business-field02.png) no-repeat center;
	background-size: 100%;
}

.business-field .business-field-item:nth-child(3) {
	background: url(../img/service/business-field03.png) no-repeat center;
	background-size: 100%;
}

.business-field .business-field-item .business-field-item-title {
	font-size: min(4vw, 2.8rem);
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.05em;
}

.business-field .business-field-item .business-field-item-text {
	margin: 0 15px;
	font-size: 65%;
	line-height: 1.6;
}

.business-field .business-field-item .business-field-item-text p {
	margin: 0;
}

.business-field .business-field-item .business-field-item-text .business-field-item-btn {
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.business-field .business-field-item .business-field-item-text .business-field-item-btn a {
	display: block;
	padding: 3px 8px;
	font-weight: bold;
	background: #FFF;
	border-radius: 2px;
	text-decoration: none;
	line-height: 1.2;
}

.business-field .business-field-item .business-field-item-text .business-field-item-btn a:hover {}


@media screen and (min-width: 900px) {
	.business-field {}

	.business-field .business-field-item {
		width: 31%;
	}

	.business-field .business-field-item .business-field-item-title {
		margin-bottom: 15px;
	}

	.business-field .business-field-item .business-field-item-text {
		margin: 0 30px;
		font-size: 88%;
		line-height: 1.8;
	}

	.business-field .business-field-item .business-field-item-text p {}

	.business-field .business-field-item .business-field-item-text .business-field-item-btn {
		margin-top: 15px;
	}

	.business-field .business-field-item .business-field-item-text .business-field-item-btn a {
		padding: 8px 20px;
	}

	.business-field .business-field-item .business-field-item-text .business-field-item-btn a:hover {}
}

/* business-partner */

.business-partner {
	width: 100%;
}

.business-partner img {
	display: block;
	width: 100%;
	filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.25));
}

/* area-select */

.area-select {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.home .area-select {
	margin-bottom: 3.6em;
}

.area-select .area-select-item {
	position: relative;
	width: calc((100% - 30px) / 2);
}

.area-select .area-select-item a {
	display: block;
}

.area-select .area-select-item a.active {
	filter: grayscale(1) contrast(0.5) brightness(1.5);
}

.area-select .area-select-item a:hover {}

.area-select .area-select-item .area-select-item-img {}

.area-select .area-select-item .area-select-item-img img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	object-position: top;
}

.area-select .area-select-item .area-select-item-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 7em;
	padding: 5px 6px 6px 7px;
	background: #FFF;
	font-weight: 500;
	line-height: 1.2;
	font-size: 108%;
}

.area-select .area-select-item a .area-select-item-title {
	/* padding-right: 40px; */
}

.area-select .area-select-item a .area-select-item-title::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 10px;
	height: 4px;
	margin-top: -3px;
	border-right: 1px solid;
	border-bottom: 1px solid;
	transform: skewX(45deg);
	opacity: 0.8;
}

@media screen and (min-width: 900px) {
	.area-select {
		gap: 30px;
	}

	.area-select .area-select-item {
		position: relative;
	}

	.home .area-select .area-select-item {
		width: calc((100% - 90px) / 4);
	}

	.home .area-select.fit .area-select-item {
		width: calc((100% - 90px) / 2);
	}

	.area-select .area-select-item a {}

	.area-select .area-select-item a:hover {}

	.area-select .area-select-item .area-select-item-img {}

	.area-select .area-select-item .area-select-item-img img {}

	.area-select .area-select-item .area-select-item-title {
		width: auto;
		padding: 10px;
		padding-right: 50px;
		font-size: 110%;
	}

	.area-select .area-select-item a .area-select-item-title {}

	.area-select .area-select-item a .area-select-item-title::before {
		right: 15px;
	}
}

/* h3 */

h3.area-title {
	margin: 0 0 30px;
	color: #af5539;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
}

h3.area-title img {
	display: block;
	width: min(50%, 260px);
	margin: 0 auto 10px;
}

h3.area-title .small {
	display: block;
	color: #333;
	font-size: 80%;
}

@media screen and (min-width: 900px) {
	h3.area-title {
		margin: 0 0 60px;
		font-size: 3.4rem;
	}

	h3.area-title img {}

	h3.area-title .small {
		font-size: 64%;
	}
}

/* hawaii-section */

.hawaii-section ol {
	counter-reset: count 0;
	list-style: none;
	margin: 0;
}

.hawaii-section ol li {
	counter-increment: count 1;
	position: relative;
	margin: 10px 0 45px;
	padding: 35px 15px 10px 15px;
	background: #FFF;
	font-size: 88%;
}

.hawaii-section ol li::before {
	content: counter(count, decimal);
	position: absolute;
	top: 0;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	color: #FFF;
	font-size: 2.2rem;
	background: #d94925;
	border-radius: 100%;
}

.hawaii-section ol li strong {
	font-size: 120%;
}

.hawaii-section .image {
	width: 100%;
}

.hawaii-section .image img {
	display: block;
	width: 100%;
}

@media screen and (min-width: 900px) {
	.hawaii-section ol {
		margin-left: 30px;
	}

	.hawaii-section ol li {
		margin: 0 0 40px;
		padding: 15px 15px 15px 50px;
		font-size: 100%;
	}

	.hawaii-section ol li::before {
		top: 50%;
		left: 0;
	}

	.hawaii-section ol li strong {
		font-size: 125%;
	}

	.hawaii-section .image {
		width: 30%;
	}

	.hawaii-section .image img {}
}

/* photo-list */

.photo-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.photo-list .photo-item {
	width: calc((100% - 20px) / 2);
	margin-bottom: 10px;
	font-size: 80%;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
}

.photo-list .photo-item a {
	text-decoration: none;
}

.photo-list .photo-item img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	margin-bottom: 6px;
}

.photo-list.korea .photo-item img {
	border-radius: 100%;
	aspect-ratio: 1 / 1;
}

.photo-list.vietnam .photo-item {
	width: calc((100% - 40px) / 3);
}

.photo-list.vietnam .photo-item img {
	margin: 0;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.photo-list .photo-item .btn {
	display: block;
	width: 9em;
	margin: 5px auto 0;
	padding: 3px 0 4px;
	color: #FFF;
	font-size: 92%;
	font-weight: normal;
	background: #a48d63;
	border-radius: 3px;
	text-decoration: none;
	line-height: 1.2;
}

@media screen and (min-width: 900px) {
	.photo-list {
		gap: 30px;
	}

	.photo-list .photo-item {
		width: calc((100% - 60px) / 3);
		margin-bottom: 20px;
	}

	.photo-list.korea {
		gap: 40px;
	}

	.photo-list.korea .photo-item {
		width: calc((100% - 120px) / 4);
	}

	.photo-list .photo-item img {}

	.photo-list .photo-item a {
		margin-top: 10px;
	}

	.photo-list.vietnam .photo-item {
		width: calc((100% - 120px) / 5);
	}
}

/* guam-section */

.guam-section h4 {
	margin: 0 0 15px;
	/* color: #8f7038; */
	font-size: 1.6rem;
}

.guam-section .image {
	width: 100%;
	box-shadow: none;
	filter: drop-shadow(0px 0px 30px rgba(var(--primary-color-rgb), 0.3));
}

.guam-section .image img {
	display: block;
	width: 100%;
}

@media screen and (min-width: 900px) {
	.guam-section h4 {
		margin: 0 0 25px;
		font-size: 2.2rem;
	}

	.guam-section .image {
		width: 50%;
	}

	.guam-section .image img {}
}

/* vietnam-section */

.vietnam-section h4 {
	margin: 0 0 15px;
	color: #8f7038;
	font-size: 1.6rem;
}

.vietnam-section .image {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}

.vietnam-section .image img {
	display: block;
	width: 100%;
}

.vietnam-section .image>span {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	margin-top: 5px;
	font-size: 88%;
	text-align: center;
}

@media screen and (min-width: 900px) {
	.vietnam-section h4 {
		margin: 0 0 25px;
		font-size: 2.2rem;
	}

	.vietnam-section .image {
		width: 45%;
		margin-bottom: 50px;
	}

	.vietnam-section .image img {}

	.vietnam-section .image>span {}
}

/* sono-gsa */

.sono-gsa {}

.sono-gsa .sono-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 0;
	background: #FFF;
	border: 4px solid #666;
}

.sono-gsa .sono-logo img {
	width: 41%;
}

.sono-gsa .sono-gsa-body {}

.sono-gsa .sono-gsa-body .sono-gsa-item {
	display: flex;
	margin: 25px 0;
}

.sono-gsa .sono-gsa-body .sono-gsa-item .sono-gsa-item-img {
	width: min(25%, 122px);
	margin-right: 15px;
}

.sono-gsa .sono-gsa-body .sono-gsa-item .sono-gsa-item-img img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
}

.sono-gsa .sono-gsa-body .sono-gsa-item dl {
	flex: 1;
	margin: 0;
}

.sono-gsa .sono-gsa-body .sono-gsa-item dl dt {
	font-size: 110%;
	font-weight: bold;
}

.sono-gsa .sono-gsa-body .sono-gsa-item dl dd {
	font-size: 95%;
}

@media screen and (min-width: 900px) {
	.sono-gsa {}

	.sono-gsa .sono-logo {
		padding: 30px 0;
	}

	.sono-gsa .sono-logo img {
		width: 20%;
	}

	.sono-gsa .sono-gsa-body {}

	.sono-gsa .sono-gsa-body .sono-gsa-item {
		align-items: center;
		margin: 40px 0;
	}

	.sono-gsa .sono-gsa-body .sono-gsa-item .sono-gsa-item-img {
		margin-right: 30px;
	}

	.sono-gsa .sono-gsa-body .sono-gsa-item .sono-gsa-item-img img {}

	.sono-gsa .sono-gsa-body .sono-gsa-item dl {}

	.sono-gsa .sono-gsa-body .sono-gsa-item dl dt {}

	.sono-gsa .sono-gsa-body .sono-gsa-item dl dd {}
}

/* sono-map */

.sono-map {}

.sono-map .sono-map-img {
	margin-bottom: 20px;
}

.sono-map .sono-map-img img {
	display: block;
	width: 100%;
}

.sono-map .sono-map-body {}

.sono-map .sono-map-body .sono-map-item {
	display: flex;
	margin: 0 0 25px;
}

.sono-map .sono-map-body .sono-map-item:last-child {
	margin-bottom: 0;
}

.sono-map .sono-map-body .sono-map-item .sono-map-item-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5em;
	height: 5em;
	margin-right: 15px;
	color: #FFF;
	font-size: 80%;
	background: #d94925;
	border-radius: 100%;
}

.sono-map .sono-map-body .sono-map-item dl {
	flex: 1;
	margin: 0;
}

.sono-map .sono-map-body .sono-map-item dl dt {
	font-size: 110%;
	font-weight: bold;
}

.sono-map .sono-map-body .sono-map-item dl dd {}

.sono-map .sono-map-body .sono-map-item dl dd br {}

.sono-map .sono-map-body .sono-map-item dl dd a {}

.sono-map .sono-map-body .sono-map-item dl dd a:hover {}

@media screen and (min-width: 900px) {
	.sono-map {}

	.sono-map .sono-map-img {
		margin-bottom: 40px;
	}

	.sono-map .sono-map-img img {}

	.sono-map .sono-map-body {
		display: flex;
		flex-wrap: wrap;
	}

	.sono-map .sono-map-body .sono-map-item {
		width: 50%;
		margin: 0 0 35px;
	}

	.sono-map .sono-map-body .sono-map-item .sono-map-item-icon {}

	.sono-map .sono-map-body .sono-map-item dl {}

	.sono-map .sono-map-body .sono-map-item dl dt {}

	.sono-map .sono-map-body .sono-map-item dl dd {}

	.sono-map .sono-map-body .sono-map-item dl dd br {}

	.sono-map .sono-map-body .sono-map-item dl dd a {}

	.sono-map .sono-map-body .sono-map-item dl dd a:hover {}
}

/* sono-section */

.sono-section .image {
	width: 100%;
	margin-bottom: 15px;
}

.sono-section .image img {
	display: block;
	width: 100%;
}

@media screen and (min-width: 900px) {

	.sono-section .image {
		width: 45%;
	}

	.sono-section .image img {}
}





.privacy-section {}

.privacy-section h3 {
	margin: 40px 0 10px;
	color: var(--primary-color);
	font-size: 125%;
	font-weight: 600;
	letter-spacing: normal;
}

.privacy-section ol {
	margin-left: 2.5rem;
}




.slick-initialized .slick-slide {
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
}





@media screen and (min-width: 900px) {
	.greeting-name {
		float: right;
	}
}

/*--------------------------------------
  # メールフォーム
--------------------------------------*/
.form-wrapper {
	max-width: 900px;
	margin: 50px auto;
}

.form-wrapper .form-inner {}

.form-wrapper .form-item {
	margin: 25px 0;
	line-height: 1.4;
}

.form-wrapper .form-item p {
	margin: 8px 0 4px;
}

.form-wrapper .form-item .error {
	color: #F00;
}

.form-wrapper .form-item p:empty {
	margin: 0;
}

.form-wrapper .form-item dt {
	position: relative;
	margin-bottom: 8px;
	font-weight: bold;
}

.form-wrapper .form-item dt span:not(.required) {
	margin-left: 1em;
	font-weight: normal;
}

.form-wrapper .form-item dd {}

.form-wrapper .form-item .required,
.form-wrapper .form-item .optional {
	position: absolute;
	top: 1px;
	right: 0;
	padding: 2px 4px;
	font-size: 1.0rem;
	font-weight: 400;
}

.form-wrapper .form-item .required {
	color: #FFF;
	background: #F00;
}

.form-wrapper .form-item .optional {
	color: #333;
	background: #E0E0E0;
}

.form-wrapper .form-item .form-item-row+.form-item-row {
	margin-top: 8px;
}

.form-wrapper .form-item input:not([type="checkbox"]):not([type="radio"]) {
	display: block;
	vertical-align: baseline;
	width: 100%;
	min-height: 2.4em;
	font-size: 16px;
	padding: 8px 4px;
}

.form-wrapper .form-item label {
	display: inline-flex;
	align-items: baseline;
	width: 100%;
	margin-bottom: 5px;
	padding: 5px 0;
}

.form-wrapper .form-item input[type="checkbox"],
.form-wrapper .form-item input[type="radio"] {
	margin: 0 5px;
}

.form-wrapper .form-item select {
	display: block;
	vertical-align: baseline;
	width: 100%;
	font-size: 16px;
	padding: 8px 4px;
}

.form-wrapper .form-item textarea {
	display: block;
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 100px;
	padding: 5px;
	font-size: 16px;
}

.form-wrapper .form-item .wpcf7-not-valid-tip {
	margin-top: 4px;
	padding: 5px;
	color: #F00;
	font-size: 1.2rem;
	background: #fff1f1;
	line-height: 1.4;
}

.form-wrapper .form-item-cloudflare {
	text-align: center;
}

.form-wrapper .form-item-cloudflare p {
	display: contents;
}

.form-wrapper .form-item-btn {
	padding-top: 40px;
}

.form-wrapper .form-item-btn input {
	appearance: none;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 160px;
	height: 42px;
	margin: 0 auto;
	padding: 0 50px;
	color: #FFF;
	font-size: 1.7rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	background: var(--primary-color);
	border: none;
	outline: none;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1.2;
	cursor: pointer;
}

.form-wrapper .form-item-btn input.mailform_back {
	margin-top: 20px;
	background: #999;
}

.form-wrapper .wpcf7 form .wpcf7-response-output {
	margin: 0;
}

@media (min-width: 950px) {
	.form-wrapper {}

	.form-wrapper .form-inner {
		max-width: 840px;
		margin: 0 auto;
	}

	.form-wrapper .form-item {
		display: flex;
		align-items: baseline;
		margin: 30px 0;
	}

	.form-wrapper .form-item p {}

	.form-wrapper .form-item dt {
		width: 240px;
		margin-right: 25px;
	}

	.form-wrapper .form-item dt span:not(.required) {
		display: block;
		margin-left: 0;
	}

	.form-wrapper .form-item dd {
		flex: 1;
	}

	.form-wrapper .form-item .required,
	.form-wrapper .form-item .optional {
		top: 2px;
	}

	.form-wrapper .form-item .required {}

	.form-wrapper .form-item .optional {}

	.form-wrapper .form-item .form-item-row+.form-item-row {}

	.form-wrapper .form-item input:not([type="checkbox"]):not([type="radio"]) {
		padding: 8px;
		font-size: 100%;
	}

	.form-wrapper .form-item input:not([type="checkbox"]):not([type="radio"]).short {
		width: 50%;
	}

	.form-wrapper .form-item input:not([type="checkbox"]):not([type="radio"]).zip {
		width: 10em;
	}

	.form-wrapper .form-item label {}

	.form-wrapper .form-item input[type="checkbox"],
	.form-wrapper .form-item input[type="radio"] {
		margin: 0 8px 0 4px;
	}

	.form-wrapper .form-item select {
		width: auto;
		padding: 8px;
		font-size: 100%;
	}

	.form-wrapper .form-item textarea {
		padding: 8px;
		font-size: 100%;
	}

	.form-wrapper .form-item .wpcf7-not-valid-tip {}

	.form-wrapper .form-item-btn {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
	}

	.form-wrapper .form-item-btn input,
	.form-wrapper .form-item-btn input.mailform_back {
		min-width: 220px;
		height: 47px;
		margin: 0 20px;
		padding: 0 60px;
		transition: 0.2s;
	}

	.form-wrapper .form-item-btn input:hover {
		opacity: 0.6;
	}

	.form-wrapper .wpcf7 form .wpcf7-response-output {}
}







.lead-text {
	margin-bottom: 40px;
}

@media screen and (min-width: 900px) {
	.lead-text {
		margin-bottom: 60px;
	}
}


.trinity {
	padding: 15px;
	background: #FFF;
	border-radius: 15px;
	box-shadow: 0px 0px 30px rgba(var(--primary-color-rgb), 0.3);
}

.trinity h4 {}

.trinity>*:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 900px) {
	.trinity {
		padding: 20px 30px;
	}

	.trinity h4 {}
}







.gt-logo {
	display: grid;
	grid-template-columns: 50px 8px auto;
	text-decoration: none;
	line-height: 1.2;
	margin-bottom: 25px;
	color: #194c9e;
}

.gt-logo>img {
	grid-column: 1 / 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	/* background: #F00; */
}

.gt-logo>span {
	grid-column: 3 / 4;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: min(5.2vw, 2.2rem);
}

.gt-logo .en {
	margin-left: 0.25em;
	margin-bottom: 0.25em;
	font-size: 50%;
	letter-spacing: 1.00em;
	font-family: "Outfit", sans-serif;
}

.gt-logo .jp {
	margin: -0.0em 0 0.15em;
	font-weight: 800;
}














/*--------------------------------------
  # eyecatch
--------------------------------------*/

.eyecatch {
	position: relative;
}

.eyecatch .eyecatch-txt {
	position: absolute;
	z-index: 2;
	bottom: 40px;
	left: 0;
	/* display: flex; */
	/* justify-content: center; */
	/* align-items: center; */
	width: 100%;
	/* height: 100%; */
	/* pointer-events: none; */
}

.eyecatch .eyecatch-txt .eyecatch-txt-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #FFF;
	font-size: min(5.2vw, 3.2rem);
	text-align: center;
	filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.4));
}

.eyecatch .eyecatch-txt .eyecatch-txt-inner .text1 {
	margin: 0 0 10px;
	line-height: 1.4;
	font-weight: 800;
}

.eyecatch .eyecatch-txt .eyecatch-txt-inner .text2 {
	padding: 6px 12px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 4px;
	line-height: 1.4;
	font-size: 85%;
}

.eyecatch .eyecatch-bg {
	position: relative;
	z-index: 1;
	filter: brightness(0.9);
}

.eyecatch .swiper.eyecatch-swiper {}

.eyecatch .swiper.eyecatch-swiper .swiper-slide {}

.eyecatch .swiper.eyecatch-swiper .swiper-slide .copyright {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 4px 6px;
	color: #FFF;
	font-size: 1.1rem;
	background: rgba(0, 0, 0, 0.4);
	line-height: 1.2;
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide img {
	display: block;
	width: 100%;
	min-height: 380px;
	max-height: 600px;
	height: 70vh;
	height: 70svh;
	background: #CCC;
	object-fit: cover;
	transition: 6s linear transform;
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01 img {
	transform: scale(1);
	object-fit: cover;
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01.animation img {
	transform: scale(1.2);
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02 img {
	transform: scale(1.25) translateX(30px);
	object-fit: cover;
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02.animation img {
	transform: scale(1.25) translateX(-30px);
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03 img {
	transform: scale(1.25) translateX(-30px);
	object-fit: cover;
}

.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03.animation img {
	transform: scale(1.25) translateX(30px);
}

@media (min-width: 950px) {
	.eyecatch {}

	.eyecatch .eyecatch-txt {
		bottom: 7vw;
		left: 4vw;
		width: auto;
	}

	.eyecatch .eyecatch-txt .eyecatch-txt-inner {
		align-items: flex-start;
		text-align: left;
		font-size: min(4.2vw, 5.2rem);
		filter: drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.4));
	}

	.eyecatch .eyecatch-txt .eyecatch-txt-inner .text1 {
		margin: 0 0 25px;
	}

	.eyecatch .eyecatch-txt .eyecatch-txt-inner .text2 {
		padding: 10px 18px;
		font-size: 58%;
	}

	.eyecatch .eyecatch-bg {}

	.eyecatch .swiper.eyecatch-swiper {}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide {}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide img {
		min-height: 480px;
		max-height: 1080px;
		height: calc(100vh - 90px);
		height: calc(100svh - 90px);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01 img {
		transform: scale(1);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01.animation img {
		transform: scale(1.15);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02 img {
		transform: scale(1.15) translateX(40px);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02.animation img {
		transform: scale(1.15) translateX(-40px);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03 img {
		transform: scale(1.15) translateX(-40px);
	}

	.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03.animation img {
		transform: scale(1.15) translateX(40px);
	}
}


.copyright {
	position: relative;
}

.copyright img {
	display: block;
	width: 100%;
}

.copyright .text {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
	padding: 4px 6px;
	color: #FFF;
	font-size: 1.05rem;
	background: rgba(0, 0, 0, 0.4);
	line-height: 1.2;
}

.copyright .text.rb {
	right: 0;
	left: auto;
}

@media (max-width: 949px) {

	.copyright .text,
	.copyright .text.rb {
		top: 100%;
		bottom: auto;
		left: 0;
		width: 100%;
		padding: 3px 0;
		color: #666;
		font-size: 1.0rem;
		background: none;
		overflow: hidden;
		/* 溢れた部分を隠す */
		text-overflow: ellipsis;
		/* 溢れた部分を「...」にする */
		white-space: nowrap;
		/* 1行で表示 */
	}
}




.career {
	clear: both;
	font-size: 94%;
	background: #FFF;
	filter: drop-shadow(0px 0px 10px rgba(var(--primary-color-rgb), 0.2));
}

.career dl {
	display: flex;
	margin: 0;
	border-bottom: 1px dotted #999;
}

.career dl:last-child {
	border-bottom: none;
}

.career dl dt {
	margin: 10px 0;
	padding: 0 20px;
	border-right: 1px solid #CCC;
	white-space: nowrap;
	/* text-align: center; */
}

.career dl dd {
	flex: 1;
	margin: 10px 0;
	padding: 0 20px;
}

@media (max-width: 949px) {
	.career {
		font-size: 85%;
	}

	.career dl {}

	.career dl dt {
		padding: 0 10px;
	}

	.career dl dd {
		padding: 0 10px;
	}
}