﻿@charset "UTF-8";

/*---------------------------------------

[reset]

[base]
	font
	anchor
	add class

[home set-up]
	h
	pagetop link

[lower]

[each page]

[contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

---------------------------------------*/

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	width /***/: auto;
}

.container {
	width: 100%;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
}
header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}







/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

:root {
  --main-color: #9e7133;
  --main-color01: #f2ebe6; /* とっても薄め */
  --main-color02: #f0dac2; /* 薄め */
  --main-color03: #815519; /* 濃いめ */
  --sub-color01: #f5f4f3;
  
  --mincho-font: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --site-width:1590px;
  
}
/*
var(--main-color);
*/


/*--------------------------------------- font */
html {
	font-size: 62.5%;
/* 1em=10px化 */
	;
}

body {
  font-family: var(--base-font);
	line-height: 1.5;
	color: #1d2129;
	-webkit-text-size-adjust: 100%;
	font-size: 1.4em;
/* 基準フォントサイズ1.4em=14px */
}
.subFont {
  font-family: var(--sub-font);
}

/*----------------------- color */
/* red */
.red{
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #000000;
}

/* blue */
.blue {
	color: #334f99;
}

/* gray */
gray {
	color:#7f7979;
}
/* black */
.black {
	color: #0b0b0b;
}

.bg_white {
	background-color: #fff;
}
/*----------------------- size */
/* size10px */
.body_common #newsListStyle02 li .date,
.list_thumbnail li .date,
.size10 {
	font-size: 0.71em;
}

/* size12px */
#input-table table th .input_required,
nav span,
footer {
	font-size: 0.85em;
}

/* size14px */
#header_logo,
.size14 {
	font-size: 1.0em;
}

/* size16px */
section {
	font-size: 1.14em;
}

/* size18px */
#serviceList li span.title,
.size18 {
	font-size: 1.28em;
}

/* size22px */
h3 {
	font-size: 1.57em;
}

/* size24px */
h2 {
	font-size: 2.01em;
}
				@media screen and (max-width:798px) {
								.lower h2 {
                      font-size: 1.41em;
                }
                }

/*--------------------------------------- anchor */

a {
	color: var(--link-color);
	text-decoration: none;
}

a:hover {
	color: #666666;
	text-decoration: none;
}

header a {
	color: #333;
}


/* white */
footer article a {
	color:var(--footer-txtcolor);
}
footer article a:hover {
	text-decoration:underline;
	color:#FFF;
}

/* btn */
.btn {
	text-align: center;
}

.btn a {
	padding: 0.7em 20px;
	color: #000;
	text-decoration: none;
	font-size: 1.2em;
	display: inline-block;
	min-width: 45%;
	border:solid 1px #000;
  transition: linear 0.2s;
}

.btn a:hover {
	background-color: #f1f1f1;
	color: #000;
  border:solid 1px var(--main-color);
}


/* btn02 */

.btn02 {
	text-align: center;
  margin-bottom:30px;
}

.btn02 a {
  display: inline-block;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 45%;
    min-width: 220px;
	margin: auto;
	padding: 1.2em 20px;
	background-color: #6c9a1f;
	color: #FFF;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
  font-size: 1.3em;
}
.btn02 a::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right: 1em;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1px;
	background: #FFF;
}
.btn02 a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background-color: #FFF;
}
.btn02 a:hover {
	background: #547b13;
	color: #FFF;
}

/* btn03 */
.btn03 {
	text-align: center;
}

.btn03 a {
	padding: 0.7em 20px;
	color: #000;
	text-decoration: none;
	font-size: 1.2em;
	display: inline-block;
	min-width: 45%;
	transition: linear 0.2s;
	border:solid 1px #000;
}

.btn03 a:hover {
	background-color: var(--main-color);
	color: var(--footer-txtcolor);
  border:solid 1px var(--main-color);
}


/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.bold {
	font-weight: bold;
}

br.forTab {
	display: none;
}

br.forSp {
	display: none;
}

.mb1em {
	margin-bottom: 1em;
}

.hidden {
	display:none;
}

.bgWhite {
  background-color:#FFF;
}

.bgBlack {
  background-color:#000;
}

.bgGray {
  background-color:#f2f2f2;
}

.bgLightgray {
  background-color:#f9f8f8;
}

.bgBeige {
  background-color:#f3f1ed;
}

.bgLightpink {
  background-color:#f5edef;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: set-up */
.body_common h2 {
	font-family: var(--sub-font);
	line-height: 1.2;
	padding: 0.3em 10px;
	clear: both;
	max-width: 978px;
	margin: 10px auto 35px;
	color: #333131;
	text-align: center;
}
.lower h1,
.lower h2{
	margin-top: 90px;
}
				@media screen and (max-width:1111px) {

				}
				@media screen and (max-width:798px) {
								.lower h1,
								.lower h2 {
                      margin: 20px 0;
                }
                }

/* h:変更した場合はstyle_editor.cssにも反映すること */
.body_common h3 {
	clear: both;
	padding: 1em 0 0.2em;
	margin-bottom: 1.8em;
	color: #333131;
	position: relative;
	text-align:center;
}


.lower h3 {
	border-bottom:dotted 1px #ccc;
	padding-bottom:10px;
	margin-bottom:20px;
	color:var(--main-color);
  text-align: center;
}
.lower h3 span {
  font-size:0.65em;
  display:inline-block;
  margin-left:15px;
}

.lower h4 {
	clear: both;
	margin: 0 0 15px;
	padding: 5px 12px 5px 0;
	color: #000;
  font-weight: bold;
  text-align: left;
}

.lower h5{
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 2px solid #6d6d6d;
    color: #6d6d6d;
	font-size: 1.3em;
    margin: 0 0 20px;
}
 
.lower h5:after{
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #6d6d6d;
	border-right: 2px solid #6d6d6d;
	background-color: #fff;
	transform: rotate(135deg) translateY(50%);
	position: absolute;
	bottom: -12px;
	left: 50%;
}

.lower h6 {
	clear: both;
	margin: 0 0 20px;
	color: var(--main-color);
	line-height:1.5;
}

@media screen and (min-width: 780px) {
	.lower h1,
	.body_common h2 {
		font-size: 2.3em;
	}
	h3 {
		font-size: 1.6em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,
	h6  {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 779px) {
	.lower h1,
	.body_common h2 {
		font-size: 1.3em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,
	h6 {
		font-size: 1em;
	}

}
/* table */
.tableStyle01,
#input-table table {
	border-collapse: collapse;
	font-size: 0.95em;
}

table.tableStyle01 th,
table.tableStyle01 td,
#input-table table th,
#input-table table td {
	padding: 0.5em 1em;
	border: 1px solid #dddddd;
}
table.tableStyle01 th,
#input-table table th {
	color: #666;
	font-weight: bold;
	background: #f4f4f4;
}
table.tableStyle01[border="0"],
table.tableStyle01[border="0"] th,
table.tableStyle01[border="0"] td,
#input-table table[border="0"],
#input-table table[border="0"] th,
#input-table table[border="0"] td {
	border: none;
}

#input-table table {
	width:100%;
}

/*--------------------------------------- table_追記_250604 */
@media screen and (max-width:719px) {
	.sp_table td, .sp_table th, .sp_table tr {
		display: block;
		width: 100%!important;
	}
}
table.sp_table, table.sp_table2c {
	border-collapse: collapse;
	font-size: 0.95em;
}
table.sp_table[border="0"], table.sp_table[border="0"] th, table.sp_table[border="0"] td, table.sp_table2c[border="0"], table.sp_table2c[border="0"] th, table.sp_table2c[border="0"] td {
	border: none;
}
@media screen and (max-width: 719px) {
	table.sp_table, table.sp_table2c {
		max-width: 100%;
	}
	table.sp_table td, table.sp_table th {
		display: block;
		width: 100% !important;
	}
	table.sp_table2c td, table.sp_table2c th {
		float: left;
		width: 50% !important;
	}
	table.sp_table td img, table.sp_table2c td img {
		max-width: 100%;
		height: auto;
	}
}
/* flexbox */
.flexbox {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:center;
	justify-content:center;
}
.flexbox li {
	-webkit-box-flex:1;
	flex-grow:1;
	list-style:none;
	text-align:center;
}

/* ------------------------ list_thumbnail */
.list_thumbnail {
  text-align: center;
}
.lower .list_thumbnail {
  text-align: left;
  margin:0;
}
.list_thumbnail li {
  list-style: none;
}
.list_thumbnailC3 li {
	display:inline-block;
	width:31%;
	margin-right:2%;
}
				@media screen and (max-width:478px) {
				.list_thumbnailC3 li {
					width:100%;
          margin-right:0;
				}
				}

.list_thumbnailC3 li:nth-child(3n) {
	margin-right:0;
}
				@media screen and (max-width:478px) {
				.list_thumbnailC3 li:nth-child(3n) {
					margin-right:0;
				}
        }

.list_thumbnailC4 li {
	float:left;
	width:23%;
	margin-right:2%;
}
.list_thumbnail li .date,
.list_thumbnail li .title {
  text-align: left;
}
.list_thumbnail li .thumbnail {
	display: block;
	width: 100%;
  height: 190px;
  position: relative;
  margin-bottom: 10px;
}
.lower .list_thumbnail li .thumbnail {
  height:260px;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	transition: linear 0.2s;
}

.list_thumbnail .thumbnail span {
    padding: 27% 0;
    display: block;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 -1em 4em 1em rgb(0 0 0 / 5%);
    transition: all 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail li span.title {
  font-size:1.1em;
}
.list_thumbnail li span.text {
  color:#393939;
}

/* .list_thumbnail.style02 */
.list_thumbnail.style02 li .thumbnail span {
	width:100%;
	height:100%;
	display:block;
  background-size: 106% auto;
  background-position: center center;
}

.list_thumbnail.style02 li .new {
  position: absolute;
  top: 19px;
  left: 17px;
  width: 111px;
  height: 107px;
  overflow: hidden;
  }

.list_thumbnail.style02 li .new span {
  display: inline-block;
  position: absolute;
  padding: 5px 0;
  left: -47px;
  top: 24px;
  width: 163px;
  text-align: center;
  font-size: 14px;
  line-height: 13px;
  background: #ffa520;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
}


.list_thumbnail.style02 .new span:before,
.list_thumbnail.style02 .new span:after {
  position: absolute;
  content: "";
  border-top: 4px solid #b2751b;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: -4px;
}

.list_thumbnail.style02 li .new span:before {
  right: 14px;
}

.list_thumbnail.style02 li .new span:after {
  left: 18px;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */

.con {
	padding-bottom: 50px;
}

.entry {
	padding-bottom: 50px;
}

.entry li {
	margin-left: 2em;
}


/*--------------------------------------- kayFrame */

/*--------------------------------------- mainContaints */
.container {
  clear: both;
	padding: 30px 0 80px;
}
				@media screen and (max-width:720px) {
				.container {
					padding: 30px 0 30px;
				}
				}

.bgf8f6f3 {
	background-color: #f8f6f3;
}

.container article {
	padding: 0 40px;
}
				@media screen and (max-width:798px) {
								.container article {
                      padding: 0 20px;
                }
                }

.layout02 article {
	width: 76%;
	float: left;
}

.mainContent {
  float:right;
  width: 87%;
  padding: 10px 0 0;
}
				@media screen and (max-width:891px) {
				.mainContent {
					float: none;
					width: 100%;
				}
				}

/* -------------- fadein */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
    transition : all 1200ms;
}

.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.body_common #serviceList li.fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
.body_common #serviceList li.fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}
.body_common #serviceList li.fadein:nth-of-type(4) {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
	}
	

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: contents */

/*--------------------------------------- container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}


.container {
  
}
.msg {
	line-height:1.8;
  border: solid 1px #222;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 50px;
}
				@media screen and (max-width:798px) {
								.msg {
                  padding: 20px;
                  margin-bottom: 20px;
                }
                }

.layout02,
.breadCrumb ul,
.copy div,
article {
	max-width: 1340px;
	width: 100%;
	margin: 0 auto;
}
.container article {
	max-width:var(--site-width);
}
  
/*--------------------------------------- header */
header,
#topNavi {
	width: 100%;
	padding:0 30px;
	top: 0;
	left: 0;
	display:block;
	z-index:100;
  position:absolute;
}
				@media screen and (max-width:779px) {
				header,
				#topNavi {
					padding:0 20px;
				}
				}

.lower #topNavi {
  position:relative;
}
#topNavi p a{
  color: #000;
  font-size: 1.7em;
  font-weight: 600;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

header {
	position: fixed;
}
				@media screen and (max-width:779px) {
				#topNavi {
					position:fixed;
				}
				header,
				#topNavi ul{
					display:none;
				}
				}


/* logo setting */
.body_common header h1,
.lower #header_logo,
nav#topNavi p {
	width:auto;
	float:left;
	padding:22px 0 4px;
}

				@media screen and (max-width:779px) {
				nav#topNavi p {
					width: 100%;
					float: none;
          padding-top: 29px;
          font-size:0.85em;
				}
				}


.body_common header h1 img,
.lower #header_logo img,
nav#topNavi p img {
	width: auto;
	max-height: 75px;
}

#header_logo {
    color: #000;
    font-size: 1.5em;
    font-weight: 700;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

				
/* navigation */
header nav ul,
nav#topNavi ul {
	float:right;
	width:60%;
  font-size: 1.1em;
  display:-webkit-box;
	display:flex;
	-webkit-box-pack:flex-end;
	justify-content:flex-end;
}
                  @media screen and (max-width:1124px) {
                  	header nav ul,
                    nav#topNavi ul {
                  		display: none;
                  	}
                  }

nav span {
	display:block;
}

header nav li,
nav#topNavi li {
	text-align:center;
	margin:0;
  list-style:none;
}
header nav li a::after,
nav#topNavi li a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-left: 20px;
  font-size: 0.8em;
}

header nav li:last-of-type a::after,
nav#topNavi li:last-of-type a::after {
  content:none;
}

header nav li a,
nav#topNavi li a {
	padding:33px 0 30px 20px;
	display:block;
  color:#000;
  font-weight: 700;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.lower nav li a {
  color:#000;
}
.fixed nav li a {
  color:#000;
}
		

#topNavi .applyBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  padding: 0;
  background-color: #6c9a1f;
  text-align: center;
  font-size: 0.75em;
  transition: 0.5s;
}
#topNavi .applyBtn:hover {
	background: #547b13;
	color: #FFF;
}

#topNavi .applyBtn a {
  color: #FFF;
  padding: 22px 5px 2px;
  display: block;
  line-height: 1.1;
}

#topNavi .applyBtn i {
  display:block;
  font-size: 1.3em;
  margin-bottom: 6px;
}
#topNavi .applyBtn span {
  font-size: 0.75em;
  font-weight: normal;
}

				@media screen and (max-width:779px) {
				#topNavi .applyBtn {
					width: 85px;
					height: 85px;
          bottom:110px;
          top:auto;
				}
          #topNavi .applyBtn a {
					padding: 10px 3px 2px;
          }
				}



/* ---------------------------------------- 

            sp navigation

------------------------------------------ */
.sp_menu{
	overflow-y: scroll;
	max-height: 100%;
}
.sp_menu .spnaviLogo {
  margin-bottom: 10px;
  text-align: center;
}
.sp_menu .spnaviLogo img {
  max-width: 140px;
  width: 80%;
}
.sp_menu .spnaviLogo a {
  color: #000;
  font-size: 1.7em;
  font-weight: 500;
}

@media screen and (min-width: 1125px), print {
	.sp_menu_btn,
	.sp_menu {
		display: none;
		/*display: inline-block;
		box-sizing: border-box;*/
	}
}
@media screen and (max-width:1124px) {
	.sp_menu_btn,
	.sp_menu_btn span {
		display: inline-block;
		box-sizing: border-box;
	}
}
.sp_menu_btn {
	position: relative;
	width: 40px;
	height: 40px;
	padding:2px;
}
.sp_menu_btn.close{
	background-color:transparent;
}
.sp_menu_btn span {
	position: absolute;
	width: 28px;
	height: 1px;
  right: 6px;
	background-color: #222;
	border-radius: 4px;
	transition: transform 0.1s;
}
.lower .sp_menu_btn span,
.color .sp_menu_btn span {
  background-color: #000;
}
.sp_menu_btn span:nth-of-type(1) {
	top: 12px;
}
.sp_menu_btn span:nth-of-type(2) {
	top: 21px;
}
.sp_menu_btn span:nth-of-type(3) {
	bottom: 9px;
}
.sp_menu_btn.close span {
  /*background-color: #FFF;*/
}
.sp_menu_btn.close span:nth-of-type(1) {
	-webkit-transform: translateY(14px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
  width: 20px;
  right: 12px;
  top: 10px;
}
.sp_menu_btn.close span:nth-of-type(2) {
	opacity: 0;
}
.sp_menu_btn.close span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-15px) rotate(45deg);
  width: 20px;
  right: 12px;
}
.sp_menu_btn {
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 999999;
  background-color: #FFF;
}
.sp_menu {
	position: fixed;
	z-index: 135;
	right: -100%;
	top: 0;
	width: 90%;
  font-size: 0.8em;
	height: 100%;
	padding: 60px 20px;
	background-color:#eef1f2;
	box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	opacity:0;
	transition: right 0.2s;
}


.sp_menu.menu_fixed {
	right: -4px;
	opacity: 10;
}
.sp_menu_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.sp_menu_bg.bg_fixed {
	display: block;
	background-color: transparent;
}

.sp_menu nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.sp_menu_navi {
  padding-top: 10px;
  font-family: var(--sub-font);
  margin-bottom: 20px;
}
.sp_menu_navi li {
  list-style: none;
  padding: 0;
}
.sp_menu_navi li a {
  text-decoration: none;
  color: #222;
  font-size: 1.7em;
  display: block;
  padding: 10px;
}












/*--------------------------------------- container */

.container ul {
  margin: 0 2em 0 2em;
}

section {
  position:relative;
}


/*--------------------------------------- pagetop link */
#page_top a{
	width: 30px;
	height: 30px;
	border: 5px solid;
	border-color: var(--main-color) var(--main-color) transparent transparent;
	transform: rotate(-45deg);
	display:block;
	text-indent:-9999;
	position:fixed;
	bottom:30px;
	right:30px;
}


/*--------------------------------------- pageprev/next link */
.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.page_link { 
		padding: 20px 10px;
	}
}

/* ----------------------- メールニュース */
#mailNews {
	/*background-color:#f6f5f3;*/
	padding: 90px 20px 90px;
	text-align:center;
  position:relative;
}
                  @media screen and (max-width: 1075px) {
                      #mailNews {
                          padding: 40px 20px;
                      }
                  }

.bg_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 730px;
  background-color: #fff;
  opacity: 0.4;
  z-index: -1;
}
.ZigZag_3D {
  background: linear-gradient(135deg, #e8e8e8 25%, transparent 25%) -40px 0/ 80px 80px, linear-gradient(225deg, #d6d6d5 25%, transparent 25%) -40px 0/ 80px 80px, linear-gradient(315deg, #e8e8e8 25%, transparent 25%) 0px 0/ 80px 80px, linear-gradient(45deg, #d6d6d5 25%, #e0e0e0 25%) 0px 0/ 80px 80px;
}


#mailNews article {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 5%;
}
                  @media screen and (max-width: 1075px) {
                      #mailNews article {
                          display: block;
                      }
                  }

#mailNews article dl {
  width:50%;
}
                  @media screen and (max-width: 1075px) {
                      #mailNews article dl {
                          width:100%;
                      }
                  }
                  @media screen and (max-width: 498px) {
                      #mailNews article dd {
                          text-align: left;
                      }
                  }

#mailNews article dt span {
  display:inline-block;
}
#mailNews article dt span:first-of-type {
  font-size: 1.6em;
}
#mailNews article dt span:nth-last-of-type(2) {
  font-size: 2.5em;
  line-height: 1;
}
				@media screen and (max-width:798px) {
								#mailNews article dt span:nth-last-of-type(2) {
                      font-size: 2em;
                }
                }

#mailNews article dt span:last-of-type {
  line-height: 2;
  margin-bottom: 20px;
}
.dli-mail {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 1.06667em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  box-sizing: content-box;
  overflow: hidden;
  margin-bottom:10px;
}

.dli-mail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.75425em;
  height: 0.75425em;
  border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 0.1em;
  box-sizing: content-box;
  transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}


#mailNews article div {
  text-align: left;
}
                  @media screen and (max-width: 1075px) {
                      #mailNews article div {
                          text-align: center;
                      }
                  }
                  @media screen and (max-width: 498px) {
                      #mailNews article div {
                          text-align: left;
                      }
                  }

#mailNews input {
	padding:10px 15px;
}
		@media screen and (max-width: 779px) {
			#mailNews input[type="text"] {
				width: 400px!important;
        margin-top: 20px;
			}
		}

#mailNews .btn {
  display: block;
  color: #FFF;
  max-width: 340px;
  width: 90%;
  background-color: #222;
  margin: 20px 0;
  font-weight: 400;
  border-radius: 4px;
  border: solid 1px #282828;
  transition: all .5s ease;
  font-size: 1.2em;
  padding: 10px 15px;
}
                  @media screen and (max-width: 1075px) {
                      #mailNews .btn {
                          margin: 20px auto;
                      }
                  }

#mailNews a {
  color: #878787;
}

/*--------------------------------------- footer */
.footerBreadCrumb {
  background-color:#FFF;
  border-top: solid 1px #e4e4e4;
  border-bottom: solid 1px #e4e4e4;
}
.footerBreadCrumb ul.breadCrumb {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 25px 40px;
}

footer {
  font-size: 1.1em;
  background: #FFF;
  position:relative;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 5%;
	max-width:var(--site-width);
  margin: 0 auto;
  padding: 60px 20px;
}
                  @media screen and (max-width: 798px) {
                      footer nav {
                          display: block;
                          padding: 20px;
                      }
                  }

footer nav > div {
  width: 55%;
}
footer nav > div:last-of-type {
  width: 40%;
}

                  @media screen and (max-width: 798px) {
                      footer nav > div,
                      footer nav > div:last-of-type {
                          width: 100%;
                      }
                  }


.snsList {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:start;
	justify-content: start;
  padding: 10px 0 0;
}
                  @media screen and (max-width: 798px) {
                      .snsList {
                          -webkit-box-pack: center;
                          justify-content: center;
                          margin-bottom: 30px;
                      }
                  }

.snsList li {
	padding:0 10px 0 0;
	list-style:none;
	text-align:center;
	width:38px;
}
.snsList li img {
	width:100%;
}

.footer_logo {
  float: left;
  width: 45%;
  text-align: center;
}
.footer_logo img {
  max-width: 400px;
  width:90%;
}
footer div div {
  float: right;
  width: 50%;
}
                  @media screen and (max-width: 798px) {
                      .footer_logo,
                      footer div div {
                          width: 100%;
                          float:none;
                          text-align: center;
                      }
                  }

footer address {
  margin-top:20px;
  line-height: 1.8;
}
footer address strong {
  font-size: 1.2em;
  margin-bottom: 5px;
  display: block;
}
footer nav li {
  list-style: none;
}
footer nav .fNavi li a {
  padding: 15px 0;
  display: block;
  color: #000;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
  line-height: 1.4;
}
footer nav .fNavi li a:before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #050505;
    position: absolute;
    left: 0;
    top: 49%;
}

footer .copy {
  font-size:0.8em;
  max-width:var(--site-width);
  margin: 0 auto;
  padding: 30px 20px 40px;
  text-align:right;
  border-top: 1px #e4e4e4 solid;
}
				@media screen and (max-width:498px) {
				footer .copy {
          text-align:left;
				}
        }


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: lower */
.lower .wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img/lower_bg01.png) 0 0 no-repeat;
  background-size: 100% auto;
  z-index: -1;
  width:100%;
  min-height: 100%; 
}

/* breadCrumb */
ul.breadCrumb {
	font-size: 0.9em;
  clear: both;
  margin:20px 0 50px;
}
				@media screen and (max-width:498px) {
				.breadCrumb {
          display:none;
				}
        }

.breadCrumb ul {
	padding: 0.7em 20px;
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
.breadCrumb li {
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
}
.breadCrumb li::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.breadCrumb li::before{
    left: 6px;
    width: 0;
    height: 12px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadCrumb li a {
	color: #999999;
	text-decoration: none;
}

.breadCrumb li:first-child {
	padding:0;
}
.breadCrumb li:first-child::before {
	border-top:none;
	border-right: none;
}
.breadCrumb li:last-child {
	background-image: none;
	padding-right: 0;
}

/* side */
nav#side {
    padding-bottom: 50px;
}
nav#side .menu_title{
    display:none;
}
nav#side ul {
-webkit-box-pack: center;
    justify-content: center;
}

          
nav#side li {
  margin-right: 10px;
}

          
nav#side li:last-of-type {
  margin-right:0;
}
nav#side li a {
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 12px 30px;
}
nav#side li.current a {
  background-color:var(--main-color);
  color: var(--footer-txtcolor);
  border: solid 1px var(--main-color);
}
          
        @media screen and (max-width:498px) {
        nav#side ul,
				nav#side li {
					margin:0;
				}
        nav#side li a {
          border-radius:0;
        }
        }

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */


/*------------------------------------------------ body_common TOPページ */
.body_common section {
	padding:80px 0;
}
				@media screen and (max-width:779px) {
				.body_common section {
					padding:50px 20px 80px;
				}
				}


/* con01 */
.body_common #con01 {
	padding:0;
  margin-top: 90px;
}
.body_common #con01.thumnailnews_hidden {
  margin-top:0;
}

/* ----- slider */
#slider-proFrame {
	float:right;
	width:50%;
	position: relative;
	height:370px;
}
				@media screen and (max-width:779px) {
				#slider-proFrame{
					float:none;
					width:100%;
					height:350px;
				}
				}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--main-color);
}
.swiper-slide a {
	display:block;
	width:100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

    .swiper-container {
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;

      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }

.swiper-container .swiper-slide {
	position:relative;
	text-align:left;
}
.swiper-container .swiper-slide img.key {
	width:100%;
	height:100vh;
	left:0;
	bottom:0;
	position:absolute;
	object-fit: cover;
}
				@media screen and (max-width:479px) {
				.swiper-container .swiper-slide img.key {
					width:100%;
					height:auto;
					overflow:hidden;
					object-fit: cover;
				}
				}

.swiper-container .swiper-slide .slideBox {
  background-repeat: repeat;
  background-size: auto 100%;
  background-position: center center;
  display: block;
  height: 100%;
  width: 100%;
}
.thumnailnews_hidden .swiper-container .swiper-slide .slideBox {
  background-size: 110% auto;
}
                @media screen and (max-width:1024px) {
                .thumnailnews_hidden .swiper-container .swiper-slide .slideBox {
                    background-size: auto 100%;
                }
                }
                @media screen and (max-width:728px) {
                .thumnailnews_hidden .swiper-container .swiper-slide .slideBox {
                    background-image: url(../common/key_sp.png)!important;
                  background-size: auto 140%;
                }
                }

.body_common #con01,
.thumnailnews_hidden #slider-proFrame {
  height:640px;
}
				@media screen and (max-width:779px) {
        .body_common #con01,
				.thumnailnews_hidden #slider-proFrame {
					height:100vh;
				}
				}

.slide_height100 #slider-proFrame {
  height:100vh;
}
.slide_height100 .swiper-container .swiper-slide .slideBox {
  background-size: auto 110%;
}

.swiper-container .swiper-slide .slideBox:before {
  display:block;
  content:"";
  width:100%;
  height:100vh;
  /*background:0 0 repeat url(img/key_bg.png) rgb(0,0,0,0.1);*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.swiper-container .swiper-slide .slideBox span.text {
	display: flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-justify-content: center;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 20px;
  color: #000;
  min-height: 5em;
  z-index: 10;
  text-align: left;
  font-size: 0.9em;
  font-weight: 600;
  font-family: var(--sub-font);
}
.swiper-container .swiper-slide .slideBox span.text strong {
font-family: var(--base-font);
}
.swiper-container .swiper-slide .slideBox span.text span
{
  position: relative;
    /* top: 25%; */
    height: 100%;
    width: 100%;
    /* -webkit-transform: translateY(-25%); */
    /* transform: translateY(-25%); */
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.swiper-container .swiper-slide .slideBox span.text span span {
  height:auto;
  width:auto;
  display:inline;
}
				@media screen and (max-width:498px) {
				.swiper-container .swiper-slide .slideBox span.text span {
					font-size:0.8em;
				}
				}

.swiper-container .swiper-slide span.spTitle {
	display:none;
}

.swiper-button-prev,
.swiper-button-next{
	display: inline-block;
	background:none;
}
.swiper-button-next {
	right:30px;
}
.swiper-button-prev::before,
.swiper-button-prev::after,
.swiper-button-next::before,
.swiper-button-next::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.swiper-button-prev::before,
.swiper-button-prev::after{
	left: 10px;
}

.swiper-button-next::before,
.swiper-button-next::after{
	right: 10px;
}

.swiper-button-prev::before{
	right: 10px;
	width: 30px;
	height: 30px;
	border-bottom: 2px solid #FFF;
	border-left: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swiper-button-next::before{
	left: 10px;
	width: 30px;
	height: 30px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* .hidden_slide （スライド非表示の時） */
.slide_hidden #slider-proFrame {
	display:none;
}
.body_common .slide_hidden #newsListStyle02 {
	width:100%;
}
/* .thumnailnews_hidden （サムネイル記事非表示の時） */
.thumnailnews_hidden #newsListStyle02 {
	display:none;
}
.body_common .thumnailnews_hidden #slider-proFrame {
	width:100%;
}

/* .keynews_hidden（テキストニュース非表示） */
.body_common .keynews_hidden #keyNews {
	display:none;
}

/* .hidden_con01 （スライド、サムネイル記事どちらも非表示の時） */
.body_common .con01_hidden {
	display:none;
}

/* ----- newsListStyle01 */

.body_common #newsListStyle02 {
	float:left;
	width:50%;
  min-height: 570px;
	background-color:#F3F3F3;
}
				@media screen and (max-width:779px) {
				.body_common #newsListStyle02{
					float:none;
					width:100%;
				}
				}
				@media screen and (max-width:498px) {
				.body_common #newsListStyle02 {
            min-height: auto;
        }
				}

.body_common #newsListStyle02 a {
	display:block;
  height: 100%;
}
.body_common #newsListStyle02 a:hover {
	cursor:pointer;
}
.body_common #newsListStyle02 span {
	display:block;
}
.body_common #newsListStyle02 span.bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  background-color:rgb(255,255,255,0.9);
}
.body_common #newsListStyle02 li {
  position: relative;
	float:left;
	width:50%;
	list-style:none;
	display:none;
  background-repeat: repeat-y;
  background-position: center center;
  /*background-size:120% auto;*/
  background-size:cover;
  height: 50%;
}

.body_common #newsListStyle02 li:first-of-type,
.body_common #newsListStyle02 li:nth-of-type(2),
.body_common #newsListStyle02 li:nth-of-type(3),
.body_common #newsListStyle02 li:nth-of-type(4) {
	display:block;
}

.body_common #newsListStyle02 li:first-of-type,
.body_common #newsListStyle02 li:nth-of-type(3) {
	clear: both;
}

				@media screen and (max-width:498px) {
				.body_common #newsListStyle02 li, .body_common #newsListStyle02 li:nth-of-type(2), .body_common #newsListStyle02 li:nth-of-type(3), .body_common #newsListStyle02 li:nth-of-type(4) {
          display:none;
					min-height: 240px;
          width:100%;
				}
        .body_common #newsListStyle02 li:first-of-type {
            display:block;
        }
				}



.body_common #newsListStyle02 li .title {
	padding:8px 10px 0;
}

.body_common #newsListStyle02 li .date {
	text-align:left;
	color:#363636;
	padding:0 10px 10px;
}

.body_common #newsListStyle02 li .new {
	display:none;
}

/* pic */
.body_common #newsListStyle02 li .pic{
	position: relative;
}
.body_common #newsListStyle02 li img {
	width:100%;
}

/* more */
.body_common #newsListStyle02 li .ic_more{
	position: absolute;
	bottom: 0;
	right: 0;
	background:#333;
	color: #fff;
	padding: 5px 15px;
	width:25%;
	text-align:center;
}


/* new */
.swiper-container .swiper-slide .slideBox span.new:before,
.body_common #newsListStyle02 li .ic_new:before {
  border-color: #ca0303 transparent transparent transparent;
  border-style: solid;
  border-width: 60px 60px 0 0;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom:auto;
  width: 0;
  z-index: 2;
}
.swiper-container .swiper-slide .slideBox span.new:after,
.body_common #newsListStyle02 li .ic_new:after {
  color: #fff;
  content: "NEW";
  font-size: 12px;
  position: absolute;
  top: 15px;
  left: 8px;
  transform: rotate(-45deg);
  z-index: 3;
}

/* ----- スライド上のテキストニュース */
#keyNews {
  display: inline-block;
  bottom: 40px;
  position: absolute;
  width: auto;
  right: 0;
  padding: 12px 60px 12px 30px;
  background: #FFF;
  color: #000;
  border-radius: 120px 0 0 120px;
  z-index: 11;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 20px;
}

#keyNews li {
  list-style: none;
}
#keyNews li .date,
#keyNews li .new,
#keyNews li .text{
  display:inline-block;
  margin-right:10px;
}
#keyNews li .ttl {
  display:inline-block;
  margin-right:10px;
  background-color:var(--main-color);
  color: #FFF;
  padding:2px 5px;
  font-size:0.8em;
}
#keyNews li .new{
	color: #ca061d;
	margin-top:0.2em;
	padding: 0.01em 0.5em;
}
#keyNews li a {
  color:#FFF;
}

/* ----------------------- itemList */
.body_common .listArea {
  padding:0;
  z-index: 1;
}
.body_common .listArea h2 {
  top: -90px;
  left: 50%;
  position: absolute;
  z-index: 1;
  transform: translateX(-50%);
  width: 100%;
  font-size: 2.2em;
}
                  @media screen and (max-width: 779px) {
                      .body_common .listArea h2 {
                          position: relative;
                          top: auto;
                          margin: 14px 0 0;
                      }
                  }

.body_common .listArea h2 span {
  display: inline-block;
  margin: 0 10px 5px 0;
  background-color: #549ee0;
  color:#FFF;
  padding: 7px 10px;
  font-size: 0.6em;
  font-family: var(--base-font);
  font-weight: 500;
  vertical-align: middle;
}

.body_common .itemList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding:0;
  text-align: center;
  margin: 0 auto;
}
                  @media screen and (max-width: 779px) {
                      .body_common .itemList {
                          grid-template-columns: repeat(2, 1fr);
                          margin: 20px auto 0;
                      }
                  }

.body_common .itemList li {
  list-style:none;
  overflow: hidden;
}
.body_common .itemList li a {
  position:relative;
  display: block;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s ease-out;
  padding: 54.5% 0;
  text-decoration: none;
  color:#fff;
  font-weight: 700;
}
                    @media screen and (max-width: 1020px) {
                        .body_common .itemList li a {
                        padding: 35.5% 0;
                        }
                        }

.body_common .itemList li a:hover {
  transform: scale(1.1);
}
.body_common .itemList li a:after {
  content:"";
  width: 100%;
  height: 100%;
  display:block;
  background-color: rgba(0, 0, 0, 0.18);
  position: absolute;
  top: 0;
  left: 0;
}
.body_common .itemList li a span {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  z-index: 1;
  position: relative;
}


/* 矢印 */
.arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 26px;
    color: #FFF;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.arrow::before{
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #4b4b4b;
}
.arrow::after{
    left: 6px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*--------------------------------------- archive */

.body_archive .archiveList {
  margin:80px 0 30px;
  padding:0;
} 

				@media screen and (max-width:891px) {
				.body_archive .archiveList {
					margin:30px 0 20px;
				}
				}


.body_archive .archiveList li {
  list-style: none;
  float:left;
  width:48%;
  position:relative;
}
				@media screen and (max-width:342px) {
				.body_archive .archiveList li {
					float:none;
          width:100%;
          margin-bottom:20px;
				}
				}

.body_archive .archiveList li:nth-child(even) {
  float:right;
}

.body_archive .archiveList li span {
  background-color: rgba(0, 0, 0, 0.362);
  color:#FFF;
  width: 44%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 50px 30px 50px;
  font-weight: bold;
  font-size: 1.5em;
  font-family: var(--mincho-font);
}
				@media screen and (max-width:1067px) {
				.body_archive .archiveList li span {
					width: 100%;
          background-color: rgba(0, 0, 0, 0.54);
				}
				}
				@media screen and (max-width:535px) {
				.body_archive .archiveList li span {
					height: 100%;
				}
				}
				@media screen and (max-width:388px) {
				.body_archive .archiveList li span {
					padding: 20px;
				}
				}



/*--------------------------------------- archiveDetail */

.body_archive h4 span {
  display: inline-block;
  background-color: #fcfba1;
  padding: 3px 15px;
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 12px;
}

.archiveDetail .frame {
  float:left;
  width:49%;
  padding-bottom:70px;
  text-align: center;
}
.archiveDetail .frame:nth-child(odd) {
  clear: both;
}
.archiveDetail .frame:nth-child(even) {
  float:right;
}
				@media screen and (max-width:720px) {
				.archiveDetail .frame,
				.archiveDetail .frame:nth-child(even) {
					width: 100%;
          float:none;
				}
				}


.archiveDetail .frame .btn a {
  font-size:1em;
}

.archiveDetail .image_list {
  padding:0;
  margin:0 auto 30px;
  width:94%;
}
				@media screen and (max-width:679px) {
				.body_archive .archiveDetail .image_list {
					margin:0 auto 10px;
				}
				}
.archiveDetail .image_list.pattern02 {
  margin:50px auto 20px;
}

.archiveDetail .image_list li {
  float:left;
  width:49%;
  list-style: none;
}
.archiveDetail .image_list li:nth-child(even) {
  float:right;
}
.archiveDetail .image_list li span {
  padding: 26% 0;
  display: block;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 -1em 4em 1em rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease-out;
  position: relative;
}
.archiveDetail .image_list li img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.body_archive .con02 {
  padding-bottom:100px;
}
				@media screen and (max-width:679px) {
				.body_archive .con02 {
					padding-bottom:50px;
				}
				}

.body_archive .con02 h3 {
  margin-bottom: 50px;
}

.body_archive .con02 .floatL,
.body_archive .con02 .floatR {
  width:49%;
}
				@media screen and (max-width:679px) {
				.body_archive .con02 .floatL,
				.body_archive .con02 .floatR {
					float:none;
          width:100%;
				}
				}

/*--------------------------------------- body_archive 詳細ページ */

.body_archive .award {
  text-align: center;
  position: relative;
}
.body_archive .award span {
  display: inline-block;
  padding: 3px 15px;
  background-color: #000;
  color: #fff;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 6%;
  height: 270px;
}

        @media screen and (max-width: 891px){
          .body_archive .award span {
            writing-mode: inherit;
            position: relative;
            height:auto;
            margin-bottom: 10px;
            padding: 3px 45px;
          }
          }

.body_archive .detail {
  padding:40px 40px 0;
}
				@media screen and (max-width:679px) {
				.body_archive .detail {
					padding:0;
				}
				}

.body_archive .detail .floatL {
  width:55%;
  padding-top:20px;
}
.body_archive .detail .floatR {
  width:40%;
}
				@media screen and (max-width:679px) {
				.body_archive .detail .floatL,
          .body_archive .detail .floatR {
					width:100%;
          float:none;
				}
          .body_archive .detail .floatL {
            margin-bottom:30px
          }
				}


.body_archive .detail .floatR dl {
  font-size:0.85em;

}

                    @media screen and (max-width: 821px) {
                        .body_archive .detail .floatR dl {
                            display: block;
                        }
                    }              

.body_archive .detail .floatR dt {
  border-top: solid 1px #111;
  float:left;
  clear:both;
  width:25%;
  padding: 10px;
  font-weight: bold;
}

                    @media screen and (max-width: 821px) {
                        .body_archive .detail .floatR dt {

                        }
                    } 

.body_archive .detail .floatR dd {
  border-top: solid 1px #e5e5e5;
  float:right;
  width:72%;
  text-align: left;
  padding: 10px;
}
                    @media screen and (max-width: 821px) {
                        .body_archive .detail .floatR dd {
                          padding-top: 1.5rem;
                          padding-bottom: 2rem;
                        }
                    }

/*--------------------------------------- news/index.html */
#newsList ul.news {
    margin-bottom: 40px;
    border-top: dotted 1px #ccc;
}
                    @media screen and (max-width: 821px) {
                        #newsList ul.news {
                          margin: 20px 0;
                        }
                    }

#newsList ul.news li {
    list-style: none;
    border-bottom: dotted 1px #000;
}
#newsList ul.news li:nth-child(odd) {
    background: #fbfbfb;
}
#newsList ul.news li span.nolink,
#newsList ul.news li a {
    text-decoration: none;
    display: block;
    padding: 20px;
    transition: background-color 0.8s;
    -webkit-transition: background-color 0.8s;
}
#newsList ul.news li span {
  display:inline-block;
}
#newsList ul.news li span.new {
  background-color: var(--link-color);
  color: #FFF;
  padding: 2px 8px;
  margin-left: 10px;
  font-size:0.8em;
}
#newsList ul.news li span.date {
  width:110px;
  margin-right:10px;
}
#newsList ul.news li .listBox {
  padding: 20px;
  display:block;
}
#newsList ul.news li a .listBox {
  padding: 0;
}

/*------------------------------------------------ body_list 事業者一覧 */

.body_list .list_thumbnailC4 li a {
  padding-bottom: 40px;
    display: block;
  
}
                    @media screen and (max-width: 1020px) {
                        .body_list .list_thumbnailC4 li {
                          width:48%;
                        }
                        .body_list .list_thumbnailC4 li:nth-child(odd) {
                          clear: both;
                        }
                      .body_list .list_thumbnailC4 li:nth-child(even) {
                          float:right;
                        margin-right: 0;
                        }
                      .body_list .list_thumbnailC4  li .thumbnail {
                        height: 150px;
                        }
                        }

/* ------------------------------------------------ contact お問い合わせ / */

.container ul.form_flow {
	display:-webkit-box;
	display:flex;
	-webkit-box-pack:space-around;
	justify-content:space-around;
	border-right: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	margin:50px auto 0;
}

.form_flow li {
	-webkit-box-flex:1;
	flex-grow:1;
}

.form_flow li,
.form_flow li:first-child {
	display: block;
	width: 100%;
	border-left: 1px solid #f4f4f4;
	text-align:center;
}

.form_flow li {
	border-top: 1px solid #f4f4f4;
	padding:10px;
}

.form_flow li:first-child {
	border-top: none;
}

.form_flow li.current {
	background-color:#f4f4f4;
}
.contact_msg_complete{
	padding:5%;
	border:1px solid #F4F4F4;
}

/* table */
#input-table table th .input_required {
	display:inline-block;
}
/* contact form */
.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: linear 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: #2b71b7;
	background-color: var(--main-color);
	color: #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #3ba5eb;
}

.input_button {
	font-size: 0.9em;
	font-weight: bold;
	-webkit-appearance: none;
	padding: 4px 10px;
	background-color: #2b71b7;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#input-table .input_button {
	padding: 10px 50px;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	background-color:var(--main-color);/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}

#input-table .input_button {
	display:inline-block;
	border-radius: 4%;
	text-align: center;
	cursor: pointer;
	padding: 22px 44px;
	background: #6c9a1f;
	color: #ffffff;
	line-height: 1em;
	transition: .3s;
	margin-bottom:20px;
}
#input-table .input_button:hover {
	color: #bfbfbb;
	background: #ffffff;
}
/*.input-table-title div {
	display:inline-flex;
}*/


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.body_archive .archiveList:after,
.con:after,
.archiveDetail .image_list:after,
.container article:after,
.lower .key:after,
.body_common .award:after {
	content: "";
	display: block;
	clear: both;
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms setting */

/* フォームツールチップ */
.invisible {
	display: none;
}

a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}

#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}

.comment_box th,
.comment_box td {
	padding: 10px;
}

.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}

.comment_name {
	width: 70%;
	text-align: left;
}

.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}

.comment_box td {
	padding-top: 0;
}

.comment_text {
	padding: 15px;
	background: #ffffff;
}

.icon_comment {
	text-align: right;
}

.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}

/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/* エディター：スタイル */
.editor-style-btn1 {
	display: inline-block;
	padding: 1em 2em;
	color: #FFFFFF;
	border-radius: 50px;
	background-color: #333131;
	transition: linear 0.2s;
}

.editor-style-btn1:hover {
	background-color: #999;
}

.editor-style-btn1 a:link,
.editor-style-btn1 a:visited,
.editor-style-btn1 a:active,
.editor-style-btn1 a:hover {
	color: #FFFFFF;
	text-decoration: none;
}

.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}

/* フォームエラー */
.error_msg,
.error_msg_js {
	padding-left: 20px;
	background: url(./img/form_error.gif) left top no-repeat;
}
.error_msg_js_wrapper_privacy {
  float:left;
}
.form_attention {
	font-size: 0.9em;
	width: 100%;
	height: 12em;
	overflow: auto;
	border: 1px solid #eaeaea;
	padding: 10px;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

/* CSS Document */
/*===============================================
●style_tab.css  画面の横幅が779pxまで
===============================================*/
@media screen and (max-width:779px) {
br.forTab {
	display: inline;
}

html,body {
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
body {
	font-size: 1.3em;
}

nav ul {
	display:block;
}

}


/* CSS Document */
/*===============================================
●style_sp.css  画面の横幅が617pxまで
===============================================*/
@media screen and (max-width:617px) {

br.forPc {
	display: none;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.set-up */
.lower h1 {
	margin: 0 10px 20px;
	letter-spacing: 0.1em;
}


/* contact form */
#input-table .input_button {
	width: 80%;
}
input[type="text"] {
	width: 100% !important;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	width: 96% !important;
	font-size: 110%;
}



}




