@charset "utf-8";

html {
	color:#3b3c3c;
	background:#FFF;
	overflow-y: scroll;
	height: 100%;
}

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,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,
figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,
time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	word-wrap:break-word;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after,
q:before,q:after {
	content: '';
	content: none;
}

input,textarea {
	margin: 0;
	padding: 0;
}

ol,ul{
	list-style:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}

ol,ul {
	list-style:none;
}

caption,th {
	text-align:left;
}

abbr,acronym {
	border:0;
	font-variant:normal;
}

input,textarea,select {
	font-family:inherit;
	font-weight:inherit;
	vertical-align: text-top;

}
legend {
	color:#000;
}
a{
	text-decoration: none;
}
a:focus {
	outline:none;
}
a:hover{
	opacity:0.5;
}

a img.mouselink{
	background:none!important;
}
 
a:hover img.mouselink{
	opacity:0.5;
	filter:alpha(opacity=40);
	-ms-filter: "alpha( opacity=40 )";
	background:none!important;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

img,
iframe {
    max-width: 100%; /* 画像がはみ出ないようにする (=画像の横幅が親要素の横幅を上回らないようにする) */

    /* 以下は、中央配置するための記述です。最終的にはそれぞれの箇所に汎用的なクラス名をつける、などして指定してください。 */
    margin-left: auto;
    margin-right: auto;
    display: block;
}
/**
 *
 * 
 *
 */

body {
    width: 100%;
    color: #231815;
    font-family: Yu Gothic medium, YuGothic Medium, "游ゴシック", Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
    font-size: 14px;
    line-height: 1;
	height: 100%;
}
#site_wrap {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
img{
	max-width: 100%;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

#header{
	height: 56px;
	width: 100%;
	min-width: 0;
	left: 0;
	top: 0;
	z-index: 100;
	margin: 0;
}
#header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0 10px;
	height: 56px;
	position: relative;
	z-index: 200;
}
#header .logo {
    margin: 0;
}
#logo_image{
	padding-left: 20px;
}

#logo_image img {
	width: auto;
	height: 40px;
	vertical-align: middle;
}
.container{
	max-width: 1000px;
	margin: auto;
}
.contentsmidasi{
	position: absolute;
	top: -50px;
	background: #f2f2f2;
	left: 50px;
	padding: 30px 20px 15px 30px;
	width: 27%;
}
.contentarea{
	max-width: 1000px;
	margin: auto;
	position: relative;
	padding: 0 20px;
}
.contentstitle{
	font-weight: bold;
	font-size: 1.8em;
	color: #231815;
}
.contents_midashi{
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 10px;
}
.moreLinkText {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: bold;
	margin-top: 20px;

}
.moreLinkText:hover .lineArrow  {
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
}
.moreLinkText a:hover {
	opacity:0.5;
}
.moreLinkText a{
	text-decoration: none;
	color: #231815;
	font-weight: bold;
	font-size: 1.2em;
}
.lineArrow {
	height: 15px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	/*傾きを調節*/
	transform: skew(45deg);
	/*下線矢印をテキストに合わせてうまい具合にはめる*/
	    margin: -5px -10px 0 -15px;
}

@media only screen and (max-width: 768px){
.contentstitle{
	font-size: 1.6em;
}
.contentarea{
	padding: 0 30px;
}
#logo_image{
	padding-left: 10px;
}
}

@media only screen and (max-width: 599px){
#header_inner{
	align-items: flex-start;
	padding: 5px 10px;
}
#logo_image img{
	height:30px;
}
.contentstitle{
	font-size: 1.4em;
}
.contentarea {
	padding: 0 20px;
}
#logo_image{
	padding-left: 5px;
}
}

/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  transform: translateX(-100px);
  transition: all 2s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}
.right-to-left {
  opacity: 0.1;
  transform: translateX(100px);
  transition: all 1s;
}
.right-to-left.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
	opacity: 0.1;
	transform: translateY(100px);
	transition: all 1.5s;
}
.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}
/*右から左にフェードイン*/
.right-to-left2 {
	opacity: 0.1;
	transform: translateX(-100px);
	transition: all 1.5s;
}
.right-to-left2.scrollin {
	opacity: 1;
	transform: translate(0);
}
/*下から上にフェードイン*/
.down-to-top2 {
	opacity: 0.1;
	transform: translateY(100px);
	transition: all 1s;
}

/*PCMENU*/
.menu_area{
	max-width: 1000px;
	display:block;
	padding: 0 20px;
	margin: 30px auto;
	display: block;
	padding: 0 20px;
	font-size: 1.2em;
}
.globalMenupc{
	border-bottom: dashed;
	padding-bottom: 15px;
}
.globalMenupc ul{
	display: flex;
	justify-content: space-between;
}
.globalMenupc ul li a{
	color: #231815;
}

/*PCSUBMENU*/
.menu_area_s{
	width: 80%;
	display:block;
	padding: 0 5px 0 20px;
	font-size: 1.1em;
	margin: auto;
}
.globalMenupc_s ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.globalMenupc_s ul li:not(:last-child) {
	margin-right: 25px;
}

.globalMenupc_s ul li a{
	color: #231815;
}
@media only screen and (max-width: 900px){
.menu_area_s{
	font-size: 1em;
}
.globalMenupc_s ul li:not(:last-child) {
	margin-right: 20px;
}
}
@media only screen and (max-width: 850px){
.menu_area_s{
	font-size: 0.9em;
}
}
/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
.hamburger,.globalMenuSp  {
	display : none;
}

@media only screen and (max-width: 768px){
.globalMenupc,.globalMenupc_s  {
	display : none;
}

.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 0px;
	top   : 0px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	background: #fff;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	 height  : 3px ;
	left    : 6px;
	background : #555;
	-webkit-transition: 0.3s ease-in-out;
	 -moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}

/*.hamburger::after {
	position: absolute;
	left: -78px;
	bottom: 0px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #000;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: all .4s;
	background: #fff;
	padding: 14px 20px;
	font-weight: bold;
}
.hamburger.active::after {
	content: 'CLOSE';
	left: -78px;
	bottom: 0px;
}
*/

.hamburger.active span:nth-of-type(1) {
	transform: translateY(20px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
	transform: translateY(-20px) rotate(45deg);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	 -moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
}
nav.globalMenuSp {
	display:block;
}
nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top: 41px;
	right: 0px;
	color: #fff;
	background-color: rgba(255,255,255,0.9);
	text-align: center;
	width: 35%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
	visibility: hidden;
}
nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }
nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
	border-bottom: dashed 1px #b5b5b5;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	
}
nav.globalMenuSp ul li:hover{
	background :#ddd;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #3b3c3c;;
	padding: 1em 0;
	text-decoration :none;
	font-size: 1.2px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;

}

nav.globalMenuSp ul li a{
	font-size: 16px;
}
}
@media only screen and (max-width: 599px){
nav.globalMenuSp{
	width: 65%;
}
}
@media only screen and (max-width: 380px){
nav.globalMenuSp ul li a {
	font-size: 0.8em;
}
}

/* FOOTER */
.snsarea{
	padding: 40px 0px;
	text-align: center;
	 background: #eee;
	color: #333333;
	font-size: 14px;
	margin-top: 85px;
}
.sns{
	max-width: 1200px;
	margin:auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.facebook{
	margin-right: 40px;
}
#goto_top {
	position: fixed;
	right: 1%;
	bottom: 1%;
}

#goto_top a {
	width: 80px;
	height: 80px;
	border-radius: 15px;
	background: #f86560;
	display: block;
	color: #fff;
	text-align: center;
	line-height: 80px;
	text-decoration: none;
	font-weight: bold;
} 
.copylite{
	background-color: #3f3f3f;
	color: #fff;
	text-align: center;
	padding: 20px;
}
@media only screen and (max-width: 599px){
.copylite{
	font-size: 0.8em;
	line-height: 1.5;
}
#goto_top a{
	font-size: 0.7em;
	width: 70px;
	height: 70px;
	border-radius: 10px;
	line-height: 70px;
}
}

/* page共通*/
.contentarea_page{
	max-width: 1000px;
	margin: 50px auto 0;
	padding: 0 20px;
}
.pankuzu{
	padding: 20px 0;
}
.page_contact{
	text-align: center;
	font-size: 1.4em;
	line-height: 1.5;
}
.page_contact_txt{
	font-weight: bold;
}
.page_contact_link{
	margin: 20px 0 0;
}
.page_contact_link a{
	color: #fff;
	font-weight: bold;
  	letter-spacing: 1px;
	background: #3E3A39;
	padding: 20px 100px;
	display: inline-block;
}	
@media only screen and (max-width: 768px){
.pankuzu{
	padding: 15px 0 20px 5px;
}
}
@media only screen and (max-width: 599px){
.contentarea_page{
	margin: 30px auto 0;
}
.contentsmidasi2 {
	padding-left: 0;
	text-align: center;
}
.pankuzu{
	padding: 15px 0 20px 0;
}
.page_contact{
	font-size: 1.3em;
}
.page_contact_link a{
	padding: 10px 100px;
}
}
@media only screen and (max-width: 380px){
.page_contact {
    font-size: 1.2em;
}
}
/* NEWS*/
.cp_ipselect {
	overflow: hidden;
	width: 90%;
	margin: 2em auto;
	text-align: center;
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

.contentes_news{
	display: flex;
	padding: 50px 20px 30px;
}
.sidemenu{
	width: 30%;
}
.news_mainemenu{
	width: 70%;
	margin-left: 50px;
}
.categorititle{
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
	border-bottom: solid 3px;
	line-height: 1.5em;
}
.categorilist{
	margin-bottom: 50px;
}
.sanakaku{
	float: left;
	padding: 20px 10px;
}
.listtxt{
	line-height: 3.5em;
	font-size: 1.1em;
	border-bottom: solid 1px;
}
.categorilist a{
	text-decoration: none;
	color: #3a3c3c;
}
.retu{
	display: flex;
	justify-content: space-around;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.kiji{
	width: 40%;
	margin-bottom: 30px;
}

.kijigazou img{
	width: 100%;
	height: auto;
	aspect-ratio: 1.3/1;
	object-fit: cover;
}
.kijiday{
	padding-top: 15px;
	font-size: 0.8em;
	font-weight: bold;
}
.kijititle{
	color: #2d5385;
	font-weight: bold;
	font-size: 1em;
	padding-top: 10px;
}

.pager_b {
    text-align: center;
    margin: 60px auto 20px;
}
.pager_b > * {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #2d5385;
    border-radius: 2px;
    border: 1px solid #2d5385;
    display: inline-block;
    vertical-align: top;
    padding: 10px 12px;
    margin-left: 7px;
    margin-right: 7px;
    transition: 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-property: background-color, color;
}
.current {
    color: #fff;
    background-color: #2d5385;
    border-color: #2d5385;
}





.pager{
	margin-top: 65px;
}
.pager  ul.pagination {
	text-align: center;
	margin: 0;
	padding: 0;
}

.pager .pagination li {
	display: inline;
	margin: 0 10px;
	padding: 0;
	display: inline-block;
	background: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	position: relative;
	border: solid 1px #2d5385;
}

.pager .pagination li a{
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display:table;
	color: #2d5385;
	text-decoration: none;
	font-weight: bold;
}
.pager .pagination li a span{
	display:table-cell;
	vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
	color: #fff;
	background: #2d5385;
	font-weight: bold;
}
.news_mainemenu2{
	width: 70%;
	margin-left: 50px;
}
.sigle_photo img{
	height: auto;
}
.news_mainemenu2 .kijiday{
	font-size: 1em;
	padding-top: 15px;
}
.news_mainemenu2 .kijititle{
	font-size: 1.2em;
}

.kijitxt{
	margin: 20px 0;
	font-size: 1.1em;
	line-height: 1.7em;
	text-align: justify;
}
.next_kiji{
	display: flex;
	justify-content: space-between;
}
.next_kiji a{
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	color: #3a3c3c;
}
.itiranback{
	text-align: center;
	background: #2d5385;
	padding: 10px;
	width: 30%;
	margin: 50px auto 0;
}
.itiranback a{
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	color:#fff;
}

@media only screen and (max-width: 768px){
.contentes_news{
	display: block;
}
.sidemenu {
    width: 100%;
}
.listtxt{
	clear: both;
	line-height: 3em;
	font-size: 16px;
}
.sanakaku {
    padding: 18px 15px;
}
.news_mainemenu {
    width: 100%;
    margin-left: 0;
    margin-top: 60px;
}
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の6件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の6件へ　";
  }
.news_mainemenu2{
	margin: 70px auto 0;
	width: 100%;
}
}
@media only screen and (max-width: 599px){
.categorititle {
	font-size: 1.4em;
}
.contentes_news{
	padding: 50px 0px 30px;
}
.kiji {
	margin: 0 auto 30px;
	width: 90%;
}
.kijiday{
	font-size: 1em;
}
.kijititle{
	font-size: 1.1em;
}
}


/* CONTACT*/
.contentes_contact{
	padding-top: 70px;
	padding-bottom: 50px;
}
.contact_title{
	text-align: center;
	font-size: 2em;
	line-height: 1.5;
	font-weight: bold;
	color: #F39800;
}
.contact_txt{
	text-align: center;
	padding: 15px 0;
	font-size: 1.4em;
	line-height: 1.7;
	font-weight: bold;
}
.contact_txt a{
	font-weight: bold;
}
form{
	width: 100%;
	max-width: 850px;
	margin: auto;
	margin: 60px auto 0;
}
.item{
	font-size: 16px;
	line-height: 4em;
}
.label {
	display: block;
	font-weight: bold;
	text-align: right;
	float: left;
	width: 220px;
	padding-right: 50px;
}
.red{
	color: #ff0000;
}
select,input,textarea{
	width: 45%;
	font-size: 0.9em;
}
.contakut_btn{
	margin-top: 50px;
	text-align: center;
	display: flex;
	justify-content: center;
}
input[type="submit" i] {
	background: #3e3e3e;
	color: #fff;
	padding: 10px 40px;
	margin: 30px 10px;
	border: none;
	font-size: 1.2em;
	width: 35%;
}
input[type="reset" i] {
	background: #eee;
	color: #3e3e3e;
    	padding: 10px 40px;
    	margin: 30px 10px;	
	border: solid 1px;
	font-size: 1.2em;
	width: 35%;
}
@media only screen and (max-width: 768px){
.contentes_contact{
	padding-top: 50px;
	padding-bottom: 30px;
}
.contact_title{
	font-size: 28px;
}
form{
	max-width: 100%;
	margin: 40px auto 0;
}
.label{
	width: 30%;
	padding-right: 10px;
}
select, input, textarea {
	width: 50%;
}
}
@media only screen and (max-width: 599px){
.pc { display: none !important; }
.sp { display: block !important; }

.contentes_contact {
	padding-top: 30px;
}
.contact_title {
	font-size: 20px;
}
.contact_txt{
	font-size: 14px;
}
.label {
	width: 100%;
	text-align: left;
	line-height: 1.2;
}
select, input, textarea {
	width: 100%;
}
select {
	height: 40px!important;
}
.item{
	line-height: 3em;
	padding: 0 10px 30px;
}
.contakut_btn{
	margin-top: 30px;
	flex-direction: column;
}
input[type="submit" i]{
	width: 70%;
	margin: auto;
}
input[type="reset" i] {
	width: 70%;
	margin: 15px auto 0;
}
}




