@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&family=Zen+Kurenaido&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');

/*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}


#header{
    /*fixedで上部固定*/
  position: fixed;
  height: 100px;
  width:100%;
    z-index: 777;/*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(221,243,255, 0.9);;
  color:#330;
  text-align: center;
  padding: 20px;
  font-family: "Zen Kurenaido", sans-serif;
}

/*　上に上がる動き　*/

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

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

/*　下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

@media screen and (max-width:800px){
/*ヘッダーブロック*/
#g-navi {
  display: none;
  }
  }
/*========= レイアウトのためのCSS ===============*/

h1{
  font-size:1.6rem;
  text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
}
h1 a:hover,h1 a:active{
  color:#fff; 
}
h1 a{
  text-decoration: none;
  color: #330;
}

h2{
  font-size:1.2rem;
  text-align: center;
  margin: 0 0 30px 0;
}

p{
  margin-top:20px;  
}

small{
  background:#9cf;
  color:#333;
  display: block;
  text-align: center;
  padding:20px;
}


nav ul{
  font-size:1.2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  text-shadow: 1px 3px 3px rgba(0, 0, 0, 0.4);
  }

nav ul li a{
  display: block;
  text-decoration: none;
  color: #330;
  padding:40px;
  transition:all 0.3s;
  
}

nav ul li.current a,
nav ul li a:active{
  color:#fff; 
}

nav ul li a:hover{
  transform: scale(1.2);
  color:#fff; 
}




main {
      padding-top: 70px;
}
section{
  padding:10px;
}




/*mainimg  ---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;
	position: relative;
	animation-name: opa2;
    animation-duration: 0.5S;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
#mainimg img{
 width: 100%;
 box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
}
#footimg {
	clear: left;
	    text-align: center;

	position: relative;
	animation-name: opa2;
    animation-duration: 0.5S;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
#footimg img{
 width: 95%;
  margin-top: 200px;
   box-shadow: 5px 5px 10px rgba(0,0,0,0.4);


}
#catimg {
	clear: left;
	width: 100%;
	position: relative;
	animation-name: opa2;
    animation-duration: 0.5S;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
#catimg img{
 width: 100vw;
  margin-top: 200px;

}
#primg {
    text-align: center;
	clear: left;
	width: 100%;
	position: relative;
	animation-name: opa2;
    animation-duration: 0.5S;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}
#primg img{
 margin-top: 200px;

}

.permission{
	position:absolute;
	top:150px;
	text-align: center;
    width: 100%;
	color: #1a3164;
	background-color:rgb(204 204 204 / 60%);
	font-size:90%;
}
.work{
	position:absolute;
	bottom:25vh;
	text-align: center;
    width: 100%;
	font-size: 130%;
	color: #fff;
	text-shadow: 2px 2px 10px #1b315a,
	 -2px 2px 10px #142238,
	  2px -2px 10px #374767,
	   -2px -2px 10px #10244b;
}

.group{
  position:absolute;
  width:100%;
  bottom:10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  color:#fff;
}

.group-box{
	padding: 5px 20px;
    border-radius: 0.5em;
    margin: 5px 10px 0;
	width: 400px;
    text-align: center;
}

.col_green{
	background-color:#16902e;
}
.col_bule{
	background-color: rgb(59 75 114 / 90%);
}
.col_ora{
	background-color: rgb(255 165 0 / 90%);
}


/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"Kosugi Maru","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/

	-webkit-text-size-adjust: none;
}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}



/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1240px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 2%;
	padding-right: 2%;
	background: #f2faff;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
#main_pain {
    margin-right: -10px;
    margin-bottom: -10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left:10px;
    padding-right:10px;
}

#main_pain .item {
    position: relative;
    width: calc(100%/3 - 10px);
    margin: 0 10px 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.author_profile .avatar_area img, .animate_image img, .animate_background .image {
    width: 100%;
    height: auto;
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}

.author_profile a.avatar:hover img, .animate_image:hover img, .animate_background:hover .image {
	transition:all 0.3s;
	opacity:0.4;
	}

.author_profile .avatar_area img, .animate_image img, .animate_background .image {
    width: 100%;
    height: auto;
    -webkit-transition: transform .5s ease;
    transition: transform .5s ease;
}

a, a:before, a:after, input {
    -webkit-transition-property: background-color,color;
    -webkit-transition-duration: .2s;
    -webkit-transition-timing-function: ease;
    transition-property: background-color,color;
    transition-duration: .2s;
    transition-timing-function: ease;
}

#main_pain .linkstyle {
    display: block;
}

#main_pain  a {
  text-decoration: none;
}


#main_pain .icon {
    text-align: center;
    font-weight: 600;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

#main_pain .image_wrap {
    display: block;
    margin: 0;
    width: 100%;
    height: 234px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

#main_pain .image {
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


#main_pain .title {
    font-size: 120%;
    background: #9cf;
    padding: 15px;
    border: none;
    color: #330;
    text-align: center;
    border-radius: 10px 10px 0 0;
   	margin-bottom: 0px;
}



#main_pain .title span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: visible;
}




#main_pain .category, .index_service_list .category {
    background-color: #034;
}

#main_pain .category {
    display: block;
    color: #fff;
    background: #003447;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}
@media screen and (max-width:1024px){
	#main_pain .item {
    width: calc(100%/3 - 10px);
	}
}
@media screen and (max-width:480px){
	#main_pain {
		display:block;
		}
	#main_pain .item {
    width: auto;
	}
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 100px 0 0;	/*上、左右、下へのコンテンツ内の余白*/
	position: relative;
	animation-name: opa2;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-delay: 0.5s;		/*出現するタイミング（秒後）*/
	animation-fill-mode: both;
background: #f2faff;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 50px;
	font-size: 250%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: .06em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
	color: #333;		/*文字色*/
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
	font-size: 30%;	/*文字サイズ*/
	color: #4e3a0e;
}
#contents h2 .note {
	margin-top: 1em;
    font-size: 40%;
    border-top: 1px #ccc solid;
    padding-top: 1em;
	}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 150%;	/*文字サイズ*/
	border-bottom: 1px dashed #999;	/*下線の幅、線種、色*/
	padding-left: 3%;		/*左側に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
	color: #1a3164;		/*文字色*/
}
/*段落タグ*/
#contents p {
	padding: 0 3% 30px;	/*上、左右、下への余白*/
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -5px;
}
#contents p + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 100px;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	background: #9cf;		/*背景色*/
	color: #330;			/*文字色*/
	margin: 0 3% 30px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
	color: #f58303;
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	width: 50%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
#contents .list:nth-of-type(even) .text {
	order: 1;
}

/*装飾文字の設定（共通）*/
#contents .list::before {
	font-size: 18vw;
	line-height: 1;
	position: absolute;
	color: rgba(255,255,255,0.10);	/*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
}
/*奇数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(odd)::before {
	left: -60px;
	top: -40px;
}
/*偶数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(even)::before {
	right: 0px;
	top: -40px;
}
/*１つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(1)::before {
	content: "";
}
/*２つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(2)::before {
	content: "";
}
/*３つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(3)::before {
	content: "";
}
/*4つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(4)::before {
	content: "";
}
/*5つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(5)::before {
	content: "";
}
/*6つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(6)::before {
	content: "";
}
/*7つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(7)::before {
	content: "";
}




/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 2vw;	/*文字サイズ*/
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgb(26 49 100 / 86%);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 2%;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #1a3164 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #ccc url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}
body.is-fixed #contents {
	margin-top: 0px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding: 50px 0;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
#contents h2 {
	margin-bottom: 50px;
}

/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
	margin-bottom: 12px;
}

/*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
.link {
	margin-top: -30px;
	padding-top: 30px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 3vw;
}

#mainimg img{
 min-height: 100vw;
 object-fit: cover;
 object-position: 40% 50%;
}
#footimg img{
 min-height: 100&;
 object-fit: cover;
 margin-top: 50px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
#contents h2 {
	margin-bottom: 30px;
    font-size: 200%; 
}
/*h3タグ*/
#contents h3 {
	margin-bottom: 20px;
}
#contents section + section {
	margin-top: 30px;
}

#contents .list-column {
    width: 100%;
}

/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックス内のボタン（共通）*/
.btn1 a {
	padding: 5px 10px;			/*上下、左右へのボタン内の余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*Scroll table設定
---------------------------------------------------------------------------*/
.scroll table{
width:130%;
margin: 0 0 2em;
}

/*フッター上段「コンタクトブロック」
---------------------------------------------------------------------------*/
#outer-inq{
	    margin-top: 0; 
}
#outer-inq .inq{
    width: 70%;
    padding: 10px 0;
}

/*フッター
---------------------------------------------------------------------------*/
address {
    padding-top: 70px;
    background: url(../images/new_logo.png) no-repeat center top / 250px;
}
	
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}


}




/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#9cf;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	display:block;
	  text-shadow:none;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}




/*ヘッダーブロック*/
.openbtn {
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
    display:block;
	}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (min-width:800px){

.openbtn {

    display:none;
	}
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 80%;	/*文字サイズ*/
	background: #fff;	/*背景色*/
	color: #333;	/*文字色*/
	text-align: center;
}
footer a {color: #333;}
footer a:hover {color: #ccc;}
footer .pr {display: block;font-size: 80%;}

address {
    display: block;
	width:100%;
	padding-top: 110px;
	margin: 0;
    font-style: normal;
	font-size: 120%;
	letter-spacing: 0.1em;
	text-align:center;

	background: url(../images/new_logo.png) no-repeat center top / 60%;	/*背景画像の読み込み。*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	font-size:110%;
	padding: 50px 0;	/*上下、左右へのボックス内の余白*/
	background: -moz-linear-gradient(to bottom, #f2faff 40%, #9cf); 
    background: -webkit-linear-gradient(to bottom, #f2faff 40%, #9cf); 
    background: linear-gradient(to bottom, #f2faff 40%, #9cf); 

}
/*リンクテキスト*/
#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu li a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	
	width: 100%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
}
#footermenu ul li{
	display:inline;
}

/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	display:block;
	margin: 4em 0 0.5em;
    border-bottom: solid 1px #1a3164;
    text-align: left;
    color: #b09c92;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #1a3164;	/*背景色*/
	color:#fff;
}
#copyright a {
	text-decoration: none;
	color:#333;
	
	}

---------------------------------------------------------------------------*/

.g_map{
	margin: 0 auto;
}

.g_map iframe {
    aspect-ratio: 16 / 9;
    max-width: 1400px;
    width: 100%;
    height: auto;
}

/*メールフォームページ（milform pro＋追加）
---------------------------------------------------------------------------*/
#mailform-outer{
	width: 90%;	
	margin: 0 auto;
}
.annotation{
	margin: -1em 0 2em;
}
.annotation p{
	padding: 0 !important;
	font-size: 90%;
	}

.contact_tel {
    font-size: 150%;
    font-weight: bold;
    line-height: 1.5em;
    color: #9d7464;
}
/*Scroll table設定
---------------------------------------------------------------------------*/
.scroll table{
width:94%;
margin: 2em 3em 6em;

}
.scroll{
overflow: auto;　　　　/*tableをスクロールさせる*/
white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
.scroll::-webkit-scrollbar{　　/*tableにスクロールバーを追加*/
 height: 5px;
}
.scroll::-webkit-scrollbar-track{　　/*tableにスクロールバーを追加*/
 background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
 background: #BCBCBC;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eeece4;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
	width: 94%;
	table-layout: fixed;
	margin: 0 3% 30px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 2em;	/*ボックス内の余白*/
	word-break: break-all;
}
.ta1 th {
	color: #fff;
	width: 25%;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
	background-color: #193264 ;
}
.ta1 td {
	text-align: left;
}