body {
	/* どれかのコメントアウトを外して、全体の基本フォントを決める */

	/* 【セリフ系】新しい感じ。細いとかすれる基本太字で使う */
	/*font-family: "Times New Roman" , "游明朝体", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;*/

	/* 【セリフ系】細くても読みやすい。古い感じ。 */
	/*font-family: "MS PMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , serif;*/

	/* 【サンセリフ系】新しい感じ。細いとかすれる基本太字で使う */
	font-family: Futura , "Century Gothic", Arial , "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;

	/* 【サンセリフ系】一般的な感じ。細いとかすれる基本太字で使う */
	/*font-family: "Arial", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", sans-serif;*/

	/* 【サンセリフ系】細くても読みやすい。まるっこい */
	/*font-family: "Helvetica Neue" , Arial , "Hiragino Kaku Gothic ProN" , "ヒラギノ角ゴ ProN" , "Hiragino Sans" , Meiryo , "メイリオ" , sans-serif;*/

	/* 【サンセリフ系】細くても読みやすい。文字詰めが窮屈 */
	/*font-family: Arial , "Meiryo UI", "メイリオ", "Meiryo", sans-serif;*/ 

	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
	color: #000000; /* デフォルト文字色#3E3E3E（濃い灰色） */
	position: relative;
}

/* 縦書きの時のフォント指定 */
.p-vertical {
 	writing-mode: vertical-rl;
	display: inline-flex;
	align-items: flex-start;
}

.rich_font_type1 {
	font-family: "Times New Roman" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , serif;
}
.rich_font_type2 {
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , serif;
}
.rich_font_type3 {
	font-family: "Times New Roman" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}
.rich_font_type4 {
	font-family: "Times New Roman" , serif;
}

.rich_font_type5 {
	font-family: Arial , "Hiragino Sans" , "ヒラギノ角ゴ ProN" , "Hiragino Kaku Gothic ProN" , sans-serif;
}
.rich_font_type6 {
	font-family: Arial , "游ゴシック" , "YuGothic" , sans-serif;
}
.rich_font_type7 {
	font-family: Arial , "メイリオ" , "Meiryo" , sans-serif;
}
.rich_font_type8 {
	font-family: Arial , sans-serif;
}

.rich_font_type1b {
	font-family: "Times New Roman" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , serif;
	font-weight:600; 
}
.rich_font_type2b {
	font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , serif;
	font-weight:600; 
}
.rich_font_type3b {
	font-family: "Times New Roman" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight:600; 
}
.rich_font_type4b {
	font-family: "Times New Roman" , serif;
	font-weight:600; 
}

.rich_font_type5b {
	font-family: Arial , "Hiragino Sans" , "ヒラギノ角ゴ ProN" , "Hiragino Kaku Gothic ProN" , sans-serif;
	font-weight:600; 
}
.rich_font_type6b {
	font-family: Arial , "游ゴシック" , "YuGothic" , sans-serif;
	font-weight:600; 
}
.rich_font_type7b {
	font-family: Arial , "メイリオ" , "Meiryo" , sans-serif;
	font-weight:600; 
}
.rich_font_type8b {
	font-family: Arial , sans-serif;
	font-weight:600; 
}


img {
	display: block;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	max-width: 100%;
}
a {
	display: inline-block;
	text-decoration: none;
	color: #26b7bc;/* リンク文字の色 */
	transition: all .3s;
}
a img {
	transition: all .3s;
}
a:hover {
	color: #00a0e9;/* ホバー時の色 */
}
a:hover img {
	opacity: 0.8;
}
p {
	line-height: 1.8;
}
span {
	display: inline-block;
}
/* デフォルトの装飾を削除 
input, textarea {
	-webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:focus {
    outline: -webkit-focus-ring-color none;
}
*/

/* select を div で囲む */
.select {
	width: 100%;
	position: relative;
}
.select::before {
	content: "";
	display: block;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 5px solid transparent;
    border-top: 5px solid #3E3E3E;
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -3px;
}
select {
	-webkit-appearance: none;
	width: 100%;
	height: 36px;
	background: transparent;
	padding: 0 10px;
	font-size: 16px;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}


/* オープニング動画後のフェードアウト用 */
.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* オープニング動画後のフェードイン用 */
.fade-in {
    opacity: 1;
    transition: opacity 1s ease-in;
}


/* メインスライド */
.main_slide {
	width: 100%;
	position: relative;
}
.main_slide .main_logo {
	width: 25%;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

/* メインスライド＿フル */
#full {
	position: relative;
	left: 0;
	top: 0;
	z-index: 1;
}



/* メイン動画 */
.visual {
	position: relative;
	width: 100%;
	height: 100vh;
}

.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

/* FIXメイン動画 */
.dummy_box{
	padding-top:600px;
}


.visual_fix {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: -9999;
}

.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}

.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}

/* BOXレイアウト */
.box_text{
	height: auto;
	width:auto;
	z-index: 1;
}
.box_right {
	position: relative;
}
.box_left {
	position: relative;
}

.box_right img{
	position: absolute;
	height: 300px;
	object-fit: cover;
	object-position: right top;/* 画像が左の時バージョン */
}
.box_right p{
	padding:10px;
	height: 300px;
}

.box_left img{
	position: absolute;
	height: 300px;
	width: auto;
	object-fit: cover;
	object-position: left top;/* 画像が右の時バージョン */
}

.box_left p{
	padding:10px;
	height: 300px;
	text-align: right;
}


/*==================================================================================
ヘッダー
==================================================================================*/
/* ロゴの横に1行目のメニューが入るヘッダー ---------------------*/
header {
	width: 100%;
	z-index: 9999;
	padding-top: 0px!important;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.0);/* ヘッダー部分の背景色（htmlで指定するのでここでは無色） ---------------------*/
	padding-bottom: 20px;
}
header .logo {
	width: 185px;/* ロゴサイズ（実際のロゴサイズに合わせて調整） ---------------------*/
}
header .head_nav {
	width: calc(100% - 300px);/* ロゴと並ぶ1行目のヘッダーボタンの入る幅（実際のロゴサイズに合わせて調整） ---------------------*/
}
header .head_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;/* ロゴと並ぶ1行目のヘッダーボタンの始まり位置（start：左詰め end：右詰め） ---------------------*/
	width: 100%;
	padding: 0;
	border-bottom: none;
}
header .head_nav ul li {
	margin: 0 0 0 30px;
}
header .head_nav ul li:first-child {
	margin: 0;
}
header .head_nav ul li a {
	display: block;
	color: #dddddd;/* ロゴと並ぶ1行目のヘッダー部分のリンク文字の色 ---------------------*/
	font-size: 16px;
	font-weight: bold;
}
header .head_nav ul li a:hover {
	color: #00a0e9;/* ロゴと並ぶ1行目のヘッダー部分のリンク文字のホバー時の色 ---------------------*/
}


header .head_nav2 {
	width: 100%;/* 2行目のヘッダーボタンの入る幅 ---------------------*/
}
header .head_nav2 ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;/* 2行目のヘッダーボタンの始まり位置（start：左詰め end：右詰め） ---------------------*/
	width: 100%;
	padding: 0;
	border-bottom: none;
}
header .head_nav2 ul li {
	margin: 0 0 0 30px;
}
header .head_nav2 ul li:first-child {
	margin: 0;
}
header .head_nav2 ul li a {
	display: block;
	color: #ffffff;/* 2行目のヘッダー部分のリンク文字の色 ---------------------*/
	font-size: 16px;
	font-weight: bold;
}
header .head_nav2 ul li a:hover {
	color: #00a0e9;/* 2行目のヘッダー部分のリンク文字のホバー時の色 ---------------------*/
}
/* ロゴの下の行にメニューが入るヘッダー ---------------------*/
header.second {
	padding-top: 30px!important;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.0);/* ヘッダー部分の背景色 ---------------------*/
	padding-bottom: 20px;
}
header.second .logo {
	width: 310px;/* ロゴサイズ ---------------------*/
}
header.second .head_nav {
	width: 100%;/* ヘッダーボタンの入る幅 ---------------------*/
}
header.second .head_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;/* ヘッダーボタンの始まり位置（start：左詰め end：右詰め） ---------------------*/
	width: 100%;
	padding: 0;
	border-bottom: none;
}
header.second .head_nav ul li {
	margin: 0 0 0 30px;
}
header.second .head_nav ul li:first-child {
	margin: 0;
}
header.second .head_nav ul li a {
	display: block;
	color: #3e3e3e;/* ヘッダー部分のリンク文字の色 ---------------------*/
	font-size: 16px;
	font-weight: bold;
}
header.second .head_nav ul li a:hover {
	color: #00a0e9;/* ヘッダー部分のリンク文字のホバー時の色 ---------------------*/
}
/* スマホ版 メニュー -----------------------*/
nav.globalMenuSp {
    z-index: 8888;
    width: 100%;
	height: calc(100% - 240px);
	padding: 120px 0;
	background: rgba(0,0,0,0.95);
	list-style-type: none;
    position: fixed;
    top: 0;
    left: 0;
}
nav.globalMenuSp ul {
    width: calc(100% - 80px);
	max-width: 540px;
	margin: auto;
}
nav.globalMenuSp ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li a {
    display: block;
	padding: 20px 0;
	color: #fff;
	/*font-weight: bold;スマホ版メニューの文字の太さ */
}

.navToggle {
    z-index: 9999;
    display: block;
    width: 22px;
    height: 22px;
    text-align: center;
    cursor: pointer;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 15px;    /* バーガーアイコンの位置 */
    top: 25px;
}
.navToggle span {
    display: block;
    width: 100%;
    border-bottom: solid 2px #dddddd;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;    /* .navToggleに対して */
    left: 0;
}
.navToggle span:nth-child(1) {
    top: 3px;
}
.navToggle span:nth-child(2) {
    top: 9px;
}
.navToggle span:nth-child(3) {
    top: 15px;
}
.navToggle.active span {
    border-bottom: solid 2.5px #fff;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 10px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
main {
	padding-bottom: 0px;
}
section {
	padding: 0px 0!important;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 0px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.just_end {
	justify-content: flex-end;
}
.row.align_center {
	align-items: center;
}
.col4 {
	width: calc(100% / 4 - 23px);
}
.col4_3 {
	width: calc(75% - 7px);
}
.col3 {
	width: calc(100% / 3 - 20px);
}
.col10_3 {
	width: 30%;
}
.col10_7 {
	width: calc(70% - 30px);
}
.col3_1 {
	width: calc(100% / 3 - 20px);
}
.col3_2 {
	width: calc(70% - 50px);
}
.col2n {
	width: calc(100% / 2 - 15px);
}
.col2 {
	width: calc(100% / 2 - 30px);
}
.tb_wrap {
	display: none;
} 
.sp_wrap {
	display: none;
} 

/* スペース */
.mt_5 {
	margin-top: 5px;
}
.mt_10 {
	margin-top: 10px;
}
.mt_20 {
	margin-top: 20px;
}

.mb_5 {
	margin-bottom: 5px;
}
.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_50 {
	margin-bottom: 50px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_70 {
	margin-bottom: 70px;
}
.mb_80 {
	margin-bottom: 80px;
}
.mb_90 {
	margin-bottom: 90px;
}
.mb_100 {
	margin-bottom: 100px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mb_150 {
	margin-bottom: 150px;
}
.mb_200 {
	margin-bottom: 200px;
}

.mr_10 {
	margin-right: 10px;
}
.mr_100 {
	margin-right: 100px;
}
.mr_150 {
	margin-right: 150px;
}
.mr_200 {
	margin-right: 200px;
}

.ml_100 {
	margin-left: 100px;
}
.ml_150 {
	margin-left: 150px;
}
.ml_200 {
	margin-left: 200px;
}

/* フォント */
h1 {
	font-size: 46px;
	padding-bottom: 10px!important;
	border-bottom: 1px #969696 solid!important;
	color: #969696;
}
h1.white {
	border-bottom: 1px #fff solid!important;
	color: #fff;
}
h2 {
	font-size: 28px;
	color: #969696;
}
h2 span {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
}

.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_16 {
	font-size: 16px;
}
.font_18 {
	font-size: 18px;
}
.font_20 {
	font-size: 20px;
}
.font_26 {
	font-size: 26px;
	line-height: 1.4;
}
.font_34 {
	font-size: 34px;
	line-height: 1.4;
}
.font_38 {
	font-size: 38px;
	line-height: 1.4;
}
.font_44 {
	font-size: 44px;
	line-height: 1.4;
}
.font_50 {
	font-size: 50px;
	line-height: 1.4;
}
.font_56 {
	font-size: 56px;
	line-height: 1.4;
}
.font_70 {
	font-size: 70px;
	line-height: 1.4;
}
.font_80 {
	font-size: 80px;
	line-height: 1.4;
}
.font_120 {
	font-size: 120px;
	line-height: 1.4;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.txt_left {
	text-align: left;
}
.bold {
	font-weight: bold;
}
.link {
	text-decoration: underline;
}
.white {
	color: #fff;
}
.base {
	color: #3e3e3e;
}
.orange {
	color: #f39800;
}
.blue {
	color: #0081cc;
}
.red {
	color: #e85298;
}
.lblue {
	color: #009fb4;
}
.ygreen {
	color: #82bf25;
}
.purple {
	color: #796baf;
}

/* インデント（2行目から文字下げ） */
.indent1 {
  text-indent: -0.5em;
  padding-left: 1em;
}
.indent2 {
  text-indent: -1em;
  padding-left: 2em;
}
.indent3 {
  text-indent: -1.5em;
  padding-left: 3em;
}
.indent4 {
  text-indent: -2em;
  padding-left: 4em;
}
.indent5 {
  text-indent: -2.5em;
  padding-left: 5em;
}
.indent6 {
  text-indent: -3em;
  padding-left: 6em;
}

/* 水平線 */
hr {
    height: 2px;
    background-color: #0081cc;
    border: none;
}
hr.white {
    height: 2px;
    background-color: #ffffff;
    border: none;
}
/* ボタン */
.btn {
	width: 100%;
	max-width: 360px;
	padding: 15px 0;
	border: 2px #26b7bc solid;
	border-radius: 30px;/* ボタン角丸 */
	background: #26b7bc;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.btn.short {
	width: auto;
	min-width: 200px;
	padding: 12px;
}
.btn.frame {
	border: 2px #003686 solid;
	background: none;
	color: #003686;
}
.btn.frame2 {
	border: 2px #ffffff solid;
	background: none;
	color: #ffffffc;
}
.btn:hover {
	background: #ffffff;
	color: #26b7bc;
}
.btn.frame:hover {
	background: #003686;
	color: #ffffff;
}
.btn.frame2:hover {
	background: #ffffff;
	color: #003686;
}

/* 背景画像 */
.bg_box {
	padding: 120px 0;
	position: relative;
	/* background-color: #0078DB; */
}
.bg_box0 {
	padding: 0px 0;/* 背景上詰め */
	position: relative;
	/* background-color: #0078DB; */
}
.bg_box_white {
	padding: 0px 0;/* 背景上詰め */
	position: relative;
	background-color: #ffffff;
}
.bg_img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg_img img {
	height: 100%;
	object-fit: cover;
}
.bg_img2 img {
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* 背景中央配置＆スマホ画像切り替え */

.bgc_01 {
	background-image: url('../img/bg01.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_02 {
	background-image: url('../img/bg02_2.png'),url('../img/bg02.png');
	background-position: bottom center,top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_03 {
	background-image: url('../img/bg03.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_04 {
	background-image: url('../img/bg04.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_05 {
	background-image: url('../img/bg05.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_06 {
	background-image: url('../img/bg06.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_07 {
	background-image: url('../img/bg07.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	background-size: cover;
}
.bgc_08 {
	background-image: url('../img/bg08.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_09 {
	background-image: url('../img/bg09.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: repeat-y; /* 画像を繰り返し表示*/
	background-attachment: fixed;
	overflow-x: hidden;
}
.bgc_10 {
	background-image: url('../img/bg10.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_11 {
	background-image: url('../img/bg11.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_12 {
	background-image: url('../img/bg12.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_13 {
	background-image: url('../img/bg13.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_14 {
	background-image: url('../img/bg14.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_15 {
	background-image: url('../img/bg15.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_16 {
	background-image: url('../img/bg16.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_17 {
	background-image: url('../img/bg17.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_18 {
	background-image: url('../img/bg18.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_19 {
	background-image: url('../img/bg19.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_20 {
	background-image: url('../img/bg20.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_21 {
	background-image: url('../img/bg21.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
.bgc_22 {
	background-image: url('../img/bg22.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_23 {
	background-image: url('../img/bg23.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_24 {
	background-image: url('../img/bg24.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_25 {
	background-image: url('../img/bg25.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_26 {
	background-image: url('../img/bg26.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_27 {
	background-image: url('../img/bg27.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_28 {
	background-image: url('../img/bg28.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_29 {
	background-image: url('../img/bg29.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

.bgc_30 {
	background-image: url('../img/bg30.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}

/* マウスオンでズーム【570px画像】 */
/* マウスオンでズームする画像 - 黒い背景 */
.zoom_570.black::before {
  background: rgba(0, 0, 0, .7); /* マウスオンでズームした時の透過色を黒に変更 */
}

/* マウスオンでズームする画像 - 白い背景 */
.zoom_570.white::before {
  background: rgba(255, 255, 255, .7); /* マウスオンでズームした時の透過色を白に変更 */
}

.zoom_570 {
  cursor: pointer;
  overflow: hidden;
  max-width: 570px;
  position: relative;
}

.zoom_570 img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

.zoom_570:hover img {
  transform: scale(1.2); /* 拡大 */
}

.zoom_570 p {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%; /* テキストを横幅いっぱいにならないようにする */
  z-index: 2;
}

.zoom_570::before {
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0; /* 最初は透明（非表示） */
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
  z-index: 1;
}

.zoom_570:hover::before {
  opacity: 1;
}

/* マウスオンでズーム【380px画像】 */
/* マウスオンでズームする画像 - 黒い背景 */
.zoom_380.black::before {
  background: rgba(0, 0, 0, .7); /* マウスオンでズームした時の透過色を黒に変更 */
}

/* マウスオンでズームする画像 - 白い背景 */
.zoom_380.white::before {
  background: rgba(255, 255, 255, .7); /* マウスオンでズームした時の透過色を白に変更 */
}

.zoom_380 {
  cursor: pointer;
  overflow: hidden;
  max-width: 380px;
  position: relative;
}

.zoom_380 img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

.zoom_380:hover img {
  transform: scale(1.05); /* 拡大 */
}

.zoom_380 p {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%; /* テキストを横幅いっぱいにならないようにする */
  z-index: 2;
}

.zoom_380::before {
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0; /* 最初は透明（非表示） */
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
  z-index: 1;
}

.zoom_380:hover::before {
  opacity: 1;
}

/* マウスオンでズーム【277px画像】 */
/* マウスオンでズームする画像 - 黒い背景 */
.zoom_277.black::before {
  background: rgba(0, 0, 0, .7); /* マウスオンでズームした時の透過色を黒に変更 */
}

/* マウスオンでズームする画像 - 白い背景 */
.zoom_277.white::before {
  background: rgba(255, 255, 255, .7); /* マウスオンでズームした時の透過色を白に変更 */
}

.zoom_277 {
  cursor: pointer;
  overflow: hidden;
  max-width: 277px;
  position: relative;
}

.zoom_277 img {
  height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
}

.zoom_277:hover img {
  transform: scale(1.05); /* 拡大 */
}

.zoom_277 p {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%; /* テキストを横幅いっぱいにならないようにする */
  z-index: 2;
}

.zoom_277::before {
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 0; /* 最初は透明（非表示） */
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
  z-index: 1;
}

.zoom_277:hover::before {
  opacity: 1;
}

/*　マウスオンズーム画像のはみ出し部分をマスクする　*/
.mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
/* 遷移先でフェードイン */
.fade_trans {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    animation: fade_trans 1.4s;
}
@keyframes fade_trans {
    0% {opacity: 1;}
    10% {opacity: 1;}
    100% {opacity: 0;}
}

/*==================================================================================
INDEX
==================================================================================*/
/* お知らせリスト ------------------*/
ul.news_list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}
ul.news_list li {
	width: 100%;
	margin-bottom: 15px;
}
/* カテゴリボタン */
.category {
	display: inline-block;
	padding: 5px 15px;
	background: #003686;
	color: #fff;
	font-size: 14px;
}
.category:hover {
	background: #0078DB;
	color: #fff;
}

/* メイン画像フェード切り替え ------------*/
#bg_fix {
	height: 0vh;
}
.fade_img {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.fade_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.fade_img img.show {
	animation: zoom_img 5s linear;
}
@keyframes zoom_img {
	0% {opacity: 0; transform: translate(-50%,-50%) scale(1.1);}
	25% {opacity: 1; transform: translate(-50%,-50%) scale(1.075);}
	100% {opacity: 1; transform: translate(-50%,-50%) scale(1.02);}
}
.fade_img img.fadeout {
	animation: fadeout 1s linear;
}
@keyframes fadeout {
	0% {opacity: 1; transform: translate(-50%,-50%) scale(1.02);}
	100% {opacity: 0; transform: translate(-50%,-50%) scale(1);}
}

/* 全画面動画 */
.mov_full {
    width: 100%;
    height: 100vh;
    background: #000;
    position: relative;
}
.mov_full video {
    display: block;
    width: 100%;
}
.mov_full .btn_skip {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 30px;
    color: #333;
    position: absolute;
    top: 30px;
    right: 0;
    transform: translateX(-50%);
    z-index: 2;
}

/*==================================================================================
下層ページ
==================================================================================*/
#second_top {
	padding: 100px 0 100px!important;
	overflow: hidden;
	position: relative;
}
#second_top .bg_img {
	position: fixed;
}
#second_top h1 {
	border-bottom: 1px #3E3E3E solid!important;
	color: #3E3E3E;
}
main.second {
	background: #fff;
}

/* 背景グレー */
.bg_gray {
	padding: 60px;
	background: #E7E7E7;
}


/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: 60px;
	position: fixed;
	right: 60px;
	bottom: 60px;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
/*background-image: url(../img/service_bg.jpg);*/
padding: 0px 0!important;
background-attachment: fixed;
color: #FFFFFF;
}
footer a {
	color: #FFFFFF;
}
footer a.link {
	color: #003686;
}
footer .info {
	width: 390px;
}
footer .foot_nav {
	width: calc(100% - 390px - 30px);
}
footer .foot_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
}
footer .foot_nav ul li {
	margin: 0 0 15px 30px;
}
footer .foot_nav ul li a {
	padding-bottom: 5px;
	border-bottom: 2px #3E3E3E solid;
	color: #FFFFFF;/*==ボタン色==*/
	font-size: 14px;
	font-weight: bold;
}
footer .foot_nav ul li a:hover {
	color: #0078DB;
	border-bottom: 2px #0078DB solid;
}


.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}


@media screen and (max-width : 840px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	/* 下層ページ ヘッダー ---------------------*/
	header.second {
		padding-top: 20px!important;
	}
	header.second .logo {
		width: 290px;/* ロゴサイズ ---------------------*/
	}
	header.second .head_nav {
		width: calc(100% - 300px);/* ロゴと並ぶヘッダーボタンの始まり位置 ---------------------*/
	}
	header.second .head_nav ul li {
		margin: 0 0 0 30px;
	}
	header.second .head_nav ul li a {
		font-size: 14px;
	}
}


@media screen and (max-width : 768px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p {
		font-size: 14px;
		line-height: 1.6;
	}
	
	/* メインスライド */
	.main_slide .main_logo {
		width: 50%;
		max-width: 300px;
	}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .head_nav ul {
		display: none;
	}
	/* 下層ページ ヘッダー ---------------------*/
	header.second .logo {
		width: 290px;/* ロゴサイズ ---------------------*/
	}
	header.second .head_nav {
		display: none;
	}

	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		padding-bottom: 0px;
	}
	section {
		padding: 0px 0!important;
	}
	.container {
		max-width: 460px;
	}
	.col4_3,
	.col3,
	.col10_3,
	.col10_7,
	.col3_1,
	.col3_2,
	.col2n,
	.col2 {
		width: 100%;
		margin-bottom: 0px;
	}
	.col4 {
		width: calc(50% - 15px);
		margin-bottom: 0px;
	}
	.dummy {
		margin-bottom: 0;
	}
	.order2 {
		order: 2;
	}
	.tb_wrap {
		display: block;
		width: 100%;
	}

	/* スペース */
	.mb_10 {
		margin-bottom: 8px;
	}
	.mb_20 {
		margin-bottom: 16px;
	}
	.mb_30 {
		margin-bottom: 24px;
	}
	.mb_40 {
		margin-bottom: 32px;
	}
	.mb_50 {
		margin-bottom: 40px;
	}
	.mb_60 {
		margin-bottom: 48px;
	}
	.mb_70 {
		margin-bottom: 56px;
	}
	.mb_80 {
		margin-bottom: 64px;
	}
	.mb_90 {
		margin-bottom: 72px;
	}
	.mb_100 {
		margin-bottom: 80px;
	}
	.mb_120 {
		margin-bottom: 96px;
	}
	.mb_150 {
		margin-bottom: 120px;
	}
	.mb_200 {
		margin-bottom: 160px;
	}

	.mr_10 {
		margin-right: 8px;
	}
	.mr_100 {
		margin-right: 80px;
	}
	.mr_150 {
		margin-right: 120px;
	}
	.mr_200 {
		margin-right: 160px;
	}

	.ml_100 {
		margin-left: 80px;
	}
	.ml_150 {
		margin-left: 120px;
	}
	.ml_200 {
		margin-left: 160px;
	}

	/* フォント */
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 20px;
	}
	h2 span {
		margin-bottom: 8px;
		font-size: 12px;
	}
	.font_12 {
		font-size: 10px;
	}
	.font_14 {
		font-size: 11px;
	}
	.font_16 {
		font-size: 13px;
	}
	.font_18 {
		font-size: 15px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_26 {
		font-size: 21px;
	}
	.font_34 {
		font-size: 27px;
	}
	.font_38 {
		font-size: 30px;
	}
	.font_44 {
		font-size: 35px;
	}
	.font_50 {
		font-size: 40px;
	}
	.font_56 {
		font-size: 45px;
	}
	.font_70 {
		font-size: 56px;
	}
	.font_80 {
		font-size: 64px;
	}
	.font_120 {
		font-size: 96px;
	}

	/* ボタン */
	.btn.short {
		min-width: 120px;
		padding: 10px;
		font-size: 14px;
	}

	/* 背景中央配置＆スマホ画像切り替え */
	.bgc_01 {
		background-image: url('../img/mbg01.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_02 {
		background-color: #fff;
		background-image: url('../img/mbg02_2.png'),url('../img/mbg02.png');
		background-position: bottom center,top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_03 {
		background-image: url('../img/mbg03.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_04 {
		background-image: url('../img/mbg04.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_05 {
		background-image: url('../img/mbg05.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_06 {
		background-image: url('../img/mbg06.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_07 {
		background-image: url('../img/mbg07.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_08 {
		background-image: url('../img/mbg08.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_09 {
		background-image: url('../img/mbg09.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: repeat-y; /* 画像を繰り返し表示*/
	}
	.bgc_10 {
		background-image: url('../img/mbg10.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_11 {
		background-image: url('../img/mbg11.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_12 {
		background-image: url('../img/mbg12.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_13 {
		background-image: url('../img/mbg13.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_14 {
		background-image: url('../img/mbg14.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_15 {
		background-image: url('../img/mbg15.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_16 {
		background-image: url('../img/mbg16.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_17 {
		background-image: url('../img/mbg17.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_18 {
		background-image: url('../img/mbg18.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_19 {
		background-image: url('../img/mbg19.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_20 {
		background-image: url('../img/mbg20.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_21 {
		background-image: url('../img/mbg21.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_22 {
		background-image: url('../img/mbg22.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_23 {
		background-image: url('../img/mbg23.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_24 {
		background-image: url('../img/mbg24.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_25 {
		background-image: url('../img/mbg25.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_26 {
		background-image: url('../img/mbg26.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_27 {
		background-image: url('../img/mbg27.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_28 {
		background-image: url('../img/mbg28.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_29 {
		background-image: url('../img/mbg29.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}
	.bgc_30 {
		background-image: url('../img/mbg30.png');
		background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
		background-repeat: no-repeat; /* 画像を繰り返し表示しない */
	}

	/* 背景画像 -----------------------*/
	.bg_box {
		padding: 80px 0;
	}

	/*==================================================================================
	INDEX
	==================================================================================*/
	/* カテゴリボタン */
	.category {
		padding: 5px 10px;
		font-size: 10px;
	}

	/*==================================================================================
	下層ページ
	==================================================================================*/
	#second_top {
		padding: 160px 0 80px!important;
	}
	/* 背景グレー */
	.bg_gray {
		padding: 20px;
	}

	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: 50px;
		right: 20px;
		bottom: 20px;
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 0px 0!important;
	}
	footer .container {
		max-width: 100%;
	}
	footer .info {
		width: 100%;
		margin-bottom: 40px;
	}
	footer .foot_nav {
		width: 100%;
	}
	footer .foot_nav ul {
		justify-content: flex-start;
	}
	footer .foot_nav ul li {
		margin: 0 20px 15px 0;
	}
	footer .foot_nav ul li a {
		font-size: 14px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	
	/*==================================================================================
	共通
	==================================================================================*/
	.sp_wrap {
		display: block;
		width: 100%;
	} 
}


/*==================================================================================
====================================================================================
CC追記
==================================================================================*/
.row.just_center {
	justify-content: center;
}

.yay {
    opacity: 0;
    transform: translateY(2px);
    transition: all 1s;
}
.yay.fadeinup {
    transform: translateY(20px);
}
.yay.on {
    transform: translateY(0);
    opacity: 1;
}
.yay.fadeinup.second.on {
    animation: yay_up_2nd 1.2s;
}
@keyframes yay_up_2nd {
	0% {opacity: 0; transform: translateY(20px);}
	16.66% {opacity: 0; transform: translateY(20px);}
	100% {opacity: 1; transform: translateY(0);}
}
.yay.fadeinup.third.on {
    animation: yay_up_3rd 1.4s;
}
@keyframes yay_up_3rd {
	0% {opacity: 0; transform: translateY(20px);}
	28.57% {opacity: 0; transform: translateY(20px);}
	100% {opacity: 1; transform: translateY(0);}
}
.yay.fadeinup.forth.on {
    animation: yay_up_4th 1.6s;
}
@keyframes yay_up_4th {
	0% {opacity: 0; transform: translateY(20px);}
	37.5% {opacity: 0; transform: translateY(20px);}
	100% {opacity: 1; transform: translateY(0);}
}

.font_30 {
	font-size: 30px;
	line-height: 1.4;
}
.line1 {
	line-height: 1;
}
.line1_2 {
	line-height: 1.2;
}
.line1_4 {
	line-height: 1.4;
}
.gray {
	color: #999;
}
.news,
.company,
.contact {
	background-image: url('../img/bg24.png');
	background-position: top center; /* 画像を上詰めに配置し、横方向は中央 */
	background-repeat: no-repeat; /* 画像を繰り返し表示しない */
}
/*==================================================================================
INDEX
==================================================================================*/
section#data video {
	width: 100%;
	max-width: 860px;
}
section#data .col4 {
	width: 23.5%;
	box-sizing: border-box;
	padding: 20px;
	background: linear-gradient(45deg, rgba(97,193,190,0.70) 0%, rgba(255,255,255,0.7) 100%);
	border-radius: 40px;
}
section#data .col4 .icon img {
	width: 45%;
	margin: auto;
}
section#data .countup .number {
	font-size: min(5vw, 70px);
}
section#data .countup .number + span {
	font-size: min(2vw, 26px);
}
/*==================================================================================
NEWS
==================================================================================*/
section#news .col4 a {
	display: block;
	height: 210px;
	border-radius: 20px;
	overflow: hidden;
}
section#news .col4 a img {
	width: 100%;
	height: 100%!important;
	object-fit: cover;
}
section#news article h1 {
	margin-bottom: 1.5em;
	font-size: 1.875rem;
	color: #000;
	border-bottom: 1px #26b7bc solid!important;
}
section#news article h2 {
	margin-bottom: 1.5em;
	font-size: 1.625rem;
	color: #000;
}
section#news article h3 {
	margin-bottom: 1.5em;
	font-size: 1.375rem;
}
section#news article h4 {
	margin-bottom: 1.5em;
	font-size: 1.125rem;
}
section#news article p {
	margin-bottom: 1.5em;
}
/* WP-pagenavi */
section#news .wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
}
section#news .wp-pagenavi a,
section#news .wp-pagenavi span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border: 1px #303030 solid;
	border-radius: 50%;
	box-sizing: border-box;
	color: #303030;
	font-size: 14px;
	text-decoration: none!important;
}
section#news .wp-pagenavi span.current {
	background: #303030;
	color: #fff;
}
section#news .wp-pagenavi span.extend {
	width: auto;
	border: none;
}
section#news .wp-pagenavi a:hover {
	background: rgba(0,0,0,0.10);
}
/*==================================================================================
EXAMPLE
==================================================================================*/
section#example .cont {
	width: calc(100% - 240px - 80px);
}
section#example .side {
	width: 240px;
	box-sizing: border-box;
	padding: 0 0 0 30px;
	border-left: 1px #ccc solid;
}
/*==================================================================================
BUSINESS
==================================================================================*/
section#business_index .boad {
    padding: 40px 50px;
    background: url("../img/business/01_00.jpg") left center / cover no-repeat;
    border-radius: 50px;
    color: #fff;
}
section#business_index .boad:nth-child(1) {
    margin-top: 70px;
}
section#business_index .boad:nth-child(2) {
    background-image: url("../img/business/02_00.jpg");
}
section#business_index .boad:nth-child(3) {
    background-image: url("../img/business/03_00.jpg");
}
section#business_index .boad:nth-child(4) {
    background-image: url("../img/business/04_00.jpg");
}
section#business_index .boad .font_44 {
    letter-spacing: 0.03em;
}
section#business_index .boad .btn {
    background: #fff;
    border: none;
    color: #26b7bc;
}
section#business_index .boad .btn:hover {
    background: #26b7bc;
    color: #fff;
}
/* 詳細トップ */
section#business_main .img {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.7);
}
/* 詳細1〜5 */
section#business .business {
	width: calc(100% - 8vw);
	box-sizing: border-box;
	margin: 0 0 80px;
	padding: 40px;
	border-radius: 0 20px 20px;
	background: #e9e6f3;
	position: relative;
}
section#business .business:first-child {
	margin: 120px 0 80px;
}
section#business .business:nth-child(even) {
	margin: 0 0 80px auto;
	border-radius: 20px 0 20px 20px;
	background: #d3edfb;
}
section#business .business .num {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 56px;
	box-sizing: border-box;
	padding: 0 25px 0 0;
	background: url("../img/business/num_tab.png") left bottom / contain no-repeat;
	color: #fff;
	line-height: 1;
	position: absolute;
	top: -56px;
	left: 0;
}
section#business .business:nth-child(even) .num {
	padding: 0 0 0 25px;
	background-image: url("../img/business/num_tab02.png");
	background-position: right bottom;
	left: auto;
	right: 0;
}
section#business .business .num span {
	letter-spacing: 0.05em;
	transform: skewX(-5deg);
}
section#business .business:nth-child(even) p {
	text-align: right;
}
section#business .business .col2n {
    z-index: 2;
}
section#business .business .img {
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}
section#business .business .img img {
	height: 100%;
	object-fit: cover;
}
/* リンク */
#business .boad {
    padding: 40px;
    background: #fff;
    border-radius: 40px;
}
#business .boad .row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 135px;
	position: relative;
	color: #fff;
}
#business .boad .row a img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#business .boad .row a .eng {
	color: rgba(255,255,255,0.6);
	letter-spacing: -0.02em;
	position: absolute;
	top: 10px;
	left: 10px;
}
#business .boad .row a p:last-child {
	position: relative;
	top: 5px;
	z-index: 2;
}
/*==================================================================================
COMPANY
==================================================================================*/
section#group .col3 {
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
}
section#group .col3.dummy {
    padding: 0;
    background: none;
}
section#group .col3 .logo {
    width: 22%;
}
section#group .col3 .txt {
    width: calc(78% - 10px);
}
/*==================================================================================
RECRUIT
==================================================================================*/
section#rec_main {
    padding: 120px 0 300px!important;
    background: #fff;
	position: relative;
}
section#rec_main .road {
	display: block;
	width: 100%;
	height: 100%;
    background: url("../img/recruit/main_bg02.png") center top / cover no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}
section#rec_main .road::after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	background: #fff;
	/*clip-path: polygon(0 50%, 30% 6%, 50% 0, 52% 0, 70% 6%, 100% 50%, 100% 100%, 0 100%);*/
	position: absolute;
	top: 0;
	left: 0;
}
section#rec_main .road.yay.on::after {
	animation: road_up 2.6s;
}
@keyframes road_up {
    0% {height: 100%;}
    38.46% {height: 100%;}
    100% {height: 0;}
}
section#rec_main .sky {
	display: block;
	width: 100%;
	height: 100%;
    background: url("../img/recruit/main_bg01.png") center top / cover no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
section#rec_main .container {
    position: relative;
	z-index: 3;
}
section#rec_main img.ttl {
    width: 65%;
}
section#rec_main img.p01 {
    width: 40%;
    margin: -2% auto 0 33%;
    animation: rec_main_p1 1.4s;
}
@keyframes rec_main_p1 {
	0% {opacity: 0; transform: translateY(100px);}
	42.85% {opacity: 0; transform: translateY(100px);} /* .6s */
	100% {opacity: 1; transform: translateY(0);}
}
section#rec_main img.p02,
section#rec_main img.p03,
section#rec_main img.p04 {
    width: 25%;
    position: absolute;
}
section#rec_main img.p02 {
    top: 0;
    right: 14%;
    transform-origin: center bottom;
	animation: rec_main_p 2.4s, rec_main_p2 3.4s infinite;
}
section#rec_main img.p03 {
    top: 50%;
    left: 2%;
	animation: rec_main_p 2.4s, rec_main_p3 3s infinite;
}
section#rec_main img.p04 {
    top: 40%;
    right: 0;
	animation: rec_main_p 2.4s, rec_main_p4 3.8s infinite;
}
@keyframes rec_main_p {
	0% {opacity: 0;}
	75% {opacity: 0;} /* 1.8s */
	100% {opacity: 1;}
}
@keyframes rec_main_p2 {
	0% {transform: rotate(0)}
	70.58% {transform: rotate(0)}
	76.47% {transform: rotate(5deg)}
	82.35% {transform: rotate(0)}
	100% {transform: rotate(0)}
}
@keyframes rec_main_p3 {
	0% {transform: translateY(0) scale(1);}
	60% {transform: translateY(0) scale(1);}
	66.66% {transform: translateY(-10px) scale(1.02);}
	73.33% {transform: translateY(0) scale(1);}
	100% {transform: translateY(0) scale(1);}
}
@keyframes rec_main_p4 {
	0% {transform: scale(1);}
	57.89% {transform: scale(1);}
	63.15% {transform: scale(1.04);}
	68.42% {transform: scale(1);}
	100% {transform: scale(1);}
}
.bg_pipe {
	padding-bottom: 30vw;
	background: url("../img/recruit/bg02.png") center top / cover no-repeat;
	position: relative;
}
.bg_pipe h2 {
	font-size: min(5vw,56px);
    transform: skewX(-6deg);
}
.bg_pipe .btm_wt {
	display: block;
	width: 100%;
	height: 40vw;
	background: url("../img/recruit/bg02_2.png") center top / cover no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
}
.bg_pipe .btm_wt.yay.on {
	animation: pipe_water 1.4s;
}
@keyframes pipe_water {
	0% {opacity: 0; transform: translateY(10vw);}
	42.85% {opacity: 0; transform: translateY(10vw);}
	100% {opacity: 1; transform: translateY(0);}
}
/* MESSAGE -----------------------------------*/
section#rec_message {
	margin-top: -240px;
}
section#rec_message .container {
    position: relative;
}
section#rec_message .txt {
    padding: 40px;
    background: #00a0e9;
	position: absolute;
	top: -60px;
	left: 0;
	z-index: 2;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
}
section#rec_message a {
	display: block;
    width: 58%;
	height: 400px;
	margin: 60px 0 0 auto;
	overflow: hidden;
	border-radius: 40px;
	position: relative;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
}
section#rec_message a img {
	width: 100%;
    height: 100%;
	object-fit: cover;
	position: relative;
	transition: all .6s;
}
section#rec_message a:hover img {
	opacity: 1;
	filter: brightness(.8);
	transform: scale(1.05);
}
section#rec_message a h3.font_44 {
    position: absolute;
	text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 8px rgba(255,255,255,0.8), 0 0 8px rgba(255,255,255,0.8), 0 0 8px rgba(255,255,255,0.8);
	top: 40px;
	left: 25%;
	z-index: 2;
}
section#rec_message a h3.font_20 {
    position: absolute;
	letter-spacing: 0.05em;
	text-shadow: 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8);
	bottom: 40px;
	left: 60px;
	z-index: 2;
}
section#rec_message a .btn {
    position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 2;
}
@media screen and (max-width : 1080px) {
	section#rec_message .container {
	    max-width: 840px;
	}
	section#rec_message .txt {
		display: inline-block;
		position: relative;
		top: 0;
	}
	section#rec_message a {
	    width: 80%;
		margin: -20px 0 0 auto;
	}
	section#rec_message a h3.font_44 {
		top: 60px;
		left: 60px;
	}
}
/* BENEFITS -----------------------------------*/
section#rec_benefits {
	padding: 120px 0 0!important;
}
section#rec_benefits .container {
	position: relative;
}
section#rec_benefits .boad {
	display: inline-block;
	min-width: 480px;
	padding: 40px;
	background: #fff;
	border-radius: 40px;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
	position: relative;
}
section#rec_benefits .boad .helmet {
	display: block;
	width: 45%;
	position: absolute;
	bottom: -135%;
	left: 0;
	z-index: 2;
	animation: rec_helmet 3s infinite;
}
@keyframes rec_helmet {
	0% {transform: rotate(0);}
	33.33% {transform: rotate(0);}
	43.33% {transform: rotate(-12deg);}
	53.33% {transform: rotate(12deg);}
	63.33% {transform: rotate(0);}
	100% {transform: rotate(0);}
}
section#rec_benefits a {
	display: inline-block;
	padding: 30px 8% 50px 40px;
	background: #26b7bc;
	color: #fff;
	position: relative;
	transition: all .3s;
}
section#rec_benefits a:hover {
	background: #05a5aa;
	transform: scale(1.03);
}
section#rec_benefits a .btn {
	background: #fff;
	color: #26b7bc;
    position: absolute;
	right: 30px;
	bottom: 40px;
	z-index: 2;
}
section#rec_benefits .p01 {
	width: 18%;
	position: absolute;
	top: 12%;
	right: 5%;
	animation: rec_p 3s infinite;
}
@keyframes rec_p {
	0% {transform: translateY(0) scale(1);}
	3.33% {transform: translateY(0) scale(1);}
	10% {transform: translateY(-10px) scale(1.02);}
	20% {transform: translateY(0) scale(1);}
	100% {transform: translateY(0) scale(1);}
}
section#rec_benefits .p02 {
	width: 18%;
	margin-top: -8%;
	position: relative;
	z-index: 2;
	animation: rec_p 3s .3s infinite;
}

/* INTERVIEW -----------------------------------*/
section#rec_interview {
	overflow: hidden;
	padding-bottom: 20vw!important;
	position: relative;
}
section#rec_interview .container {
	position: relative;
}
section#rec_interview .boad {
	padding: 20px 60px 0;
	background: rgba(255,255,255,0.9);
	border: 2px #00a0e9 solid;
	border-radius: 30px;
}
section#rec_interview h3 {
	color: #00a0e9;
}
section#rec_interview a {
	display: block;
	width: 46%;
	position: relative;
}
section#rec_interview a:hover {
	filter: none;
}
section#rec_interview a:nth-child(even) {
	margin-top: 100px;
}
section#rec_interview a .img {
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 10px 10px 5px rgba(0,0,0,0.3);
	position: relative;
}
section#rec_interview a .img img {
	height: 100%;
	object-fit: cover;
	transition: all .6s;
	position: relative;
}
section#rec_interview a:hover .img img {
	transform: scale(1.05);
	opacity: 1;
	filter: brightness(0.6);
}
section#rec_interview a .img p {
	position: absolute;
	letter-spacing: 0.05em;
	text-shadow: 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.8);
	bottom: 40px;
	left: 10%;
	z-index: 2;
}
section#rec_interview a h2 {
	display: inline-flex;
	justify-content: center;
	width: 6em;
	height: 2.5em;
	box-sizing: border-box;
	padding-top: 0.2em;
	background: url("../img/recruit/interview_h2.png") left top / contain no-repeat;
	font-size: min(5vw,50px);
    transform: none;
	position: absolute;
	top: -40px;
	left: -20px;
	z-index: 2;
}
section#rec_interview a:nth-child(3) h2,
section#rec_interview a:nth-child(4) h2 {
	background-image: url("../img/recruit/interview_h2_r.png");
	left: auto;
	right: -20px;
}
section#rec_interview a.yay.on h2 {
	animation: rec_int_h2 1s;
}
section#rec_interview a:nth-child(2).yay.on h2 {
	animation: rec_int_h2_2 1.1s;
}
section#rec_interview a:nth-child(3).yay.on h2 {
	animation: rec_int_h2_3 1.2s;
}
section#rec_interview a:nth-child(4).yay.on h2 {
	animation: rec_int_h2_4 1.3s;
}
@keyframes rec_int_h2 {
    0% {opacity: 0; transform: scale(0.8);}
    40% {opacity: 0; transform: scale(0.8);}
    80% {opacity: 1; transform: scale(1.1);}
    100% {opacity: 1; transform: scale(1);}
}
@keyframes rec_int_h2_2 {
    0% {opacity: 0; transform: scale(0.8);}
    45.45% {opacity: 0; transform: scale(0.8);}
    81.81% {opacity: 1; transform: scale(1.1);}
    100% {opacity: 1; transform: scale(1);}
}
@keyframes rec_int_h2_3 {
    0% {opacity: 0; transform: scale(0.8);}
    50% {opacity: 0; transform: scale(0.8);}
    83.33% {opacity: 1; transform: scale(1.1);}
    100% {opacity: 1; transform: scale(1);}
}
@keyframes rec_int_h2_4 {
    0% {opacity: 0; transform: scale(0.8);}
    53.84% {opacity: 0; transform: scale(0.8);}
    84.61% {opacity: 1; transform: scale(1.1);}
    100% {opacity: 1; transform: scale(1);}
}

section#rec_interview .p_posi {
	position: relative;
}
section#rec_interview .p_posi .p01 {
	width: 20%;
	position: relative;
	top: -40px;
	left: 15%;
	z-index: 2;
	animation: rec_p02 3s infinite;
}
section#rec_interview .p_posi .p02 {
	width: 20%;
	position: absolute;
	top: -40px;
	right: 10%;
	z-index: 2;
	animation: rec_p02_2 3s .3s infinite;
}
@keyframes rec_p02 {
	0% {transform: rotate(0);}
	3.33% {transform: rotate(0);}
	10% {transform: rotate(-5deg);}
	20% {transform: rotate(0);}
	100% {transform: rotate(0);}
}
@keyframes rec_p02_2 {
	0% {transform: rotate(0);}
	3.33% {transform: rotate(0);}
	10% {transform: rotate(5deg);}
	20% {transform: rotate(0);}
	100% {transform: rotate(0);}
}
/* スライド */
section#rec_interview .slider {
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
}
section#rec_interview .slider ul {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	min-width: 100%;
	animation: 30s linear infinite slider;
	position: relative;
}
@keyframes slider {
	0% {transform: translateX(0);}
	100% {transform: translateX(-50%);}
}
section#rec_interview .slider ul li {
	width: 25vw;
	max-width: 300px;
	margin-right: 20px;
}

/* 福利厚生 --------------------------------------------------------------------------*/
section#benefits_main {
	background: #82c6d9;
	position: relative;
	overflow: hidden;
}
section#benefits_main::after {
	content: "";
	display: block;
	width: 100%;
	min-width: 2320px;
	height: 180px;
	background: url("../img/recruit/bene_bg01.png") right top / contain no-repeat;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
section#benefits_main .bg {
	width: 1400px;
	min-width: 1400px;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}
section#benefits_main .container {
	padding: 120px 0 140px!important;
	position: relative;
}
section#benefits_main .img01 {
	width: 30%;
	position: absolute;
	top: 80px;
	left: 0;
}
section#benefits_main .img02 {
	width: 20%;
	max-width: 160px;
	position: absolute;
	bottom: -36%;
	left: 16%;
}
section#benefits_main .img03 {
	width: 20%;
	max-width: 160px;
	position: absolute;
	bottom: -36%;
	right: 16%;
}
section#benefits_main .img04 {
	width: 22%;
	max-width: 210px;
	position: absolute;
	bottom: -15%;
	right: 0;
}
section#benefits_main .img05 {
	width: 20%;
	max-width: 170px;
	position: absolute;
	bottom: -13%;
	left: 0;
}
/* 休暇制度 ----------------------------*/
section#benefits_kyuka {
	padding: 80px 0 180px!important;
	background: rgba(239,239,239,1);
	position: relative;
	overflow: hidden;
}
section#benefits_kyuka::after {
	content: "";
	display: block;
	width: 100%;
	min-width: 2320px;
	height: 180px;
	background: url("../img/recruit/bene_bg02.png") left top / contain no-repeat;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
/* 給与・賞与 ----------------------------*/
section#benefits_kyuyo {
	padding: 80px 0 0!important;
	background: #fff;
	position: relative;
}
/* その他 ------------------------------*/
section#benefits_other {
	padding: 0 0 100px!important;
	background: rgba(255,255,255,0.7);
	position: relative;
	overflow: hidden;
}
section#benefits_other .bg {
	width: 100%;
	height: 180px;
	background: linear-gradient(to right, #fff 0%, #fff 40%, transparent 40%, transparent 100%);
	margin-top: -1px;
}
section#benefits_other .bg img {
	min-width: 2320px;
	margin: auto;
}
/* スライド */
section#benefits_other .slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}
section#benefits_other .slider ul {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	min-width: 100%;
	animation: 12s linear infinite slider;
	position: relative;
}
section#benefits_other .slider ul li {
	width: 28vw;
	max-width: 360px;
	margin-right: 20px;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	position: relative;
}

@media screen and (max-width : 768px) {
	.font_30 {
		font-size: 21px;
	}
	.tb100 {
		width: 100%;
	}
	.container.tbmax_100 {
		max-width: 100%;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#data .bgc_04 {
		background-size: cover;
	}
	section#data .col4 {
		width: calc(50% - 10px);
		border-radius: 30px;
	}
	section#data .countup .number {
		font-size: min(8vw, 50px);
	}
	section#data .countup .number + span {
		font-size: min(3vw, 26px);
	}
	/*==================================================================================
	NEWS
	==================================================================================*/
	section#news .col4 a {
		height: 170px;
		border-radius: 10px;
	}
	section#news .col4 {
		width: calc(50% - 10px);
	}
	/* WP-pagenavi */
	section#news .wp-pagenavi a,
	section#news .wp-pagenavi span {
		width: 30px;
		height: 30px;
		margin: 0 2px;
		font-size: 12px;
	}
	/*==================================================================================
	EXAMPLE
	==================================================================================*/
	section#example .cont {
		width: 100%;
		margin-bottom: 60px;
	}
	section#example .side {
		width: 100%;
		box-sizing: border-box;
		padding: 30px 0 0 0;
		border-left: none;
		border-top: 1px #ccc solid;
	}
	/*==================================================================================
	BUSINESS
	==================================================================================*/
    section#business_index .boad {
        padding: 50px;
        background: url("../img/business/01_00_sp.jpg") center center / cover no-repeat;
        border-radius: 40px;
    }
    section#business_index .boad:nth-child(1) {
        margin-top: 50px;
    }
    section#business_index .boad:nth-child(2) {
        background-image: url("../img/business/02_00_sp.jpg");
    }
    section#business_index .boad:nth-child(3) {
        background-image: url("../img/business/03_00_sp.jpg");
    }
    section#business_index .boad:nth-child(4) {
        background-image: url("../img/business/04_00_sp.jpg");
    }
    section#business_index .boad .font_44 {
        letter-spacing: 0.02em;
    }
    section#business_index .boad .font_44 + p{
        margin-bottom: 60px;
    }
	/* 詳細トップ */
	section#business_main .img {
		box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
	}
	/* 詳細1〜5 */
	section#business .business {
		width: 100%;
		margin: 0 0 70px;
		padding: 40px 20px 20px;
	}
	section#business .business:first-child {
		margin: 100px 0 70px;
	}
	section#business .business:nth-child(even) {
		margin: 0 0 60px;
	}
	section#business .business .num {
		width: 150px;
		height: 46px;
		top: -46px;
	}
	section#business .business:nth-child(even) p {
		text-align: left;
	}
	section#business .business .font_44 {
		margin-bottom: 20px;
	}
	section#business .business .img {
		margin-top: 40px;
		order: 2;
	}
	/* リンク */
    #business .boad {
        padding: 30px;
    }
	#business .boad .row a {
		width: calc(50% - 10px);
		height: 120px;
	}
	/*==================================================================================
	RECRUIT
	==================================================================================*/
	section#rec_main {
	    padding: 80px 0 100px!important;
	}
	section#rec_main img.ttl {
	    width: 100%;
		max-width: 360px;
		margin-bottom: 25%;
	}
	section#rec_main img.p01 {
	    width: 50%;
	    margin: 0 auto 0 33%;
	}
	section#rec_main img.p02,
	section#rec_main img.p03,
	section#rec_main img.p04 {
	    width: 28%;
	}
	section#rec_main img.p02 {
	    top: 22%;
	    right: 48%;
	}
	section#rec_main img.p03 {
	    top: 45%;
	    left: 0
	}
	section#rec_main img.p04 {
	    top: 28%;
		right: 15%;
	}
	.bg_pipe {
		background-image: url("../img/recruit/bg02_sp.png");
		background-size: 900px;
	}
	.bg_pipe h2 {
		font-size: min(8vw,36px);
	}
	.bg_pipe .btm_wt {
		background-image: url("../img/recruit/bg02_2_sp.png");
	}
	/* MESSAGE -----------------------------------*/
	section#rec_message {
		margin-top: -40px;
	}
	section#rec_message .container {
	    max-width: 460px;
	}
	section#rec_message .txt {
	    padding: 20px;
		box-shadow: 6px 6px 3px rgba(0,0,0,0.3);
	}
	section#rec_message a {
    	width: 90%;
		height: 280px;
		margin: -20px 0 0 auto;
		border-radius: 20px;
		box-shadow: 6px 6px 3px rgba(0,0,0,0.3);
	}
	section#rec_message a h3.font_44 {
	    position: absolute;
		text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 6px rgba(255,255,255,0.8), 0 0 6px rgba(255,255,255,0.8);
		top: 40px;
		left: 40px;
	}
	section#rec_message a h3.font_20 {
		text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 3px rgba(0,0,0,0.8);
		bottom: auto;
		top: 90px;
		left: 40px;
	}
	section#rec_message a .btn {
		right: auto;
		left: 20px;
		bottom: 20px;
	}
	/* BENEFITS -----------------------------------*/
	section#rec_benefits {
		padding: 80px 0 0!important;
	}
	section#rec_benefits .boad {
		width: max-content;
		min-width: 0;
		margin-bottom: 160px;
		padding: 20px;
		border-radius: 20px;
		box-shadow: 6px 6px 3px rgba(0,0,0,0.3);
	}
	section#rec_benefits .boad .helmet {
		width: 40%;
		bottom: -90%;
		left: -5%;
	}
	section#rec_benefits a {
		padding: 20px 20px 30px;
	}
	section#rec_benefits a h2 {
		margin: 0 0 50px 10px;
	}
	section#rec_benefits a .btn {
		right: 20px;
		bottom: 20px;
	}
	section#rec_benefits .p01 {
		width: 35%;
		max-width: 120px;
	}
	section#rec_benefits .p02 {
		width: 35%;
		max-width: 120px;
		margin-top: -8%;
	}
	/* INTERVIEW -----------------------------------*/
	section#rec_interview .boad {
		padding: 15px 20px 0;
	}
	section#rec_interview a {
		width: calc(100% - 30px);
		margin: 0 0 60px;
	}
	section#rec_interview a:nth-child(even) {
		margin: 0 0 60px auto;
	}
	section#rec_interview a .img {
		border-radius: 20px;
		box-shadow: 6px 6px 3px rgba(0,0,0,0.3);
	}
	section#rec_interview a .img p {
		text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 3px rgba(0,0,0,0.8);
		bottom: 20px;
		left: 30px;
	}
	section#rec_interview a h2 {
		font-size: 34px;
		top: -30px;
		left: -10px;
	}
	section#rec_interview a:nth-child(3) h2 {
		background-image: url("../img/recruit/interview_h2.png");
		left: -10px;
	}
	section#rec_interview a:nth-child(even) h2 {
		background-image: url("../img/recruit/interview_h2_r.png");
		left: auto;
		right: -10px;
	}
	section#rec_interview .p_posi .p01 {
		width: 35%;
		max-width: 120px;
	}
	section#rec_interview .p_posi .p02 {
		width: 35%;
		max-width: 120px;
		right: 15%;
	}
	/* スライド */
	section#rec_interview .slider ul {
		animation: 20s linear infinite slider;
	}
	section#rec_interview .slider ul li {
		margin-right: 10px;
	}
	/* 福利厚生 --------------------------------------------------------------------------*/
	section#benefits_main::after {
		min-width: 1040px;
		height: 95px;
		background-size: cover;
	}
	section#benefits_main .bg {
		width: 100%;
		min-width: 1160px;
	}
	section#benefits_main .container {
		padding: 100px 0 110px!important;
	}
	section#benefits_main .img02 {
		width: 100px;
		bottom: -27%;
		left: 18%;
	}
	section#benefits_main .img03 {
		width: 100px;
		bottom: -27%;
		right: 18%;
	}
	section#benefits_main .img04 {
		width: 110px;
		bottom: -7%;
		right: 0;
	}
	section#benefits_main .img05 {
		width: 100px;
		bottom: -9%;
	}
	/* 休暇制度 ----------------------------*/
	section#benefits_kyuka {
		padding: 40px 0 95px!important;
	}
	section#benefits_kyuka::after {
		min-width: 1040px;
		height: 95px;
		background-size: cover;
	}
	/* 給与・賞与 ----------------------------*/
	section#benefits_kyuyo {
		padding: 40px 0 0!important;
	}
	/* その他 ------------------------------*/
	section#benefits_other {
		padding: 0 0 100px!important;
	}
	section#benefits_other .bg {
		height: 95px;
		background: url("../img/recruit/bene_bg03.png") center top / cover no-repeat;
		margin-bottom: 40px;
	}
	section#benefits_other .bg img {
		display: none;
	}
	/* スライド */
	section#benefits_other .slider ul {
		animation: 10s linear infinite slider;
	}
	section#benefits_other .slider ul li {
		margin-right: 10px;
	}
}


@media screen and (max-width : 460px) {
	.sp100 {
		width: 100%!important;
	}
	.col4 {
		width: calc(50% - 6px);
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#data .col4 {
		width: 100%;
	}
	section#data .col4 .icon img {
		width: 45%;
		max-width: 120px;
	}
	section#data .countup .number {
		font-size: min(14vw, 60px);
	}
	section#data .countup .number + span {
		font-size: min(5vw, 26px);
	}
	/*==================================================================================
	NEWS
	==================================================================================*/
	section#news .col4 a {
		height: 120px;
	}
	/*==================================================================================
	BUSINESS
	==================================================================================*/
    section#business_index .boad {
        padding: 40px 30px;
    }
    #business .boad {
        padding: 20px;
    }
	/*==================================================================================
	RECRUIT
	==================================================================================*/
	section#rec_main img.p01 {
	    width: 60%;
	    margin: 0 auto 0 25%;
	}
	section#rec_main img.p02,
	section#rec_main img.p03,
	section#rec_main img.p04 {
	    width: 32%;
	}
	section#rec_main img.p02 {
	    top: 24%;
	    right: 46%;
	}
	section#rec_main img.p03 {
	    left: -3%;
	}
	section#rec_main img.p04 {
		right: 10%;
	}
	.bg_pipe {
		background-size: 740px;
	}
    .bg_pipe h2 {
        font-size: min(7vw, 36px);
    }
	/* MESSAGE -----------------------------------*/
	section#rec_message a {
		height: 220px;
	}
	section#rec_message a h3.font_44 {
		top: 35px;
		left: 20px;
	}
	section#rec_message a h3.font_20 {
		top: 80px;
		left: 20px;
	}
	/* BENEFITS -----------------------------------*/
	section#rec_benefits .boad {
		margin-bottom: 160px;
	}
	section#rec_benefits a h2 {
		margin: 0 0 50px 0;
	}
	section#rec_benefits .p01 {
		width: 25%;
		top: 22%;
	}
	section#rec_benefits .p02 {
		width: 25%;
	}
	/* INTERVIEW -----------------------------------*/
	section#rec_interview a {
		width: calc(100% - 20px);
		margin: 0 0 40px;
	}
	section#rec_interview a:nth-child(even) {
		margin: 0 0 40px auto;
	}
	section#rec_interview a h2 {
		font-size: 30px;
		top: -20px;
	}
	section#rec_interview a .img p {
		left: 20px;
	}
	section#rec_interview .p_posi {
		margin-bottom: 40px;
	}
	section#rec_interview .p_posi .p01 {
		width: 25%;
		top: -30px;
	}
	section#rec_interview .p_posi .p02 {
		width: 25%;
		top: -30px;
	}
	/* 福利厚生 --------------------------------------------------------------------------*/
	section#benefits_main::after {
		min-width: 600px;
		height: 60px;
	}
    section#benefits_main .bg {
        min-width: 940px;
		top: 35px;
    }
	section#benefits_main .container {
		padding: 110px 0 100px!important;
	}
	section#benefits_main .img01 {
	    width: 35%;
	}
	section#benefits_main .img02 {
		width: 90px;
		bottom: -24%;
		left: 20%;
	}
	section#benefits_main .img03 {
		width: 90px;
		bottom: -24%;
		right: 20%;
	}
	section#benefits_main .img04 {
		width: 100px;
		bottom: -4%;
	}
	section#benefits_main .img05 {
		width: 90px;
		bottom: -8%;
		left: -5%;
	}
	/* 休暇制度 ----------------------------*/
	section#benefits_kyuka::after {
		min-width: 600px;
		height: 60px;
	}
	/* その他 ------------------------------*/
	section#benefits_other {
		padding: 0 0 60px!important;
	}
	section#benefits_other .bg {
		height: 60px;
	}
	/* スライド */
	section#benefits_other .slider ul li {
		width: 45vw;
	}

}



