.top_image_inner img {
	width: 100%;
}

dd a{
	text-decoration: none;
}

td{
	padding-left: 15px;
}

.hd_p{
	font-weight: 600;
	font-size: 2.5rem;
}

.pdf::after{
	font-family: "Font Awesome 5 Free";
	content: "\f1c1";
	font-size: 25px;
}

.fixed_area{
	position: fixed;
	width: 100%;
	z-index: 999998;
	height: 90px;
}

.news_parent{
	background-color: #fff;
	padding: 70px 30px;
	border-radius: 50px;
	border: solid #a9a9a96e 1px;
	max-width: 1300px;
	width: 100%;
	margin: auto;
	box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 20%);
}

.list_link_inner{
	text-decoration: none;
}

.busienss_title{
	margin: auto!important;
}

.business_img{
	height: auto;
}

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*全体の設定
---------------------------------------------------------------------------*/

::selection
{
    background: #e8390e;
    color: #ffffff;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 62.5%;
}

/* .text_body_flex{
	max-width: 700px;
	width: 100%;
	position: relative;
	left: 250px;
} */

th{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
	font-size: 2.5rem;
}

.text_body_origin{
	max-width: 700px;
	width: 100%;
}

.text_body_outer{
	background-color: #fff;
	padding: 3% 2%;
	border: solid #a9a9a96e 1px;
	border-radius: 50px;
	max-width: 1300px;
	width: 90%;
	margin: auto;
	box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 20%);
}

.hd_text
.center{
	text-align: center;
}



.footer_logo{
	max-width: 250px;
	width: 100%;
}

.address_flex_area{
	display: flex;
	align-items: center;
}

.address_text_parent{
	text-align: initial;
	flex-basis: 50%;
	/* width: fit-content; */
}

.overview_table a{
	text-decoration: none;
}

.overview_table a:hover{
	color: #e8390e;
}

.overview_table a::after{
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: 600;
	font-size: 1.5rem;
	padding-left: 10px;
}


/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: #eee;
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
	width: 300px;
}

/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background: rgb(255, 255, 255);
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 260px;
}

.bg {
    animation:slide 15s ease-out infinite alternate;
    background-image: linear-gradient(30deg, #e8390e 50%, #f8f8f8 50%);
    bottom:-50%;
    left:0%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
  }
  
  .bg2 {
    animation-direction:alternate-reverse;
    animation-duration:10s;
  }

  .center_content_flex_box{
	padding: 0 2%;
  }

  @keyframes slide {
    0% {
      transform:translateX(-40%);
    }
    100% {
      transform:translateX(-35%);
    }
  }

/* fadeUpをするアイコンの動き */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}



@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.number_text{
	font-size: 15px;
}

/* .news_parent{
	animation: zoom-in-out 1s linear infinite alternate;
}

@keyframes zoom-in-out{
	0%{
		box-shadow: 0px 0px 0px 1px magenta;
	}
	33%{
		box-shadow: 0px 0px 0px 1px yellow;
	}
	66%{
		box-shadow: 0px 0px 0px 1px cyan;
	}
	100%{
		box-shadow: 0px 0px 0px 1px #000;
	}
} */

/* fadeUpをするアイコンの動き */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scrolldown_animation {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 1%;
	right: 50%;
	/*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
	0% {
		bottom: 1%;
	}

	50% {
		bottom: 3%;
	}

	100% {
		bottom: 1%;
	}
}

.btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
  position:relative;
    /*ボタンの形状*/  
  color:#333;
    padding: 10px 30px;
  
  display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
  content:'';
    /*絶対配置で線の位置を決める*/
  position:absolute;
    /*事前に出現させる線の形状*/
  border:solid 2px #e8390e;
  width:10px;
  height:10px;
    /*アニメーションの指定*/
  transition:all 0.3s ease-in-out;
}

.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
  top:0;
  left:0;
    /*事前に出現させる線の形状*/
  border-width:2px 0 0 2px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
  bottom:0;
  right:0;
    /*事前に出現させる線の形状*/
  border-width:0 2px 2px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
  width:calc(100% - 2px);
  height:calc(100% - 2px);
  border-color:#e8390e
}

/*Scrollテキストの描写*/
.scrolldown_animation span {
	/*描画位置*/
	position: absolute;
	left: -20px;
	bottom: 10px;
	/*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown_animation:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: -6px;
	/*矢印の形状*/
	width: 1px;
	height: 20px;
	background: #eee;
	transform: skewX(-31deg);
}

.scrolldown_animation:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: 0;
	/*矢印の形状*/
	width: 1px;
	height: 50px;
	background: #eee;
}

.scrolldown_parent {
	position: absolute;
	top: 2%;
}

/*========= レイアウトのためのCSS ===============*/


#header {
	width: 100%;
	height: 100vh;
	position: relative;
}

#header:before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
}

.container_overview_inner{
	text-align: center;
	background-color: #fff;
	border: solid #a9a9a96e 1px;
	padding: 70px 30px;
	border-radius: 50px;
	max-width: 1300px;
	width: 100%;
	margin: auto;
	box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.2);
}

.overview_table{
	margin: auto;
}

tbody tr{
	font-size: 1.8rem;
}

.business_text_inner{
	text-align: center;
    background-color: #fff;
    padding: 70px 30px;
	border: solid #a9a9a96e 1px;
    border-radius: 50px;
	max-width: 1300px;
	width: 100%;
	margin: auto;
	box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 20%);
}

.contact_text_inner{
	text-align: center;
    background-color: #fff;
    padding: 70px 30px;
	border: solid #a9a9a96e 1px;
    border-radius: 50px;
	max-width: 1300px;
	width: 100%;
	margin: auto;
	box-shadow: 1px 1px 2px 0px rgb(0 0 0 / 20%);
}



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

	#header,
	#header:before {
		height: 90vh;
	}

	.building_outer.flex.fade.fadein,.management_outer.flex.fade.fadein{
		margin-bottom: 3%;
	}


}

body {
	font-family: noto-sans-cjk-jp,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif;
	/* font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
	-webkit-text-size-adjust: none;
	background: #f8f8f8;
	color: #333;
	line-height: 2;
}

ul {
	padding: 0;
	margin: 0;
}

.fade {
	transition: all 2000ms;
	opacity: 0;
	visibility: hidden;
	transform: translate(0px, 50px);
}

.fadein {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
}


#side {
	float: right !important;
	width: 18%;
	right: 0;
}

.c2 #side {
	display: none;
}

figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav {
	margin: 0;
	padding: 0;
}

#social_medias {
	display: flex;
}

.icons a img {
	max-width: 100%;
	max-height: 100px;
}

.hamburger{
	display: none;
}

#contact_info {
	padding-top: 5%;
}

table {
	border-collapse: collapse;
}

#tnavi {
	position: relative;
	bottom: 34px;
	border-bottom: solid #e8390e 2px;
}

.inner {
	display: flex;
	justify-content: flex-end;
	position: relative;
	right: 7%;
}

#tnavi .inner li {
	padding-right: 2%;
}

.news_parent .news-container .news_item .thumbneil {
	max-width: 11%;
	height: fit-content;
}

.news_parent .news-container .news_item .thumbneil img {
	width: 100%;
}

i{
	font-weight: 500;
}

.news-info {
	width: fit-content;
	margin: 5px 50px;
	padding: 20px 10px;
}

.news_outer_line{
	width: 100%;
	border-top: solid 2px #f0f2f2;
}

.news-info dd {
	width: 100%;
}

.inner li a {
	font-size: 1.6rem;
	text-decoration: none;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	position: relative;
	font-weight: 700;
}

.loop_content {
	display: flex;
	width: 100vw;
	height: 300px;
	overflow: hidden;
}

.loop_content img {
	width: auto;
	height: 50%;
}

.loop_content img:first-child {
	animation: loop_text 50s -25s linear infinite;
}

.loop_content img:last-child {
	animation: loop_text_2 50s linear infinite;
}

@keyframes loop_text {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes loop_text_2 {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-200%);
	}
}

/* img {border: none;
	max-width: 70%;
	height: auto;
	vertical-align: middle;
	margin: 0 auto;
} */

/* section + section {
	padding-top: 30px;
	display: block;
	float: left;
	width: 70% !important;
	
} */


.start {
	background: rgb(255, 255, 255);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 90000;
}

.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 99999;
	width: 280px;
}

#main-content {
	width: 100%;
}

#main-content .slick li img {
	max-width: 70%;
	height: auto;
	vertical-align: middle;
	margin: 0 auto;
}

.list_link a {
	font-size: 1.92rem;
}

.breadcrumb {
	margin: 0;
	margin-top: 10px;
	padding: 0;
	list-style: none;
	margin-bottom: 0%;
	position: relative;
	top: 1vh;
	left: 8%;
	width: 92%;
}

div.syounari>a {
	font-weight: bold;
}

/*アコーディオン全体*/
.accordion-area {
	list-style: none;
	width: 96%;
	max-width: 900px;
	margin: 0 auto;
}

.accordion-area li {
	margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
	position: relative;
	/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size: 1rem;
	font-weight: normal;
	padding: 3% 3% 3% 50px;
	transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
	position: absolute;
	content: '';
	width: 13px;
	height: 2px;
	background-color: #333;

}

li::marker {
	display: none;
}

.title::before {
	top: 48%;
	left: 15px;
	transform: rotate(45deg);
}

i.fas.fa-chevron-right{
	font-size: 1.3rem;
	color: #e8390e;
}

.translate_point{
	transform: translate(0px,18px);
}

.title::after {
	top: 48%;
	left: 23px;
	transform: rotate(315deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before {
	transform: rotate(315deg);
}

.title.close::after {
	transform: rotate(45deg);
}

/*アコーディオンで現れるエリア*/
.box {
	display: none;
	/*はじめは非表示*/
	margin: 0 3% 3% 3%;
	padding: 3%;
}

.breadcrumb li {
	display: inline;
	/*横に並ぶように*/
	list-style: none;
	font-weight: bold;
	/*太字*/
	font-size: 1.8rem;
}

.breadcrumb li:after {
	/* >を表示*/
	content: '>';
	padding: 0 0.2em;
	color: #e36849;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #e36849;
	/*色*/
	font-size: 1.8rem;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}

.breadcrumb li a i {
	color: #696969;
}



.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

@keyframes opa1 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.flex {
	display: flex;
}

.left-content {
	width: 70%;
	margin: auto;
}

.hd_text{
	color: #e8390e;
	font-size: 3.0rem;
	text-align: center;
	margin-bottom: 0px;
}

.headline_image_left{
	max-width: 700px;
	width: 100%;
	text-align: center;
	margin: 2% auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.headline_image_left img{
	max-width: 350px;
	width: 100%;
}

.images_content_outer {
	max-width: 1700px;
	margin: auto;
}

.left_content .text_body {
	margin-left: 5%;
}



.right_content {
	position: relative;
	left: 15%;
	width: fit-content;
}

.right_content_flex_box .text_body .text_body p {
	position: relative;
	left: 15%;
}

.right-content {
	width: 20%;
	margin-left: auto;
	position: relative;
	right: 7.5%;
	top: 25px !important;

}

.right-content img {
	width: 80%;
	max-width: 100%;
	padding: 5% 0 0 0;
	cursor: pointer;
}

.news_item {
	display: flex;
	padding-bottom: 2%;
	padding-top: 1%;
	border-bottom: 1px solid rgba(46, 59, 146, 0.149);
}

a {
	color: #333;
	/* transition: 0.3s; */
	font-size: 1.6rem;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

a:hover {
	color: rgb(185, 185, 185);
}

.inquery {
	width: 100%;
	nav-index: inherit;
}

.inquery_content {
	display: flex;
	padding-left: 2em;
	width: 100%;
}

.company_address p {
	margin: 0;
}

.tel {
	padding-left: 5%;
}

.tel p {
	margin: 0;
}

#contents {
	float: left;
	width: 100%;
}


#container {
	max-width: 100%;
	/* margin-left: auto;
	margin-right: auto; */
	height: 100%;
	display: block;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.headline {
	display: flex;
	align-items: center;
}

.headline::before,
.headline::after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #ff0101;
}

.headline::before {
	margin-right: 1rem;
}

.headline::after {
	margin-left: 1rem;
}

.left-content dd a {
	text-decoration: none;
	color: #4a639a;
}

.left-content dd a:hover {
	color: #c2c2c2;
}

.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
	opacity: 0;
	/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name: slideTextX100;
	animation-duration: 1.3s;
	animation-fill-mode: forwards;
	opacity: 0;
	display: block;
}

@keyframes slideTextX100 {
	from {
		transform: translateX(-100%);
		/*要素を左の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateX(0);
		/*要素を元の位置に移動*/
		opacity: 1;
	}
}

.slideAnimeRightLeft {
	animation-name: slideTextX-100;
	animation-duration: 0.9s;
	animation-fill-mode: forwards;
	opacity: 0;
	margin: auto;
}


@keyframes slideTextX-100 {
	from {
		transform: translateX(100%);
		/*要素を右の枠外に移動*/
		opacity: 0;
	}

	to {
		transform: translateX(0);
		/*要素を元の位置に移動*/
		opacity: 1;
	}
}

.upper_link {
	display: flex;
	justify-content: space-evenly;
	position: absolute;
	right: 20.5%;
	max-width: 500px;
	width: 100%;
	background-color: #EDEDED;
}

.phone_number {
	border: solid 1px #ff0101;
}

.phone_number img {
	display: block;
	max-width: 100%;
	position: absolute;
	top: 15px;
	right: 20px;
	background-color: #EDEDED;
}

@media screen and (max-width:930px) {
	.upper_pad {
		font-size: 1.3rem;
	}
}

.company_address p {
	font-size: 2.2rem;
}

.tel p {
	font-size: 2.2rem;
}

.upper_link img {
	object-fit: cover;
}

.upper_link a {
	text-decoration: none;
	text-align: center;
}

.upper_pad {
	padding-right: 2%;
}

#top_menubar {
	margin-top: 10px;
	transition-duration: 0.3s;
	border-bottom: solid #ff0101 1px;
	height: auto;
	overflow: visible;
	padding-bottom: 1%;

}

#top_menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #ff0101;
	width: 100%;
	height: 10vh;
}

#top_menubar ul a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 2.4rem;
	padding: 20% 15%;
	line-height: 2.2rem;
	height: 10vh;
	border: 0.2rem solid rgb(248, 248, 248);
	/* box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
	-webkit-box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
	-moz-box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px; */
}


#top_menubar>ul>li>a:hover {
	filter: brightness(1.2);
}

#top_menubar .ddmenu {
	cursor: default;
}

#top_menubar .ddmenu_parent ul {
	display: none;
}

#top_menubar .ddmenu_parent ul a {
	background: #fff;
	color: #333;
}

#top_menubar .ddmenu_parent ul a:hover {
	background: #fafafa;
	color: #d70101;
}


#top_menubar.db {
	position: static;
	overflow: visible;
	height: auto;
	padding: 0;
}


#top_menubar>ul {
	display: flex;
	justify-content: center;
	max-width: 1500px;
	margin: 0 auto;
}

#top_menubar li {
	text-align: center;
	flex: 1;
	position: relative;
	height: 100%;
}

#top_menubar a:hover {
	opacity: 0.6;
	transition-duration: 0.3;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 0 0 auto;
	height: 10%;
	padding: 5px 0 5px 5px;
	width: 100%;
	position: relative;
	right: 1%;
}

header #logo img {
	line-height: 0;
	margin: 0;
	max-width: 360px;
	width: 95%;
	display: block;
}

header #logo {
	position: relative;
	top: 10%;
	left: 5%;
}

.busi_detail {
	float: right;
}

.info_view {
	padding-bottom: 5%;
}

.pagination-container ul {
	width: 100%;
	display: flex;
	justify-content: center;
}

.pagination-container ul a {
	padding-left: 3em;
	text-decoration: none;
}

ul {
	list-style: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #ff0101;
	width: 100%;
	height: 10vh;
}

#menubar ul a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 1.9rem;
	padding: 20% 15%;
	line-height: 2.2rem;
	height: 10vh;
	border: 0.2rem solid rgb(248, 248, 248);
	/* box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
	-webkit-box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
	-moz-box-shadow:rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px; */
}


#menubar>ul>li>a:hover {
	filter: brightness(1.2);
}

#menubar .ddmenu {
	cursor: default;
}


a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 1em;
}

#menubar .ddmenu_parent ul {
	display: none;
}

#menubar .ddmenu_parent ul a {
	background: #fff;
	color: #333;
}

#menubar .ddmenu_parent ul a:hover {
	background: #fafafa;
	color: #d70101;
}

#menubar a:hover {
	color: rgb(255, 255, 255);
	background-color: #607AB2;
	text-decoration: none;
}

#contents {
	min-height: 0%;
	flex: 1 0 auto;
	padding-top: 90px;
}

.page_top_btn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-weight: bold;
	padding: 0.7em;
	text-align: center;
	background: rgb(255, 0, 0);
	color: #fff;
	transition: 0.6s;
}



.page_top_btn:hover {
	background: rgb(255, 0, 0, 0.8);
	color: rgb(255, 255, 255, 0.8);
}

main {
	display: block;
	margin: 0 auto 10%;
	padding-bottom: 0%;
}

.sub_title {
	font-size: 1.65rem;
	color: #000000;
	margin-bottom: 5%;
	text-align: center;
	font-weight: bold;
}

main h1 {
	/* background-color: #ff0101; */
	color: #000000;
	font-size: 2.7rem;
	margin-bottom: 0;
	margin-top: 0;
	align-items: center;
	text-align: center;

}

/* main h2 {
	border-bottom: 2px solid #ff0101;
} */


main h3 {
	border-bottom: 4px solid #eee;
	padding: 20px 20px 0px;
	font-size: 2.7rem;
}

main p {
	font-size: 1.8rem;
	margin: 2% auto;	
	padding: 0 5%;
}

.info_busi p {
	font-size: 2.2rem;
	padding-left: 1em;
}

.info_busi {
	display: flex;
}

.facebook {
	display: flex;
	justify-content: center;
}

.list_link {
	text-align: center;
	margin: 0;
}

#footermenu {
	background: #f8f8f8;
	padding: 50%;
	display: flex;
	justify-content: center;
	/* align-items: flex-start;		 */
	height: 7vh;
	border-top: solid #ff0101 2px;
}

#footermenu a {
	text-decoration: none;
	color: #000000;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

#footermenu a:hover {
	color: #ff0101;
}

#footermenu ul {
	margin: 0;
	padding: unset;
	flex: 1;
	list-style: none;
	text-align: center;
}

#footermenu ul li a {
	color: #000000;
	font-size: 1.8rem;
	margin: 0 auto !important;
}

#footermenu .title {
	font-weight: bold;
	color: #ccc;
	padding-bottom: 5px;
}

#footermenu ul li {
	margin: auto;
}

footer small {
	font-size: 100%;
}

footer {
	font-size: 0.6rem;
	color: rgb(0, 0, 0);
	text-align: center;
	padding: 10px;
	clear: both;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:hover {
	color: #fff;
}

footer .pr {
	display: block;
}

.navi-active a {
	color: #ff0101;
}

#new {
	margin: 10px 50px;
	/* display: flex; */
	flex-wrap: wrap;
	/* padding: 0 20px; */
}

#new dt,
#new dd {
	/* border-bottom: 1px solid #ccc; */
	display: inline-block;
	font-size: 22rem;
	letter-spacing: 0.06em;
	padding: 5px 0;
}

#new dd {
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);

}

/* .news_parent #new dd::after{

} */

#new dt {
	width: 8em;
	font-size: 1.6rem;
}

#new dt span {
	display: none;
}


#new dd {
	width: 100%;
	font-size: 1.6rem;
}

#new dd {
	position: relative;
	/*アンダーラインの位置を決めるための基準 */
}

#new .news_item .news-info dd::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ff0101;
}

#new .news_item .news-info dd::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ff0101;
	bottom: 10px;
	/*アンダーラインがaタグの下端から現れる*/
	transform: scale(0, 1);
	/*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 1s;
	/*変形の時間*/
}

#new .news_item .news-info dd:hover::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
}


#new dd::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ff0101;
}

#new dd::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #ff0101;
	bottom: 10px;
	/*アンダーラインがaタグの下端から現れる*/
	transform: scale(0, 1);
	/*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top;
	/*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 1s;
	/*変形の時間*/
}

#new dd:hover::after {
	transform: scale(1, 1);
	/*ホバー後、x軸方向に1（相対値）伸長*/
}

.left-content dd a {
	font-size: 1.6rem;
}

.list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: column;
}

.list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 30px;
	background: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	font-size: 23px;
	padding: 20px;
	box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
	border: solid 1px;
}

.list figure {
	margin: -20px -20px 0;
}

.list figure image {
	width: 100%;
	height: 100%;
}

.list h4 {
	margin: 10px 0;
	font-size: 1.1rem;
	font-weight: normal;
}


.list p {
	margin: 0;
	font-size: 0.8rem;
}


.list div {
	min-height: 0%;
}


.slick {
	position: relative;
	max-width: 1500px;
	width: 90%;
	margin: 0 auto;
	padding-top: 2%;
}

ul.slick-dots {
	margin: 0;
	padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 10px;
}

ul-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

ul.slick-dots li button {
	border: none;
	padding: 0;
	display: block;
	text-indent: -9999px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	cursor: pointer;
	background: #fff;
}

ul.slick-dots li.slick-active button {
	background: #d70101;
}

#busi_p {
	position: relative;
	margin: 0 auto 20px;
	text-align: center;
	width: 100%;
}

#busi_p img {
	width: 100%;
}

#item-image {
	position: relative;
	margin: 0 auto 20px;
	text-align: center;
	width: 100%;
}

#item-image img {
	width: 100%;
}

.thumbnail {
	width: 80px;
	border: 1px solid #dcdcdc;
	margin-bottom: 5px;
}

.thumbnail:hover {
	border: 1px solid #999;
}

.btn {
	text-align: center;
}

.btn a,
.btn input {
	display: inline-block;
	text-decoration: none;
	border: none;
	color: #fff;
	border-radius: 3px;
	padding: 10px 20px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	background: linear-gradient(#403df3, #005eb6);
	font-size: 1rem;
}

.btn a:hover,
.btn input:hover {
	filter: brightness(1.2);
	cursor: pointer;
}

.list .btn a,
.list .btn input {
	margin-top: 10px;
	display: block;

}

.list image {
	width: 80%;
	height: 80%;
}

.back-btn {
	font-size: 15px;
}

.ta1 caption {
	font-weight: bold;
	padding: 10px 5px;
	background: #333;
	color: #fff;
}

.ta1 {
	border-top: 1px solid #ccc;
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
}

.ta1 tr {
	border-bottom: 1px solid #ccc;
}

.ta1 th,
.ta1 td {
	padding: 10px 5px;
	word-break: break-all;
}


.ta1 th {
	width: 30%;
	text-align: left;
	background: #f7f7f7;
}

.pagetop-show {
	display: block;
}

.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: #e8390e;
	width: 3.5em;
	line-height: 3.5em;
	border-radius: 30px;
}

.flex img {
	width: 100%;
	border-radius: 14px;
}

.pagetop a:hover {
	background: #ff4010;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-theme,
.color-theme a {
	color: #d70101 !important;
}

.color-check,
.color-check a {
	color: #f00 !important;
}

.c {
	text-align: center !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb30 {
	margin-bottom: 30px !important;
}

.look {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 5px 20px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 5px;
	margin: 5px 0;
}

.ofx {
	overflow-x: hidden;
}



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

	header {
		flex-direction: column;
	}
}

@media screen and (max-width: 1299px) {
	.text_body_outer{
		max-width: 769px;
	}
}

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

	html,
	body {
		font-size: 62.5%;
	}

	.fixmenu {
		position: fixed !important;
		z-index: 100;
		left: 0px;
		top: 0px;
		width: 100%;
	}

	#menubar {
		height: auto;
		overflow: visible;
	}

	#menubar.db {
		position: static;
		overflow: visible;
		height: auto;
		padding: 0;
	}


	#menubar>ul {
		display: flex;
		justify-content: space-between;
		max-width: 1500px;
		margin: 0 auto;
	}

	#menubar li {
		text-align: center;
		flex: 1;
		position: relative;
	}

	#footermenu {
		font-size: 0.8rem;
		padding: 1% 2% 1%;
	}

	#new dt {
		width: 10em;
		display: flex;
		justify-content: space-between;
		font-size: 2.2rem;
	}

	#new dt span.icon-bg1 {
		background: #f32218;
	}

	#new dd {
		width: 100%;
		font-size: 2.2rem;
	}

	.list-container {
		flex-direction: row;
	}

	.list {
		width: 47%;
	}

	#item-image {
		width: 80%;
	}

	.ta1 caption {
		padding: 5px 15px;
	}

	.ta1 th,
	.ta1 td {
		padding: 20px 15px;
	}

	.ta1 th {
		width: 20%;
	}

	.ws {
		width: 48%;
		display: inline;
	}

	.left-content dd a {
		font-size: 2.2rem;
	}
}

.header {
	position: fixed;
	left: -100%;
	top: -100%;
	width: 100%;
	height: 60px;
}

.header_inner {
	position: relative;
	padding: 15px;
}

.logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 15px
}

.title {
	font-size: 1.6rem;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
.main {
	margin-top: 60px;
}

/* スマートフォン用css */

@media only screen and (max-width: 768px) {
	.header {
		position: fixed;
		top: 0;
		left: 250px;
	}

	.text_body_flex{
		margin-top: 5%;
	}

	main h1 {
		font-size: 1.7rem;
	}

	.pagination-container {
		width: 100%;
	}

	.pagination-container ul a {
		padding-left: 2em;
	}

	.list_link_parent {
		width: 100%;
	}

	.inquery_content {
		display: block;
		width: 80%;
	}

	.tel {
		padding: 5px 0 0;
	}

	.tel p {
		font-size: 1.6rem;
	}

	.company_address p {
		font-size: 1.6rem;
	}

	#new dd::after {
		width: 0%;
	}

	.info_busi img {
		max-height: 150px;
	}

	header {
		border: none;
	}

	main h2 span.uline {
		font-size: 2.4rem;
	}

	#footermenu {
		display: none;
	}

	#footermenu ul li a {
		display: inline-block;
	}

	.footer_sns {
		width: 10%;
	}

	.upper_link {
		display: none;
	}

	#tnavi {
		display: none;
	}

	#top_menubar {
		display: none;
	}

	.right-content {
		display: none;
	}

	.image_block {
		display: none;
	}

	#menubar {
		display: none;
	}

	.left-content {
		width: 80%;
		left: 5%;
	}

	main {
		width: 100%;
	}

	main .left-content .list-container {
		width: 90%;
	}

	.slick {
		padding-top: 10%;
	}

	.left-content {
		left: 10%;
	}

	main .left-content h2 {
		width: 100%;
	}

	main .left-content #new {
		display: block;
	}

	main .left-content #new dd {
		width: 100%;
		padding-top: 0;
		font-size: 1.6rem;
	}

	.right-content {
		right: 3%;
		margin-left: 5%;
		width: 35%;
	}

	main .left-content #new dt {
		border: initial;
		width: 100%;
		font-size: 1.6rem;
		line-height: 1;
	}

	main .right-content img {
		width: 120%;
	}

	header #logo img {
		top: 3%;
		left: 10%;
		width: 60%;
	}

	#main-content .slick li img {
		max-width: 100%;
		height: auto;
	}

	.right-content img {
		padding: 5% 0 5% 0;
	}


	.upper_link {
		padding-bottom: 3%;
		position: absolute;
		top: 6%;
		right: 2%;
	}


}



.nav {
	position: fixed;
	right: -320px;
	/* 右から出てくる */
	top: 0;
	width: 300px;
	/* スマホに収まるサイズ */
	height: 100%;
	padding-top: 60px;
	background-color: #ffffff;
	transition: all .6s;
	z-index: 40000;
	overflow-y: auto;
	/* メニューが多くなったらスクロールできるように */
}

.hamburger {
	position: fixed;
	right: 15px;
	top: 8px;
	width: 40px;
	/* クリックしやすい幅 */
	height: 40px;
	/* クリックしやすい高さ */
	cursor: pointer;
	z-index: 50000;
	transform: translate3d(0, 0, 0);
}

.nav_list {
	margin: 0;
	padding: 0;
	list-style: none;

}

.nav_item {
	text-align: center;
	padding: 0 14px;
}

.nav_item a {
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid #000000;
	text-decoration: none;
	color: #000000;
	font-size: 1.6rem;
}

.nav_upper {
	text-align: center;
	padding: 0 14px;
	background-color: #EDEDED;
}

.nav_upper a {
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid #000000;
	text-decoration: none;
	color: #000000;
	font-size: 1.6rem;
}

.breadcrumb li a {
	font-size: 1.8rem;
}

.hamburger_border {
	position: absolute;
	left: 11px;
	width: 18px;
	height: 2px;
	background-color: #333;
	transition: all .6s;
}

.hamburger_border_top {
	top: 14px;
}

.hamburger_border_center {
	top: 20px;
}

.hamburger_border_bottom {
	top: 26px;
}

.black_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	z-index: 30000;
	background-color: #333;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .nav {
	right: 0;
}

.nav-open .pagetop {
	display: none;
}

.nav-open .black_bg {
	opacity: 0.8;
	/*透明度*/
	visibility: visible;
}

.nav-open .hamburger_border_top {
	transform: rotate(-45deg);
	top: 20px;
}

.nav-open .hamburger_border_center {
	width: 0;
	left: 50%;
}

.nav-open .hamburger_border_bottom {
	transform: rotate(45deg);
	/*回転の角度*/
	top: 20px;
}

.nav-open .hamburger_border {
	background-color: #000000;
}

.box_button {
	border: solid 1px #d3d3d3;
	box-shadow: 0 2px 1px 0 #e3e3e3;
	background-color: #f5f5f5;
	margin-bottom: 5px;
	height: 70px;
	text-align: center;
	padding: 20px;
	overflow: hidden;
}

.box_button a {
	text-decoration: none;
}

.address_map {
    flex-basis: 50%;
}

iframe {
    width: 100%;
}

p.address_inner {
    width: fit-content;
    margin: auto;
}

@media screen and(min-width: 570px) and (max-width: 768px) {
	main .right-content img {
		width: 80%;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	#tnavi {
		margin-top: 20px;
		background-color: #fff;
	}
}




/* sp */

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

	.header_inner {
		max-width: 980px;
		width: 100%;
		padding: 15px 30px;
		margin-left: auto;
		margin-right: auto;
	}

	.logo {
		padding: 12px 30px
	}

	.nav_list {
		text-align: right;
		position: absolute;
		right: -130%;
		top: -200%;
	}

	.nav_list li {
		display: inline-block;
		text-align: right;
		padding-left: 20px;
	}

	.nav_list li a {
		color: #f8f8f8;
		font-weight: 600;
		font-size: 1px;
		visibility: hidden;
		z-index: 1;

	}


}

/* pc */

@media screen and (min-width:768px) and (max-width:930px) {
	.upper_link {
		position: relative;
		right: 10%;
		width: 40vw;
	}

}

@media screen and (max-width: 859px) {
	.text_body_outer.flex{
		flex-direction: column-reverse;
	}

	
	.address_flex_area{
		flex-direction: column;
	}

	.address_inner,.address_map{
		width: fit-content;
		margin: auto;
	}

	.logo_img{
		width: 50%!important;
	}

	.management_outer.flex,.insurance_outer.flex{
		flex-direction: column;
	}

	.building_outer.flex{
		flex-direction: column-reverse;
	}

}

@media screen and (min-width:768px) and (max-width:1050px) {
	.right-content img {
		width: 120%;
		max-width: 150%;
	}

	#footermenu ul li a {
		font-size: 1.1rem;
	}

	#footermenu {
		padding: 4%;
	}

	#new dd {
		color: #4a639a;
	}

	/* @media screen and (min-width:768px) and (max-width:1159px){
		#top_menubar ul a {
			line-height: 2.2rem;
		}
	} */
	/* 
	@media screen and (max-width:1330px){
		header #logo img{
		margin-left: auto;
			
			}
	} */

}