@charset "UTF-8";
/*
Theme Name: seiki
Description:
Version: 9.99
*/

.font_blue { color:#226896; }
.breadcrumbs { 
font-size:0.8em;
padding: 10px 20px 20px;}

.qas {
    max-width: 100%;
    margin-bottom: 1em;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qas summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    font-weight: 600;
    cursor: pointer;
}

.qas summary::before,
.qas p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qas summary::before {
    color: #226896;
    content: "Q";
}

.qas summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qas[open] summary::after {
    transform: rotate(225deg);
}

.qas p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qas[open] p {
    transform: none;
    opacity: 1;
}

.qas p::before {
    color: #C13432;
    line-height: 1.2;
    content: "A";
}


.sub_title2 {
  font-size: 1.3em;
  font-weight: 600;
  color: #fff;
  padding: 10px 20px 5px 40px;
}

.sub_no {
	width:48px;height:48px;
	text-align:center;
	color:#fff;
	background:#ccc;
	line-height:48px;
	position:absolute;
	left:0;top:0;bottom:0;
	margin:auto;
}

.call_base {
  position: relative;
}

.call_img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}

.menu {
	list-style:none;
	width:100%;height:auto;
	max-width:1120px;
	margin:auto;
	display:block;
}

.menu li {
	width:calc(100% / 5);
	border-top: 1px dotted #eee;
	border-left: 1px dotted #fff;
	display:inline-block;
	overflow:hidden;
}

.menu li:first-child {
	border-left: none;
}

.menu li a {
	width:100%;
	font-size:1em;
	color:#444;
	padding: 10px 20px 20px;
	display:inline-block;
	position:relative;

	background: #fff;
	background-position: 0 0;
	background-size: auto 200%;
	transition: 0.3s;
	overflow:hidden;
}

.menu li a::before{
	position: absolute;
	content: attr(title);
	bottom:10px;
	font-size: 11px;
	font-weight:normal;
	color:#ccc;
}

.menu li.m01 {border-radius:10px 0 0 0;}
.menu li.m05 {border-radius:0 10px 0 0;}

.menu li.m01 a {
	background: linear-gradient(to top, #917FB9 50%, #fff 50%);
	background-size: auto 200%;
	border-bottom:#917FB9 solid 7px;
}

.menu li.m02 a {
	background: linear-gradient(to top, #6CAD98 50%, #fff 50%);
	background-size: auto 200%;
	border-bottom:#6CAD98 solid 7px;
}

.menu li.m03 a {
	background: linear-gradient(to top, #226896 50%, #fff 50%);
	background-size: auto 200%;
	border-bottom:#226896 solid 7px;
}

.menu li.m04 a {
	background: linear-gradient(to top, #E88E2A 50%, #fff 50%);
	background-size: auto 200%;
	border-bottom:#E88E2A solid 7px;
}

.menu li.m05 a {
	background: linear-gradient(to top, #C13432 50%, #fff 50%);
	background-size: auto 200%;
	border-bottom:#C13432 solid 7px;
}

.menu li a:hover, .menu li a:hover i {
	background-position: 0 -100%;
	color:#fff;
	font-weight:600;
	text-decoration:none;
	letter-spacing:0.05em;
}

.menu li a::after {
	content: "\f0a9";
	font-family: FontAwesome;
	position:absolute;
	top:15px;right:-100%;
	color:#fff;
	transition:0.5s;
}

.menu li a:hover::after {
	top:20px;
	right:15px;
}

/*  矢印 */
a.flow {
	padding-top: 70px;
	display:block;
	position:relative;
	margin: 0 auto;
}
a.flow span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 1px solid #222;
	border-bottom: 1px solid #222;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 1.5s infinite;
	animation: sdb 1.5s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}

/*
.catch_base {
	
}
.catch_over {
	position:absolute;
	width:80vw;
	max-width:1280px;height:auto;
	background:rgba(0,147,179,0.85);
	bottom: 15%;left: 0;right: 0;
	margin: 0 auto;
	text-align:center;
	padding:20px 20px 30px;
	z-index:9999;

	font-size:1.8em;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	color:#fff;
	text-shadow: 0 0 3px #aaa;
	line-height:1.35;
}

.catch_over span {
	font-size:1.2em;
	line-height:1.35;
}
*/
.bg_sale {
  background: #006E7B !important;
}

.sale_name_box {
/*	background:#887551;*/
	text-align:center;
	padding:5px 10px;
	margin-bottom:10px;
}
.sale_name_box a {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	color:#006E7B;
	font-size:1.1em;
	font-weight:bold;
}

@media screen and (max-width: 639px) { 

.sub_no {
	top:0;bottom:auto;
}
.menu {
	display:none;
}
.page-home .menu{
	display:inline-block;
}
.page-home .menu li{
	width:calc(100% / 2);
}
#Index_work .item5:nth-child(2),
#Index_work .item5:nth-child(3) {
/*	display:none;*/
}

.catch_over {
	position:absolute;
	bottom: 10%;left: 0;right: 0;
	margin: 0 auto;
	text-align:center;

	font-size:1.2em;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	color:#fff;
	text-shadow: 0 0 3px #aaa;
	line-height:1.35;
}

.catch_over span {
	font-size:0.8em;
	line-height:1.35;
}
}

.footer_logo {
	padding:10px;
	width:auto;height:auto;
	max-width:240px;
}

.footer_fix {
	position:fixed;
	display:block;
	left:0;bottom:0;
	background: rgba( 255, 255, 255, 0.9);
}

.footer_fix img {
	width:100%;
	max-width:480px;
	height:auto;max-height:80px;
}

.color_f01 {
	background:#b28247;
}

.color_f02 {
	background:#c13432;
}

.color_f03 {
	background:#229c61;
}

h2.screen-reader-text {
	display:none;
}

nav.pagination {
	position:relative !important;
}

ul.pagination li a.active {
    background-color: #4CAF50;
    color: white;
}

ul.pagination li a:hover:not(.active) {background-color: #ddd;}

.hint2 {font-size:0.85em;color:#777;}
.line_001 {border:none;border-top:1px solid #ccc;margin: 20px auto 20px;}
.line_002 {border:none;border-top:1px solid #ccc;margin: 10px auto 10px;}

@media screen and (min-width: 639px) { 
	.img_50per { max-width:320px; }
}

h3.sp_view{
    border:solid 1px #ddd;
  -moz-border-radius: 5px; /* FF */
  -webkit-border-radius: 5px;/* Webkit */
  border-radius: 5px;
  background: #eee;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background: -moz-linear-gradient(top,  #fff,  #eee);
    padding: 5px;margin-bottom:15px;
  -pie-background:linear-gradient(top,  #fff,  #eee);
}
h3.sp_view span {
  border-left:5px #3cf solid;
  padding-left:10px;
}



.calls {
	font-size:1.8em;
	font-weight:600;
	color:#333;
	text-align:center;
	text-decoration:none;

	display:block;
	margin:0 auto;
}

.fix_tag {
	position: -webkit-sticky;
	position:sticky;
	top:25px;left:10px;
	z-index: 9999;
}


#sidemenu {
	width:260px;
	background:#aaa;
	display:block;

	margin: 20px 20px 20px 20px;
	padding:20px 0;
	border-radius: 5px 5px;
	box-shadow: 5px 5px 7px -5px #aaa;
/*	border-top: 10px solid #887551;*/
}

#sidemenu .mainmenu {
	list-style:none;
}

#sidemenu .mainmenu li {
	width:100%;
	text-align:center;
}

#sidemenu .mainmenu li:first-child a {
	border-top: none;
}

#sidemenu .mainmenu li a {
	width:85%;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
	font-size:16px;
	font-weight:600;
	line-height:2.3;
	color:#fff;
	padding: 5px 10px;
	margin: 0 auto;
	display:block;
	position:relative;
	border-top: 1px dashed #ccc;
	transition: 0.2s;
	text-decoration:none;
}

#sidemenu .mainmenu li {
	background: linear-gradient(to right, transparent 50%, #fff 50%);
	background-size: 200% auto;
	background-position: 0 0;

	transition: 0.2s;
	overflow:hidden;
}

#sidemenu .mainmenu li:hover a, 
#sidemenu .mainmenu li:hover a i {
	color:#aaa;text-decoration:none;
}

#sidemenu .mainmenu li:hover {
	background-position: -100% 0;
}




/**
pages
*/
.flex_content {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
}

.flex_content2 {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.item {
	flex-basis: 48.5%;
	position:relative;
	background:#fff;
	padding:10px;
	margin-bottom:20px;
}

.item5 {
	flex-basis: 31.5%;
	position:relative;
	background:#fff;
	padding:10px;
	margin-bottom:20px;
}

.item > img {
	border:1px solid #006E7B;
	padding:5px;
	background:#fff;
}

.item5 > a {
	width:100%;height:auto;
	max-width:320px;
	overflow:hidden;
	display:block;
	margin:auto;

	border:1px solid #006E7B;
}
.item5 > a img {
	object-fit:cover;
	background:#fff;
	transition:0.3s all;
}

.item5 > a:hover img {
	padding:0;border:0;
	transform:scale(1.1,1.1);
}


.item2 {
/*	flex-basis: 23%;*/
    width: 23%;
	background:#fff;
	padding:10px;
	margin-bottom:20px;
}
.item2 > a {
	width:100%;height:auto;
	display:block;
}
.item2 > a img {
	width:100%;height:100%;
	object-fit:cover;
}
.item2::after {
    content: "";
    display: block;
    width: 23%;
}
.item2::before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
}


.item4 {
	flex-basis: 100%;
	position:relative;
	margin:0 0 18.5px;
	
	border-left:7px solid #1b4898;
	border-radius:3px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.item10 {
	flex-basis: 31.5%;
	border:1px solid #ccc;
	border-radius:10px;

	font-size:0.8em;
	line-height:1.35;
	overflow:hidden;
}

.item10 > h3 {
	text-align:center;
	margin: 20px auto 0;
}

.item10 > p {
	padding: 20px 20px 0;
}

.item11 {
	flex-basis: 33.33%;
	position:relative;
}
.item12 {
	flex-basis: 66.66%;
	position:relative;
}

.item13 {
	flex-basis: 15%;
	position:relative;
	text-align:center;
	vertical-align:bottom;
}
.item13 img {
	max-width:200px;
}
.item14 {
	flex-basis: 80%;
	position:relative;
	padding:40px;
}

.cont_01 {order:1;}
.cont_02 {order:2;}
.cont_03 {order:4;}
.cont_04 {order:3;}
.cont_05 {order:5;}
.cont_06 {order:6;}
.cont_07 {order:8;}
.cont_08 {order:7;}
.cont_09 {order:9;}
.cont_10 {order:10;}


.sitemap {
	max-width:1080px;
	margin:0 auto;
	padding:20px 0 40px;
}

.sitemap > li > ul > li:not(:first-child) {
	font-size:14px;
}

.sitemap > li > ul > li:first-child a {
	font-size:1em;
}

.sitemap ul {
	list-style:none;
	padding:10px;
}

.sitemap > li {
	width:33.3%;
	display:inline-block;

	vertical-align:top;
}

.sitemap > li > ul > li:not(:first-child) {
	text-indent:1.5em;
}

@media only screen and (max-width:959px) {
.swiper-container img {
height:70vh !important;
}

.item {
	flex-basis: 100%;
	position:relative;
}
.item2, .item5 {
	flex-basis: 100%;
	margin-bottom:10px;
}
.item10, .item11, .item12, .item13, .item14 {
	flex-basis: 100%;
}

.item10 {
	margin-bottom:2em;
}

.item14 {
	padding: 20px 20px 40px;
}

.cont_01 {order:1;}
.cont_02 {order:2;}
.cont_03 {order:3;}
.cont_04 {order:4;}
.cont_05 {order:5;}
.cont_06 {order:6;}
.cont_07 {order:7;}
.cont_08 {order:8;}
.cont_09 {order:9;}
.cont_10 {order:10;}

.catch_over {
	width:100vw;
	bottom: 42vh;left: 0;right: 0;
	padding:10px 10px 15px;
	font-size:14px;
}

.catch_over span {
	font-size:1.1em;
	line-height:1.35;
}



}

/******************************************************
* WordPress Origin Class
******************************************************/

.wp-caption{
  max-width: 100%;
}
.wp-caption-text{
  text-align: left;
}
.alignright{
  float: right;
}
.alignleft{
  float: left;
}
.aligncenter{
  clear: both;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  .alignright,
  .alignleft,
  .aligncenter{
    float: none;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

/******************************************************
*Style for wrap
*
* - Includes main visual, main contents and sidebar.
******************************************************/

#wrap{
  margin-bottom: 20px;
}

@media screen and (max-width:768px) {
  #wrap{
    margin-top: 70px; /*Set the height of header.*/
  }
}

/******************************************************
*  Style for main contents
*
* - Stretch according to the width of the browser.
******************************************************/

/*Wrapper id of main contents.*/
#primary{
  float: left;
  width: 100%;
  margin-right: -220px; /*Set a value more than the width of the sidebar.*/
  padding-right: 220px; /*Set a value more than the width of the sidebar.*/
}
#primary main{
  border: 1px #BBB solid;
  padding: 10px;
}

@media screen and (max-width:768px) {
  #primary{
    float: none;
    margin: 0 0 20px 0;
    padding: 0;
  }
}

/******************************************************
*  Style for sidebar
*
* - Fixed width.
******************************************************/

/*Wrapper id of sidebar.*/
#secondary{
  float: right;
  width: 200px; /*Set the width of sidebar.*/
  border: 1px #BBB solid;
  margin-bottom: 20px;
  padding: 10px;
}

/*Wrapper class of widget.*/
#secondary .widget{
  border: 1px #BBB solid;
  padding: 10px;
}
#secondary .widget:not(:last-child){
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  #secondary{
    float: none;
    width: 100%;
  }
}

/******************************************************
*  Style for Front Page (displays Your latest posts)
*
* - The body tag has 'home' when you select 'Front page displays Your latest posts'.
* - Describe here if you want to define unique style on the Front Page.
******************************************************/

/*Style for the article box. */
.home .archive-entry{
  display: table;
  border: 1px #BBB solid;
  padding: 10px;
  width: 100%;
}

/*Style for the article thumbnail. */
.home .archive-entry .entry-thumbnail{
  display: table-cell;
  width: 200px; /*Set the width of the thumbnail.*/
  vertical-align: middle;
}

/*Style for the article title and excerpt. */
.home .archive-entry .entry-main{
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
}
.home .archive-entry .entry-main h3 a{
  font-size: 18px;
}

@media screen and (max-width:768px) {
  .home .archive-entry .entry-thumbnail{
    display: block;
    width: 100%;
    text-align: center;
  }
  .home .archive-entry .entry-thumbnail img{
    max-width: 200px;
  }
  .home .archive-entry .entry-main{
    display: block;
  }
}

/******************************************************
*  Style for Single Page
*
* - The body tag has 'single' class on the single page.
* - Describe here if you want to define unique style on the single page.
******************************************************/

/*Style for the article title.*/
.single h2.entry-title{
  font-size: 20px;
}

/*Style for the article thumbnail. */
.single .entry-thumbnail{
  text-align: center;
}
.single .entry-thumbnail img{
  width: 100%;
  max-width: 250px; /*Set the max width of the thumbnail.*/
}

/*Style for the article content. */
.single .entry-content{
  border: 1px #BBB solid;
  margin-bottom: 10px;
}

/*Style for the pagenation. */
.single .pagenation{
  border: 1px #BBB solid;
  margin-bottom: 10px;
  padding: 10px;
}
.single .pagenation .prev{
  float: left;
}
.single .pagenation .next{
  float: right;
}

/*Style for the tag. */
.single .tag{
  border: 1px #BBB solid;
  margin-bottom: 10px;
  padding: 10px;
}

/******************************************************
*  Style for Archive Page
*
* - The body tag has 'archive' class on the archive page.
* - Describe here if you want to define unique style on the archive page.
******************************************************/

/*Style for the archive category title.*/
.archive h2.archive-title{
  font-size: 20px;
}

/*Style for the article box. */
.archive .archive-entry{
  display: table;
  border: 1px #BBB solid;
  padding: 10px;
  width: 100%;
}

/*Style for the article thumbnail. */
.archive .archive-entry .entry-thumbnail{
  display: table-cell;
  width: 200px; /*Set the width of the thumbnail.*/
  vertical-align: middle;
}

/*Style for the article title and excerpt. */
.archive .archive-entry .entry-main{
  display: table-cell;
  vertical-align: top;
  padding-left: 10px;
}
.archive .archive-entry .entry-main h3 a{
  font-size: 18px;
}

@media screen and (max-width:768px) {
  .archive .archive-entry .entry-thumbnail{
    display: block;
    width: 100%;
    text-align: center;
  }
  .archive .archive-entry .entry-thumbnail img{
    max-width: 200px;
  }
  .archive .archive-entry .entry-main{
    display: block;
  }
}
