@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
body {
	-webkit-text-size-adjust: 100%;
}
img {
	vertical-align: bottom;
	border: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
p,li,th,td,dt,dd,span {
	font-weight: 600;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
overflow-x: hidden;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #333333;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.8em;
}

/* -- ボックス ----------------------------------------------- */
.inner {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* -- テキスト ----------------------------------------------- */
.text_SZ_s {
	font-size: 14px;
	line-height: 1.2em;
}

/* -- フォント ----------------------------------------------- */
.font_noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font_roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth"100;
}
.font_cal_sans {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.fadein_up {
    opacity : 0;
    transform : translate(0px, 100px);
    transition : all 500ms;
}
.fadein_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 左から右 */
.fadein_lr {
    opacity : 0;
    transform : translate(-200px, 0px);
    transition : all 500ms;
}
.fadein_lr.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 右から左 */
.fadein_rl {
    opacity : 0;
    transform : translate(200px, 0px);
    transition : all 500ms;
}
.fadein_rl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */
.fadein_stay {
    opacity : 0;
    transition : all 1000ms;
}
.fadein_stay.scrollin {
    opacity : 1;
}

/* -- 順番にフェードイン ----------------------------------------------- */
.fadein_order {
     opacity: 0;
    transition: 2s;
}
.order_disp {
    opacity: 1;
}

/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: none;	
}
.sp_none {	
}

/* -- マウスオンでフェード透過 ----------------------------------------------- */
.over {
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.over:hover {
	opacity: 0.6;	
}

/* -- TELリンクをカーソルに ----------------------------------------------- */
a[href^="tel:"] { 
    cursor: default;
} 

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	background-color: #FFFFFF;
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
#header_contents {
	height: 60px;
	position: relative;
}

/* ロゴ */
#logo {
	position: absolute;
	left: 20px;
	top: 24px;
}
#logo img {
	width: auto;
	height: 32px;
}

/* スマホ メニュー展開時ロゴ */
#sp_navi_logo {
	display: none;
}

/* ナビ */
#nav-items {
	position: absolute;
	transform: translate(0, 0);
	top: 10px;
	right: 10px;
}
#nav-items li {
	float: left;
	text-align: center;
}
#nav-items li a {
	display: block;
	height: 60px;
	line-height: 60px;
	padding-left: 20px;
	padding-right: 20px;
	text-decoration: none;
	color: #000000;
	font-size: 16px;
	font-weight: 700;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#nav-items li a:hover {
	background-color: #EBEBEB;
}

/* 個別設定 */
#bt_youkou {
	margin-left: 20px;
}
#bt_youkou a {
	background-color: #000000;
	border-radius: 5px;
	color: #FFFFFF !important;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#bt_youkou a:hover {
	background-color: #222222 !important;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	margin-top: 80px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	margin-left: 50px;
	margin-right: 50px;
	background-color: #00B2FC;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	padding-top: 50px;
	text-align: center;
	color: #FFFFFF;
	padding-bottom: 20px;
}

/* -- ロゴ・社名 ----------------------------------------------- */
#footer_logo {
	margin-bottom: 20px;
}
#footer_logo img {
	width: 160px;
	height: auto;
}
#footer h3 {
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 50px;
}

/* -- コーポレートサイトボタン ----------------------------------------------- */
#ft_corp_bt {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
#ft_corp_bt a {
	font-weight: 800;
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	position: relative;
	border-radius: 30px;
}
#ft_corp_bt a:hover{
	background-color: #B5E9FF;
}
#ft_corp_bt a img {
	width: 24px;
	height: auto;
	position: absolute;
	right: 20px;
}

/* -- copy ----------------------------------------------- */
#copy {
	font-size: 12px;
	font-weight: 600;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* FIXお問い合わせ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#fix_contact {
	width: 440px;
	background-color: #000000;
	color: #FFFFFF;
	border-radius: 10px;
	padding-left: 70px;
	background-image: url(../images/fix_bg.png);
	background-repeat: no-repeat;
	background-position: 13px 10px;
	background-size: auto 46px;
	position: fixed;
	bottom: 20px;
	padding-top: 9px;
	display: flex;
	padding-bottom: 9px;
	z-index: 999;
	right: 100px;
}

/* -- 電話番号 ----------------------------------------------- */
#fix_tel {
	padding-right: 10px;
	border-right: 2px solid #FFFFFF;
	width: 280px;
}
#tel_number {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 3px;
}
#tel_number a {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	padding-left: 36px;
}
#tel_number a img {
	position: absolute;
	left: 0px;
	top: 6px;
	height: auto;
	width: 25px;
}

/* 文章 */
#tel_info {
	font-size: 13px;
	line-height: 1em;
}

/* -- メール ----------------------------------------------- */
#fix_mail {
	text-align: center;
	width: 90px;
}
#fix_mail a {
	text-decoration: none;
	color: #FFFFFF;
}
#mail_icon {
	line-height: 1em;
	padding-top: 3px;
}
#mail_icon img {
	height: 25px;
	width: auto;
}
#mail_tt {
	font-size: 14px;
	line-height: 1em;
	margin-top: 5px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	width: 66px;
}
#page_top img {
	width: 100%;
	height: auto;
}
#page_top:hover {
	animation: poyo .6s ease 0s 1 normal running none;
}
@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.2); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.04); }
	80% { transform: scale(.98); }
}
#page_top:active {
	animation: push .6s;
}

@keyframes push {
	from, to { transform: none; }
	10% { transform: scale(.8); }
	40% { transform: scale(1.1); }
	60% { transform: scale(.96); }
	80% { transform: scale(1.02); }
}























/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


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

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 15px;
	line-height: 1.6em;
}
	
/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-left: 30px;
	padding-right: 30px;
}
.inner {
	width: 100%;
}
	
/* -- テキスト ----------------------------------------------- */
.text_SZ_s {
	font-size: 12px;
	line-height: 1.2em;
}
	
/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#header {
	/* [disabled]background-color: transparent; */
	height: 60px;
}

/* ロゴ */
#logo {
	left: 20px;
	top: 15px;
}
#logo img {
	width: auto;
	height: 26px;
}
/* スマホ メニュー展開時ロゴ */
#sp_navi_logo {
	position: absolute;
	top: 50px;
	left: 0px;
	right: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 75px;
	display: inherit;

}
#sp_navi_logo img {
	width: 100%;
	height: auto;
}

/* ナビ */
.header_nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	transform: translateX(100%); 
	background-color: #00b2fc;
	transition: ease .4s;
}
#nav-items {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	width: 100%;
}
#nav-items li {
	float: none;
	border-left-style: none;
}
#nav-items li a {
	height: auto;
	line-height: normal;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFFFFF;
	font-size: 18px;
}
#nav-items li a:hover {
	background-color: transparent;
}
	
/* 個別設定 */
#bt_youkou {
	margin-left: 0px;
	margin-top: 50px;
}
#bt_youkou a {
	background-color: #000000 !important;
	color: #FFFFFF;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
	
/* ハンバーガーメニュー */
.hamburger {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 9999;
	background-color: #000000;
	border-style: none;
}	
.header__hamburger {
	width: 60px;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

/* ハンバーガーメニューの線 */
.hamburger span {
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	position: relative;
	transition: ease .4s;
	display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.hamburger.active {
	background-color: #000000;
}
.header_nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	margin-top: 60px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* footer　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	margin-left: 20px;
	margin-right: 20px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	padding-left: 30px;
	padding-right: 30px;
}

/* -- ロゴ・社名 ----------------------------------------------- */
#footer_logo img {
	width: 120px;
}
#footer h3 {
	font-size: 18px;
}

/* -- コーポレートサイトボタン ----------------------------------------------- */
#ft_corp_bt {
	width: 100%;
	margin-bottom: 40px;
}

/* -- copy ----------------------------------------------- */
#copy {
	font-size: 10px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* FIXお問い合わせ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#fix_contact {
	width: 100%;
	border-radius: 30px 30px 0px 0px;
	padding-left: 0px;
	background-image: none;
	right: 0px;
	left: 0px;
	bottom: 0px;
	padding-top: 14px;
	padding-bottom: 12px;
	margin-left: auto;
	margin-right: auto;
}

/* -- 電話番号 ----------------------------------------------- */
#fix_tel {
	padding-right: 10px;
	padding-left: 30px;
	border-right: 2px solid #FFFFFF;
	width: 75%;
}
#tel_number {
	font-size: 28px;
	line-height: 1em;
	margin-bottom: 2px;
}
#tel_number a {
}
#tel_number a img {
	top: 7px;
	width: 22px;
}

/* 文章 */
#tel_info {
	font-size: 12px;
	line-height: 1em;
}

/* -- メール ----------------------------------------------- */
#fix_mail {
	width: 25%;
}
#mail_icon {
	line-height: 1em;
	padding-top: 3px;
}
#mail_icon img {
	height: 25px;
	width: auto;
}
#mail_tt {
	font-size: 12px;
	line-height: 1em;
	margin-top: 5px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 100px;
	right: 10px;
	width: 50px;
}

}
