@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=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


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

/* TRIAL
**************************/

.trial_btn {
    background: #b3a2ba;
    text-align: center;
    width: max-content;
    margin: auto;
}

.trial_btn p{
  color: #ffffff;
  font-size: 1.3em;
  font-weight: bold;
  padding: 5px 80px;
}


p.otameshi {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  margin: auto;
  text-align: center;
}
p.otameshi:before, p.otameshi:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
p.otameshi:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
p.otameshi:after {
  right: 0;
}

.otameshi_cont {
    text-align: center;
}



/* TABLE
**************************/
.price-tbl {
  margin-top: 50px;
	width: 100%;
}
.price-tbl a {
  color: #b3a2ba;
}
.price-tbl tbody th {
  width: 25%;
}
.price-tbl tbody td {
  width: 75%;
}
.price-tbl tbody th,
.price-tbl tbody td {
  padding: 17px 5px;
  border-bottom: #ccc solid 1px;
  vertical-align: middle;
  font-size: 90%;
}
.price-tbl tbody td {
  padding: 17px 15px;
}
.price-tbl tbody th {
  font-weight: bold;
  color: #b3a2ba;
  text-align: left;
}
.price-tbl tbody td.center {
  text-align: center;
}
.price-tbl tbody td .price {
  font-size: 140%;
}
.price-tbl tbody td .strong {
  color: #f00;
}
.note-list {
  font-size: 80%;
  margin-top: 14px;
  float: left;
}
.note-list li {
  padding-left: 1em;
  text-indent: -1em;
}

/* PRICE


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--text-color: #333;				/*テキストカラー*/

	--primary-color: #59d5e0;		/*テンプレートのメインとなる色*/
	--primary-text-color: #fff;		/*メインカラーの上で使うテキスト色*/

	--global-space: 5vw;			/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
}



/*CPコンテンツここから*/

#dmt_cp .cpbox .note {
    font-size: 0.8rem;
		margin: 0;
}

#dmt_cp .cpbox .schedule {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 30px 0 0;
    padding: 10px 50px;
    background-color: #eeeeee;
}

#dmt_cp .cpbox .schedule h2 {
    background-color: #000000;
    color: #ffffff;
    border-radius: 50px;
    line-height: 2.0rem;
    padding: 5px 40px;
}
#dmt_cp .cpbox .schedule p {
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 2.0rem;
    padding-top: 5px;
}
#dmt_cp .cpbox .schedule span {
    font-size: 1.6rem;
    line-height: 1.6rem;
}

#dmt_cp {
    border: #b1a2bc solid 5px;
    padding:30px;
    margin-bottom: 50px;
    border-radius: 15px;
}

.cpbox {

}

#dmt_cp .cpbox .conditions {
    display: flex;
    gap: 20px;
    margin: 25px 0 0;
		align-items: center;
}
#dmt_cp .cpbox .conditions h2 {
    padding: 20px;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2;
		margin: 0;
}
#dmt_cp .cpbox .conditions li {
    list-style-type: disc;
    margin: 0 0 0 1.0rem;
    font-size: 0.8rem;
}
#dmt_cp .cpbox .conditions li small {
    font-size: 90%;
}

section.dmttitle {
    display: flex;
    flex-direction: row;
    align-items: center;
		justify-content: space-around;
}

section.dmttitle img {
width: 50%;
margin: 0;
}

.dmttitle h2 span.en{
	color: #B3A2BA;
        font-size: 20px;
        display: flex;
        align-items: center;
}

.dmttitle h2 img{
width: 180px;
}

.dmttitle h2 p.dmt_h2{
font-size: 1.5em;
margin: 0;
}

section.dmttitle h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*CPコンテンツここまで*/

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


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


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

div#lightbox {
    display: flex;
    flex-direction: column-reverse;
}

a.popupimg p {
    margin: 0;
    text-align: right;
    font-size: 0.9em;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff54;
}

a.popupimg {
    position: relative;
}

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

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

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


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	/*font-weight: 300;*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	line-height: 2;		/*行間*/
}



/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

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

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;
display: block;
margin: auto;}

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

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

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	color: #b3a2ba;	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;	/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: var(--global-space);	/*コンテンツ内の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
}

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

	#contents {
		padding-top: 80px;	/*コンテンツ内の上の余白だけ上書き*/
	}

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


#mainimg {
    width: auto;
    position: relative;
		background: url(../images/kv.jpg);
		background-repeat: no-repeat;
		background-size: cover;
    padding-top:60px;
}




/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 60px;					/*ヘッダーの高さ*/
	padding: 1vw 3vw;				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
    position: absolute;
    z-index: 1;
    width: 100%;
		background: #ffffff;
}

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

figure.flex {
    display: flex;
    width: 100%;
    align-items: flex-start;
		gap:20px;
		margin-bottom: 30px
}

figure.flex img {
    width:100%;
}

figure.flex a {
    width: 50%;
}


	/*ヘッダーブロック*/
	header {
		position: fixed;	/*スクロールしても動かないようにする指定。*/
	}

	}

/*ロゴ（※画像にする場合）*/
#logo img {
	display: block;
	width: 160px;	/*ロゴ画像の幅*/
	z-index: 999;
	position: relative;
    padding: 20px;
}

/*ロゴ（テキストにする場合）*/
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;	/*文字サイズを120%に*/
	font-weight: 800;	/*文字の太さ*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

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

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

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

/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;		/*横並びにする*/
	font-size: 0.85rem;	/*文字サイズ。85%。*/
	gap: 0.5rem;		/*メニュー同士の間に空けるマージン的な要素*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	border-radius: 100px;	/*角を丸くする指定。適当に大きければOKです。*/
	padding: 0.2rem 0.5rem;	/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
.large-screen #menubar li a:hover {
	background: #fff;		/*背景色*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.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: 100;
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;	/*上に空けるスペース。メニュー同士の隙間です。*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: rgba(255,255,255,0.95);		/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar a {
	padding: 1rem;	/*メニュー内の余白*/
}

/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
	color: #B3A2BA;
	font-size: 1.3em;
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
	font-weight: normal;		/*文字の太さを標準にする*/
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 3vw;			/*右からの配置場所指定*/
	top: 1vw;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #333;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
	border-color: #fff;					/*線の色だけ上書き*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*main
---------------------------------------------------------------------------*/




/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;	/*ボックスの下に空けるスペース。subとの間の余白です。5文字分。*/
}

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

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

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

	/*sub-contentsブロック共通*/
	.sub-contents {
		width: 230px;	/*幅*/
	}

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

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

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


/*サブコンテンツ設定
---------------------------------------------------------------------------*/
/*サブコンテンツ内のh3要素(見出し)*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;	/*テキストをセンタリング*/
	border-radius: 5px 5px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	border: 1px solid #ccc;			/*下線の幅、線種、色*/
	background: linear-gradient(transparent, rgba(0,0,0,0.03));/*背景グラデーション。transparentは透明の事。0,0,0は黒の事で0.03は色が3%出た状態。*/
	padding: 0.5rem 0;	/*上下、左右への見出し内の余白*/
}


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

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

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

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

/*h3見出しの下にサブメニューが続く場合にメニューの上の線をなくす*/
.sub-contents h3 + nav .submenu {
	border-top: none;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0 !important;
	padding: 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
	padding: 0 10px;		/*上下、左右への余白*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

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

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


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.05s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.05s linear both;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

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

/*icon-bg1*/
.new .icon-bg1 {
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
}

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

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

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


/*list-grid1
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-grid1 {
	display: grid;
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
}

/*list内の全ての要素のmarginとpaddingを一旦リセット*/
.list-grid1 .list * {
	margin: 0;padding: 0;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
}

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

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

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


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

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

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


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

/*ボックス内のfigure画像*/
.list-grid1 .list figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}


/*ボタン（btnと、btn-border-radius）
---------------------------------------------------------------------------*/
/*ボタン共通*/
.btn a,
.btn-border-radius a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--primary-color) !important;	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-text-color) !important;	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;
}

/*ボタン共通（マウスオン時に少し明るくする）*/
.btn a:hover,
.btn-border-radius a:hover {
	filter: brightness(1.2);
}

/*btn-border-radiusの上書き*/
.btn-border-radius a {
	display: inline-block;
	padding: 0.5rem 2rem !important;	/*ボタン内の余白*/
	border-radius: 100px;	/*角丸の指定。適当に大きければOK。*/
	background: #e12000 !important;
	color: #fff !important;
}


/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	padding-top: 5vw;		/*ボックス内の上に空ける余白。お好みで調整して下さい。*/
	padding-bottom: 5vw;	/*ボックス内の下に空ける余白。お好みで調整して下さい。*/
	margin-top: 10vw;		/*ボックス外の上に空ける余白。お好みで調整して下さい。*/
	margin-bottom: 10vw;	/*ボックス外の下に空ける余白。お好みで調整して下さい。*/

	/*以下は変更不要*/
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
.bg1 a {
	color: inherit;
}

/*以下のheightの行が傾斜の角度です。vwという単位は画面幅に対してで、画面幅100%＝100vwになります。
つまり、画面幅に対して常に同じ傾斜具合になります。1pxの数字は時々隙間が発生するのでそれを防ぐ為の措置です。
傾斜（height）を変更したい場合は、下にある「.bg1::before」のtopと「.bg1::after」のbottomの数字も変更。*/
.bg1::before, .bg1::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: calc(5vw + 1px);
	background: var(--primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
}

.bg1::before {
	top: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 100%, 100% 0, 100% 100%);	/*三角形の形を作っています*/
}

.bg1::after {
	bottom: -5vw;	/*上の、heightの「5vw」と数字を揃えて先頭にマイナスをつける*/
	clip-path: polygon(0 0, 100% 0, 0 100%);	/*三角形の形を作っています*/
}


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

/*サムネイル全体を囲むブロック*/
.thumbnail-parts {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

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


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

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

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

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

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

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

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

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


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	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%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.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;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	@media screen and (min-width:1200px) {
main {
    width: 1100px;
    margin: auto;
    padding-top: 50px;
}

.top_flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    width: 1100px;
    margin: auto;
    padding-top: 20px;
}


}

	@media screen and (max-width:1200px) {
main{
width: 96%;
margin: auto;
padding-top: 50px;
}

.top_flex {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        width: 96%;
        margin: auto;
        padding: 20px 0;
    }

.ms365, .gws, .op {
        display: inline-block;
        padding: 5px 30px;
        text-align: center;
        font-weight: bold;
        font-size: 0.9em;
    }



}



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

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}


#case{
	display: none;
}


a{
  text-decoration: none;
}

#service,
#training,
#about,
#case,
#price,
#trial,
#contact{
  margin-bottom: 80px;
}


/*KV-Formここから*/
#mainimg .right_form .form-group.required label:after {
    background-color: #b3a2ba!important;
}

br.pc_only{
	display: block;
}

.right_form{
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

/*KV-Formここまで*/


/*レポートここから*/
.report_flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.report_cont {
    width: 50%;
}

.report_title {
    background: #dce3f4;
    text-align: center;
}

.report_title p{
  color: #253a67;
}

p.r_title {
    margin: 0;
    font-weight: bold;
    color: #253a67;
}

p.r_text {
    font-size: 0.9em;
    margin: 0;
}

/*レポートここまで*/

/*topここから*/

.top_left {
    width: 60%;
		margin-top: 30px;
}
.top_right {
    width: 40%;
}

.left1_1 p {
    font-size: 2.8em;
    margin: 0;
    line-height: 1.3;
		font-weight: 500;
}

span.pp{
  color:#b3a2ba;
  font-weight: bold;
}

.left1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left2 p{
margin: 0;
line-height: 1.5;
}


.ms365,
.gws,
.op {
    display: inline-block;
    padding: 0px 5px;
    text-align: center;
    font-weight: bold;
}

.op{
		color: #666666;
		border-bottom: solid 3px #666666;
}

.ms365{
			color: #e22f00;
			border-bottom: solid 3px #e22f00;
}

.gws{
		color: #2b6eb5;
		border-bottom: solid 3px #2b6eb5;
}


.top_flex {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        margin: auto;
        padding: 20px 0;
    }

.left2 p{
margin: 0;
line-height: 1.5;
}

.left2 {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

p.title {
    font-size: 2.3em;
    line-height: 1.7;
margin: 0;
}

p.title span {
    background: #b3a2ba;
    color: #ffffff;
    padding: 0px 20px;
    margin-right: 10px;
}

.left4 {
    text-align: center;
}

.left4 p {
    font-size: 1.5em;
    margin: 0;
    position: relative;
  display: inline-block;
  padding: 0 55px;
  line-height: 1.4;
}

span.three {
    font-size: 1.5em;
    color: #b3a2ba;
    font-weight: bold;
}

.left4 p:before,
.left4 p:after {
  content: '';
  position: absolute;
  top: 80%;
  display: inline-block;
  width: 45px;
  height: 2px;
  background-color: #b3a2ba;
}

.left4 p:before {
  left:0;
}
.left4 p:after {
  right: 0;
}


p.title5 {
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

    p.text5 {
        line-height: 1.2;
        font-size: 1em;
        text-align: center;
        margin: 0;
        margin-top: 10px;
    }

.l_content5 img {
    width: 90%;
}

p.title5 {
    font-size: 1.5em;
    font-weight: 500;
}

.l_content51 {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        width: 30%;
    }


.l_content5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 23%;
}

.r_cont{
    background: #ffffff;
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    box-shadow: 7px 7px 10px 0px #666666;
		width: 100%;
}

.r_cont p{
  margin: 0;
  color: #b3a2ba;
  font-weight: bold;
  font-size: 1em;
}

.right1 {
    text-align: center;
}


  .right_flex {
    display: flex;
    gap: 30px;
    justify-content: center;
}


.left2,
.left3,
.left4,
.left5{
  margin-bottom: 40px;
}


.left1{
	margin-bottom:10px;
}


.right1,
.right2{
  margin-bottom: 20px;
}

/*topここまで*/

/*事例ここから*/
.case_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 96%;
    margin: auto;
    padding: 10px 20px;
    border: solid 1px #d1d1d1;
}

.case_cont p {
    margin: 0;
}

p.case_com {
    font-size: 0.9em;
    font-weight: bold;
}

p.case_title {
font-size: 1.2em;
    color: #f82faa;
    font-weight: bold;
    line-height: 1.3em;
}

.case_flex img {
    width: 150px;
}

.case_cont {
    width: 70%;
}
/*事例ここまで*/

/*価格ここから*/

p.price_text {
    font-size: 0.7em;
    line-height: 1.4;
    margin: 0;
}

span.price_mark {
    font-size: 0.7em;
    background: #b3a2ba;
    padding: 2px 15px;
    border-radius: 50px;
    color: #ffffff;
}

span.price_150 {
    font-size: 3em;
    padding: 0 20px;
}

.price_info {
    border: solid 1px #b3a2ba;
    padding: 10px 20px;
}


/*価格ここまで*/

/*トレーニングここから*/
.tr_box {
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.tr_cont {
    width: 20%;
}

.tr_cont_li {
    height: 190px;
}

.tr_cont_li_long{
    height: 250px;
}

li.red{
  color: #e17350;
}

.arrow {
  position: relative;
  width: calc(100% - 10px);
  height: 40px;
  background: #283965;
  color: #283965;
  text-align: center;
  margin-bottom: 15px;
}

.arrow p{
color: #ffffff;
margin: 0;
display: inline-block;
font-size: 0.9em;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -39px;
  border-left: 20px solid;
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.tr_cont_li {
    font-size: 0.7em;
    color: #283965;
    border-top: dashed 1px;
}

.tr_cont_li2 {
    border-top:none;
}

.tr_cont_li ul {
    margin-left: 20px;
    line-height: 1.4em;
}

.tr_cont_li ul li{
    margin-bottom: 3px;
}

p.li_title {
    margin: 0;
    font-weight: bold;
}


/*トレーニングここまで*/




h3.bordertitle{
  position: relative;
  padding: 0.25em 0;
display:block;
width: fit-content;
text-align: center;
margin: auto;
}

h3.bordertitle:after {
  content: "";
  display: block;
  height: 4px;
  background: #b3a2ba;
}


.goal ul {
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

.goal ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
	font-weight: bold;
	color: #b3a2ba;
}

.goal ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
	font-weight: 900;
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #b3a2ba; /*アイコン色*/
}

.goal p{
margin: 0;
}

 .goal_li{
	 margin-bottom: 20px;
 }



#service{
	margin-top: 100px;
}

span.f1{
	font-weight: bold;
	color: #B3A2BA;
}

h2.head{
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	align-items: center;
	margin-bottom: 50px;
}

h2.head span.en{
color: #B3A2BA;
font-size:20px;
display: flex;
align-items: center;
}



h2.head span.jp{
	color: #333333;
font-size:30px;
}

.cta_bg{
	display: none;
}


.left1_1 {
    width: 100%;
}

.left1_2 {
    width: 30%;
}

br.sp_only{
	display: none;
}


.cta_bg2{
	display: block;
		width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background: #0e261f;
text-align: center;
padding: 15px;
margin-bottom: 50px;
}

.cta_bg2 p{
	color: #ffffff;
	font-weight: bold;
	margin: 0;
	font-size: 0.9em;
}

#contact iframe{
	width: 80%;
	margin: auto;
display: flex;
justify-content: center;
margin-top: 40px;
}

.right_formbtn{
	display: block;
    background: #cb271e;
    padding: 5px 10px;
    border-radius: 5px;
		text-align: center;
		width: 350px;
		margin: auto;
		margin-top: 10px;
}

.right_formbtn p{
color: #ffffff;
font-weight: bold;
font-size: 1.2em;
margin: 0;
}

.left5_box {
    display: flex;
    gap: 25px;
}

.three_flex {
    display: flex;
    justify-content: center;
		gap:20px;
}

.f1,
p.cen {
    text-align: center;
}


.left4 p,
h3.bordertitle{
	padding-top: 50px;
}

.reportbox,
figure.service {
    text-align: center;
    padding-top: 30px;
}

.left4 p {
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
}

.left4 p img {
    width: 120px;
    margin: 0;
    margin-right: 10px;
}



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



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

#dmt_cp .cpbox .conditions h2 {
    padding: 5px 20px;
    border-left: 2px solid #000000;
    border-right: 2px solid #000000;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0;
}

#dmt_cp {
    padding: 10px;
		border: #b1a2bc solid 2px
	}

.dmttitle h2 p.dmt_h2 {
    font-size: 1.2em;
    margin: 0;
}

section.dmttitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#dmt_cp .cpbox .schedule h2 {
    background-color: #000000;
    color: #ffffff;
    border-radius: 50px;
    line-height: 2.0rem;
    padding: 5px 30px;
}

#dmt_cp .cpbox .schedule {
    display: flex;
    justify-content: center;
    align-items: center;
gap: 0px;
    margin: 30px 0 0;
    padding: 10px;
    background-color: #eeeeee;
    flex-direction: column;
}

#dmt_cp .cpbox .conditions {
    display: flex;
    gap: 20px;
    margin: 25px 0 0;
    align-items: center;
    flex-direction: column;
}


.left4 p {
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
}

.left4 p img {
    width: 120px;
    margin: 0;
    margin-right: 10px;
}



figure.flex a {
    width: 100%;
}

figure.flex {
    display: flex;
    width: 100%;
    align-items: flex-start;
		gap:20px;
		flex-direction: column;
		margin: auto;
	 margin-bottom: 40px;
}

figure.flex img {
    width: 100%;
}



.f1,
p.cen {
text-align: left;
line-height: 1.5;
font-size: 16px;
	}


.left5_box {
    display: flex;
    gap: 5px;
		width: 100%;
		flex-direction: column;
}


#case{
	display: none;
}



br.sp_only{
	display: none;
}


a{
  text-decoration: none;
}

#service,
#training,
#about,
#case,
#price,
#trial,
#contact{
  margin-bottom: 30px;
}


/*KV-Formここから*/
#mainimg .right_form .form-group.required label:after {
    background-color: #b3a2ba!important;
}

.right_form{
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
}

/*KV-Formここまで*/


/*レポートここから*/
.report_flex {
    display: flex;
    gap: 50px;
    align-items: flex-start;
		flex-direction: column;
}

.report_cont {
    width: 100%;
}

.report_cont {
    font-size: 1.2em;
}

.report_title {
    background: #dce3f4;
    text-align: center;
}

.report_title p{
  color: #253a67;
}

p.r_title {
    margin: 0;
    font-weight: bold;
    color: #253a67;
}

p.r_text {
    font-size: 0.9em;
    margin: 0;
}

/*レポートここまで*/

/*topここから*/
.top_flex {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 90%;
    margin: auto;
    padding-top: 0px;
		flex-direction:column;
		padding: 30px 0;
}

.top_left {
    width: 100%;
		text-align: center;
}
.top_right {
    width: 100%;
}

.left1_1 p {
    font-size:2em;
    margin: 0;
    line-height: 1.3;
		text-align: center;
		}

span.pp{
  color:#b3a2ba;
  font-weight: bold;
}

.left1 {
    display: flex;
    align-items: center;
    gap: 10px;
		flex-direction: column;
}

.ms365,
.gws,
.op {
    display: inline-block;
    padding: 5px 30px;
    text-align: center;
    font-weight: bold;
    font-size: 0.8em;
}


.left2 p{
margin: 0;
}

.left2 {
    display: flex;
    gap: 20px;
    justify-content: center;
}

p.title {
    font-size: 2.3em;
    line-height: 1.7;
margin: 0;
}

p.title span {
    background: #b3a2ba;
    color: #ffffff;
    padding: 0px 20px;
    margin-right: 10px;
}

.left4 {
    text-align: center;
}

.left4 p {
    font-size: 1.5em;
    position: relative;
  padding: 0 40px;
  line-height: 1.4;
}

span.three {
    font-size: 1.5em;
    color: #b3a2ba;
    font-weight: bold;
}

.left4 p:before,
.left4 p:after {
  content: '';
  position: absolute;
  top: 60%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #b3a2ba;
}

.left4 p:before {
  left:0;
}
.left4 p:after {
  right: 0;
}

.left5 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
		justify-content: center;
		flex-direction: column;
}

p.title5 {
    line-height: 1.2;
    text-align: center;
    margin: 0;
		font-size: 1.5em;
    font-weight: bold;
    border-bottom: solid 5px #b3a2ba;
}

p.text5 {
    line-height: 1.2;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    margin-top: 10px;
}

.right_form{
	display: none;
}

.cta_bg2{
	display: block;
		width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background: #0e261f;
text-align: center;
padding: 15px;
}

.cta_bg2 p{
	color: #ffffff;
	font-weight: bold;
	margin: 0;
	font-size: 1.1em;
}

.right_formbtn{
	display: block;
    background: #cb271e;
    padding: 10px 20px;
    border-radius: 5px;
		text-align: center;
		width: 80%;
		margin: auto;
		margin-top: 10px;
}

.right_formbtn p{
color: #ffffff;
font-weight: bold;
font-size: 1.2em;
margin: 0;
}

.cta_bg{
	display: block;
		width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background: #0e261f;
text-align: center;
padding: 15px;
}

.cta_bg p{
	color: #ffffff;
	font-weight: bold;
	margin: 0;
	font-size: 1.1em;
}






.l_content5 img {
    width: 100%;
		display: none;
}

.l_content5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100%;
		margin-bottom: 20px;
}

br.pc_only{
	display: none;
}

.r_cont{
    background: #ffffff;
    display: inline-block;
    padding: 7px 10px;
    text-align: center;
    box-shadow: 7px 7px 10px 0px #666666;
    width: 70%;
}

.three_flex {
    margin-top: 20px;
}

.r_cont p{
  margin: 0;
  color: #b3a2ba;
  font-weight: bold;
  font-size: 1.2em;
}

.right1 {
    text-align: center;
}


  .right_flex {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.left1,
.left2,
.left3,
.left4,
.left5{
  margin-bottom: 10px;
}

.left2,
.left3 {
    margin-bottom: 30px;
}

.right1,
.right2{
  margin-bottom: 20px;
	display: none;
}

/*topここまで*/

.left1_1 {
    width: 100%;
}

.left1_2 {
    width: 60%;
}


/*事例ここから*/
.case_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: auto;
    padding: 10px 20px;
    border: solid 1px #d1d1d1;
		flex-direction: column;
}

.case_cont p {
    margin: 0;
}

p.case_com {
    font-size: 0.9em;
    font-weight: bold;
}

p.case_title {
font-size: 1.2em;
    color: #f82faa;
    font-weight: bold;
    line-height: 1.3em;
}

.case_flex img {
    width: 150px;
}

.case_cont {
    width: 100%;
}
/*事例ここまで*/

/*価格ここから*/

p.price_text {
    font-size: 0.7em;
    line-height: 1.4;
    margin: 0;
}

span.price_mark {
    font-size: 0.7em;
    background: #b3a2ba;
    padding: 2px 15px;
    border-radius: 50px;
    color: #ffffff;
}

span.price_150 {
    font-size: 3em;
    padding: 0 20px;
}

.price_info {
    border: solid 1px #b3a2ba;
    padding: 10px;
}


/*価格ここまで*/

/*トレーニングここから*/
.tr_box {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.tr_cont {
    width: 100%;
}

.tr_cont_li {
    height:auto;
}

.tr_cont_li_long{
    height:auto;
}

li.red{
  color: #e17350;
}

.arrow {
  position: relative;
  width: 100%;
  height: 40px;
  background: #283965;
  color: #283965;
  text-align: center;
  margin-bottom: 15px;
}

.arrow p{
color: #ffffff;
margin: 0;
display: inline-block;
font-size: 1.1em;
}

.arrow::after {
  content: "";
  position: absolute;
  right: -39px;
  border-left: 20px solid;
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
	display: none;
}

.tr_cont_li {
    font-size: 1.1em;
    color: #283965;
    border-top: dashed 1px;
}

.tr_cont_li2 {
    border-top:none;
}

.tr_cont_li ul {
    margin-left: 20px;
    line-height: 1.4em;
		display: none;
}

.tr_cont_li ul li{
    margin-bottom: 3px;
}

p.li_title {
    margin: 0;
    font-weight: bold;
		padding-left: 20px;
}


/*トレーニングここまで*/




h3.bordertitle{
  position: relative;
  padding: 0.25em 0;
display:inline-block;
}

h3.bordertitle:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, #b3a2ba, transparent);
  background: linear-gradient(to right, #b3a2ba, transparent);
}


.goal ul {
  padding: 0.5em 0em 0.5em 1.5em;
  position: relative;
	font-size: 16px;
  line-height: 1.5;
}

.goal ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
	font-weight: bold;
	color: #b3a2ba;
}

.goal ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
	font-weight: 900;
  position: absolute;
  left : 0em; /*左端からのアイコンまで*/
  color: #b3a2ba; /*アイコン色*/
}

.goal p{
margin: 0;
}

 .goal_li{
	 margin-bottom: 20px;
 }



#service{
	margin-top: 50px;
}

span.f1{
	font-weight: bold;
	color: #B3A2BA;
}

h2.head{
	display: flex;
	flex-direction: column;
	line-height: 1.5;
}

h2.head span.en{
color: #B3A2BA;
font-size:20px;
display: flex;
align-items: center;
}




h2.head span.jp{
	color: #333333;
font-size:30px;
}

main{
width: 90%;
margin: auto;
padding-top: 50px;
}

header{
	background:none;
	position: fixed;
}

.left2 p{
margin: 0;
line-height: 1.5;
}


.ms365,
.gws,
.op {
    display: inline-block;
    padding: 0px 5px;
    text-align: center;
    font-weight: bold;
}

.op{
		color: #666666;
		border-bottom: solid 3px #666666;
}

.ms365{
			color: #e22f00;
			border-bottom: solid 3px #e22f00;
}

.gws{
		color: #2b6eb5;
		border-bottom: solid 3px #2b6eb5;
}


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


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

    .left1_1 p {
        font-size: 1.8em;
        margin: 0;
        line-height: 1.3;
        text-align: center;
				font-weight: bold;
    }

.ms365, .gws, .op {
        display: inline-block;
        padding: 3px 12px;
        text-align: center;
        font-weight: bold;
        font-size: 0.8em;
        width: auto;
        margin: 0;
    }




		.left2 {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .left2, .left3 {
        margin-bottom: 20px;
    }

	p.title {
        font-size: 1.5em;
        line-height: 1.7;
        margin: 0;
    }

.left4 p:before, .left4 p:after {
        content: '';
        position: absolute;
        top: 60%;
        display: inline-block;
        width: 15px;
        height: 2px;
        background-color: #b3a2ba;
    }

.left4 p {
        font-size: 1.2em;
        margin: 0;
        position: relative;
        display: inline-block;
        padding: 0 30px;
        line-height: 1.4;
    }

p.title5 {
        line-height: 1.2;
        text-align: center;
        margin: 0;
        font-size: 1.5em;
        font-weight: bold;
        border-bottom: solid 2px #b3a2ba;
    }

br.sp_only{
	display: block;
}

h2.head span.en {
        color: #B3A2BA;
        font-size: 15px;
        display: flex;
        align-items: center;
    }

h2.head span.jp {
        color: #333333;
        font-size: 20px;
    }

main {
        width: 90%;
        margin: auto;
        padding-top: 0px;
    }

.small-screen #menubar, .small-screen #menubar a {
    color: #B3A2BA;
    font-size: 1.2em;
}

.small-screen #menubar a {
    padding: 0.5rem;
}


.left4 p {
    display: flex;
    width: fit-content;
    margin: auto;
    align-items: center;
}

.left4 p img {
    width: 90px;
    margin: 0;
    margin-right: 10px;
}


}

/* case-list */
.case-box {
    margin-top: 50px;
    margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
    .case-box {
        margin-top: 32px;
        margin-bottom: 64px;
    }
}

.case-box .head {
    text-align: center;
}

.case-list {
    margin: 20px auto;
}
.case-list ul {
    margin: 0 auto;
    justify-content: center;
    gap: 20px 30px;
}
.case-list ul.grid {
    display: grid;
    grid-template-columns: repeat(8, 150px);
}
.case-list ul.flex {
    display: flex;
    flex-wrap: wrap;
    max-width: 1160px;
}
.case-list ul ~ ul {
    display: none;
}
.case-list li {
    width: 150px;
    height: 100px;
    list-style-type: none;
}
.case-list li img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}
.case-list li.large {
    grid-column: auto / span 2;
    width: 330px;
}
.case-list li.large img {
    width: 330px;
}

@media screen {
    .case-list ul.grid {
        grid-template-columns: repeat(8, 150px);
    }
}
@media screen and (max-width: 1666px), (min-width: 480px) and (max-width: 768px) and (max-height: 768px) {
    .case-list ul {
        gap: 1.2vw 1.8vw;
    }
    .case-list ul.grid {
        grid-template-columns: repeat(8, 9vw);
    }
    .case-list li {
        width: 9vw;
        height: 6vw;
    }
    .case-list li img {
        width: 9vw;
        height: 6vw;
    }
    .case-list li.large {
        width: 19.8vw;
    }
    .case-list li.large img {
        width: 19.8vw;
    }
}
@media screen and (max-width: 768px) {
    .case-list ul {
        gap: 4vw 6vw;
    }
    .case-list ul.grid {
        grid-template-columns: repeat(4, 18vw);
    }
    .case-list li {
        width: 18vw;
        height: 12vw;
    }
    .case-list li img {
        width: 18vw;
        height: 12vw;
    }
    .case-list li.large {
        width: 42vw;
    }
    .case-list li.large img {
        width: 42vw;
    }
}
