@charset "UTF-8";

main {
  font-family: "Noto Serif JP", serif !important;
}
.pc_wrap {
  position: relative;
}

/* 予告広告
======================================== */
.yokoku {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
}
.inn {
  margin: 0 auto;
  padding: 3px 20px;
  box-sizing: border-box;
}
.yokoku dl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yokoku dt {
  font-size: 13px;
  padding: 5px 15px;
  background: #eee;
  border: 1px solid #444;
  text-align: center;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.yokoku dd {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.yokoku dd span {
  font-size: 12px;
}
.yokoku dd .ml {
  margin-left: 10px;
}
@media only screen and (max-width:768px) {
  .yokoku .inn dl {
    justify-content: flex-start;
  }
  .yokoku dd .ml {
    margin-left: 0px;
  }
  .yokoku .inn dl dt {
    padding: 3px 8px;
    font-size: 11px !important;
  }
  .yokoku .inn dl dd {
    font-size: 14px;
  }
  .sp_yokoku {
    font-size: 10px;
    margin-top: 6px;
  }
}

/* mainvisual
====================================== */
#mainvisual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 930;
}
.swiper-slide {
  position: relative;
}
.swiper-slide:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: '';
  width: 100%;
  height: 20%;
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
#mainvisual .main_slide {
	opacity: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
#mainvisual .main_slide .main_slide_image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#mainvisual .main_slide .main_slide span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#mainvisual .main_slide .swiper-slide .main_slide {
	opacity: 0;
	filter: brightness(140%);
	transition: opacity 1.5s linear, filter 1.5s linear;
}
#mainvisual .main_slide .swiper-slide.swiper-slide-active .main_slide {
	opacity: 1;
	filter: brightness(100%);
	transition: opacity 1.5s linear, filter 1.5s linear;
}
#mainvisual .main_slide .swiper-slide-active .main_slide span, #mainvisual .swiper-slide-prev .main_slide span {
	animation: 6.5s zoom_down linear 0s both;
}
@keyframes zoom_down {
	0% {
			transform: scale(1.06);
	}
	100% {
			transform: scale(1);
	}
}
.mv {
	position: relative;
}
.mv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width:768px) {
	#mainvisual {
			aspect-ratio: 8 / 8;
	}
}

/* ========================================
mv_lead_area
===========================================*/
.mv_lead_area {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(180, 180, 180, 0.4);
  color: #fff;
  z-index: 5;
}
.mv_lead_area .inner {
  max-width: 100%;
}
.mv_lead_item {
  padding: 16px 0 10px;
  text-align: center;
}
.mv_lead_text {
  letter-spacing: 0.16em;
  font-size: 36px;
  line-height: 1.5;
}
.mv_lead_text span {
  display: block;
  text-align: right;
  margin-top: 4px;
  letter-spacing: 0.05em;
  font-size: 11px;
}
.mv_lead_text sup {
  top: 4px;
  left: 0;
  vertical-align: text-top;
}

@media only screen and (max-width:768px) {
  .mv_lead_text {
    letter-spacing: 0.1em;
    font-size: 18px;
  }
  .mv_lead_text span {
    font-size: 12px;
  }
}

/* ========================================
merit_area
===========================================*/
.merit_area {
  position: relative;
  background-color: #23386f;
  padding-block: 28px;
  padding-top: 30px;
  padding-bottom: 40px;
}
.merit_area .inner {
  max-width: 1400px;
}
.merit_wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 12px;
  row-gap: 12px;
}
.merit_item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-block: 14px;
}
.merit_item_text {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.1em;
}
.merit_item_text .text_s {
  font-size: 18px;
}
.merit_item_text .color {
  font-size: 30px;
  color: #d7d483;
}
.merit_area_cap {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: normal;
  line-height: 1.4;
}

@media only screen and (max-width:768px) {
  .merit_area {
    padding-block: 16px;
  }
  .merit_wrap {
    grid-template-columns: repeat(1,1fr);
    row-gap: 10px;
  }
  .merit_item {
    padding-block: 4px;
  }
  .merit_item_text {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .merit_item_text .text_s {
    font-size: 11px;
  }
  .merit_item_text .color {
    font-size: 15px;
  }
  .merit_area_cap {
    position: static;
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-top: 10px;
  }
}


/* ========================================
banner_area
===========================================*/
.banner_area {
  margin-bottom: 50px;
}
.banner_area .inner {
  max-width: 1240px;
  padding-inline: 20px;
}
@media only screen and (max-width:768px) {
  .banner_area {
    margin-bottom: 20px;
  }
  .banner_area .inner {
    padding-inline: 0;
  }
}

/* ========================================
holiday
===========================================*/
.holiday {
  margin-top: 40px;
}
.holiday_box {
  text-align: center;
  margin-inline: auto;
  padding: 24px 10px;
  max-width: 700px;
  border: 1px solid #b80000;
  color: #b80000;
  background-color: rgba(255, 255, 255, .4);
}
.holiday_title {
  font-size: 17px;
  letter-spacing: 0.1em;
}
.holiday_text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:768px) {
  .holiday {
    margin-top: 30px;
  }
  .holiday_box {
    padding: 20px 10px;
  }
  .holiday_title {
    font-size: 15px;
  }
  .holiday_text {
    text-align: left;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}

/* ========================================
information
===========================================*/
.info_area {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.info_area_wrap {
  position: relative;
  padding: 0 20px;
}
.info_area_inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.info_title_en {
  text-align: center;
  color: #090103;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0.5em;
  font-family: 'EB Garamond', serif !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info_title_en {
  display: flex;
  align-items: center;
}
.info_title_en:before, .info_title_en:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: rgba(9, 1, 3, .3);
}
.info_title_en:before {
  margin-right: 1rem;
}
.info_title_en:after {
  margin-left: 1rem;
}
.info_text {
  text-align: center;
  margin-top: 38px;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000;
}
.info_text_s {
  font-size: 30px;
}
.info_text_m {
  font-size: 48px;
}
.info_text_num {
  font-size: 48px;
  padding-left: 6px;
}
.info_btn_wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  column-gap: 24px;
}
.info_btn {
  position: relative;
  display: block;
  color: #fff !important;
  text-align: center;
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-block: 36px;
  background-color: #000000;
  transition: all .4s;
}
.info_btn.request {
  background-color: #730000;
}
.info_btn.request::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  background: url(../img/common/icon_request.svg) no-repeat center center / contain;
  width: 20px;
  height: 24px;
}
.info_btn.reserve {
  background-color: #24376a;
}
.info_btn.reserve::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  background: url(../img/common/icon_reserve.svg) no-repeat center center / contain;
  width: 29px;
  height: 22px;
}
.info_btn:hover {
  opacity: .8;
  color: #fff;
}

@media only screen and (max-width:768px) {
  .info_area {
    padding-top: 40px;
    padding-bottom: 30px;
    overflow: hidden;
  }
  .info_area_wrap {
    position: relative;
    padding: 0 20px;
  }
  .info_area_inner {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin-inline: auto;
  }
  .info_title_en {
    margin-inline: calc(50% - 50vw);
    font-size: 12px;
    letter-spacing: 0.5em;
  }
  .info_text {
    text-align: center;
    margin-top: 24px;
    font-size: 20px;
  }
  .info_text_s {
    font-size: 18px;
  }
  .info_text_m {
    font-size: 24px;
  }
  .info_text_num {
    font-size: 38px;
    padding-left: 0;
  }
  .info_btn_wrap {
    margin-top: 30px;
    flex-direction: column;
    row-gap: 12px;
  }
  .info_btn {
    width: 90%;
    margin-inline: auto;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding-block: 20px;
  }
  .info_btn.request::before {
    left: 30px;
    width: 18px;
  }
  .info_btn.reserve::before {
    left: 30px;
    width: 25px;
  }
}


/* section
===================================== */
.bg_gray {
  background-color: #F3F3F3;
}
.bg_white {
  background-color: #fff;
}
.section + .section {
  padding-top: 140px;
}
.section_head {
  position: relative;
  padding-bottom: 56px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.section_title {
  font-family: 'EB Garamond', serif !important;
  font-size: 54px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
}
.section_title:before,
.section_title:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}
.section_title:before {
  margin-right: 2rem;
}
.section_title:after {
  margin-left: 2rem;
}
.section_lead {
  margin-top: 20px;
  font-size: 21px;
  letter-spacing: 0.2em;
  line-height: 2.28;
  text-align: center;
}
.section_text {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 2.25;
}

.brand_item {
  padding-inline: 20px;
  transition: all .4s;
}
.brand_item:hover {
  opacity: .7;
}
.brand_item_body {
  margin-top: 16px;
  min-height: 52px;
}
.brand_item_text {
  font-size: 16px;
  color: #333 !important;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.brand_item_btn {
  position: relative;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  padding-block: 14px;
  background-color: #24376a;
}
.brand_item_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow.png) no-repeat center center / contain;
  width: 7px;
  height: 12px;
}
.slide_area {
  position: relative;
  margin-top: 60px;
}
.slide_item {
  padding-inline: 20px;
}
.slide_item_body {
  margin-top: 16px;
}
.slide_item_text {
  font-size: 21px;
  letter-spacing: 0.1em;
}
.slider_contents .slick-list {
  padding-right: 6%;
}

@media only screen and (max-width:768px) {
  .section + .section {
    padding-top: 40px;
  }
  .section_head {
    width: 100%;
    padding-bottom: 20px;
  }
  .section_title {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .section_title:before {
    margin-right: 12px;
  }
  .section_title:after {
    margin-left: 12px;
  }
  .section_lead {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-align: center;
  }
  .section_text {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .brand_item {
    padding-inline: 26px;
  }
  .brand_item_body {
    margin-top: 10px;
    min-height: 44px;
  }
  .brand_item_text {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .brand_item_btn {
    margin-top: 14px;
    max-width: 300px;
    font-size: 12px;
    letter-spacing: 0.1em;
    padding-block: 14px;
  }
  .slider_contents {
    position: relative;
  }
  .slide_item {
    padding-inline: 26px;
  }
  .slide_item_body {
    margin-top: 8px;
  }
  .slide_item_text {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .slider_contents .slick-list {
    padding-right: 0;
  }
  .arrow_box {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .arrow_box2 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .arrow_box3 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .arrow_box4 {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .prev-arrow,
  .next-arrow {
    position:absolute;
    display: block;
    width: 20px;
    height: 50px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 99;
  }

  .prev-arrow {
    transform: rotate(180deg);
    left: 10px;
  }
  .next-arrow {
    right: 10px;
  }

  .prev-arrow::before,
  .next-arrow::before{
    position:absolute;
    content: "";
    width:20px;
    height:20px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
    z-index: 99;
  }
}


/* link_area
=================================== */ 
.brand_area {
  padding-top: 100px;
}
.link_contents {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-block: 30px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.link_contents.link_tec {
  background-image: url(../img/top/tec_bg_pc.jpg);
  background-position: center center;
}
.link_contents.link_support {
  background-image: url(../img/top/support_bg_pc.jpg);
}
.link_contents.link_zeh {
  background-image: url(../img/top/zeh_bg_pc.jpg);
}
.link_contents.link_wall {
  background-image: url(../img/top/wall_bg_pc.jpg);
}
.link_contents.link_hepa {
  background-image: url(../img/top/hepa_bg_pc.jpg);
}

.link_contents_inner {
  position: relative;
  max-width: 1600px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
.link_contents_body {
  position: relative;
  width: 40%;
}
.link_tec .link_contents_body,
.link_zeh .link_contents_body{
  margin-left: auto;

}
.link_contents_body_title {
  font-size: 36px;
  font-size: clamp(1.25rem, 0.062rem + 2.319vw, 2.25rem);
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.link_contents_lead {
  margin-top: 27px;
  font-size: 16px;
  font-size: clamp(1rem, 1.223rem + -0.435vw, 0.813rem);
  letter-spacing: 0.065em;
  line-height: 2;
}
.link_contents_btn_wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.link_contents_btn {
  position: relative;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1;
  color: #fff !important;
  background-color: #24376a;
  padding-block: 14px;
  width: 186px;
  transition: all .4s;
}
.link_contents_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow.png) no-repeat center center / contain;
  width: 10px;
  height: 10px;
}
.link_contents_btn:hover {
  opacity: .8;
}
.link_contents_cap {
  position: absolute;
  bottom: 6px;
  right: 0;
  font-size: 12px;
  letter-spacing: 0.065em;
  line-height: 1.5;
  padding: 4px 6px;
  color: #fff;
  font-weight: bold;
  text-shadow: 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3), 
  0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width:768px) {
  .brand_area {
    padding-top: 40px;
  }
  .link_contents {
    min-height: auto;
    padding-block: 20px;
    text-align: center;
    background-position: center center;
  }
  .link_contents_inner {
    width: 100%;
}
  .link_contents.link_tec {
    background-image: url(../img/top/tec_bg_sp.jpg);
  }
  .link_contents.link_support {
    background-image: url(../img/top/support_bg_sp.jpg);
  }
  .link_contents.link_zeh {
    background-image: url(../img/top/zeh_bg_sp.jpg);
  }
  .link_contents.link_wall {
    background-image: url(../img/top/wall_bg_sp.jpg);
  }
  .link_contents.link_hepa {
    background-image: url(../img/top/hepa_bg_sp.jpg);
  }
  .link_tec .link_contents_inner {
    flex-direction: column-reverse;
    width: 100%;
  }
  .link_contents_img {
    padding-bottom: 30px;
    width: 100%;
  }
  .link_contents_body {
    width: 100%;
    padding: 0px 0;
  }
  .link_contents_body_title {
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .link_contents_lead {
    display: none;
  }
  .link_contents_btn_wrap {
    margin-top: 20px;
    row-gap: 10px;
  }
  .link_contents_btn {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 8px 0;
    max-width: 140px;
    margin-inline: auto;
  }
  .link_contents_cap {
    font-size: 10px;
  }
}


/*  モーダル
================================== */
.modaal-wrapper.movie-style .modaal-close {
  position: absolute;
  right: 0px;
  top: 0px;
  right: 30px;
  top: 60px;
}
.modaal-inner-wrapper {
  padding: 110px 25px;
}
.modaal-container {
  max-width: 1200px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  cursor: auto;
  /* background: url(../img/structure/contents_bg.jpg) center top; */
  background-size: auto;
  background-repeat: repeat;
}
.modaal-content-container {
  padding: 40px 20px;
}
.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 0;
}

@media only screen and (max-width:768px) {
  .modaal-video-wrap {
    margin: auto 0px;
  }
}

.inline_title {
	text-align: center;
	color: #726d30;
	font-size: 24px;
	line-height: 1.75;
	letter-spacing: 0.08em;
	font-weight: 500;
	padding-top: 30px;
	margin-bottom: 30px;
}
.quality_wrap {
	width: 100%;
	max-width: 1080px;
	margin-inline: auto;
  display: block;
}
.section_image {
	text-align: center;
	margin-bottom: 45px;
}
.section_kv {
  padding: 30px 40px;
  background-color: #002870;
  margin-top: 50px;
  margin-bottom: 50px;
}
.section_kv_title {
  text-align: center;
  font-size: 34px;
  color: #fff;
}
.section_kv_lead {
  font-size: 22px;
  color: #fff;
}
.contents_1_main2 {
  width: 80%;
  display: block;
  margin-inline: auto;
}
.quality_wrap p.section_kv_text {
  color: #fff;
  font-size: clamp(12px, 1.3888888889vw, 13px);
  text-align: center;
  line-height: 2;
  text-align: left;
  margin-bottom: 0px;
}
.quality_content_title {
	border-top: solid 1px #bdbdbd;
	border-bottom: solid 1px #bdbdbd;
	color: #000;
	font-size: 22px;
	text-align: left;
	line-height: 1.4;
	padding: 15px 0;
	margin-bottom: 20px;
}
.flex_box {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* align-items: flex-start; */
}
.flex_box.center {
	align-items: center;
}
.flex_box.row {
	flex-direction: row-reverse;
}
.bg_white {
	background: #fff;
	border: 1px solid #ccc;
	padding: 20px;
}
.taisin_group {
  margin-top: 30px;
}
.flex_box .images {
	margin-bottom: 10px;
	mix-blend-mode: multiply;
}
.flex_box_cap {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 4px 6px;
  font-size: 11px !important;
}
.flex_box .caption, .flat_box .caption {
	font-size: 10px;
	line-height: 1.5;
	display: inline-block;
}
.flex_box .caption.view_pc, .flat_box .caption.view_pc {
	display: inline-block;
}
.flex_box .caption.view_sp, .flat_box .caption.view_sp {
	display: none;
}
.flat_box .caption.small {
	line-height: 1.5;
	font-size: 10px;
}
h5 {
	text-align: center;
	width: 100%;
	color: #726d30;
	font-size: min(18px, 2.2vw);
	line-height: 1.85;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: left;
}
h5.under_line {
	border-bottom: 1px solid #333;
	padding-bottom: 10px;
}
h6 {
	font-size: min(15px, 2vw);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
}
.quality_wrap p {
	font-size: clamp(12px, 1.3888888889vw, 13px);
	text-align: center;
	line-height: 2;
	text-align: left;
	margin-bottom: 10px;
}
.quality_wrap p .text_s {
	display: block;
	font-size: 80%;
}
.quality_wrap p sup {
	vertical-align: text-top;
	top: 0px;
	left: 0px;
	font-size: 75%;
}
.after_image {
	width: 90%;
	max-width: 700px;
	margin-inline: auto;
}
#quality #contents .health_wrapp {
	background: rgba(239, 242, 227, 0.66);
}
#quality #contents .health_wrapp h4 {
	border-top: none;
}
.image_auto {
	width: auto;
	margin: 0 auto 50px;
}
.flex_box p span.caption {
	line-height: 0.5;
}
.flex_box .w20 {
	width: 20%;
}
.flex_box .w22 {
	width: 22%;
}
.flex_box .w23 {
	width: 23%;
}
.flex_box .w25 {
	width: 25%;
}
.flex_box .w28 {
	width: 28%;
}
.flex_box .w30 {
	width: 30%;
}
.flex_box .w32 {
	width: 32%;
}
.flex_box .w35 {
	width: 35%;
}
.flex_box .w40 {
	width: 40%;
}
.flex_box .w41 {
	width: 41%;
}
.flex_box .w43 {
	width: 43%;
}
.flex_box .w45 {
	width: 45%;
}
.flex_box .w46 {
	width: 46%;
}
.flex_box .w48 {
	width: 48%;
}
.flex_box.w48 {
	align-items: center;
	margin-bottom: 30px;
}
.flex_box .w50 {
	width: 50%;
}
.flex_box .w55 {
	width: 55%;
}
.flex_box .w58 {
	width: 58%;
}
.flex_box .w60 {
	width: 60%;
}
.flex_box .w63 {
	width: 63%;
}
.flex_box .w65 {
	width: 65%;
}
.flex_box .w68 {
	width: 68%;
}
.flex_box .w70 {
	width: 70%;
}
.flex_box .in_image {
	width: 48%;
	mix-blend-mode: multiply;
}
.flex_box .w100 {
	width: 100%;
}
.f_col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.mb50 {
		margin-bottom: 30px !important;
	}
  .section_kv {
    padding: 30px 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .section_kv_title {
    font-size: 20px;
  }
  .section_kv_lead {
    font-size: 18px;
  }
	.inline_title {
		font-size: 18px;
		line-height: 1.75;
		letter-spacing: 0.05em;
		padding-top: 0px;
		margin-bottom: 30px;
	}
	.quality_content_title {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.6;
		padding: 15px 0;
		margin-bottom: 20px !important;
		text-align: center;
	}
	h5 {
		text-align: left;
		font-size: 15px;
		text-align: center;
		margin-bottom: 5px !important;
	}
	h5.ls_sp {
		letter-spacing: 0;
	}
	p {
		font-size: 14px;
		line-height: 1.4;
	}
	.steel h5 {
		font-size: calc(16vw / 5.3);
		letter-spacing: 0;
		margin-bottom: 2px !important;
	}
	.steel p {
		font-size: calc(14vw / 5.3);
	}
	.flex_box.sp_flex_non {
		display: block;
	}
	.flex_box .images.attacc_image {
		width: 80%;
		margin: 0 auto 30px;
		display: block;
	}
	.flex_box.steel .w48 {
		width: 100%;
	}
	.flex_box .in_image {
		width: 80%;
		margin-inline: auto;
	}
	.flex_box {
		/* width: 94%; */
		margin-inline: auto;
	}
	.flat_box {
		/* width: 94%; */
		margin-inline: auto;
	}
	.flex_box .w30 {
		width: 100%;
	}
	.flex_box .w32 {
		width: 100%;
	}
	.flex_box .w43 {
		width: 100%;
		margin-bottom: 30px;
	}
	.flex_box .w45 {
		width: 100%;
	}
	.flex_box.w48 {
		width: 45%;
		align-items: self-start;
		margin-bottom: 40px;
	}
	.flex_box .w50 {
		width: 100%;
	}
	.flex_box .w55 {
		width: 100%;
	}
	.flex_box .w65 {
		width: 100%;
	}
	.flex_box .w68 {
		width: 100%;
		margin-bottom: 35px;
    padding-bottom: 50px;
	}
	h6 {
		font-size: 18px;
	}
  .flex_box_cap {
    font-size: 10px !important;
  }
}
/***ZEH***/
#quality #contents .quality_wrap.zeh {
	max-width: 974px;
}
.line_title {
	text-align: center;
	width: 100%;
	color: #726d30;
	font-size: min(18px, 2.2vw);
	line-height: 1.85;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: left;
	background: #dbdbcb;
	padding: 10px 10px;
	color: #fff;
	background: linear-gradient(-90deg, rgb(52 53 40) 0%, rgb(121 121 96) 100%);
}
h5.image_title img {
	max-width: 190px;
	margin-right: 20px;
}
.zeh_point {
	margin-bottom: 50px;
}
.merit_list {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.merit_list li {
	width: 48%;
	/*border: 1px solid #726d30;*/
	background: #e3e3e3;
	padding: 20px 10px;
	font-size: clamp(12px, 1.3888888889vw, 13px);
	line-height: 2;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.merit_list li small {
	font-size: 10px;
}
.merit_list li.caution {
	width: 100%;
	background: none;
	padding: 5px 10px;
	font-size: 10px;
	line-height: 2;
	text-align: right;
}
@media screen and (max-width: 767px) {
	h5.image_title img {
		display: block;
		max-width: inherit;
		width: 45%;
		margin-right: 0px;
		margin-bottom: 15px;
	}
	.zeh_point {
        margin-bottom: 30px;
        margin-inline: auto;
	}
	.hems_image {
		width: 92%;
		margin-inline: auto;
	}
	.zeh_point .flex_box .w70 {
		width: 100%;
		margin-bottom: 10px !important;
	}
	.zeh_point .flex_box .w25 {
		width: 100%;
		margin-bottom: 20px !important;
	}
	.zeh_point h5 {
		text-align: left;
		line-height: 1.4;
	}
	.zeh_point .merit_list {
		display: block;
	}
	.zeh_point .merit_list li {
		width: 100%;
		margin-bottom: 15px;
		font-size: 13px;
		line-height: 1.6;
		padding: 5px 6px;
	}
	.merit_list li.sp_mb0 {
		margin-bottom: 0;
	}
	.merit_list li.caution {
		padding: 5px 10px;
		font-size: 10px;
	}
}
/***設備仕様***/
#quality #contents #kitchen.quality_wrap.equipment, #quality #contents #lavatory.quality_wrap.equipment, #quality #contents #bathroom.quality_wrap.equipment, #quality #contents #restroom.quality_wrap.equipment {
	padding-top: 30px;
}
#quality #contents .quality_wrap.equipment {
	max-width: 974px;
}
h6 {
	width: 100%;
	color: #726d30;
	font-size: min(16px, 2vw);
	line-height: 1.85;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-bottom: 10px;
	text-align: left;
	width: 100%;
	font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif !important;
}
#quality #contents .quality_wrap.equipment .flex_box {
	align-items: flex-start;
}
.qeuip_image {
	margin-bottom: 10px;
	position: relative;
}
.qeuip_image.counter_2 {
	margin-top: -10px;
}
.qeuip_image .cap_r {
	position: absolute;
	display: block;
	right: 5px;
	bottom: 6px;
	font-size: 10px;
}
.qeuip_image.wide90 {
	width: 90%;
	margin: 0 auto 10px;
}
.qeuip_in_title {
	color: #726d30;
	font-size: min(14px, 1.6vw);
	line-height: 1.85;
	font-weight: 600;
	margin-bottom: 5px;
}
.qeuip_in_title .sub_text {
	color: #000;
	font-size: min(12px, 1.4vw);
	display: block;
}
.qeuip_in_title .home_iot {
	background: #054a97;
	color: #fff;
	padding: 5px;
	font-size: min(11px, 1.3vw);
	margin-left: 10px;
}
.small {
	font-size: 10px;
}
.cap {
	font-size: 10px;
	display: block;
}
@media screen and (max-width: 767px) {
	#quality #contents .quality_wrap.equipment .equipment_wrapper {
		width: 92%;
		margin-inline: auto;
	}
	#quality #contents .quality_wrap.equipment .flex_box {
		width: 100%;
		margin-inline: auto;
	}
	h6 {
		font-size: 14px;
		text-align: center;
	}
	#quality #contents .quality_wrap.equipment .qeuip_in_title {
		font-size: min(3.2vw, 14px);
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
	.qeuip_in_title .sub_text {
		font-size: min(2.2vw, 13px);
	}
	.qeuip_in_title .home_iot {
		font-size: min(2.2vw, 12px);
	}
	#quality #contents .quality_wrap.equipment p {
		font-size: 13px;
	}
	.line_title {
		font-size: 16px;
		color: #fff;
		text-align: center;
	}
	.flex_box .w30.conro {
		width: 80%;
		margin: 0 auto 20px;
	}
	.qeuip_image.apri {
		position: relative;
		width: 80%;
		margin: 0 auto 30px;
	}
	.flex_box .toilet_r.w43 {
		width: 100%;
		margin-bottom: 10px;
		text-align: center;
	}
	.flex_box .w41.sp_brake {
		width: 100%;
		margin-bottom: 20px;
	}
	.flex_box.sp_brake.w48 {
		width: 100%;
		align-items: self-start;
		margin-bottom: 30px;
	}
	.flex_box .w46.sp_brake {
		width: 100%;
		margin-bottom: 30px !important;
	}
	.flex_box .w48 {
    width: 100%;
		margin-bottom: 40px;
	}
	.flex_box .w46.sp_brake .w30 {
		width: 30%;
	}
	.flex_box .w50 {
		width: 100%;
	}
	.flex_box .w46.sp_brake .w50 {
		width: 50%;
	}
	.qeuip_image.counter_1 {
		margin-top: 6px;
	}
	.qeuip_image.counter_2 {
		margin-top: 0px;
	}
}
/***エネルギー***/
h5 {
	position: relative;
}
h5.support_title .title_image {
	display: block;
	position: absolute;
	width: 20%;
	top: -80px;
	right: 20px;
}
h5.support_title .title_image_sun {
	display: block;
	position: absolute;
	width: 25%;
	top: -72px;
	right: 0px;
}
h5.support_title .title_image_enefarm {
	display: block;
	position: absolute;
	width: 28%;
	top: -80px;
	right: 0px;
}
h5.support_title .title_image_iot {
	display: block;
	position: absolute;
	width: 13%;
	top: -110px;
	right: 0px;
}
h5.support_title sup {
	font-size: 10px;
	top: 0;
	vertical-align: super;
}
.support_list {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.support_list li {
	width: 32%;
	background: #e3e3e3;
	padding: 20px 10px;
	font-size: clamp(12px, 1.3888888889vw, 13px);
	line-height: 2;
	text-align: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.support_list li span {
	display: block;
	color: #376F9A;
	font-size: clamp(14px, 1.5888888889vw, 16px);
}
.support_list li p {
	width: 72%;
}
.support_list li img {
	width: 25%;
}
.hosho_icon {
	width: 20%;
}
.hosho_title {
	width: 77%;
	text-align: center;
}
.hosho_title h6 {
	text-align: center;
}
.hosho_title span {
	display: block;
	background: #727171;
	color: #fff;
	padding: 10px;
}
#quality #contents .enefarm_wrapp {
	background: rgba(239, 242, 227, 0.35);
	padding-top: 50px;
	padding-bottom: 50px;
}
#quality #contents .white_wrapp {
	background: #fff;
	width: 100%;
	padding: 15px;
	box-sizing: border-box;
}
h6.iot_subtitle {
	width: 100%;
	color: #726d30;
	border-top: 1px solid #726d30;
	border-bottom: 1px solid #726d30;
	padding: 5px;
	position: relative;
}
h6.iot_subtitle.title_image_line {
	padding-left: 8%
}
h6.iot_subtitle.title_image_line span {
	display: block;
	position: absolute;
	width: 6%;
	top: -10px;
	left: 0px;
}
.flex_box.w48.al_top {
	align-items: flex-start;
}

.p-quality-content + .p-quality-content {
  margin-top: 100px; }

@media screen and (max-width: 768px) {
  .p-quality-content + .p-quality-content {
    margin-top: 80px; } }
.p-quality-content__title {
  text-align: center;
  padding: 15px 0;
  margin-bottom: 30px;
  border-top: solid 1px #524517;
  border-bottom: solid 1px #524517;
  font-size: clamp(18px, calc(22vw / 9.76), 22px);
  color: #524517;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400; }
  .p-quality-content__title .s {
    font-size: 60%; }

@media screen and (max-width: 768px) {
  .p-quality-content__title {
    margin-bottom: 30px; }

  .p-quality-content__title.l2 {
    line-height: 1; } }
.p-quality-content__title span {
  font-size: clamp(14px, calc(16w / 9.76), 16px); }

.p-quality-content__sub-title {
  margin-bottom: 15px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "游ゴシック体", "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
  font-size: clamp(16px, calc(18vw / 9.76), 18px);
  color: #bf795d;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 700;
  font-feature-settings: "palt"; }

.p-quality-content__text {
  font-size: clamp(12px, calc(14vw / 9.76), 14px);
  color: #524517;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 700;
  font-feature-settings: "palt"; }

.p-quality-content__text__inner-img {
  margin-top: 30px; }

@media screen and (max-width: 768px) {
  .p-quality-content__text__inner-img {
    margin-top: 15px; } }
.p-quality-content__note {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 15px;
  padding-left: 1em;
  text-indent: -1em; }

.p-quality-content__note__type02 {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 15px; }

.p-quality-content__type02 {
  border: solid 1px #524517; }

.p-quality-content__type02__inner {
  padding: 50px 15px;
  max-width: 830px;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  .p-quality-content__type02__inner {
    padding: 30px 15px; } }
.p-quality-content__type02__title {
  line-height: 1.6;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: clamp(14px, calc(18vw / 9.76), 18px);
  border-bottom: solid 1px #524517;
  color: #524517;
  font-weight: 900; }

@media screen and (max-width: 768px) {
  .p-quality-content__type02__title {
    padding-bottom: 8px;
    margin-bottom: 15px; } }
.p-quality-content__type02__text {
  font-weight: 700;
  font-size: 14px;
  line-height: 2; }
  .p-quality-content__type02__text.ls {
    letter-spacing: 0.01em; }

@media screen and (max-width: 768px) {
  .p-quality-content__type02__text {
    font-size: 12px; } }
.p-quality-content__type02__img {
  margin-top: 40px; }

@media screen and (max-width: 768px) {
  .p-quality-content__type02__img {
    margin-top: 30px; } }
.p-quality-content__type02 + .p-quality-content {
  margin-top: 100px; }

@media screen and (max-width: 768px) {
  .p-quality-content__type02 + .p-quality-content {
    margin-top: 80px; } }
.p-quality-content + .p-quality-content__type02 {
  margin-top: 60px; }

@media screen and (max-width: 768px) {
  .p-quality-content + .p-quality-content__type02 {
    margin-top: 40px; } }
.p-quality-content__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }

.p-quality-content__row + .p-quality-content__row {
  margin-top: 60px; }

@media screen and (min-width: 769px) {
  .p-quality-content__row.al_end_pc {
    align-items: flex-end; } }
@media screen and (max-width: 768px) {
  .p-quality-content__row + .p-quality-content__row {
    margin-top: 40px; } }
@media screen and (max-width: 768px) {
  .p-quality-content__row {
    display: block; } }
.p-quality-content__col, .p-quality-content__col--100 {
  width: calc((100% - 46px)/2);
  width: calc((100% - 45px)/2); }

@media screen and (max-width: 768px) {
  .p-quality-content__col, .p-quality-content__col--100 {
    width: 100%; } }
@media screen and (max-width: 768px) {
  .p-quality-content__col + .p-quality-content__col, .p-quality-content__col--100 + .p-quality-content__col, .p-quality-content__col + .p-quality-content__col--100, .p-quality-content__col--100 + .p-quality-content__col--100 {
    margin-top: 40px; } }
.p-quality-content__col--100 {
  width: 100%; }

.p-quality-content__col--100 + .p-quality-content__col--100 {
  margin-top: 30px; }

@media screen and (max-width: 768px) {
  .p-quality-content__col--100 + .p-quality-content__col--100 {
    margin-top: 20px; } }
.p-quality-content__col + .p-quality-content__col--100, .p-quality-content__col--100 + .p-quality-content__col--100 {
  margin-top: 30px; }

@media screen and (max-width: 768px) {
  .p-quality-content__col + .p-quality-content__col--100, .p-quality-content__col--100 + .p-quality-content__col--100 {
    margin-top: 20px; } }
.p-quality-content__zeh__title-img {
  max-width: 190px;
  width: 100%;
  margin-bottom: 15px; }

.p-quality-content__zeh__row {
  display: flex;
  justify-content: space-between; }

.p-quality-content__zeh__row {
  margin-top: 15px;
  display: flex;
  justify-content: space-between; }

@media screen and (max-width: 768px) {
  .p-quality-content__zeh__row {
    display: block; } }
.quality_wrap p.p-quality-content__zeh__col {
  width: calc((100% - 28px)/2);
  font-size: 14px;
  text-align: center ;
  padding: 10px 0;
  background: #dee5ef;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: center; }

@media screen and (max-width: 768px) {
  .quality_wrap p.p-quality-content__zeh__col {
    width: 100%; } }
@media screen and (max-width: 768px) {
  .quality_wrap p.p-quality-content__zeh__col + .quality_wrap p.p-quality-content__zeh__col {
    margin-top: 8px; } }
@media screen and (max-width: 768px) {
  .p-quality-content__zeh .p-quality-content__col, .p-quality-content__zeh .p-quality-content__col--100 {
    margin-top: 20px !important; } }

    @media only screen and (min-width:768px) {
      .p-quality-content__zeh__row.col3 {
        flex-wrap: wrap;
      }
      .p-quality-content__zeh__row.col3 .l {
        width: 100%;
        margin-bottom: 4%;
    }

    }
.p-quality-content__feature__item + .p-quality-content__feature__item {
  margin-top: 30px; }

@media screen and (max-width: 768px) {
  .p-quality-content__feature__item + .p-quality-content__feature__item {
    margin-top: 15px; } }
.p-quality-content__feature__item__list li {
  padding-left: 19px;
  text-indent: -19px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700; }

@media screen and (max-width: 768px) {
  .p-quality-content__feature__item__list li {
    padding-left: 0;
    text-indent: 0; } }
.p-quality-content__feature__item__list li span {
  margin-right: 5px;
  color: #265494; }

.p-quality-content__feature__item__list--25 {
  position: relative; }

.p-quality-content__feature__item__list--25 .p-quality-content__feature__item__list {
  width: 68.4%; }

.p-quality-content__feature__item__list--25 .p-quality-content__feature__25-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20.6%; }

@media screen and (max-width: 768px) {
  .p-quality-content__feature__item__list--25 .p-quality-content__feature__25-img {
    width: 29.5%; } }
.p-quality-content__feature__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 28px;
  font-size: 16px;
  line-height: 1;
  background: #265494;
  color: #fff;
  position: relative;
  margin-right: 16px; }

.p-quality-content__feature__tag::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 6px solid #265494; }

@media screen and (max-width: 768px) {
  .p-quality-content__feature__tag {
    margin-bottom: 6px; } }
.p-quality-content__feature .p-quality-content__sub-title {
  display: flex;
  align-items: center; }

@media screen and (max-width: 768px) {
  .p-quality-content__feature .p-quality-content__sub-title {
    display: block;
    margin-bottom: 8px; } }


/* position_area
======================================= */
.position_area {
  padding-bottom: 120px;
}
.position_area .inner {
  max-width: 1400px;
}
.position_contents {
  margin-top: 86px;
}
.position_img {
  margin-top: 20px;
  text-align: center;
}
.position_wrap {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 56px;
}
.position_item {
  text-align: center;
}
.position_item_title {
  margin-top: 24px;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.position_item_title .title_l {
  font-size: 30px;
}
.position_item_title .num {
  font-size: 48px;
  padding-inline: 4px;
  font-family: 'EB Garamond', serif !important;
}
.position_item_title .title_s {
  font-size: 18px;
}
.position_item_text {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media only screen and (max-width:768px) {
  .position_area {
    padding-bottom: 40px;
  }
  .position_contents {
    margin-top: 30px;
  }
  .position_img {
    margin-top: 10px;
  }
  .position_wrap {
    margin-top: 20px;
    grid-template-columns: repeat(1,1fr);
    row-gap: 16px;
  }
  .position_item  {
    max-width: 500px;
    margin-inline: auto;
  }
  .position_item figure {
    width: 90%;
    margin-inline: auto;
  }
  .position_item_title {
    margin-top: 4px;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .position_item_title .title_l {
    font-size: 18px;
  }
  .position_item_title .num {
    font-size: 32px;
    padding-inline: 2px;
  }
  .position_item_title .title_s {
    font-size: 12px;
  }
  .position_item_text {
    margin-top: 10px;
    font-size: 11px;
  }
}



/* movie_area
======================================= */
.movie_area {
  padding-top: 100px;
  padding-bottom: 120px;
}
.movie_title {
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
}
.movie_wrap {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-top: 50px;
  margin-inline: auto;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
  row-gap: 40px;
}
.movie_item {
  display: flex;
}
.movie_img {
  width: 38%;
  flex-shrink: 0;
}
.movie_body {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.movie_body_title {
  font-size: 22px;
  text-decoration: underline;
  color: #000 !important;
  margin-bottom: 12px;
}
.movie_body p.movie_body_text {
  font-size: 16px;
  line-height: 1.5;
  color: #000 !important;
}

@media only screen and (max-width:768px) {
  .movie_area {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .movie_title {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .movie_wrap {
    grid-template-columns: repeat(1,1fr);
    row-gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .movie_body {
    padding-left: 10px;
  }
  .movie_body_title {
    font-size: 14px;
    text-decoration: underline;
    margin-bottom: 3px;
  }
  .movie_body p.movie_body_text {
    font-size: 12px;
    line-height: 1.5;
    color: #000 !important;
  }
}


/* planning_area
======================================= */
.planning_area .bg_gray {
  padding-bottom: 120px;
}
.planning_area .inner {
  max-width: 1600px;
}
.planning_contents {
  position: relative;
  background: url(../img/top/planning_bg_pc.jpg) no-repeat center center / cover;
}
.planning_item {
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 520px;
  margin-left: auto;
}
.planning_text {
  text-shadow: 
  2px 2px 3px #F3F3F3,
  2px 2px 3px #F3F3F3,
  2px 2px 3px #F3F3F3,
  2px 2px 3px #F3F3F3;
}
.planning_item_wrap {
  margin-top: 60px;
}
.planning_modal {
  padding-top: 60px;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin-inline: auto;
}
.planning_modal_title {
  text-align: center;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.planning_modal_title:before, .planning_modal_title:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: rgba(9, 1, 3, .3);
}
.planning_modal_title:before {
  margin-right: 1rem;
}
.planning_modal_title:after {
  margin-left: 1rem;
}
.planning_modal_wrap {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
}
.planning_modal_text {
  text-align: center;
  margin-top: 70px;
}
.kukaku {
  margin-top: 80px;
  max-width: 1160px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
.kukaku_head {
  margin-bottom: 40px;
  text-align: center;
}
.plan_contents {
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-top: 70px;
  max-width: 1400px;
}
.plan_contents_wrap {
  display: flex;
  align-items: center;
  column-gap: 46px;
}
.plan_contents_body {
  width: 280px;
  flex-shrink: 0;
}
.plan_num {
  font-family: 'EB Garamond', serif !important;
  font-size: 30px;
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.plan_num .en {
  font-family: 'EB Garamond', serif !important;
  font-size: 70px;
}
.plan_num .line {
  font-family: "Noto Serif JP", serif !important;
  font-size: 50px;
  letter-spacing: 0.05em;
}
.plan_ldk {
  text-align: center;
  margin-top: 16px;
  font-family: 'EB Garamond', serif !important;
  font-size: 32px;
  letter-spacing: 0.1em;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .5);
}
.plan_ldk .num {
  font-family: 'EB Garamond', serif !important;
  font-size: 48px;
}
.plan_ldk .text_s {
  font-family: 'EB Garamond', serif !important;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.plan_menseki_wrap {
  display: flex;
  flex-direction: column;
}
.plan_menseki {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.plan_menseki .num_l {
  font-family: 'EB Garamond', serif !important;
  font-size: 48px;
}
.plan_menseki .num_m {
  font-family: 'EB Garamond', serif !important;
  font-size: 36px;
}
.plan_contents_map {
  margin-top: 30px;
}
.plan_contents_map p {
  font-size: 12px;
  text-align: right;
  margin-top: 4px;
}
.plan_contents_img02 {
  margin-top: 60px;
}
.planning_link_wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 40px;
}
.planning_link_item {
  display: block;
  width: 100%;
  max-width: 430px;
  font-family: 'EB Garamond', serif !important;
  line-height: 1.4;
  color: #333 !important;
  padding: 20px 20px 15px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .4);
  transition: all .4s;
}
.planning_link_item:hover {
  opacity: .8;
}
.planning_link_head {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.planning_link_num {
  flex-shrink: 0;
  font-size: 24px;
  letter-spacing: 0.2em;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_num span {
  line-height: 0.8;
  font-size: 48px;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_ldk {
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, .4);
  font-family: 'EB Garamond', serif !important;
}
.planning_link_ldk .num {
  font-size: 40px;
  line-height: 0.8;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_ldk .ldk {
  margin-top: 8px;
  font-size: 16px;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_menseki {
  margin-top: 20px;
  display: flex;
  column-gap: 10%;
  font-family: 'EB Garamond', serif !important;
}
.menseki_item {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: 'EB Garamond', serif !important;
}
.menseki_item .menseki_title {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  font-family: 'EB Garamond', serif !important;
}
.menseki_item .num_l {
  font-size: 48px;
  line-height: 0.8;
  font-family: 'EB Garamond', serif !important;
}
.menseki_item .num_m {
  font-size: 36px;
  line-height: 1;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_btn {
  position: relative;
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.4em;
  line-height: 1;
  padding-block: 10px;
  text-align: center;
  color: #fff;
  background-color: #6e6e6e;
  font-family: 'EB Garamond', serif !important;
}
.planning_link_btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow.png) no-repeat center center / contain;
  width: 12px;
  height: 14px;
}
.plan_contents_wrap2 {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}
.plan_contents_body2 {
  width: 46%;
}
.plan_contents_title {
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 14px;
}
.plan_contents_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.plan_contents_text span {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: normal;
  display: block;
}
.plan_contents_img2 {
  width: 30%;
  max-width: 270px;
}

@media only screen and (max-width:991px) {
  .planning_link_wrap {
    margin-top: 30px;
    grid-template-columns: repeat(1,1fr);
    row-gap: 20px;
  }
  .planning_link_item {
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
  }
}

@media only screen and (max-width:768px) {
  .planning_area .bg_gray {
    padding-bottom: 40px;
  }
  .planning_contents {
    position: relative;
    background: url(../img/top/planning_bg_sp.jpg) no-repeat top center / cover;
  }
  .planning_item {
    padding-top: 260px;
    padding-bottom: 10px;
    max-width: 100%;
  }
  .planning_text {
    font-size: 12px;
    text-align: center;
  }
  .planning_item_wrap {
    margin-top: 40px;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
  .planning_modal {
    padding-top: 26px;
  }
  .planning_modal_title {
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .planning_modal_wrap {
    margin-top: 20px;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }
  .planning_modal_text {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: normal;
  }
  .kukaku {
    margin-top: 30px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .kukaku_head {
    text-align: left;
  }
  .plan_contents {
    margin-top: 20px;
  }
  .plan_contents_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .plan_contents_body {
			display: contents;
  }
  .plan_num {
    font-family: 'EB Garamond', serif !important;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
  }
  .plan_num .en {
    font-family: 'EB Garamond', serif !important;
    font-size: 50px;
  }
  .plan_num .line {
    font-family: "Noto Serif JP", serif !important;
    font-size: 30px;
  }
  .plan_ldk {
    margin-top: 2px;
    font-family: 'EB Garamond', serif !important;
    font-size: 20px;
    padding-bottom: 2px;
  }
  .plan_ldk .num {
    font-family: 'EB Garamond', serif !important;
    font-size: 30px;
  }
  .plan_ldk .text_s {
    font-family: 'EB Garamond', serif !important;
    font-size: 13px;
  }
  .plan_menseki_wrap {
    flex-direction: row;
    justify-content: center;
    column-gap: 10px;
  }
  .plan_menseki {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .plan_menseki .num_l {
    font-family: 'EB Garamond', serif !important;
    font-size: 26px;
  }
  .plan_menseki .num_m {
    font-family: 'EB Garamond', serif !important;
    font-size: 20px;
  }
  .hanrei_sp {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    column-gap: 20px;
  }
  .hanrei_text {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .hanrei_img {
    width: 230px;
    margin-top: 0;
  }
  .plan_contents_img02 {
    margin-top: 60px;
  }
  .planning_link_item {
    width: 94%;
    padding: 14px 14px;
  }
  .planning_link_head {
    padding-bottom: 10px;
    align-items: center;
  }
  .planning_link_num {
    font-size: 20px;
  }
  .planning_link_num span {
    font-size: 42px;
  }
  .planning_link_ldk {
    font-size: 24px;
    padding-left: 14px;
    margin-left: 14px;
  }
  .planning_link_ldk .num {
    font-size: 32px;
  }
  .planning_link_ldk .ldk {
    margin-top: 0px;
    letter-spacing: 0.05em;
    font-size: 14px;
  }
  .planning_link_menseki {
    margin-top: 14px;
    display: flex;
    column-gap: 20px;
  }
  .menseki_item {
    font-size: 12px;
  }
  .menseki_item .menseki_title {
    font-size: 12px;
  }
  .menseki_item .num_l {
    font-size: 32px;
    line-height: 0.8;
  }
  .menseki_item .num_m {
    font-size: 24px;
  }
  .planning_link_btn {
    margin-top: 10px;
    font-size: 14px;
    padding-block: 10px;
  }
  .planning_link_btn::before {
    width: 10px;
    height: 12px;
  }
  		.plan_contents_map {
			order: 1;
			margin-top: 10px;
			margin-inline: auto;
			width: 80%;
			max-width: 200px;
		}
		.plan_contents_map p {
				font-size: 12px;
				text-align: right;
				margin-top: 4px;
		}
  .plan_contents_wrap2 {
    flex-direction: column;
    row-gap: 20px;
  }
  .plan_contents_body2 {
    width: 100%;
  }
  .plan_contents_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .plan_contents_text {
    font-size: 13px;
  }
  .plan_contents_text span {
    margin-top: 10px;
    font-size: 10px;
  }
  .plan_contents_img2 {
    width: 100%;
    margin-inline: auto;
  }
}


/* equipment_area
===================================== */
.equipment_area .inner {
  max-width: 1400px;
}
.equipment_contents + .equipment_contents {
  margin-top: 80px;
}
.equipment_title {
  margin-bottom: 24px;
  font-size: 26px;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.equipment_wrap {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.label_title {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 8px 8px;
  background-color: #f3f3f3;
  margin-bottom: 18px;
}
.equipment_text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.equipment_text span {
  font-size: 12px;
  letter-spacing: 0.05em;
  display: block;
}
.equipment_left {
  width: 100%;
  max-width: 1030px;
}
.eco_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.eco_title {
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #24376a;
}
.eco_wrap {
  margin-top: 26px;
  display: flex;
  column-gap: 24px;
}
.eco_lead {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.eco_cap {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.eco_img {
  flex-shrink: 0;
}
.equipment_body.w_320 {
  width: 100%;
  max-width: 320px;
}
.equipment_img {
  width: 100%;
}
.equipment_img.equipment_img01 {
  width: 100%;
  max-width: 923px;
}
.equipment_img.w360 {
  max-width: 360px;
}
.equipment_img.w660 {
  max-width: 520px;
}
.equipment_img03 {
  margin-top: 18px;
}
.equipment_grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 40px;
}
.equipment_grid2 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 40px;
}
.equipment_grid2_img {
  margin-bottom: 16px;
}
.equipment_img_title {
  width: 90%;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 
  0px 0px 14px rgba(0, 0, 0, 1),
  4px 4px 14px rgba(0, 0, 0, 1),
  -4px -4px 14px rgba(0, 0, 0, 1),
  0px 0px 14px rgba(0, 0, 0, 1);
}
.equipment_img_title span {
  display: block;
  font-size: 18px;
}
.equipment_img_lead {
  width: 90%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 
  0px 0px 14px rgba(0, 0, 0, 1),
  4px 4px 14px rgba(0, 0, 0, 1),
  -4px -4px 14px rgba(0, 0, 0, 1),
  0px 0px 14px rgba(0, 0, 0, 1);
}
.equipment_item.mt {
  margin-top: 30px;
} 
.equipment_item_img {
  margin-bottom: 12px;
}
.equipment_item_title {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #24376a;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.equipment_item_title span {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.equipment_item_title2 {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #24376a;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.equipment_item_title2 span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.equipment_item_wrap {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
}
.equipment_item_wrap.mt0 {
  margin-top: 0px;
}
.equipment_item_col2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
}
.equipment_item_col3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 20px;
}
.equipment_box {
  margin-top: 100px;
}
.equipment_box_title {
  background-color: #24376a;
  text-align: center;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  padding: 20px 5px;
}
.equipment_box_title sup {
  top: -2em;
  left: -2em;
}
.equipment_box_body {
  padding: 40px 40px;
  border: 1px solid #24376a;
}
.equipment_body_wrap {
  display: flex;
  justify-content: space-between;
}
.equipment_body_wrap2 {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #f3f3f3;
  padding: 20px;
}
.equipment_body_wrap_item {
  width: 50%;
}
.equipment_body_wrap_item + .equipment_body_wrap_item {
  border-left: 1px solid rgba(0, 0, 0, .4);
  padding-left: 20px;
  margin-left: 10px;
}
.equipment_body_title2 {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 12px;
}
.equipment_body_label {
  display: inline-block;
  background-color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 6px 20px;
  margin-bottom: 12px;
}
.equipment_body_title {
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #24376a;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.equipment_body_title sup {
  left: -1em;
}
.equipment_box_wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 14px;
}
.equipment_box_left {
  width: 100%;
  max-width: 497px;
}
.equipment_box_left_img {
  margin-top: 20px;
}
.equipment_box_center {
  width: 100%;
  max-width: 374px;
}
.equipment_box_right {
  width: 100%;
  max-width: 374px;
}
.equipment_img12 {
  position: absolute;
  bottom: -10px;
  left: 60px;
  z-index: 2;
}
.equipment_body_cap {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* 
====================================== */
.kitchen_wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.kitchen_wrap + .kitchen_wrap {
  margin-top: 40px;
}
.kitchen_item_left {
  width: 60%;
}
.kitchen_item_right {
  width: 39%;
}
.kitchen_item_wrap {
  display: flex;
  column-gap: 20px;
}
.equipment_item.w30 {
  width: 30%;
}
.equipment_item.w47{
  width: 47%;
}
.equipment_item.w60 {
  width: 70%;
}
.kitchen_item_img {
  flex-shrink: 0;
  width: 100px;
}
.kitchen_item_wrap2 {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}
.kitchen_item_column {
  width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.equipment_flex {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.equipment_flex_left {
  width: 55%;
}
.equipment_item_column {
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.equipment_item_column.w100 {
  width: 100%;
  row-gap: 20px;
}
.others_wrap {
  display: flex;
  column-gap: 12px;
}
.others_wrap.mt {
  margin-top: 12px;
}
.others_img01 {
  width: 55%;
  flex-shrink: 0;
}
.others_img02 {
  width: 65%;
  flex-shrink: 0;
}

@media only screen and (max-width:768px) {
  .equipment_contents + .equipment_contents {
    margin-top: 40px;
  }
  .equipment_title {
    margin-bottom: 18px;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .equipment_wrap {
    margin-top: 18px;
    flex-direction: column;
    row-gap: 30px;
  }
  .equipment_img {
    margin-top: 12px;
  }
  .label_title {
    font-size: 13px;
    padding: 6px ;
    margin-bottom: 10px;
  }
  .equipment_text {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
  .equipment_text span {
    font-size: 10px;
    letter-spacing: 0.05em;
    display: block;
  }
  .equipment_left {
    width: 100%;
    max-width: 1030px;
  }
  .eco_title_wrap {
    column-gap: 10px;
    padding-bottom: 10px;
  }
  .eco_title {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .eco_wrap {
    margin-top: 26px;
    flex-direction: column;
  }
  .eco_lead {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .eco_cap {
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: normal;
  }
  .eco_img {
    margin-top: 14px;
  }
  .equipment_body.w_320 {
    width: 100%;
    max-width: 320px;
  }
  .equipment_img03 {
    margin-top: 10px;
  }
  .equipment_grid {
    grid-template-columns: repeat(1,1fr);
    row-gap: 40px;
  }
  .equipment_sp_column {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .equipment_grid2 {
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
  }
  .equipment_grid2_img {
    margin-bottom: 12px;
  }
  .sp_img {
    width: 68%;
    margin-inline: auto;
  }
  .equipment_img_title {
    top: 10px;
    font-size: 18px;
  }
  .equipment_img_title span {
    font-size: 12px;
  }
  .equipment_img_lead {
    width: 100%;
    bottom: 18px;
    font-size: 14px;
  }
  .equipment_item.oder1 {
    order: 1;
  }
  .equipment_item_img {
    margin-bottom: 12px;
  }
  .equipment_item_title {
    font-size: 16px;
    letter-spacing: normal;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .equipment_item_title span {
    font-size: 12px;
  }
  .equipment_item_title2 {
    font-size: 15px;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .equipment_item_title2 span {
    font-size: 11px;
    letter-spacing: normal;
  }
  .equipment_item_wrap {
    margin-top: 18px;
    grid-template-columns: repeat(1,1fr);
    row-gap: 30px;
  }
  .equipment_box {
    margin-top: 0;
  }
  .equipment_box_title {
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 14px 5px;
  }
  .equipment_box_title sup {
    font-size: 10px;
    top: -6px;
    left: -6px;
  }
  .equipment_box_body {
    padding: 30px 20px;
  }
  .equipment_body_wrap {
    flex-direction: column;
    row-gap: 30px;
  }
  .equipment_body_wrap2 {
    flex-direction: column;
    row-gap: 30px;
    padding: 14px;
  }
  .equipment_body_wrap_item {
    width: 100%;
  }
  .equipment_body_wrap_item + .equipment_body_wrap_item {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, .4);
    padding-left: 0px;
    margin-left: 0px;
    padding-top: 20px;
  }
  .equipment_body_title2 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .equipment_body_label {
    font-size: 13px;
    padding: 6px 10px;
    margin-bottom: 8px;
  }
  .equipment_body_title {
    font-size: 14px;
    letter-spacing: 0.05em;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .equipment_body_title sup {
    font-size: 10px;
    top: -2px;
    left: -1em;
  }
  .equipment_box_wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 10px;
  }
  .equipment_box_left_img {
    margin-top: 20px;
  }
  .equipment_img12 {
    width: 100px;
  }
  .equipment_body_cap {
    margin-top: 26px;
    font-size: 10px;
  }

  .kitchen_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .kitchen_wrap + .kitchen_wrap {
    margin-top: 40px;
  }
  .kitchen_item_left {
    width: 100%;
  }
  .kitchen_item_right {
    width: 100%;
  }
  .kitchen_item_right.sp_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .kitchen_item_right.sp_flex .sp_57 {
    width: 57%;
  }
  .kitchen_item_right.sp_flex .sp_41 {
    width: 41%;
  }
  .kitchen_item_right.sp_flex .sp_100 {
    width: 100%;
    margin-top: 16px;
  }
  .kitchen_item_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .equipment_item_wrap.sp_none,
  .equipment_item.sp_none {
    display: contents;
  }
  .equipment_item.w30 {
    width: 100%;
  }
  .equipment_item.w47{
    width: 100%;
  }
  .equipment_item.w60 {
    width: 100%;
  }
  .kitchen_item_img {
    flex-shrink: 0;
    width: 135px;
  }
  .kitchen_item_wrap2 {
    align-items: center;
  }
  .kitchen_item_column {
    width: 100%;
  }
  .equipment_flex {
    flex-direction: column;
    row-gap: 20px;
  }
  .equipment_flex_left {
    width: 100%;
  }
  .equipment_item_column {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .equipment_sp_flex {
    display: flex;
    column-gap: 14px;
  }
  .bath_img05_spflex {
    width: 140px;
    flex-shrink: 0;
  }
  .equipment_item_col2,
  .equipment_item_col3 {
    grid-template-columns: repeat(1,1fr);
    row-gap: 30px;
  }
  .equipment_item_col2,
  .equipment_item_col3 {
    grid-template-columns: repeat(1,1fr);
    row-gap: 30px;
  }
  .equipment_item_column.w100 {
    width: 100%;
    row-gap: 20px;
  }
  .others_wrap {
    flex-direction: column;
    row-gap: 14px;
  }
  .others_wrap.mt {
    margin-top: 12px;
  }
  .others_img01,
  .others_img02 {
    width: 100%;
  }
}

.quality_common {
  padding: 25px 0 25px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  clear: both;
}
.quality_in_wrapp_title {
  text-align: center;
  border-top: #7C746E solid 1px;
  border-bottom: #7C746E solid 1px;
  padding: 20px 0;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
}
.quality_in_wrapp_title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5em;
}
.equipment_label_title {
  text-align: center;
  padding: 4px 10px;
  color: #000;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  background-color: #E7F6F6;      
  margin-bottom: 30px;
}
.equipment_item_title3 {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #24376a;
  margin-top: 26px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .4);
}
.equipment_contents_img {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 1000px;
}
.equipment_contents_img_cap {
  text-align: right;
  font-size: 12px;
  margin-top: 14px;
}

@media only screen and (max-width:768px) {
  .quality_common {
    padding: 25px 0 0;
    width: 95%;
    margin: 0 auto;
    clear: both;
  }
  .equipment_label_title {
    padding: 4px 10px;
    font-size: 16px;   
    margin-bottom: 20px;
  }
  .equipment_item_title3 {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: .05em;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .equipment_contents_img {
    margin-top: 20px;
  }
  .equipment_contents_img_cap {
    text-align: left;
    font-size: 10px;
  }
}


/* modaal-box 
-------------------------- */
.modaal-container {
	max-width: 1100px;
	background-color: #fff;
}
.modaal-inner-wrapper {
	padding: 160px 25px;
}
.modaal-box {
	position: relative;
	padding-top: 100px;
}
.modaal-box_inner {
	position: relative;
	max-width: 1100px;
	margin-inline: auto;
	padding: 0px 60px 60px;
}
.modaal-box_title {
  font-size: 26px;
  line-height: 1.6;
}
.modaal-close {
	position: absolute;
	right: 0px;
	top: -50px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: rgba(0,0,0,0);
	border-radius: 100%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}


/* lifeinfo_area
================================ */
.lifeinfo_area {
  position: relative;
}
.lifeinfo_kv {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-inline: auto;
}
.lifeinfo_slide_text {
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
.lifeinfo_slide_text span {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.lifeinfo_slide_cap {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.lifeinfo_box_wrap {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 76px;
  margin-bottom: 140px;
  display: flex;
  justify-content: center;
  column-gap: 3%;
}
.lifeinfo_box {
  width: 100%;
  max-width: 500px;
  padding: 30px 30px 34px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .4);
}
.lifeinfo_box.wide {
  max-width: 1200px;
}
.lifeinfo_box_title {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 38px;
}
.lifeinfo_box_list_wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
}
.lifeinfo_box_list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}
.lifeinfo_box_list + .lifeinfo_box_list {
  margin-top: 20px;
}
.lifeinfo_box_name {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.lifeinfo_box_meta {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.map_wrap {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
.map_img {
  width: 100%;
  max-width: 820px;
}

.map_body {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
}
.map_body_text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.map_body_text span {
  margin-left: 12px;
  font-size: 12px;
  letter-spacing:normal;
  line-height: 1.4;
}
.map_body_text + .map_body_text {
  margin-top: 12px;
}
.g_btn {
  display: block;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  color: #fff !important;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-block: 14px;
  background-color: #7F7F7F;
  transition: .3s;
}
.g_btn:hover {
  opacity: .8;
}

@media only screen and (max-width:1024px) {
  .lifeinfo_slide_text {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .lifeinfo_slide_text span {
    font-size: 11px;
    letter-spacing: normal;
  }
  .lifeinfo_box_wrap {
    max-width: 600px;
    margin-top: 46px;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 70px;
  }
  .lifeinfo_box {
    margin-inline: auto;
    padding: 16px 20px 26px;
    max-width: 100%;
  }
  .lifeinfo_box_title {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .lifeinfo_box_list_wrap {
    grid-template-columns: repeat(1,1fr);
    row-gap: 10px;
  }
  .lifeinfo_box_list {
    padding-bottom: 10px;
  }
  .lifeinfo_box_list + .lifeinfo_box_list {
    margin-top: 10px;
  }
  .lifeinfo_box_name {
    font-size: 11px;
  }
  .lifeinfo_box_meta {
    font-size: 10px;
  }
  .map_wrap {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 40px;
    flex-direction: column;
    row-gap: 40px;
  }
  .map_img {
    width: 100%;
  }
  .map_body {
    width: 100%;
    max-width: none;
  }
  .map_body_box {
    padding: 10px ;
  }
  .map_body_text {
    font-size: 13px;
    letter-spacing: normal;
    line-height: 1.87;
  }
  .map_body_text + .map_body_text {
    margin-top: 10px;
  }
}