@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;
}
iframe {
	vertical-align: bottom;
}
* {
  -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 {
	font-family: "Noto Sans JP", serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.8em;
	color: #000000;
}

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

/* -- テキスト関連 ----------------------------------------------- */
.text_sz_S {
	font-size: 14px;	
}

/* -- 中分類 ----------------------------------------------- */
.list_nomal {
	margin-left: 1.2em;
	list-style-type: disc;
}
.list_deci {
	margin-left: 1.2em;
	list-style-type: decimal;
}

/* -- テーブル ----------------------------------------------- */
.tbl_nomal table {

}
.tbl_nomal tr {
	border-bottom: 1px solid #FFFFFF;

}
.tbl_nomal th {
	width: 200px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #1A7B6A;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
}
.tbl_nomal td {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* -- フォント ----------------------------------------------- */
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* -- マウスオンでフェード透過 ----------------------------------------------- */
.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;	
}

/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.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;
}

/* -- 画面開いてすぐにフェードイン ----------------------------------------------- */
/* その場で */
.op_fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.op_fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */
.op_fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.op_fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.op_fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

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

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

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

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

/* -- ナビ ----------------------------------------------- */
#nav-items {
	position: absolute;
	transform: translate(0, 0);
	top: 0px;
	right: 0px;
	display: flex;
}
#nav-items li {
	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-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_contact {
	background-color: #125C51;	
}
#bt_contact a {
	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;
	padding-left: 40px !important;
	padding-right: 40px !important;
}
#bt_contact a:hover {
	background-color: #787130 !important;
}


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

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* container　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	padding-top: 60px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ページ下部 お問い合わせ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#bottom_contact {
	padding-top: 100px;
	background-image: url(../images/bottom_bg_01.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	height: calc(100vh - 60px);
}

#btm_box_wrap {
	background-color: rgba(255,255,255,0.70);
	padding-top: 25px;
	padding-bottom: 25px;
	color: #000000;
	display: flex;
}
.btm_tt  {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2em;
	margin-left: 56px;
}
.btm_note {
	font-weight: 600;
	margin-left: 56px;
	font-size: 15px;
}

/* -- 電話での問い合わせ ----------------------------------------------- */
#btm_tel {
	width: 50%;
	border-right: 2px solid #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#btm_tel ul {
    width: fit-content;
    margin: auto;
}
#tel_number {
	font-family: "Oswald", serif;
	font-size: 50px;
	line-height: 1em;
	font-weight: 500;
	letter-spacing: 2px;
}
#tel_number a {
	color: #000000;
	text-decoration: none;
}
#tel_number a img {
	height: 42px;
	width: auto;
	margin-right: 12px;
}

/* -- メールでの問い合わせ ----------------------------------------------- */
#btm_mail {
	width: 50%;
}
#btm_mail ul {
    width: fit-content;
    margin: auto;
}
#to_form {
	font-size: 30px;
	font-weight: 800;
	line-height: 50px;
	letter-spacing: -2px;
}
#to_form a {
	color: #000000;
	text-decoration: none;
}
#to_form a img {
	height: 42px;
	width: auto;
	margin-right: 12px;
	padding-bottom: 3px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* フッター　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	padding-top: 100px;
	background-color: #FFFFFF;
}

/* -- リンクボタン ----------------------------------------------- */
ul#footer_link {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 70px;
}
#footer_link li {
	width: 530px;
}
#footer_link li a {
	background-color: #125C51;
	color: #FFFFFF;
	font-weight: 700;
	height: 100px;
	text-decoration: none;
	padding-left: 50px;
	display: flex;
	align-items: center;
	font-size: 20px;
	position: relative;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#footer_link li a:hover {
	background-color: #000000;
}

/* アイコン */
.ft_bt_icon {
	width: 82px;
	height: 54px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0px;
	top: 23px;
	border-left: 2px solid #FFFFFF;
}
#footer_link li:first-child .ft_bt_icon img {
	width: auto;
	height: 13px;
}
#footer_link li:last-child .ft_bt_icon img {
	width: auto;
	height: 20px;
}

/* -- インフォ ----------------------------------------------- */
#footer_info {
	text-align: center;
	color: #000000;
}

/* ロゴ */
#footer_logo {
	margin-bottom: 40px;
}
#footer_logo img {
	width: 330px;
	height: auto;
}

/* 社名・住所 */
#footer_info h3 {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.2em;
	margin-bottom: 12px;
}
#footer_info p {
	font-weight: 700;
}

/* TEL・FAX */
#ft_tel {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
#ft_tel li {
	font-weight: 700;
}

/* -- copy ----------------------------------------------- */
#copy {
	color: #FFFFFF;
	text-align: center;
	background-color: #1e8d7a;
	font-size: 12px;
	font-weight: 600;
	padding-top: 5px;
	padding-bottom: 5px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	margin-left: auto;
	margin-right: auto;
	background-color: #000000;
}
#page_top img {
	width:80px;
	height: auto;
}



















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


@media screen and (max-width: 768px) {
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 15px;
	line-height: 1.5em;
}
	
/* -- テキスト関連 ----------------------------------------------- */
.text_sz_S {
	font-size: 12px;	
}
	
/* -- ボックス ----------------------------------------------- */
.doc_set {
	padding-left: 25px;
	padding-right: 25px;
}
.inner {
	width: 100%;
}
	
/* -- テーブル ----------------------------------------------- */
.tbl_nomal table {
	border-top-color: #FFFFFF;
	border-top-style: solid;
}
.tbl_nomal tr {


}
.tbl_nomal th {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	background-color: #1a7a6a;
}
.tbl_nomal td {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 30px;
	display: block;
}
	
/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ヘッダー　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* -- ロゴ ----------------------------------------------- */
#logo {
	left: 10px;
	top: 10px;
}	
#logo img {
	width: auto;
	height: 40px;
}
	
/* -- ナビ ----------------------------------------------- */
.header_nav {
	position: absolute;
	right: 0;
	/*left: 0;*/
	top: 0;
	width: 50%;
	height: 100vh;
	transform: translateX(100%);
	background-color: rgba(0,0,0,0.90);
	transition: ease .4s;
}
#nav-items {
	position: static;
	display: inherit;
	margin-top: 100px;
	margin-left: 10px;
	margin-right: 10px;
}
#nav-items li {
	border-left-style: none;
	border-bottom: 1px solid #FFFFFF;
}
#nav-items li a {
	height: auto;
	line-height: normal;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: left;
	color: #FFFFFF;
}
#nav-items li a:hover {
	background-color: transparent;
}
	
/* 個別設定 */
#bt_contact {
	border-bottom-style: none !important;
	margin-top: 30px !important;
}
#bt_contact a {
	text-align: center !important;	
}
	
/* -- ハンバーガーメニュー ----------------------------------------------- */
.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: 1px;
	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: -10px;
  transform: rotate(-45deg);
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ページ下部 お問い合わせ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#bottom_contact {
	padding-top: 80px;
}
#btm_box_wrap {
	padding-top: 20px;
	padding-bottom: 20px;
	display: inherit;
}
.btm_tt  {
	font-size: 16px;
	line-height: 1.2em;
	margin-left: 48px;
}
.btm_note {
	margin-left: 45px;
	font-size: 12px;
}

/* -- 電話での問い合わせ ----------------------------------------------- */
#btm_tel {
	width: calc(100% - 40px);
	border-right-style: none;
	border-bottom: 2px solid #000000;
	padding-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
}
#btm_tel ul {
	width: 100%;
	text-align: center;
}
#tel_number {
	font-size: 34px;
	line-height: 1em;
}
#tel_number a img {
	height: 35px;
	margin-right: 10px;
}

/* -- メールでの問い合わせ ----------------------------------------------- */
#btm_mail {
	width: calc(100% - 40px);
	padding-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
}
#btm_mail ul {
	width: 100%;
	text-align: center;
}
#to_form {
	font-size: 24px;
	line-height: 1.2em;
	letter-spacing: -1px;
}
#to_form a img {
	height: 35px;
	margin-right: 10px;
	vertical-align: text-top;
	padding-bottom: 0px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* フッター　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#footer {
	padding-top: 80px;
}

/* -- リンクボタン ----------------------------------------------- */
ul#footer_link {
	display: inherit;
	margin-bottom: 50px;
	margin-left: 25px;
	margin-right: 25px;
}
#footer_link li {
	width: 100%;
	margin-bottom: 10px;
}
#footer_link li a {
	height: 80px;
	padding-left: 20px;
	font-size: 16px;
}

/* アイコン */
.ft_bt_icon {
	width: 70px;
	height: 44px;
	display: flex;
	top: 18px;
}

/* -- インフォ ----------------------------------------------- */
#footer_info {
	margin-left: 25px;
	margin-right: 25px;
	color: #000000;
}

/* ロゴ */
#footer_logo {
	margin-bottom: 30px;
}
#footer_logo img {
	width: 220px;
}

/* 社名・住所 */
#footer_info h3 {
	font-size: 28px;
	line-height: 1.2em;
}

/* TEL・FAX */
#ft_tel {
	display: inherit;
	margin-bottom: 40px;
}
#ft_tel li span {
	display: none;
}

/* -- copy ----------------------------------------------- */
#copy {
	font-size: 10px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	bottom: 80px;
	right: 10px;
}
#page_top img {
	width:50px;
}
}
