@charset "Utf-8";
@import url("drawer.css"); /*モバイルメニュー用読み込み*/

/*-----------------------------------------------------------------------------------*/
/*	リセット paddingリセット
/*-----------------------------------------------------------------------------------*/

*{
	font-family:'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    padding:0;
    margin:0;
    -webkit-box-sizing: border-box;	/**	widthにpaddingを含める	**/
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th{
	margin:0px;
	padding:0px;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
}

body {
	font-size: 14px;
	line-height: 150%;
	color: #003333;
	width: 100%;
}

a{outline: none;}
a:link {}
a:visited {}
a:hover {}
a:active {}

/*-----------------------------------------------------------------------------------*/
/*	リンク画像透過共通指定　hr装飾
/*-----------------------------------------------------------------------------------*/

.link_img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}

.contents a img {
    -webkit-transition: 0.2s ease-in-out;
       -moz-transition: 0.2s ease-in-out;
         -o-transition: 0.2s ease-in-out;
            transition: 0.2s ease-in-out;
	-moz-box-shadow: 0px 1px 2px #656565;
	-webkit-box-shadow: 0px 1px 2px #656565;
	box-shadow: 0px 1px 2px #656565;
}
.contents a img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}


hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 5px;
	margin-bottom: 5px;
}

/*********** youtube 地図 ***********/

.youtube_wrapp{
	max-width: 480px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 460px !important;
  max-height: 315px !important;
}

.map{
	width: 95%;
	padding: 10px;
	border: 1px solid #999999;
}

/*********** 解除・調整・その他 ***********/

.clear{clear: both;}
/* clearfix */
.cf:after{
	content: "";
	clear: both;
	display: block;
}


.mg_b10 {margin-bottom: 10px;}
.mg_b20 {margin-bottom: 20px;}
.mg_b30 {margin-bottom: 30px;}
.mg_b40 {margin-bottom: 40px;}
.mg_b50 {margin-bottom: 50px;}

.font_110{ font-size: 110%;}
.font_120{ font-size: 120%;}
.font_130{ font-size: 130%;}
.font_140{ font-size: 140%;}
.font_150{ font-size: 150%;}
.font_160{ font-size: 160%;}
.font_170{ font-size: 170%;}
.font_180{ font-size: 180%;}
.font_190{ font-size: 190%;}
.font_200{ font-size: 200%;}

.align_center{ text-align: center;}
.align_right{ text-align: right;}
.align_left{ text-align: left;}

.m_align_center{ text-align: center;}
.m_align_right{ text-align: right;}
.m_align_left{ text-align: left;}

.img_max {max-width: 100%;}

.only_pc {display: none !important;}
.only_mobile {}
	/* 点滅 */
.blink{
	color: #ff0000;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
	-moz-animation:blink 1.5s ease-in-out infinite alternate;
	animation:blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}


/** Flex 指定 ********************/

.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

.flex_r{
	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction:         row-reverse;
}

.flex_wrap{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
}

/* 端詰め等間隔 */
.space_between{
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}
/* 等間隔 */
.space_around{
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

/* センター寄せ */
.justify_center {
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
}

/*** 幅 ***************************************/

.header_contents, .contents, .footer_contents{
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}

/*** ヘッダー ***************************************/
.header{
}

.header_contents{
	padding-bottom: 20px;
}

.header_contents h1{
	background-color: #00BFFF;
	color: white;
	min-height: 50px;
	font-size: 100%;
	font-weight: 400;
	line-height: 110%;
	padding-right: 50px;
	margin-bottom: 20px;
}

.header_logo{
	width: 100px;
	float: left;
}

.header_company{
	float: right;
	max-width: 260px;
}

.header_company span{
	display: block;
	padding-top: 10px;
	font-size: 220%;
}



/*** メニュー ***************************************/

.drawer-hamburger{
	background: rgba(255,255,255,0.3);
}

.drawer-menu{
	list-style-type: none;
}

.drawer-menu li{
	display: block;
	font-size: 120%;
	padding: 15px;
	border-bottom: 1px solid #999999;
}

.drawer-menu li:hover{
	background-color:#CAE7F2;
}

.drawer-menu li:first-child{
	border-top: 1px solid #999;
}

.drawer-menu li a{
	display: block;
	color: #333333;
	padding: 15px;
	font-weight: 800;
	text-decoration: none;
    text-shadow: 2px 2px 1px #fff,
    -2px 2px 1px #fff,
    2px -2px 1px #fff,
    -2px -2px 1px #fff;
}

.mobil_menu_phone a{
	display: inline !important;
	text-decoration: underline;
	padding-left: 0px !important;
}

/** ページコンテンツ **********************************/

.slider{
	margin-bottom: 20px;
}

.page_title{
	background-image: url(img/title_bg.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 140px;
	padding-top: 20px;
	margin-bottom: 20px;
	border: 1px solid #00698C;
}

.page_title h1{
	font-size: 200%;
	font-weight: 400;
	padding-left: 5px;
	margin-bottom: 10px;
}

.page_title p{
	font-size: 90%;
	padding-left: 5px;
}

.h2_contents {
    background-position: left bottom;
    background-repeat: no-repeat;
    border-bottom: 2px solid #00bfff;
    border-left: 12px #00bfff;
    border-left-style: groove;
	padding-left: 5px;
    min-height: 30px;
    font-size: 120%;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 20px;
}

.contents{
	padding-bottom: 40px;
}

.contents p{
	line-height: 180%;
	padding-bottom: 10px;
}

.contents img{
	max-width: 100%;
}

.one_half{
	width: 100%;
	margin-bottom: 30px;
}

.one_half a img{
	width: 90%;
	max-width: 480px;
}

.table_info{
	width: 100%;
}

.table_info caption{
	text-align: left;
}

.table_info tr th{
	background-color: #E1EBEF;
	width: 100%;
	display: block;
	text-align: left;
	padding: 10px;
	border-bottom: 1px dotted #999999;
}

.table_info tr:first-child th{
	border-top: 2px solid #999999;
}

.table_info tr td{
	width: 100%;
	display: block;
	text-align: left;
	border-bottom: 2px solid #999999;
	padding: 20px;
}

.enkaku ul li{
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #00A3D9;
}

.enkaku ul li span{
	font-weight: 800;
	color: #00698C;
	display: block;
}

.enkaku ul li:nth-child(2n+1){
	background-color: #E6F9FF;
}

/** 問い合わせフォーム **********************************/

.table_form{
	width: 100%;
}

.table_form tr th{
	background-color: #CCF2FF;
	display: block;
	width: 100%;
	text-align: left;
	font-size: 120%;
	padding: 10px 10px 10px 10px;
	border-bottom: 1px dotted #00698C;
}

.table_form tr td{
	display: block;
	width: 100%;
	font-size: 120%;
	padding: 10px 10px 10px 10px;
	border-bottom: 2px solid #00698C;
}

.table_form tr td label{
	padding-left: 10px;
	padding-right: 10px;
}

.table_form tr td input, .table_form tr td textarea, .table_form tr td label, .table_form tr td select{
	font-size: 110%;
}

.table_form tr td input, .table_form tr td textarea, .table_form tr td select{
	background-color: #E6F9FF;
}

.table_form tr td textarea{
	width: 90%!important;
	max-width: 480px;
}

.input_tell{
	width: 300px !important;
}

.hint{
	display: block;
	padding: 10px;
	border: 1px dashed #999999;
	margin-top: 10px;
}

.att{
	color: #C7243A;
}

.button{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
}

.button button{
	width: 120px;
	text-align: center;
	font-size: 130%;
	padding: 10px;
	margin-right: 10px;
	margin-left: 10px;
}

.button button:hover{
	background-color: #CAE7F2;
	border: 3px solid #007FB1;
	font-weight: 800;
}

.wtn_copyright{
	display: none;
}

.thakyou{
	width: 100%;
	text-align: center;
	background-color: #007FB1;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.zmPreview{
	max-width: 480px;
}

/** ▼プライバシーポリシー *************************/
.list_disc{
	list-style-type: disc;
	margin-left: 20px;
	margin-bottom: 10px;
}
.list_disc li{
	padding-top: 2px;
	padding-bottom: 2px;
}

.list_policy{
	list-style-type: none;
	padding-left: 5px;
	padding-bottom: 20px;
}

.list_policy li{
	padding-top: 5px;
	padding-bottom: 5px;
}

.contact_button{
	text-align: center;
	padding-bottom: 10px;
}

.contact_button a{
	display: inline-block;
	background-color: #00bfff;
	line-height: 250%;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	font-weight: 800;
	color: white;
	border: 1px solid #999999;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
	transition: 0.3s;
}

.contact_button a:hover{
	background-color: #00698C;
}



/** ▲プライバシーポリシー *************************/




/** エラーメッセージ **/

.message{
	border: 2px dashed #C7243A;
	padding: 10px;
	margin: 20px 5px 20px 5px;
	color: #C7243A;
	font-size: 110%;
	font-weight: 800;
}

/** フッター **********************************/

.footer{
	background-color: #00BFFF;
	color: white;
}

.footer_contents{
	font-size: 110%;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer_navi{
	list-style-type: none;
	padding-bottom: 20px;
}

.footer_navi li{
	float: left;
	margin-left: 20px;
}

.footer_navi li i{
	margin-right: 7px;
}

.footer_navi:after{
	content: "";
	clear: both;
	display: block;
}

.footer_navi li a{
	text-decoration: underline;
	color: white;
}



.footer_contents a{
	color: white;
}

/** 画像アクション **********************************/

.list-mv01{
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
}
.mv01{
	transition: .8s;
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

.section{
	margin-bottom: 50px;
}
.section_sub{
	margin-bottom: 20px;
}

.table_news{
	margin-bottom: 15px;
	border-collapse: collapse;
	border-top: 1px solid #666666;
	border-left: 1px solid #666666;
}

.table_news tr th{
	width: 100%;
	display: block;
	text-align: left;
	font-size: 16px;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding: 10px 5px;
}

.table_news tr th:first-child{
	background-color: #f5f5f5;
	border-bottom: 1px dotted #666666;
}

.table_news tr td{
	width: 100%;
	display: block;
	font-size: 14px;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding: 10px 5px;
}

.table_news tr td:first-child{
	background-color: #f5f5f5;
	border-bottom: 1px dotted #666666;
}

.table_news tr td:last-child{
	padding-bottom: 15px;
}
.table_policy{
	border-collapse: collapse;
	border-top: 1px solid #666666;
	border-left: 1px solid #666666;
	margin-bottom: 20px;
}

.table_policy tr th{
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	background-color: #dcdcdc;
	padding: 10px;
}

.table_policy tr td{
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	padding: 10px;
}

h3.align_center {
  color: #007bb5; /* 深みの有るスカイブルー */
  background: linear-gradient(135deg, #e0f2fe 0%, #b9e6fe 100%);
	padding: 8px 16px;
  border-left: 6px solid #0284c7;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
}

/* 本文テキスト */
p {
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

/* 緊急連絡先ボックス（カード風デザイン） */
.comment_box {
  background-color: #f0f9ff; /* 超薄型スカイブルー */
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  line-height: 2;
}

/* 各項目（見出し）の太字化 */
.comment_box {
  color: #1e293b;
  font-weight: 600;
}

/* 電話番号リンク（クリック/タップしやすいボタン装飾） */
.span_tell {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 16px;
}

.span_tell a {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
	display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #0284c7;
  border: 2px solid #38bdf8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
}

/* ホバー・タップ時の演出 */
.span_tell a:hover {
  background-color: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(2, 132, 199, 0.25);
}


