@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=M+PLUS+Rounded+1c:wght@100;300;400;500;700&display=swap'); */


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #f76e23;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


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


/* 初期値設定 */
body * {
	box-sizing: border-box;
}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ*/
	height: 100%;
}
	@media screen and (min-width:1200px) {
	html, body {
		font-size: 14px;
	}
	}
	@media screen and (min-width:1600px) {
	html, body {
		font-size: 1vw;
	}
	}
body {
	margin:
	0;padding:0;
	font-family: "Kosugi Maru", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fbfbdb;
	color: #555;
	line-height: 2;
  background-image: url("../images/092.png");/* 背景画像を指定 */
  background-attachment: fixed;/* 背景を固定 */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-size: cover;       /* 画像を要素いっぱいに表示 */
  background-position: center;  /* 画像を中央に配置 */
}
figure {
	margin: 0;
}
dd {
	margin: 0;
}
nav ul {
	list-style: none;
}
nav,ul,li,ol {
	margin: 0;
	padding: 0;
}
section li {
	margin-left: 1rem;
}
table {
	border-collapse:collapse;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
video {
	max-width: 100%;
}
iframe {
	width: 100%;
}
input {
	font-size: 1rem;
}
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}
a {
	color: inherit;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
	opacity: 0.9;
}
/* 初期値設定 */

/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}
body:not(.home) header {
	margin-bottom: var(--space-large);
}
#logo img {
	display: block;
}
#logo {
	margin: 0;padding: 0;
	width: 20vw;
	max-width: 200px;
	position: relative;z-index: 1;
	left: 2vw;
	top: 5vw;
}
	@media screen and (max-width:500px) {
	#logo {
		top: 0;
		width: 60px;
	}
	}
/*ヘッダーブロック*/

/*ヘッダー内メニュー*/
header nav ul {display: none;}
	@media screen and (min-width:900px) {
	header > nav > ul {
		margin-right: 10vw;
		display: flex;
	}
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}
	header nav i {
		padding-right: 0.5rem;
	}
	}
/*ヘッダー内メニュー*/

/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定*/
header nav ul ul,.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}
/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定*/

/*ヘッダー内メニューのドロップダウン-*/
header nav ul ul {
	position: absolute;z-index: 100;
}
header nav ul ul a {
	background: #fff;
	padding: 0.3em 1em;
	margin-top: 4px;
	border: 2px solid var(--primary-color);
	border-radius: 100px;
	color: var(--primary-color);
}
/*ヘッダー内メニューのドロップダウン-*/

/*メニューブロック初期設定*/
#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;
}
#menubar_hdr.display-none {
	display: none;
}
.ddmenu_parent ul {
	display: none;
}
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}
/*メニューブロック初期設定*/

/*開閉メニュー*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	animation: animation1 0.2s both;
}
.small-screen #menubar ul ul {
	margin: 2rem;
}
.small-screen #menubar nav ul li {
	border: 1px solid #fff;
	margin: 1rem 0;
	border-radius: 5px;
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;
}
/*開閉メニュー*/

/*３本バー（ハンバーガー）アイコン設定*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;
	right: calc(var(--space-small) + 5px);
	width: 60px;
	height: 60px;
	padding: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
}
/*３本バー（ハンバーガー）アイコン設定*/

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 3px;
	background-color: #000;
	transition: all 0.5s ease-in-out;
	position: absolute;
}
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {
	top: 0;
}
#menubar_hdr div span:nth-child(2) {
	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) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
/*バーの設定*/

/*画面右側の側面にある縦長ボタン（スクール見学）*/
#btn-special {
	padding:0;
	margin: 0;
}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;
	top: 20vw;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: linear-gradient(#06C755, #028539);
	color: #fff;
	padding: 2rem 1rem;
	border-radius: 3px 0px 0px 3px;
	letter-spacing: 0.1em;
}
#btn-special i {
	padding-bottom: 1rem;
}
/*画面右側の側面にある縦長ボタン（スクール見学）*/

/*main（メインコンテンツ）*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;
	font-weight: normal;
	margin-bottom: 5vw;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}
/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-inverse-color);
	font-size: 0.9rem;
	opacity: 0.6;
	letter-spacing: 0.1rem;
	padding-top: 2rem;
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

/*h3見出し（共通）*/
main h3 {
	font-weight: 500;
	font-size: 1.4rem;	/*文字サイズ140%*/
}


/*Google Map レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	display: flex;
	width: 100%;
}
.iframe-box iframe {
	display: block;
	width: 50%;
	height: 500px;
}
@media screen and (max-width:799px) {
	.iframe-box {
		flex-direction: column;
	}
	.iframe-box iframe {
		width: 100%;
	}
}

/*フッター*/
footer a {
	color: inherit;
	text-decoration: none;
}
footer small {
	font-size: 100%;
}
footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-size: 0.85rem;
	padding: 5vw;
}
.footer-p1 {
	margin: 0;
}
/*フッター内にあるソーシャルメディアのアイコン*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}
.footer-contents1 {
	width: 100%;
}
.footer-contents2 {
	width: 100%;
}
.footer-contents3 {
	width: 100%;
	text-align: center;
}
.footer-contents3 small {
	display: block;
}
.footer-logo {
	max-width: 200px
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	footer {
		display: flex;
		justify-content: space-between;
	}
	.footer-contents1 {
	width: 40%;
	}
	.footer-contents2 {
		width: 30%;
	}
	.footer-contents3 {
		width: 30%;
	}
	.footer-logo {
		max-width: 100% !important;;
	}
	}
/*フッター*/

/*お問い合わせ*/
.contact-list > a {
	text-decoration: none;
	display: block;
}
.contact-list  .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
	padding: 5rem 2rem;
	margin: 1rem 0;
}
.contact-list  .list.image1 {
	background: url("../images/029.jpg") no-repeat center center / cover;
}
.contact-list  .list.image2 {
	background: url("../images/092.png") no-repeat center center / cover;
}
.contact-list  h4 {
	font-weight: 300;
	line-height: 1.2;
}
.contact-list  h4 .main-text {
	display: block;
	font-size: 3rem;
	padding-top: 1.5rem;
	padding-bottom: 3rem;
}
.contact-list  h4 .sub-text {
	position: relative;
	padding: 0 5rem;
}
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.contact-list  h4 .sub-text::before,.contact-list  h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;
	border-top: 1px solid #fff;
}
.contact-list  .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;
}
.contact-list  .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);
	transition: transform 0.3s 0.1s;
}
.contact-list .list:hover::before {
	transform: translateY(100%);
}
.contact-list .list .btn2 a {
	background: rgba(0,0,0,0.7);
}
.contact-list  .list .btn1 a {
	text-shadow: none;
}
	@media screen and (min-width:600px) {
	.contact-list  {
		display: flex;
	}
	.contact-list  > * {
		flex: 1;
	}
	.contact-list  .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.contact-list  > a .list {
		height: 100%;
	}
	.contact-list  h4 .main-text {
		font-size: 4rem;
	}
	}
/*お問い合わせ*/

/*よく頂く質問*/
.faq {
	background: #5E5C5A;
	color: #fff;
	position: relative;
}
.faq h2 {
	margin: 0;padding: 0;
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 0.4em;
}
.faq h2 .kazari {
	line-height: 1;
	font-size: 0.9rem;
}
.faq dt {
	font-size: 1.3rem;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 2rem 0 1rem 0;
}
.faq dd {
	padding: 0 0 2rem 0;
	font-size: 0.9rem;
}
.btn3 {
	text-align: right;
	letter-spacing: 0.1em;
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;
}
.btn3 a::after {
	content: "";
	background: url("../images/arrow1.svg") no-repeat right center / 100px;	/*背景色、アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	transition: 0.3s;
	border: 1px solid var(--primary-color);
}
.btn3 a:hover::after {
	background-color: var(--primary-color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}
.btn3.white {
	color: #fff;
}
.btn3.white a::after {
	background: url("../images/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;
}
.btn3.white a:hover::after {
	background-color: #fff;
	background-position: left center;
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	.faq {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.faq h2 {
		writing-mode: vertical-lr;
		margin-right: 18vw;
	}
	.faq h2 .kazari {
		font-size: 20vw;
		position: absolute;
		right: 0px;
		top: var(--space-large);
		color: rgba(255,255,255,0.05);
	}
	.faq dt {
		padding: 2rem 2rem 1rem 2rem;
	}
	.faq dd {
		padding: 0 2rem 2rem 2rem;
	}
	.faq .text {
		width: 50%;
	}
	}
/* よく頂く質問 */

/*お客様の声*/
.list-yoko-scroll * {
	margin: 0;
	padding: 0;
}
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	margin-right: calc(-1 * var(--space-large));	/*右マージンをなくす為にネガティブマージンで相殺*/
	padding-bottom: 3vw;
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}
.list-yoko-scroll .list {
	width: 60%;
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 1rem;
	position: relative;
	display: flex;
	flex-direction: column;
}

.list-yoko-scroll .list .text {
	flex: 1;
}
.list-yoko-scroll .list::before,.list-yoko-scroll .list::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 10px;
	border: 0.5px solid #999;
}
.list-yoko-scroll .list::before {
	left: 0px;
	top: 0px;
	border-right: none;
	border-bottom: none;
}
.list-yoko-scroll .list::after {
	right: 0px;
	bottom: 0px;
	border-top: none;
	border-left: none;
}
.list-yoko-scroll h4 {
	margin-bottom: 1rem;
}
.list-yoko-scroll p {
	font-size: 0.9rem;
}
.list-yoko-scroll .name {
	text-align: right;
}
.list-yoko-scroll .name img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	object-position: center;
	border-radius: 50%;
	margin-left: 20px;
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	.list-yoko-scroll .list {
		width: 28%;
		padding: 2rem;
	}
	}/*追加指定ここまで*/
/*お客様の声*/


/* ニュース */
.fanblade-new {

}

.fanblade-new h3{
	margin: 0;
	font-size: 3em;
	line-height: 1em
}
.fanblade-new-contents {

}
.fanblade-new-content {
	display: flex;
}
.fanblade-new-image {
	max-width: none;
	width: 160px;
	height: 100px;
}
.fanblade-new-title {
	margin: 5px;
	text-decoration: none;
}
.fanblade-new-date {
	margin: 5px;
	text-decoration: none;
	color: #666;
}
/* ニュース */

/*box1*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: var(--space-large);
	margin-top: 10vw;
}
/*ボックスの左上イラスト*/
.box1 .illust1 {
	position: absolute;
	right: 0;
	top: 8vw;
	width: 20vw;
	transform: rotate(-10deg);
}
/*ボックスの左上イラスト*/
.box1 .illust2 {
	position: absolute;
	right: 22vw;
	top: 2vw;
	width: 15vw;
	transform: rotate(10deg);
}
/*画像の角を少し丸くする指定*/
.box1-img-div img {
	border-radius: 10px;
	width: 100%;
	margin: 10px 0;
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	.box1 {
		display: flex;
		gap: 5vw;
		border-radius: 20vw 0 20vw 0;
	}
	/*ボックスの左上イラスト*/
	.box1 .illust1 {
		left: 3vw;
		top: -5vw;
		width: 10vw;
	}
	/*ボックスの左上イラスト*/
	.box1 .illust2 {
		left: 15vw;
		top: -5vw;
		width: 6vw;
	}
	}/*追加指定ここまで*/
/*box1*/

.list1.image1 {
	background: url("../images/080.jpg") no-repeat center center / cover;
}
.list1.image2 {
	background: url("../images/076.png") no-repeat center center / cover;
}
.list1.image3 {
	background: url("../images/059.jpg") no-repeat center center / cover;
}
.list1.image4 {
	background: url("../images/053.jpg") no-repeat center center / cover;
}
.list1 {
	padding: var(--space-large);
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;
}
.list1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	transition: transform 0.5s 0.1s;
}
.list1:hover::before {
	transform: translateX(100%);
}
.list1:hover h3 {
	background: rgba(0, 0, 0, 0.6);
	transition: 0.8s;

}
.list1:hover .text-detail  {
	background: rgba(0,0,0,0.6);
	transition: 0.8s;
}
.list1 .text {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 1.5em;
	line-height: 1.5;
}
.list1 .text.reverse {
	margin-left: auto;
}
.list1 h3 {
	margin: 0;
	padding: 5px 0 5px 10px;
	font-weight: normal;
	position: relative;
	font-size: 3rem;
	letter-spacing: 0.1rem;
	line-height: 1.2;
	transition: 0.8s;
}
.list1 .text-detail {
	margin: 0;
	padding: 5px 0 5px 20px;
	transition: 0.8s;
}
.list1 h3 span {
	font-size: 6rem;
}
.btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;
	margin-top: 2rem;
	text-align: center;
	letter-spacing: 0.1em;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}
.btn2 a:hover {
	letter-spacing: 0.2rem;
	box-shadow: none;
}
.btn2 a {
	color: #fff;
	border: 1px solid #fff;
}
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);
}
	@media screen and (min-width:600px) {
	.list1 .text {
		width: 40%;
	}
	}

/*無料体験*/
.list-grid3 {
	margin-bottom: 50px;
}
.list-grid3 .list * {
	margin: 0;padding: 0;
}
.list-grid3 .list {
  display: grid;
	margin-bottom: 2rem;
}
.list-grid3 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}
.list-grid3 .list {
	padding: 1rem;
	background: #fff;
	color: #111;
	grid-template-rows: auto 1fr auto;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
.list-grid3 .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}
.list-grid3 img{
	width :100%;
	object-fit: cover;
	aspect-ratio: 5 / 3;
}
	@media screen and (min-width:800px) {
	.list-grid3 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 3vw;
	}
	.list-grid3 .list {
		margin-bottom: 0;
	}
	}
/*無料体験*/

/*講師紹介*/
.staff-grid .list * {
	margin: 0;padding: 0;
}
.staff-grid .list {
	display: grid;
	margin-bottom: 2rem;
}
.staff-grid .list .text {
	line-height: 1.5;
}
.staff-grid .list {
	padding: 1rem;
	background: #fff;
	color: #111;
  grid-template-rows: auto 1fr auto;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
.staff-grid .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}
.staff-image {
	height: 400px;
	width: 100%;
	object-fit: cover;
	font-size: 2em;
}
.staff-name{
	padding-top: 0;
	padding-bottom: 0;
	font-size: 1.5em;
	letter-spacing: 0.5em;
	line-height: 1;
}
.staff-name span {
	font-size: 3em;
}
	@media screen and (min-width:800px) {
	.staff-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 3vw;
	}
	.staff-grid .list {
		margin-bottom: 0;
	}
	}
/*講師紹介*/

/* 事業内容 */
.business-contents {
	margin: 100px auto 100px;
	width: 70%;
}
.business-contents h3{
	position: relative;
  color: #158b2b;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
}
.business-contents h3:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width:799px) {
	.business-contents {
		width: 90%;
	}
}
/* 事業内容 */

/* 会社概要 */
.company-wrapper table {
	width: 100%;
	min-width: 300px;
}
.company-wrapper tbody {
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
.company-wrapper tr{

}
.company-wrapper th{
  padding: 15px 20px;
	background-color: #eee;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.company-wrapper td{
  padding: 15px 20px;
	background-color: #fff;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
@media screen and (max-width:799px) {
	.company-wrapper table {

	}
	.company-wrapper table tr{
		display:block;
	}
	.company-wrapper table tr th{
		display:block;
		width:auto;
	}
	.company-wrapper table tr td{
		display:block;
	}
}
/* 会社概要 */

.tiktok-block {
	background-color: #ffffff;
  display: block;
}
.tiktok-embed3 {
	display: none !important;
}
	/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {
	.tiktok-block {
		display: flex;
	}
	.tiktok-embed3 {
	display: block !important;
	}
}
/*ボックス全体*/
.title-bg {
	width: 100%;
}
.video {
	width: 100%;
	height: 100%;
}
.video2 {
	width: 100%;
	height: 100%;
}
/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a{
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*上下、左右へのボタン内の余白*/
	margin-top: 2rem;		/*ボタンの上に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
}
/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover{
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	border: 1px solid var(--primary-color);		/*枠線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
}

/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


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

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

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

/*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%;		/*幅*/
		}

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


/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ffdc17 !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 {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);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;}
.bg1 {background: var(--primary-color);color: var(--primary-inverse-color);}.bg1 a {color: inherit;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

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

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


