@charset "utf-8";


/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
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, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.6;
}
:focus {outline: 0;}

ol, ul {list-style: none;}
table.table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
/* -------------------------------------------------------------- */

body {
color:#333;
font-size:small;
-webkit-text-size-adjust: none;
}






/* リンク設定
------------------------------------------------------------*/
a{
	color: #000066;
	text-decoration: none;
}
a:hover{
	color: #0033FF;
}
a:active, a:focus {outline:0;}


/*************
/* 電話番号
*************/t
.info{
float:right;
padding:20px;
text-align:right;
}

.info .add{font-size:11px;}


/*************
/* ヘッダーメニュー
*************/
    header {
	z-index: 10;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	max-width: 1145px;
	margin-left: auto;
	margin-right: auto;
	padding: clamp(20px, 5.333333333333333vw, 10px);
	-webkit-transition-duration: 300ms;
	transition-duration: 300ms;
    }

    @media (min-width: 1025px) {
      header {
 	    position: static;
	    padding: clamp(30px, 3.125vw, 60px) clamp(40px, 4.6875vw, 90px);
      }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      header {
	  position: fixed;
	  padding: clamp(10px, 2.998500749625187vw, 20px);
      }
    }

    .header-container {
      display: -ms-grid;
      display: grid;
      -webkit-box-align: center;
      align-items: center;
      -ms-flex-align: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
    }

    .header-logo {
      width: -moz-fit-content;
      width: -webkit-fit-content;
      width: fit-content;
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .header-logo {
        width: clamp(70px, 17.991004497751124vw, 140px);
      }
    }

    .logo-link {
      display: block;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    .logo-link:hover {
      opacity: 0.6;
    }

    @media (max-width: 1024px) {
      .nav-menu {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding-right: clamp(30px, 8vw, 60px);
        padding-bottom: clamp(30px, 8vw, 60px);
        padding-left: clamp(30px, 8vw, 60px);
        transition-duration: 300ms;
        transform: translateX(200%);
        overflow: auto;
        /* ナビメニューの背景色を変えたい時 */
        background-color: rgba(0, 0, 0, .6);
      }

      .nav-menu.active {
        transform: translateX(0);
      }
    }

    @media (min-width: 1025px) {
      .nav-menu {
        padding-top: 0 !important;
      }
    }

    @media (min-width: 1025px) {
      .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: clamp(20px, 2.0833333333333335vw, 40px);
      }
    }

    @media (max-width: 1024px) {
      .menu-item {
        /* 各ナビメニューの下線を変えたい時 */
        border-style: solid;
        border-color: #fff;
        border-bottom-width: 1px;
      }
    }

    .menu-link {
      display: block;
      color: #000;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    .menu-link:hover {
      opacity: 0.6;
    }

    .nav-menu.active .menu-link {
      color: #fff;
    }

    @media (max-width: 1024px) {
      .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
        padding-top: clamp(10px, 2.6666666666666665vw, 20px);
        padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
        text-align: center;
        /* ナビメニューの文字色を変えたい時 */
        color: #000;
      }
    }

    @media (min-width: 1025px) {
      .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
      }
    }

    .hamburger-button {
      width: -moz-fit-content;
      width: -webkit-fit-content;
      width: fit-content;
      height: clamp(13px, 3.466666666666667vw, 26px);
      margin-right: 0;
      margin-left: auto;
      cursor: pointer;
    }

    .hamburger-lines {
      position: relative;
      width: clamp(40px, 10.666666666666666vw, 90px);
      height: clamp(13px, 3.466666666666667vw, 26px);
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    @media (max-width: 1024px) {
      .hamburger-lines {
        width: clamp(40px, 10.666666666666666vw, 90px);
        height: clamp(13px, 3.466666666666667vw, 26px);
      }
    }

    @media (max-width: 768px) and (orientation: landscape) {
      .hamburger-lines {
        width: clamp(30px, 7.496251874062969vw, 50px);
        height: clamp(15px, 2.998500749625187vw, 20px);
      }
    }

    .hamburger-lines.active {
      height: 1px;
    }

    .hamburger-lines .line {
      position: absolute;
      right: 0;
      left: 0;
      display: block;
      width: 100%;
      height: clamp(1px, .26666666666666666vw, 2px);
      margin: auto;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
      /* ハンバーガーメニューの線の色を変えたい時 */
      background-color: #000;
    }

    .hamburger-lines.active .line {
      /* ハンバーガーメニューオープン時の線の色を変えたい時 */
      background-color: #fff;
    }

    .hamburger-lines .line:nth-child(1) {
      top: 0;
    }

    .hamburger-lines .line:nth-child(2) {
      bottom: 0;
    }

    @media (min-width: 1025px) {

      /* タブレットサイズ以上でハンバーガーメニューを丸ごと非表示 */
      .hamburger-button {
        display: none;
      }
    }
 




/**************************
/* メイン画像（トップページ+サブページ）
**************************/

.slogan{
position:absolute;
max-width:100%;
height:auto;
bottom:20px;
left:0;
padding:5px 10px;
line-height:1.4;
color:#939393;
}

.slogan h2{
padding-bottom:5px;
font-size:20px;
font-weight:bold;
color:#333;
}


/**************************
/* グリッド
**************************/
.gridWrapper{
padding-bottom:20px;
overflow: hidden;
}

* html .gridWrapper{height:1%;}
	
.grid{
float:left;
border-radius:5px;
background:#fff;
}

.box{
margin:0 5px;
padding:10px;
border:1px solid #f1f1f1;
}

.box img{
max-width:100%;
height:auto;
border:4px solid #f1f1f1;
}

.box h3{padding:10px 0 5px;}

.box h3, .box p{text-align:left;}

.box p.readmore{
padding:10px 5px 5px;
text-align:right;
}



/*************
メイン コンテンツ
*************/
section.content article{
padding:20px;
margin-bottom:20px;
border:1px solid #f1f1f1;
overflow:hidden;
}

* html section.content article{height:1%;}

section.content p{margin-bottom:5px;}

h3.heading{
font-weight:normal;
padding:0 10px;
line-height:36px;
color:#333;
background:#f1f1f1;
}

section.content img{
max-width:90%;
height:auto;
}

.alignleft{
float:left;
clear:left;
margin:3px 10px 10px 0;
}

.alignright{
float:right;
clear:right;
margin:3px 0 10px 10px;
}

#gallery .grid img,.border,ul.list img{border:4px solid #f1f1f1;}



/*************
テーブル
*************/
table.table{
border-collapse:collapse;
margin:5px auto 15px auto;
}

table.table td{
border-collapse:collapse;
background-color:#F9F9F9;
text-align:left;
padding:8px;
border:1px solid #D6D6D6;
line-height:20px;
}

table.table th{
background-color:#F5F5F5;
text-align:right;
padding:8px;
white-space:nowrap;
color: #151515;
border-top:1px solid #D4D4D4;
border-right:4px solid #D4D4D4;
border-bottom:1px solid #D4D4D4;
border-left:1px solid #D4D4D4;
font-size:13px;
font-weight:normal;
letter-spacing:1px;
background-repeat:repeat-x;
background-position:top;
}


/*************
/* サイドバー
*************/
#sidebar ul{padding:10px;}

#sidebar li{
margin-bottom:10px;
padding-bottom:10px;
list-style:none;
border-bottom:1px dashed #f1f1f1;
}

#sidebar li:last-child{
border:0;
margin-bottom:0px;
}

#sidebar li a{display:block;}

#sidebar ul.list li{
clear:both;
margin-bottom:5px;
padding:5px 0;
overflow:hidden;
border:0;
}

ul.list li{height:1%;}

ul.list li img{
float:left;
margin-right:10px;
}

ul.list li{
font-size:12px;
line-height:1.35;
}


/*************
/* フッター
*************/
#footer{
clear:both;
overflow:hidden;
padding:10px 10px 10px 10px;
background:#DFF1FB;
}


#footer .logo a{
	background-image: url(../img/logo.png);
	width: 230px;
	height: 80px;
	background-repeat: no-repeat;
	margin: 10px;
	font-size: 0px;
	display: block;
	background-position: center center;
	margin-left:auto;
	margin-right:auto;
}

* html #footer{height:1%;}

#footer .grid{
padding:10px 0 5px;
margin:0;
background:transparent;
}

#footer #info .logo, #footer #info .info{float:none;}

#footer #info .info{
clear:both;
padding:10px 0 0 15px;
text-align:left;
}

#footer .logo{font-size:18px;}

#footer .info .tel,#footer .info .tel span,#footer #info .add{
font-size:12px;
color:#333;
}

ul.footnav{
float:right;
width:650px;
padding:20px 0;
}

ul.footnav li{
float:left;
margin-bottom:10px;
padding:0 7px 0 8px;
font-size:11px;	
border-right:1px solid #b6b6b6;
}


#footer a{color:#333;}
#footer a:hover{color:#888;}

address{
clear:both;
padding:5px;
text-align:center;
font-style:normal;
font-size:10px;
color:#333;
background:#dbdbdb;
}

a:kakushi-link{
	color: #FFF;
}


/* トップページ
------------------------------------------------------------*/
#top-main{
	margin-bottom:30px;	
	}
#top-main #tm_contebox {
	margin-bottom:20px;
    margin-bottom: 3rem;
}
#top-main #tm_contebox h2.komidashi {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #2da7e0;
}
#top-main #tm_contebox h2.komidashi span {
	display: block;
    font-size: .9rem;
    color: #666;
    margin-top: .3rem;
	margin-bottom: 3rem;
}

#top-main #tm_contebox p.m1 {
    text-align: center;
}
#top-main #tm_contebox p.tel_moji {
	font-size: 20px;
	color: #F00;
	font-weight: bolder;
	text-align: center;
}

#top-main #tm_contebox ul.strength-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


#top-main #tm_contebox .reveal.show {
    opacity: 1;
    transform: none;
}

#top-main #tm_contebox .strength-list li {
    flex: 1 1 190px;
    background: #fff;
    border: 1px solid #e2e6ef;
    border-radius: 6px;
    padding: 1.2rem 1rem;
    text-align: center;
    position: relative;
}

#top-main #tm_contebox .strength-list li span {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 28px;
	border-radius: 50%;
    font-size: .9rem;
	font-weight: bold;
	background-color: #2da7e0;
}

#top-main #tm_contebox .flow-list {	
	display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

#top-main #tm_contebox .flow-list li {
	color: #fff;
	border-radius: 6px;
	padding: 1rem 1.4rem;
	flex: 1 1 120px;
	text-align: center;
	background-color: #2da7e0;
}

#top-main #tm_contebox .flow-list li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: .2rem;
}


#top-main #tm_contebox .service {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}


#top-main #tm_contebox .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease-out;
}




.service.reverse>.service-img{order:2;}


#top-main #tm_contebox .service-img {
    flex: 1 1 45%;
}

#top-main #tm_contebox .service-img img {
    width: 100%;
    border-radius: 6px;
}

#top-main #tm_contebox .reveal.show {
    opacity: 1;
    transform: none;
}



#top-main #tm_contebox .service-body {
    flex: 1 1 45%;
}

#top-main #tm_contebox  .service .service-ttl {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    line-height: 1.3;
    color: #2da7e0;
}

#top-main #tm_contebox .service-ttl span {
    font-size: .9rem;
    color: #666;
}




/* PC用
------------------------------------------------------------*/
@media only screen and (min-width: 960px){
	#wrapper,.inner{
	padding: 0;
	width: 1200px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	}
	
	#wrapper{
	padding-bottom:20px;
	}

.page_contents p .img_all100p {
}
	
    nav#mainNav{
	clear: both;
	overflow: hidden;
	position: relative;
	background-color: #00a0e8;
	border-bottom-width: 2px;
	border-bottom-color: #16749c;
	line-height: ;
	}
	
	#main{
	float:right;
	width:860px;
	margin-right:20px;
	margin-bottom:30px;
	}
	
	#subpage #wrapper {
	margin-top:20px;
	}
	
	#sidebar{
	float:left;
	width:280px;
	overflow:hidden;
	margin-left:20px;
	margin-bottom:30px;
	}
	
	#sidebar article{
	padding:7px;
	margin-bottom:20px;
	border:1px solid #f1f1f1;
	overflow:hidden;
	}
	
	/* グリッド全体 */
	.gridWrapper{
	width:960px;
	margin:0 0 0 -10px;
	}
	
	#gallery article{padding:10px 0 10px 10px;}
	
	/* グリッド */
	.grid{
	float:left;
	width:320px;
	margin-left:20px;
	}
	
	#subpage .grid{width:auto;}
	
  #gallery .grid{
	width:auto;
	margin:10px 0 2px 10px;
	}
}


@media only screen and (max-width:959px){
	*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
	
	#wrapper{
	padding-top:0px;
	}
	
	
	#sidebar{
	padding-bottom: 30px;
	text-align: center;
}
	
	#sidebar article{padding:7px 0;}
	
	#footer .grid,#footer ul.footnav{
	float:none;
	width:100%;
	text-align:center;
	}

	ul.footnav li{float:none;display:inline-block;}
	
	.grid{
	width:32%;
	margin:10px 0 0 1%;
	}
	
	#gallery .grid{
	float:left;
	width:31%;
	margin:0 0 0 1%;
	}
	
	#footer .grid img, #footer .info{float:none;}
	#footer .grid p{display:block;}
	#footer #info .info{float:none;text-align:center;}
	
	#footer .logo,#footer .info{
	width:100%;
	float:none;
	}
	
	#footer .logo p{float:none;display:block;}
	#footer .logo img{float:none;padding:0;}
}


/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px){
	#header{
	height:auto;
	}
	
	#header h1,.logo,.info{text-align:center;}
	
	.logo,.info{
	clear:both;
	width:100%;
	float:none;
	}

	#header h1,#header .info{
    display:none;
	}
	
	.logo p{float:none;display:block;}
	.logo img{float:none;padding:0;}
	
	.box img{
	float:left;
	margin-right:5px;
	}
	
	.box h3{padding-top:0;}

  .alignleft,.alignright{
	float:none;
	display:block;
	margin:0 auto 10px;
	}
	
	#gallery .grid{float:left;}
}


/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){
	.grid{width:100%;}
	.box img{max-width:100px;}
	#mainBanner h2,#mainBanner p{font-size:80%;}
}

/* 共通設定 */

.midashi {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-size: 22px;
	color: #000000;
	margin-bottom: 10px;
	background-color: #EEEEE8;
	border-bottom-width: 1px;
	border-left-width: 4px;
	border-bottom-style: dashed;
	border-left-style: solid;
	border-bottom-color: #0099FF;
	border-left-color: #0099FF;
}
.midashi span {
	font-size: 14px;
	margin-left:30px;
}

.main_header{
	margin-bottom: 20px;
}

@media only screen and (min-width: 960px){
#top_link,
#page_link {
    border-bottom: 1px dashed #98a5ed;
    margin-bottom: 10px;
    padding-bottom: 10px;
    height: 210px;
}

#top_link .pl_list,
#page_link .pl_list {
	float: left;
	margin-left: 3px;
	margin-right: 3px;
	text-align: center;
}
#top_link .pl_list span,
#page_link .pl_list span {
	margin-top: 5px;
}
}

@media only screen and (max-width:956px){
#top_link,
#page_link {
    border-bottom: 1px dashed #98a5ed;
    margin-bottom: 10px;
    padding-bottom: 10px;
    height: 300px;
	width:100%;
}
#top_link .pl_list,
#page_link .pl_list {
	float: left;
	margin-left: 3px;
	margin-right: 3px;
	text-align: center;
}
#top_link .pl_list span,
#page_link .pl_list span {
	margin-top: 5px;
}
}

@media only screen and (max-width:480px){
#top_link,
#page_link {
    border-bottom: 1px dashed #98a5ed;
    margin-bottom: 10px;
    padding-bottom: 10px;
	width:100%;
}
#top_link .pl_list,
#page_link .pl_list {
	text-align: center;
	width:100%;
    margin-bottom: 5px;
}
#top_link .pl_list span,
#page_link .pl_list span {
	margin-top: 5px;
}	
}

#top_news .komidashi,
.page_contents .komidashi {
	color: #000000;
	font-size: 16px;
	margin-bottom: 10px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-top: 3px;
	border-bottom-width: 1px;
	border-left-width: 3px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #0099FF;
	border-left-color: #0099FF;
}

.page_contents {
    border-bottom: 1px dashed #b02a2f;
    margin-bottom: 20px;
    padding-bottom: 20px;
}


.page_contents .pricelist_ttl {
	font-size: 18px;
	margin-bottom: 10px;
	border-bottom: 1px solid #71494A;
}
#main .page_contents .pricelist_table {
	width: 100%;
	height: 10px;
}
#main .page_contents .pricelist_table tbody tr td {
	border-bottom: 1px dotted #894F4F;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}

#main .page_contents .pricelist_table .right {
	text-align: right;
}
.img_all100p {
	width: 100%;
}







@media only screen and (min-width: 960px){
#main .s_midashi {
	font-size: 300%;
	margin-bottom: 20px;
}
#main .s_komidashi {
	color: #01ACCA;
	text-decoration: blink;
	font-size: 240%;
	margin-bottom: 20px;
	margin-top: 20px;
}

#top-main .all_img {
	width: 100%;
}


#main .all_img {
	width: 100%;
}

}


@media only screen and (max-width:956px){
#main .s_midashi {
	font-size: 300%;
	margin-bottom: 20px;
}
#main .s_komidashi {
	color: #01ACCA;
	text-decoration: blink;
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
}
#main .all_img img{
	width: 100%;
}

}


@media only screen and (max-width:480px){
#main .s_midashi {
	font-size: 300%;
	margin-bottom: 20px;
}
#main .s_komidashi {
	color: #01ACCA;
	text-decoration: blink;
	font-size: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	
	
	
}
#main .all_img img{
	width: 100%;
}
}
