@charset "utf-8";

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	width: 100% !important;
	color: #333;
	line-height: 1.6;
	overflow: hidden;
	font-size: 1.6rem;
	position: relative;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.1em;
}

body.open{
	height: 100vh;
}


/* modal */
/* グレー背景 */
.layer {
  background: rgba(0, 0, 0, .2); /* 背景を薄くする *
  width: 100%;
  height: 100%;
  position: fixed; /* 画面に固定するために指定 */
  top: 0;
  left: 0;
}

/* モーダルコンテンツ */
.modal-button {
  background: orange;
  border-radius: 12px;
  box-shadow: 2px 4px 6px 3px rgba(0, 0, 0, .24);
  border: 1px solid orange;
  font-size: 16px;
  line-height: 1.6;
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 0;
}


.modal__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);/* モーダルにシャドウをかける */
   /* モーダルの角を丸める */
  display: block;
  padding: 10px;
  height: auto;
}

.modal__content {
  height: 44vw;
  max-height: 450px;
}

.video{
	width:100%;
	height:100%;
}

.modal__button-wrap {
  position: absolute;
  right: 10px;
  top: -28px;
  display: inline-flex;
}

.close-button {
  position: relative;
  width: 39px;
  height: 39px;
  background: #ccc;
  border-radius: 50%;
  padding: 0;
  border: transparent;
  cursor: pointer;
}

.close-button span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: calc(50% - 12px);
  top: 50%;
  border-radius: 20px;
}

.close-button span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.layer {
  background: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;

  /* 追記 */
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  

  /* 追記 */
  opacity: 0;
  visibility: hidden;
  max-width: 760px;
}

.layer.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.layer.is-open .modal{
  opacity: 1;
  visibility: visible;
}

/*リンク表示方法*/

a {
	text-decoration: underline;	
}

a:link {
	color: #333;
}

a:visited {
	color: #333;
}

a:active {
	color: #333;
}

a:hover {
	color: #646464;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}


/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/

.pc {
	display: block;
}

.sp, .spTel {
	display: none;
}

.pcTel {
	display: inline;
}


/*-----------------------------------------------------------
header
-----------------------------------------------------------*/

.hTop{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2%;
	position: absolute;
	width: 100%;
	z-index: 999;
}

.article .hTop{
	position: static;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0;
}

header {
	padding: 0;
	width: 95%;
	max-width: 1200px;
	margin: 20px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.website header{
	width: 20%;
}

.article header{
	/* justify-content: center; */
}



.headerUl {
	margin: 0 0 0;
}

.headerUl:after {
	content: '';
	display: block;
	clear: both;
}

.headerUl li {
}

.hLogo {
	width: 30%;
	min-width: 104px;
	margin: 15px 0;
	max-width: 216px;
}

.hTop .hLogo {
	width: 100%;
}

.hLogo a:hover img {
	opacity: 1;
}

.headerTel {
	margin: 0 0 0 0;
	padding: 0px 0 0;
	font-weight: 900;
}

/*-----------------------------------------------------------
テーブル共通
-----------------------------------------------------------*/

table {
	border-collapse: separate;
}


/*-----------------------------------------------------------
 nav
-----------------------------------------------------------*/

.article nav {
	width: 100%;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 15px 0;
	max-width: 100%;
}

nav {
	margin: 10px auto 0;
	width: 95%;
	max-width: 1200px;
}

nav ul{
	display: flex;
	justify-content: end;
}

.article nav ul{
	display: flex;
	justify-content: center;
}

nav > ul li {margin: 0 0 0 3vw;}

nav li a {
	display: block;
	text-decoration: none;
}

nav li a:hover {
	color: #646464;
}


/*-----------------------------------------------------------
#slide
-----------------------------------------------------------*/

#modal {
	display: none;
}

/*-----------------------------------------------------------
#cover
-----------------------------------------------------------*/

#cover {
	max-width: 1920px;
	width: 100%;
	margin: 10px auto 0;
	background: #ccc;
}

#cover .sp {
	display: none !important;
}

#cover li {
	height: 500px;
}

#cover img {
	width: 1000px;
	margin: 0 auto;
	display: block;
}

.cover01 {
	background: #ccc;
}

.cover02 {
	width: 100%;
    background: #555;
}

.cover03 {
	width: 100%;
    background: #333;
}

/*-- 中ページカバー --*/

.privacy #cover {
	background: #555;
}

.company #cover {
	background: #444;
}

.contact #cover {
	background: #777;
}

.list #cover {
	background: #ccc;
}


/*-----------------------------------------------------------
 #main
-----------------------------------------------------------*/
.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url(./img/0921_top_mv.webp);
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url(./img/0921_top_mv02.webp);
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url(./img/0921_top_mv03.webp);
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.topadp {
    position: relative;
    /* z-index: 0; */
}


/*.website #main{
	height: 100vh;
	background: url(./img/top_mv.png)no-repeat center;
	background-size: cover;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}*/


.topadp h2{
	font-size:2.7rem;
/* 	text-shadow: 0 3px 6px #00000066; */
	position: absolute;
	top: 30%;
	right: 5%;
		background: #ffffff29;
	padding: 20px;
	color: #000;
}

.topadp h2 img{
	margin-right:10px;
	max-width:200px;
}

#main {
	width: 100%;
	margin: 0 auto;
}

.inner{
	width: 95%;
	max-width: 1500px;
	margin: 0 auto;
}

.inner2{
	width: 95%;
	max-width: 1150px;
	margin: 0 auto;
}


.mainTit{
	font-size: 3rem;
	text-align: center;
	line-height: 1.3;
}

.mainTit span{
	display: block;
	font-size: 1.4rem;
}

.content01{
	margin: 0 0 80px 0;
}

.content01 p{
    margin: 40px 0 0;
    font-size: 1.8rem;
}

.content02{
	background: #ccc;
	padding: 80px 0;

}

.content02 ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 50px 0 0;
}

.content02 li{
	width: 31%;
	background: #fff;
	padding: 20px 2%;
}

.content02 dt{
	text-align: center;
	font-size: 2.1rem;
}

.content02 dd{
	margin: 10px 0 0 0;
}

.content03{
	padding: 80px 0;
}

/*-----------------------------------------------------------
 footer
-----------------------------------------------------------*/

footer {
	margin: 0 auto;
	padding: 0;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.article footer{
	position: static;
	background: #333333;
	color: #D3D3D3;
}

footer .inner {
	padding: 0 0 32px;
	text-align: center;
	border-bottom: 1px solid #D3D3D3;
	max-width: 1500px;
}

footer .fnav{
	display: flex;
	justify-content: center;
	padding: 40px 0;
	border-bottom: 1px solid #D3D3D3;
	margin: 0 0 40px 0;
}

footer .fSns{
	margin: 20px 0 30px 0;
}

footer .info{
	font-size: 1.4rem;
}

footer .tel{
	margin: 23px 0 0 0;
	display: block;
}

footer .fnav a{
	color: #D3D3D3;
	margin: 0 20px;
	font-size: 1.6rem;
	text-decoration: none;
}

.copyright {
	background: #333333c9;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 1.2rem;
}

.article .copyright {
	padding: 20px 0;
}



/* 全ページ共通クラス
----------------------------------------------------------- */

/*--- パンくず ---*/

.pankuzu {
    width: 1000px;
    margin: 0 auto;
    font-size: 12px;
    padding: 16px 0 0;
}

.pankuzu li {
    margin: 0 0 0 10px;
    display: inline;
}

.pankuzu li:first-child {
    margin: 0;
}

.pankuzu li a {
    margin: 0 10px 0 0;
    color: #F44336;
}

.pankuzu li a:hover {
    color: #0071BC;
}


/*--- ページトップ ---*/
#pageTop {
	position: fixed;
	bottom: 200px;
	right: 25px;
	z-index: 9999;
}


/* -- お問い合わせ -- */

input {
	vertical-align: middle;
	width: 100%;
}

.btnBox1 {
	text-align: center;
}

.contact_cf .clearForm,.contact_cf .clearForm2 {
	padding: 10px 5px;
}

.choose_list1 > li {
	width: 200px;
	margin: 0 0 0 10px;
	float: left;
}

.choose_list1 > li:first-child {
	margin: 0;
}

.choose_list1 {
	width: 410px;
	margin: 20px auto;
}

.contact_tb td span {
	margin: 9px 0 0;
	display: block;
}

.clearForm,
.clearForm2,
.toHome {
	width: 300px;
	height: 60px;
	cursor: pointer;
	outline: 0;
	background: #333333;
	color: #fff !important;
	font-size: 100%;
	border: none;
	font-weight: bold;
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
}

.clearForm:hover,
.clearForm2:hover,
.toHome:hover {
	background: #777;
	color: #FFF;
}

.toHome {
	margin: 50px auto 0 !important;
	text-decoration: none;
	display: block;
	text-align: center;
}



textarea {
	width: 100%;
	padding: 10px 5px;
	height: 175px;
}

input,
textarea,
button,
select,
option {
	outline: none;
	background: #F4F4F4;
}

input[type="text"] {
	padding: 5px;
	height: 40px;
}

input[type="text"],
textarea,
select,
option {
	border: 1px solid #D6D6D6;
}

button {
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

.form_notice1 {
	font-size: 85.714%;
	display: block;
	margin: 5px 0 0;
}

.form_notice2 {
	font-size: 87.5%;
}

.modification_wrap {
	overflow: hidden;
}

.modification {
	width: 221px;
	float: left;
	margin: 0 0 0 246px;
}

.send_bt {
	width: 221px;
	float: right;
	margin: 0 245px 0 0;
}

.error_style {
	color: #FF0000;
	display: block;
	margin: 8px 0 0;
}

.contact_tb {
	width: 95%;
	max-width: 1285px;
	margin: auto;
}

.contact_tb th {
	width: 250px;
	text-align: left;
	position: relative;
	line-height: 1.4;
}

.contact_tb th, .contact_tb td {
	padding: 25px 0px 25px 0;
	font-size: 15px;
	position: relative;
}

.contact_tb th em {
	color: #DE2B2B;
	right: 10px;
}

.vtop{
	vertical-align: top;
}


/*-- エラーチェック --*/

.formError {
	top: 20px !important;
	left: 40px !important;
}

.zip2formError {
	left: 220px !important;
}

.prefformError, .cityformError, .addformError {
	top: 0 !important;
	left: 80px !important;
}

.zip1 label {
	position: relative;
}


/*-- 送信前ダイアログ --*/

.ui-dialog {
    margin: auto;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
}

.ui-corner-all.ui-button-text-only:focus {
	color: #737373;
    background: #fff;
    outline: none;
    border-color: #ccc;
}

.ui-corner-all.ui-button-text-only:hover {
    color: #fff;
    background: #555;
    outline: none;
    border-color: #ccc;
    transition: .3s;
}

.ui-widget-header {
    background: #555 !important;
    border-color: #555 !important;
}

.ui-dialog .ui-dialog-content,
.ui-button-text-only .ui-button-text {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}


/* TOP
----------------------------------------------------------- */

/*-- メインヴィジュアル スライダー --*/

.bx-wrapper {
	margin: 0 0 20px !important;
	position: relative;
}

.bx-controls-direction {
	width: 100%;
	position: absolute;
	top: 50%;
}

.bx-controls-direction a {
	width: 32px;
	height: 32px;
	margin: -16px 0 0;
	position: absolute;
	top: 50%;
	z-index: 9999;
	outline: 0;
	text-indent: -9999px;
}

.bx-prev {
	left: 1% !important;
	background: url(././img/prev.png) no-repeat 0 0;
	background-size: contain;
}

.bx-next {
	right: 1% !important;
	background: url(././img/next.png) no-repeat 100% 0;
	background-size: contain;
}


/*-- スクロールバーデザイン --*/

.scroll-pane {
	width: 100% !important;
	height: 300px; /*箱の高さ*/
	margin: 40px auto 0;
	overflow-y: auto;
}

.scroll-pane:focus {
	outline: none;
}

.jspContainer {
	width: 100% !important;
	overflow: hidden;
	position: relative;
}

.jspPane {
	width: 100% !important;
	position: absolute;
}

.jspVerticalBar {
	width: 20px;
	position: absolute;
	top: 0;
	right: -5px;
}

.jspArrowUp, .jspArrowDown {
	margin : 0;
	padding: 0;
	display: block;
	cursor : pointer;
	/* background: url(./img/scroll_top.png) no-repeat center; */
}

.jspArrowDown {
	background: url(./img/scroll_bottom.png) no-repeat center;
}

.jspTrack {
	/* background: url(././img/scroll_bg1.png) repeat-y; */
	position: relative;
	background-position: center;
}

.jspDrag {
	width: 4px;
	margin: 0 auto;
	background: #6b6b6b;
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

.jspArrow.jspDisabled {
	cursor: default;
}

.jspVerticalBar .jspArrow {
	height: 20px;
}

.jspVerticalBar .jspArrow:focus {
	outline: none;
}


/* 新着情報
----------------------------------------------------------- */

.news li {
	/* width: 660px; */
	margin: 0;
}

.news dl {
	width: 98%;
	padding: 30px 5px 30px;
	border-top: 1px solid #555;
	display: flex;
}

.news dt{
	min-width: 100px;
	margin: 0 20px 0 0;
}

.news li:first-child dl {
	border-top: none;
}


/*-----------------------------------------------------------
 中ページ
-----------------------------------------------------------*/

.leadTxt {
	margin: 30px auto 0;
	padding: 20px;
	background: #ccc;
}


/* 会社概要
----------------------------------------------------------- */


.companyBox .inner {
    max-width: 1500px;
    justify-content: space-between;
    margin: 100px auto 0;
    gap: 3%;
}

.companyBox th,.companyBox td {padding: 30px 0;text-align: inherit;}

.companyBox {
    margin: 0px 0 80px;
}

.companyBox th {
    border-bottom: 3px solid #D6D6D6;
    width: 20%;
}

.companyBox td {
    border-bottom: 1px solid #D6D6D6;
    width: 80%;
    padding-left: 20px;
}

.companyBox table {
    width: 50%;
}

.companyBox .titH3 {
    text-align: center;
    font-size: 2.5rem;
}

.companyBox .titH3 span {
    font-size: .8rem;
}
.companyBox h2 {
    height: 92px;
    display: flex;
    align-items: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin: 95px auto 35px;
    max-width: 1500px;
    width: 95%;
}
.flex {
    display: flex;
}

.map iframe {
    max-width: 600px;
    height: 100%;
}

/* 物件実例
----------------------------------------------------------- */

.list01{
	margin-bottom:200px;
}

.list01 h2{
	text-align: center;
	font-size: 3rem;
	margin: 30px 0 20px;
}

.list01 .cateArea{
	text-align: center;
	margin: 12px 0 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.list01 .cateArea a{
	margin: 0 1%;
	text-decoration: none;
}

.mainList ul{
	display: flex;
	flex-wrap: wrap;
	margin: 75px 0 0 0;
}
.mainList .title span {display: none;}

.mainList li{
	position: relative;
	width: 33.33%;
}

.mainList li .img{
	overflow: hidden;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	text-align: center;
}

.mainList li a img{
	transform: scale(1);
	transition: all 1.3s ease-in-out;
	object-fit: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 1/0.66;
}

.mainList li a:hover img{
	transform: scale(1.5);
}

.mainList a:hover img{
	opacity: 1;
}

span.hero-gradient {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.4) 30%,rgba(0,0,0,0) 80%);
    background-position: 0 0;
    opacity: .4;
    z-index: 0;
}

a:hover span.hero-gradient{
	opacity: 1;
}

span.hero-gradient {
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	opacity: 0;
}

.mainList li a span.meta {
    padding: 20px 60px 20px 20px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: end;
    z-index: 1;
    color: #fff;
    font-size: 1.4rem;
}

.mainList li a:hover span.meta{
	opacity: 1;
}

.mainList li a span.meta .tit{
	font-size: 2.2rem;
}

.mainList li a span.meta i{
	margin: 0 6px 0 0;
	font-style: inherit;
}

/* 物件実例詳細 */
.cover{
	width:100%;
	height: 512px;
}

.cover img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.list02{
	margin: 60px auto 240px;
}

.dettop{
	display:flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 60px;
}

.detl dl{
	display:flex;
	align-items: center;
	margin-bottom: 15px;
}

.cate{
	font-size:1.2rem;
	color: #fff;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	width: 85.85px;
	height: 28.5px;
}

.date{
	font-size:1.5rem;
	display: none;
}

.h30{
	font-size:3rem;
}

.detr{
	width: 150px;
}

.sns{
	display:flex;
	justify-content: space-between;
	align-items: center;
}

.snsp{
	position:relative;
}

.snsp a{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	left:0;
	top:0;
}

.snsp:hover{
	opacity:0.7;
}

.detp{
	font-size:1.5rem;
	font-weight:700;
	margin-bottom: 80px;
	text-align: justify;
}

.detimg{
	margin-bottom: 55px;
}

.det-area ul{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.det-area li{
	width:50%;
}

.det-area li img{
	width:100%;
}

.iframe-area{
	height:445px;
}

.iframe-area iframe{
	width:100%;
}

/* NEWS */

.pagination-list{
	display:
	flex;
	justify-content: center;
	margin: 115px auto 170px;
}
.page-numbers{
	margin:0 15px;
	font-size:22px;
	font-weight: 700;
	line-height: 1.6;
	text-decoration: none;
	color: #8E8E8E!important;
	position: relative;
	transition: .5s;
}
.current{
    color: #000!important;
}

.page-numbers:hover{
	 color: #000!important;
}

.page-numbers:before{
	position:absolute;
	content:"";
	width: 23px;
	height:1px;
	background:#fff;
	bottom: -5px;
	left: -5px;
	margin: auto;
	transition: .5s;
}

.current:before,.page-numbers:hover:before{
	position:absolute;
	content:"";
	width: 23px;
	height:1px;
	background:#000;
	bottom: -5px;
	left: -5px;
	margin: auto;
	transition: .5s;
}

.news01 h2{
	height:92px;
	display: flex;
	align-items: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	margin: 95px auto 45px;
}

.ned{
	display:flex;
	justify-content: space-between;
}

.newslist{
	max-width: 1135px;
	width: 78%;
}

.newslist ul{
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}


.newslist li{
	position: relative;
	width: 31%;
	max-width: 344px;
	margin-bottom: 75px;
}

.newslist li:nth-child(3n+2){
	margin:0 3.5% 75px;
}

.newslist li a{
	text-decoration: none;
}

.newslist li .img{
	overflow: hidden;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	position: relative;
}

.newslist li a img{
	transform: scale(1);
	transition: all 1.3s ease-in-out;
	object-fit: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 1/0.826;
}

.newslist li a:hover img{
	transform: scale(1.5);
}

.newslist a:hover img{
	opacity: 1;
}

.newslist li a span.meta {
    padding: 20px 60px 20px 20px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: end;
    z-index: 1;
    color: #fff;
    font-size: 1.4rem;
}

.newslist li a:hover span.meta{
	opacity: 1;
}

.newslist li a span.meta .tit{
	font-size: 2.2rem;
}

.newslist li a span.meta i{
	margin: 0 6px 0 0;
	font-style: inherit;
}

.newslist li h3{
	font-size:3rem;
	text-align: center;
	margin-top: 10px;
}

.new{
	display: flex;
	position:absolute;
	z-index: 1;
	background: #fff;
	width: 70px;
	height: 35px;
	align-items: center;
	justify-content: center;
}



.side-list{
	max-width:295px;
	width: 20%;
}

.sided{
	width: 100%;
	margin-bottom: 40px;
}

.sidetit{
	background:#F8F8F8;
	height: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	font-size: 1.5rem;
	margin-left: 1px;
}

.sided li{
	font-size: 1.8rem;
	margin-top: 20px;
}

.sided li a{
	text-decoration: none;
}

.sided li a img{
	display: block;
	object-fit: cover;
	width: 100%;
	height: auto;
	aspect-ratio: 1/0.65;
}

.news02{
	margin:85px auto 210px;
}

.news02 .dettop{
	margin-bottom:30px;
}

.pager{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 100px auto 75px;
}

.pagerli{
	font-size:1.8rem;
	position: relative;
}



.pagerli .fas{
	padding-right: 20px;
}

.pagerli .fa{
	padding-left: 20px;
}

.pagerli .fas,.pagerli .fa{
	font-weight:500;
	position:relative;
	font-family: 'Noto Serif JP', serif;
}

.pagerli .fa:before,.pagerli .fas:before{
	content: '';
	width: 8px;
	height: 8px;
	border-top: solid 1px;
	border-right: solid 1px;
	position: absolute;
	top: 3px;
	bottom:0;
	margin:auto;
}

.pagerli .fa:before{
	transform: rotate(-135deg);
	left: 0;
}

.pagerli .fas:before{
	transform: rotate(45deg);
	right: 0;
}

.pagece{
	height:60px;
	max-width: 220px;
	width: 40%;
	display:flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	position: relative;
}

.pagece a{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	top:0;
	left:0;
}

.pagerli:hover{
	opacity:0.7;
}

/* プライバシーポリシー
----------------------------------------------------------- */

.privacy dl {
	margin: 30px 0 0;
}

.privacy dt {
	margin: 20px 0 0;
	padding: 0 5px;
	display: inline-block;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
}

.privacy dt:first-child {
	margin: 0;
}

.privacy dd {
	font-size: 14px;
	margin: 10px 10px 0;
}


/* contact */

.contact01{
	margin-bottom:130px;	
}

.contact01 h2{
	height:92px;
	display: flex;
	align-items: center;
	border-top: 1px solid;
	border-bottom: 1px solid;
	margin: 95px auto 35px;
}

.contact01 .inner>p{
	font-size:1.5rem;
}

.contactd{
	border:1px solid #D6D6D6;
	margin: 95px auto 65px;
	padding: 45px 0;
}

.adcomp .inner{
	max-width:1000px;
}

.adcomp .img{
	max-width:300px;
}

.adcomp .text_area{
	font-size:1.8rem;
	line-height:2;
}

.tel_link {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

.serviceBox1{
	padding:0 0 120px;
}

.serviceBox1 h2 {
    height: 92px;
    display: flex;
    align-items: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin: 95px auto 35px;
    max-width: 1500px;
    width: 100%;
}

.serviceBox1 h3{
	text-align:center;
	font-size:4rem;
}

.service_list1{
	display:flex;
	justify-content:space-between;
	margin:100px auto 0;
}

.service_list1 li{
	width: 32%;
	background: #F8F8F8;
	position: relative;
	padding:20px 1.5% 25px;
	max-width: 460px;
}

.service_list1 li .case{
	font-size:5.6rem;
	font-weight:700;
	color:#D6D6D6;
	position:absolute;
	left:0;
	right:0;
	margin:auto;
	width:max-content;
	top:-50px;
	line-height:1;
}

.service_list1 li .title{
	display:flex;
	justify-content:space-between;
	padding-bottom:25px;
	border-bottom:1px solid #D6D6D6;
	align-items: center;
	margin-bottom:25px;
}

.service_list1 li .title h4{
	display:flex;
	align-items:center;
	font-size:2.4rem;
	justify-content: center;
}

.service_list1 li .title h4 img{
	margin-right:10px;
}

.service_list1 li .title .sub_tit{
	font-size:1.4rem;
	color:#777777;
}

.service_list1 li .title .text{
	font-size:1.5rem;	
}

.service_list1 li .text .un_line{
	border-bottom:1px solid #333;
}

.serviceBox2{
	padding:80px 0 80px;
	background:#F8F8F8;
	position:relative;
	z-index: 1;
}

.serviceBox2 .inner{
	max-width:800px;
}

.serviceBox2 .ser_tit{
		text-align:center;
}

.ser_tit{
	font-size:4rem;
}

.ser_tit img{
	margin-right:10px;
}

.service_list2{
	margin:40px auto 0;
}

.service_list2 li{
	background:#fff;
	margin-bottom:24px;
	padding: 10px 5%;
	min-height:144px;
	display:flex;
	align-items:center;
}

.service_list2 li .flex{
	width:100%;
}

.service_list2 li .img{
	margin-right:5%;
	max-width:80px;
	width: 15%;
	display:flex;
	align-items:center;
	justify-content:center;
}

.service_list2 li .text_area{
	width: 82%;
}


.service_list2 li .text_area h3{
	font-size:2.4rem;
	margin-bottom:5px;
}

.service_list2 li .text_area p{
	font-size:1.5rem;
	line-height:29px;
}

.yellow{
	color:#E7C02A;
}

.serviceBox2 .abp{
	position:absolute;
	right: 1%;
	bottom:0;
	color: #FFFFFF;
	font-size: 23.5rem;
	font-weight: 700;
	z-index: -1;
	line-height: 1;
}

.serviceBox3{
	padding:120px 0 130px;
}

.service_list3{
	margin-top:40px;
	display:flex;
	justify-content:space-between;
}

.service_list3 li{
	width: 32%;
	position: relative;
}

.lista{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index: 1;
}

.service_list3 li:not(:last-child) .img{
	overflow:hidden;
}

.service_list3 li:not(:last-child) .img img{
	transition:.6s;
}

.service_list3 li:not(:last-child):hover img{
	transform:scale(1.5);
}

.service_list3 li .text_area{
	display:flex;
	justify-content:space-between;
	margin-top:24px;
	align-items: center;
}

.service_list3 li .text_area .title{
	font-size:2.4rem;
	font-weight:700;
}

.service_list3 li .text_area .det{
	font-size:1.5rem;
	color:#777777;
	width: 100%;
	max-width: 166px;
	margin-left: 10px;
	text-align: right;
}

.service_list3 li .text_area .det span{
		position:relative;
		padding-right:15px;
		text-align: right;
}

.service_list3 li .text_area .det span:before{
	  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 1px #707070;
  border-right: solid 1px #707070;
  position: absolute;
  right: 0px;
  top: 0px;
	bottom:0;
	margin:auto;
	transform: rotate(45deg);
}

.contact_tel_bnr{
	margin:80px auto 0;
	background:#333;
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:space-between;
	position: relative;
	padding: 32px 3.5%;
	max-width: 800px;
}

.contact_tel_bnr .left{
	font-size:3rem;
	font-weight:700;
}

.contact_tel_bnr .left span{
	display:block;
	font-size:1.4rem;
	font-weight:500;
}

.contact_tel_bnr .right{
	display:flex;
		align-items:center;
	justify-content:space-between;
	font-size:4.8rem;
	font-weight:700;
}

/*-- 固定ここまで --*/


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.newslist li h3{
	font-size: 2.4rem;
	text-align: center;
	margin-top: 10px;
}


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1400px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

img {
	width: auto;
	max-width: 100%;
	height: auto;
}



/*-----------------------------------------------------------
header
-----------------------------------------------------------*/

header {
}

header h1 {
	font-size: 80%;
}

.logo {
	width: 28%;
}

.headerAdd {
	width: 45%;
	margin: 0 0 0 1%;
	font-size: 90%;
}

.headerTel {
	height: auto;
	margin: 0 0 0 0%;
}


/*-----------------------------------------------------------
cover
-----------------------------------------------------------*/


/*-----------------------------------------------------------
#main
-----------------------------------------------------------*/

#main {
}


/*-----------------------------------------------------------
nav
-----------------------------------------------------------*/


/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/

.copyright small {
	width: 96%;
}



/* 全ページ共通クラス
----------------------------------------------------------- */

.pankuzu {
	width: 98%;
}


/* トップページ
----------------------------------------------------------- */

.conte02 .txtBox {
    width: 96%;
    padding: 2%;
}

.news li {
    width: 94%;
    margin: 0 1%;
}

.news dl {
    width: 98%;
    font-size: 90%;
}

.scroll-pane {
	width: 100% !important;
}


/* 中ページ
----------------------------------------------------------- */

.leadTxt {
	padding: 20px 2%;
	font-size: 100%;
}

.privacy dt {
	padding: 0 1%;
}

.privacy dd {
	margin: 10px 2%;
}

.company table {
	width: 100%;
}

.company th {
	width: 30%;
	padding: 10px 2%;
	border-bottom: 1px solid #fff;
}

.company td {
	padding: 10px 2%;
	border-bottom: 1px solid #fff;
}

.company iframe {
	width: 100%;
}

.listUl {
	width: 100%;
	margin: 30px auto 0;
}

.listUl li {
	width: 31.3%;
	margin: 0 1%;
}


/*-- お問い合わせ --*/


.contact_tb {
	width: 95%;
}

.contact_tb th {
	width: 30%;
	padding: 13px 0% 10px;
	font-size: 80%;
}

.contact_tb td {
	padding: 13px 0% 10px;
}

.contact_cf .clearForm,.contact_cf .clearForm2 {
	padding: 10px 5px;
}

.choose_list1 > li {
	width: 48%;
	margin: 0 0 0 2%;
}

.choose_list1 > li:first-child {
	margin: 0;
}

.choose_list1 {
	width: 60%;
	margin: 20px auto;
}

#name, #post, #mail, #mail_confirm, textarea, #url, #kana, #tel, #msg {
	width: 98%;
}

#zip1, #zip2 {
	width: 40%;
}

#city, #pref {
	width: 86%;
	margin: 2px 0 0 2%;
}

#add {
	width: 86%;
	margin: 2px 0 0 6.3%;
}

/*-- エラーチェック --*/

.formError {
	top: 20px !important;
	left: 10% !important;
}

.zip2formError {
	left: 54% !important;
}

.prefformError, .cityformError, .addformError {
	top: 30px !important;
	left: 10% !important;
}

.ui-dialog {
	width: 80% !important;
}


.newslist li{
	position: relative;
	width: 48%;
	max-width: 344px;
	margin-bottom: 75px;
}

.newslist li:nth-child(3n+2){
	margin:0 0 75px;
}

.newslist ul{
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}

.topadp{
	/* padding: 200px 25px 0 0; */
}

.topadp h2{
	font-size:2.4rem;
	top: 50%;
}

.companyBox .inner.flex {
    flex-direction: column-reverse;
	margin: 60px auto 0;
}

.map iframe {width: 100%;max-width: 100%;height: 340px;}


.companyBox table {
    width: 100%;
    margin: 0 0 50px;
}

.adcomp.companyBox .inner.flex{
	flex-direction:initial;
}

.adcomp .text_area{
	font-size:1.6rem;
}

.serviceBox1 h3{
	font-size:3rem;
}

.service_list1 li .case{
	font-size:4rem;
	top:-35px;
}

.service_list1 li .title{
	padding-bottom:15px;
	margin-bottom:25px;
	flex-direction:column;
	align-items: initial;
}

.service_list1 li .title h4{
	font-size:2.2rem;
	justify-content: flex-start;
}

.service_list1 li .title .sub_tit{
	text-align:right;
}
	
.service_list1 li .title .text{
	font-size:1.5rem;	
}


.serviceBox2 .abp{
	font-size: 15rem;
}


.service_list3 li .text_area{
	display:flex;
	justify-content:space-between;
	flex-direction:column;
	align-items: initial;
}

.service_list3 li .text_area .title{
	font-size:2rem;
}

.service_list3 li .text_area .det{
	position: absolute;
	bottom: 0;
	right: 0;
}

.service_list3 li{
	padding-bottom:30px;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1000px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc {
	display: block;
}

.sp {
	display: none;
}

nav li a {
	font-size: 1.5rem;
}

footer .fnav {
    flex-direction: column;
}
.contact_tb th {
	font-size: 70%;
}

.ned{
	flex-direction: column;
}

.newslist{
	max-width:1150px;
	width: 100%;
}

.side-list{
	max-width: initial;
	width: 100%;
}

.sided ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sided li{
	font-size: 1.8rem;
	margin-top: 0px;
	width: 50%;
	text-align: center;
	background: #F8F8F8;
	padding: 10px 0;
	border-bottom: 1px solid #fff;
}

.sided li:nth-child(odd){
	border-right: 1px solid #fff;
}

.newslist li h3{
	font-size: 2rem;
	text-align: center;
	margin-top: 10px;
}

.pagination-list{
	display:
	flex;
	justify-content: center;
	margin: 25px auto 75px;
}

.pager{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 25px auto 75px;
}

.watch.sided li{
	width: 33%;
	background: none;
	border: none;
	padding: 0;
	margin-top: 20px;
}

.mainList li{
	position: relative;
	width: 50%;
}

.list01{
	margin-bottom:100px;
}

nav > ul li {margin: 0 0 0 2vw;}

.newslist li a span.meta {
	opacity:1;
}

.newslist .title{
	display:flex;
	flex-wrap:wrap;
}

span.hero-gradient{
	opacity:1;
}

.h30{
	font-size:2.4rem;
}

.mainList li a span.meta {
	opacity:1;
	font-size: 1.2rem;
	padding: 0 0 10px 10px;
}

.mainList li a span.meta .tit{
	font-size: 1.8rem;
}

.new{
	width: 50px;
	height: 25px;
	font-size:1.2rem;
}

.topadp{
	/* padding: 200px 15px 0 0; */
}

.topadp h2{
	font-size:2rem;
}

.topadp h2 img{
	max-width: 170px;
}

.adcomp.companyBox .inner.flex{
	flex-direction:column-reverse;
}

.adcomp .img{
	max-width:300px;
	margin:0px auto 20px;
}

.adcomp .text_area{
	max-width:560px;
	margin:auto;
}
	
.tel_link {
	pointer-events: initial;
	cursor: pointer;
	text-decoration: initial;
	}

.contact_tel_bnr{
	margin: 30px auto 0;
	padding: 26px 3.5%;
}

.contact_tel_bnr .left{
	font-size:2.5rem;
}

.contact_tel_bnr .left span{
	font-size:1.4rem;
}

.contact_tel_bnr .right{
	font-size:3.6rem;
}

.contact_tel_bnr .right img{
	max-width:30px;
}

.service_list1{
	display:flex;
	justify-content:space-between;
	margin:100px auto 0;
	flex-direction:column;
}

.service_list1 li{
	width: 100%;
	margin:0 auto 80px;
	padding:25px 15px 20px;
}


.serviceBox1{
	padding:0 0 0px;
}

.service_list2 li{
	padding:25px 2%;
}

.service_list2 li .flex{
	flex-direction:column;
}

.service_list2 li .img{
	max-width:80px;
	width: 100%;
	margin:0 auto 10px;
}

.service_list2 li .text_area{
	width: 100%;
}

.service_list2 li .text_area h3{
	text-align:center;
	font-size:2rem;
}

.ser_tit img{
	max-width:200px;
}

.ser_tit{
	font-size:3rem;
}

.serviceBox3{
	padding:80px 0;
}

.service_list3{
	margin-top:40px;
	flex-direction:column;
	align-items:initial;
}

.service_list3 li{
	width:100%;
	margin-bottom:40px;
}





/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc, .pcTel {
	display: none;
}

.sp {
	display: block;
}

.spTel  {
	display: inline;
}


/*-- テーブル --*/

table {
	width: 100%;
}

th, td {
	width: 100% !important;
	display: block;
}


/* ヘッダー
----------------------------------------------------------- */


.telBtn {
	width: 35%;
	line-height: 1;
	margin: 3px 11% 0 0;
	font-size: 4rem;
}

.headerUl{
	display: flex;
	width: 30%;
	justify-content: flex-end;
}

.menuBtn {
	width: 50%;
}

#cover .pc {
	display: none !important;
}

#cover .sp {
	display: block !important;
}


/*--- modal ---*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 50px;
  height: 44px;
  z-index: 9999;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 20px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

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

/*gnav*/
.gnav{
    background: #ffffffd4;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 1s;
    left: 0;
    top: 0;
}

.gnav.active{
	display: block;
	border: none;
}

.gnav__menu{
	display: block;
	width: 100%;
}

.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: -35px;
}

nav .gnav__menu__item{
    margin: 0px auto 0;
    width: 95%;
}

.gnav__menu__item a{
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    padding: 0;
    text-decoration: none;
    transition: .5s;
    background: none;
    text-align: center;
    width: 100%;
    text-align: center;
    padding: 0 0 25px 0;
}

nav .gnav__menu__item a.btn03{
    padding: 0 5%;
    font-size: 2rem;
}

.gnav__menu__item a:hover{
    color: #e62219;
}


.content02 li {
    width: 100%;
    margin: 0 0 20px 0;
}


/*-- ページトップ --*/

#pageTop {
	display: none !important;
}


/* フッター
----------------------------------------------------------- */

.sp nav {
	margin: 0 auto;
}


/* トップページ
----------------------------------------------------------- */

#main {
}



/* 中ページ
----------------------------------------------------------- */
.company iframe {
	width: 100%;
	margin: 30px auto 0;
	display: block;
}

.listUl li {
	width: 48%;
}

.contact_tb th {
	font-size: 100%;

}

.choose_list1 {
	width: 80%;
}

#name, #post, #mail, #mail_confirm, textarea, #url, #kana, #tel, #msg {
	width: 100%;
}

#zip1, #zip2 {
	width: 40%;
}

#city, #pref, #add {
	width: 96%;
	margin: 2px 0 0;
}

/*-- エラーチェック --*/

.zip1formError {
	left: 10% !important;
}

.zip2formError {
	left: 54% !important;
}

.prefformError, .cityformError, .addformError {
	top: 30px !important;
	left: 50% !important;
}

.detailBox > div {
	width: 100%;
	float: none;
}

.detailBox > .detailTxt {
	width: 98%;
	margin: 20px auto 0;
}

.formError {
	top: 20px !important;
	left: 10% !important;
}

.zip2formError {
	width: 42% !important;
	left: 50% !important;
}

.dettop{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-direction: column;
}

.detr{
	width:100px;
	margin-top: 20px;
}

.list02{
	margin: 60px auto 100px;
}

.cover{
	width:100%;
	height: 200px;
}

.news02{
	margin:85px auto 100px;
}

.list01 .cateArea a{
	margin: 0 0% 2%;
	text-decoration: none;
	width: 25%;
}

footer .fnav a{
	margin: 0 10px;
	font-size: 1.4rem;
}

.article nav ul{
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.website header{
	width: 100%;
}

.watch.sided li{
	width: 65%;
	margin: 20px auto 0;
}

.h30{
	font-size:2rem;
}

.mainList li a span.meta {
	opacity:1;
	font-size: 1rem;
	padding: 0 0 5px 5px;
}

.mainList li a span.meta .tit{
	font-size: 1.2rem;
}

.topadp{
	/* padding: 200px 0px 0 0; */
}

.topadp h2{
	font-size: 1.8rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}

.website #main{
	/* justify-content: center; */
}
.companyBox th {
    background: #cccc;
    padding: 0 0;
}

.companyBox td {
    padding: 5px 0 20px;
    border: none;
}
	
.hTop .hLogo {
	width: 30%;
}
	
.contact_tel_bnr .left{
	font-size:2.2rem;
}

.contact_tel_bnr .right{
	font-size:2.2rem;
}

.contact_tel_bnr .right img{
	max-width:26px;
}

.serviceBox1 h3{
	font-size:2.4rem;
}

.serviceBox2 .abp{
	font-size: 10rem;
}

.ser_tit img{
	max-width:160px;
}

.ser_tit{
	font-size:2.4rem;
}
	
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 591px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons {
    width: 94% !important;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.choose_list1 {
	width: 96%;
	font-size: 90%;
}

.choose_list1 > li {
	width: 49%;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 320px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

body .is-layout-flex {
    flex-wrap: inherit!important;
}
.det-area img {
    width: 100%;
}

body .is-layout-flex > * {
    width: 100%;
}

.det-area figure {
    margin: 10px 0 0!important;
}

.det-area > figure:last-child {
    margin: 0 0 0!important;
}

@media screen and (max-width: 720px) {
	body .is-layout-flex {
    flex-wrap: wrap!important;
}
}