@charset "UTF-8";
/* CSS Document */
body{
	width: 100%;
	color: #333;
	font-size: 16px;
	font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
			background-color:#fff; /* 背景カラー */
	}
body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }
body.bgimg {
	background-image: url("../images/bg2.jpg");
    background-attachment: scroll; 
    background-repeat: no-repeat; 
    background-position: top;
	margin: 0 auto;
}
body.bgimg2 {
	background-image: url("../images/bg.jpg");
    background-attachment: scroll; 
    background-repeat: no-repeat; 
    background-position: top;
	margin: 0 auto;
}
img {
  pointer-events: none;
}
.container_head{
	margin: 0 auto;
}

.head img{
	max-width: 100%;
	margin: 0 auto;
}

img.miniimage { display: none; }   /* ※1 */

/* ▼表示領域が600px以上の場合 */
@media (min-width: 600px) {
   img.miniimage { display: none; }  /* miniを非表示 */
   img.bigimage  { display: block; } /* bigを表示 */
}
/* ▼表示領域が600px未満の場合 */
@media (max-width: 599px) {
   img.miniimage { display: block; } /* miniを表示 */
   img.bigimage  { display: none; }  /* bigを非表示 */
}
.resizeimage img { width: 100%; }   /* ※2 */

.navbar{
	border-top: 4px solid #4597ff;
	background-color:#e3e2e2;
	box-shadow: 2px 2px 1px 1px #35567c;
	height: 45px;
	background-image: linear-gradient(180deg, rgba(244, 244, 255, 1),rgba(209, 209, 209, 1));
}
.navbar ul{
	display: table;
	margin: 0 auto;
	padding: 0;
	width: 40%;
	margin-right: 100px;
	text-align: center;
	
}
.navbar ul li{
	display: table-cell;
	min-width: 40px;
	border-right: 2px solid #fff;
	letter-spacing:1px;
	line-height:1em;
}
.navbar ul li:first-child{
	border-left: 1px solid #fff;
}
.navbar ul li a{
	display: block;
	width: 100%;
	padding: 10px 0;
	text-decoration: none;
	color: #333;
}
.navbar ul li a:hover{
	background-color:#F8E750;
}
.navbar ul li.current{
	font-weight: bold;
}
.navbar ul li.current a{
	color: #00B0F0;
}

h5 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 10px #89e7d4;/*左線*/
	text-align: left;
	font-size: 1.2em;
}
.tel_txt{
	margin: 0 auto;
	text-align: right;
}
.kuhaku{
	margin-right:0.5em;
}
.tel_s{
	font-size: 0.5em;
}
.tel {
  color: #00216b;
  font-size: 0.9em;
	margin: 0 auto;
	text-align: center;
}
.address{
	font-size: 0.85em;
}
.submenu-txt{
	font-size: 0.7em;
	color: #ae8e30;
}
.main{
	margin: 0 auto;
	margin-bottom: 70px;
	width:95%;
}
.foot{
	background-color:#dcf6de;
	height: auto;
	font-size: 0.8em;
	margin-bottom: 20px;
	
}
.copyright_txt{
	margin-top: 10px;
	font-size: 0.8em;
}
address{
	color: #000;
	padding-top: 15px;
	line-height: 20px;
}
.list-unstyled{
	padding-top: 11px;
}

.image_link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.image_link img{
  display:block;
  width:100%;
}
.image_link:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
}
.image_link:after{
  content:"詳しくはこちら";/*好みの文章に変更してください。*/
  display:block;
  color:#fff;
  line-height:20px;
  width:180px;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-0.5em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.image_link:hover:before{
  opacity:0.5;
}
.image_link:hover:after{
  opacity:1;
  margin-top:-0.5em;
}
.card-text:last-child {
  text-align: left;
}

 /*header*/
		.header {
			margin: 0px auto;
        }
        .header-nav {
            width: 1200px;
            margin: 0px auto 0px;
        }
        .header-navList {
            display: flex;
            justify-content: space-around;
            align-items: flex-end;
            text-align: left;
        }
        .header-navList li{
            width: 1200px;
        }
        .header-navList li a{
            display: flex;
            justify-content:left;
            align-items: flex-end;
        }
        .saiteName {
            font-size: 24px;
            font-weight: bold;
            line-height: 1.4;
        }
		.saiteName img{
                max-width: 100%;
				margin: 20px 10px;
            }

        /*1000px以下のときの表示*/
        @media screen and (max-width : 1000px){
            .saiteName {
                margin: 10px 20px;
            }
			.saiteName img{
                max-width: 100%;
				margin: 10px 5px;
            }
			.header-nav {
				max-width: 80%;
			}
			.header-navList li{
				max-width: 80%;
			}
			.header_pc{
				display: none;
			}
			.navbar{
				display: none;
			}
			
        }
		 /*サブページイメージ*/
        .sub_header{
			position: relative;/*相対配置*/
			margin: 0 auto 30px;
			padding: 0;
			width: 85%;
        }
        .sub_header img{
			height: 100px;
			width: 100%;
			object-fit: cover;
			font-family: 'object-fit: cover;'; /*IE対策*/
			border-radius: 15px;
        }
		.sub_header p{
			position: absolute;/*絶対配置*/
			color: #000;
			font-size: 26px;
			top: 0;
			left: 0;
			width: 80%;
			background-color: #fff;
			margin: 20px 0 10px 30px;
			padding: 10px 20px;
			opacity: 0.8;
			font-weight: bold;
		}
        
        /*画面サイズ600px以下のサブページスタイル*/
        @media screen and (max-width : 1000px){
            .visual{
                margin-bottom:0 ;
            }
            .sub_header img{
                height: 100px;
                width: 100%;
                object-fit: cover;
                font-family: 'object-fit: cover;'; /*IE対策*/
            }
			.img-fluid2{
			width: 450px;
				height: 300px;
				object-fit: cover;
			}
			
        }
        
        /*ナビ960px以下の表示*/
        @media screen and (max-width : 1000px){
            .header{
                margin: 0;
				
            }
            .header-nav{
                display: none;
            }

        }
        /*ハンバーガーメニューの設定*/
        @media screen and (min-width : 999px){
            #nav-drawer {
                display: none;
            }
        }
        @media screen and (max-width : 1000px){
            #nav-drawer {
                display: flex;
				max-width: 80%;
                justify-content: space-between;
                margin: 0 auto 0 0;/*IE対策の右寄せ*/
            }
            .nav-unshown {/*チェックボックス等は非表示に*/
                display:none;
            }
            #nav-open{
                display: inline-block;
                width: 30px;
                height: 21px;
                cursor: pointer;
                position: absolute;
                top: 40px;
                right: 30px;
			
            }
            /*ハンバーガーアイコンをCSSだけで表現*/
            #nav-open span, #nav-open span:before, #nav-open span:after {
                position: absolute;
                height: 3px;/*線の太さ*/
                width: 30px;/*長さ*/
                background: #000;
                display: block;
                content: '';
                cursor: pointer;
            }
            #nav-open span:before {
                bottom: -8px;
            }
            #nav-open span:after {
                bottom: -16px;
            }
			.nav-title {
                position: absolute;
                top: 60px;
                font-size: 16px;
                right: 25px;
            }
            /*閉じる用の薄黒カバー*/
            #nav-close {
                display: none;/*はじめは隠しておく*/
                position: fixed;
                z-index: 99;
                top: 0;/*全体に広がるように*/
                left: 0;
                width: 100%;
                height: 100%;
                background: black;
                opacity: 0;
                transition: .3s ease-in-out;
            }
            /*ハンバーガーメニュー展開後の中身*/
            #nav-content {
                overflow: auto;
                position: fixed;
                top: 0;
                left: 0;
                z-index: 9999;/*最前面に*/
                width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
                max-width: 330px;/*最大幅*/
                height: 100%;
                background: #fff;/*背景色*/
                transition: .3s ease-in-out;/*滑らかに表示*/
                -webkit-transform: translateX(-105%);
                transform: translateX(-105%);/*左に隠しておく*/
				
            }
            /*チェックが入った後の表示*/
            #nav-input:checked ~ #nav-close {
            display: block;/*カバーを表示*/
            opacity: .5;
				
            }
			
            #nav-input:checked ~ #nav-content {
                -webkit-transform: translateX(0%);
                transform: translateX(0%);/*中身を表示（右へスライド）*/
                box-shadow: 6px 0 25px rgba(0,0,0,.15);
				
            }
			
            /*展開後のリストのスタイル*/
            .nav-drawerList{
                list-style: none;
                text-align: center;
                margin: 40px auto 20px;
                padding: 0 40px;
				width: 100%;
				
            }
            .nav-drawerList li {
                line-height: 2.5;
				padding: 15px;
				display: block;
				border-bottom: #ccc 1px solid;
				
            }
            .nav-drawerList li a{
                display: block;
            }
			.nav-drawerList ul li a:hover{
				background-color:#F8E750;
			}
            .wrapHeader-SNSTitle{
                margin: 20px 0 0;
                color: #4e5a64;
            }
            .snsIcon{
                width: 40px;
            margin: 20px 5px 5px;
            }
            .snsIcon img{
                width: 100%;
            }
        }


h3 {
  position: relative;
  padding-left: 25px;
	width: auto;
	margin-top: 30px;
}

h3:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #000;
}
h3:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 2px #000;
}
.h3_sub{
	color: #999;
	font-size: 0.7em;
}
.h3_txt{
	text-align: center;
	margin-bottom: 50px;
	font-size: 1em;
}
.main2{
	margin: 0 auto;
	width: 90%;
	
}
.main_txt{
	text-align: center;
	font-size: 1em;
}
.main_txt_sub{
	margin: 0 auto;
	 width: 80%;
}

.main_s1{
	position: relative;
    padding: 0.5em 1em;
    margin: 0.8em 0;
    color: #5d627b;
	z-index: -2;
	height: 300px;
	border-right: solid 1px #eee;
	border-bottom: solid 1px #eee;

}
.main_s1 p {
    margin: 0; 
    padding: 0;
}
.s-img {
	position: absolute;
      top: 55%;
      right:5%;
	z-index: -1;
	
}
.current{
	margin-top: 30px;
	padding-right: 5px;
	line-height:30px;
}

.main_list{
	padding-left: 1.2em;
	margin-bottom: 50px;
	line-height:30px;
}
.box2 {
  margin: 20px auto 20px 20px;
  padding: 20px;
  border: 1px solid #434343;
}
.box2-ttl {
  position: relative;
  left: -40px;
  background-color: #4c9ac0;
  color: #fff;
  padding: 0.5em 1em;
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-weight: bold;

}
.main_txt2{
	margin-top: 20px;
}

table{
	margin: 0 auto;
  width: 60%;
  border-collapse: collapse;
	margin-bottom: 60px;
}

table tr{
  border-bottom: solid 1px #ccc;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  width: 20%;
  background-color: #1672ba;
  color: white;
  text-align: center;
  padding: 10px 10px;
}

table td{
  text-align: left;
  width: 50%;
  padding: 10px 40px;
	background-color: #fff;
	opacity: 0.8;
}
.size-button {
  background-color: #fff;
  border: 1px solid #999;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  margin: 3px;
  padding: 5px;
  text-align: center;
	width: 40px;
}
	
 .size-button:hover,
 .size-button.active {
    background-color: #AE2823;
    color: #fff;
  }
#pageTop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 9999;
}

#pageTop i {
  padding-top: 5px;
}

#pageTop a {
    display: block;
    z-index: 9999;
    padding: 15px 0 0;
    border-radius: 40px;
    width: 80px;
    height: 60px;
    background-color: #F8E750;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.foot_img{
	max-width: 100%;
	text-align: right;
}