@charset "UTF-8";
@import url("//use.fontawesome.com/releases/v5.7.2/css/all.css");


#plan .wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#plan .wrap .content .plan {
  letter-spacing: 0.1em;
  padding: 0 0 4%;
}
#plan .wrap .content .plan .enTitle {
  margin: 5% auto 20px;
}
#plan .wrap .content .plan h3 {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin: 10% auto 0 auto;
  padding: 0;
}
#plan .wrap .content .plan h4 {
  text-align: justify;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.2em;
  margin: 0 0 10% 0;
  padding: 0;
}
#plan .wrap .content .plan .ttl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#plan .wrap .content .plan .landBox{
	width: 80%;
	margin: 5% auto 10%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
}
#plan .wrap .content .plan .landBox .cap{
	text-align: justify;
	font-size:12px;
	font-size:0.75rem;
	margin-bottom: 20px;
	color: #585656;
}
#plan .wrap .content .plan .landBox .leftBox{
	width: 100%;
	margin-bottom: 5%;
}
#plan .wrap .content .plan .landBox .rightBox{
	width: 100%;
}
#plan .wrap .content .plan .designList{
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 5% auto;
	padding-bottom: 5%;
	border-bottom: 1px solid #ccc;
}
#plan .wrap .content .plan .designList li{
	width: 100%;
	margin: 0;
	padding: 0;
}
#plan .wrap .content .plan .designList li dl{
	margin-top: 20px;
	padding: 0;
}
#plan .wrap .content .plan .designList li dl dt{
	text-align: center;
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 20px;
	padding: 0;
}
#plan .wrap .content .plan .designList li dl dd{
	text-align: justify;
	font-size:12px;
	font-size:0.75rem;
	margin: 20px 0;
	padding: 0;
	color: #585656;
}
#plan .wrap .content .plan .price{
	width: 80%;
	margin: 0 auto;
}
#plan .wrap .content .plan .popupArea {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 0;
}
#plan .wrap .content .plan .planItem {
  margin-bottom: 5%;
}
#plan .wrap .content .plan .planItem img {
  border: 1px solid #ccc;
  -webkit-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
}
#plan .wrap .content .plan .planItem.casbeeBox {
  width: 100%;
  max-width: 1000px;
}
#plan .wrap .content .plan #popup_casbee {
  /* label でコントロールするので input は非表示に */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#plan .wrap .content .plan .popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#plan .wrap .content .plan .popup-open .popup_casbeeBtn {
  position: relative;
  text-align: center;
  border: 1px solid #CCC;
  padding: 18px 0 15px 0;
}
#plan .wrap .content .plan .popup-open .popup_casbeeBtn::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 5px solid #CCC;
}
#plan .wrap .content .plan .popup-open .popup_casbeeBtn:hover::after {
  border-left: 5px solid #333;
}
#plan .wrap .content .plan .popup-open img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#plan .wrap .content .plan .popup-open img:hover {
  opacity: 0.6;
}
#plan .wrap .content .plan .popup-overlay {
  /* input にチェックが入るまでは非表示に */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#plan .wrap .content .plan #popup_casbee:checked ~ .popup-overlay {
  /* display: block; */
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#plan .wrap .content .plan .popup-window {
  position: relative;
  width: 90vw;
  background-color: #ffffff;

  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: default;
  min-height: 74%;
  /* input にチェックが入るまでは非表示に */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#plan .wrap .content .plan .popup-window.w_casbee {
  width: 90vw;
  min-height: auto;
}
#plan .wrap .content .plan .popup-window .typeBtn {
  margin: 0 auto 20px;
}
#plan .wrap .content .plan .popup-window .typeBtn li {
  border: 1px solid #CCC;
  margin-bottom: 10px;
}
#plan .wrap .content .plan .popup-window .typeBtn li.cr {
  color: #FFF;
  background: #333;
}
#plan .wrap .content .plan .popup-window .typeBtn li:last-of-type {
  margin-bottom: 0;
}
#plan .wrap .content .plan #popup_casbee:checked ~ .popup-window {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}
#plan .wrap .content .plan .popup-text {
  margin: 0;
}
#plan .wrap .content .plan .popup-text img {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#plan .wrap .content .plan .popup-text picture {
  display: none;
}
#plan .wrap .content .plan .popup-text picture.popOpen {
  display: block;
}
#plan .wrap .content .plan .popup-text:not(:last-of-type) {
  margin-bottom: 1em;
}
#plan .wrap .content .plan .popup-close {
  cursor: pointer;
  position: absolute;
  bottom: -35px;
  right: 0;
}

#plan .wrap .content .plan .planList {
  text-align: center;
  width: 100%;
  margin: 0 auto 50px;
  padding: 40px 0 0;
}
#plan .wrap .content .plan .planList li {
  margin-bottom: 5%;
}
#plan .wrap .content .plan .planList li img {
  border: 1px solid #ccc;
  -webkit-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
}
#plan .wrap .content section#zeh {
  padding-bottom: 10%;
}
#plan .wrap .content section#zeh .titleArea {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
#plan .wrap .content section#zeh .titleArea .titleBox {
  position: relative;
  text-align: left;
  padding-left: 27px;
  overflow: hidden;
}
#plan .wrap .content section#zeh .titleArea .titleBox .more02 {
  position: absolute;
  top: 0;
  left: 0;
  height: 60%;
}
#plan .wrap .content section#zeh .titleArea .titleBox .titleLine {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 30%;
  background: #e7dfd0;
}
#plan .wrap .content section#zeh .titleArea .titleBox h2 {
  color: #e7dfd0;
}
#plan .wrap .content section#zeh .titleArea .titleBox h3 {
  color: #e7dfd0;
  margin-bottom: 20px;
}
#plan .wrap .content section#zeh .titleArea .titleBox .txtBlock {
  color: #e7dfd0;
  margin-bottom: 30px;
}
#plan .wrap .content section#zeh .txtArea {
  width: 80%;
  margin: 0 auto 6%;
}
#plan .wrap .content section#zeh .txtArea h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
#plan .wrap .content section#zeh .area01 {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
#plan .wrap .content section#zeh .area01 .logoBox {
  width: 100%;
  margin: 5% auto;
}
#plan .wrap .content section#zeh .area01 .logoBox .zehLogo {
  width: 40%;
  margin: 0 auto 5%;
}
#plan .wrap .content section#zeh .area01 .logoBox .txtBox {
  width: 100%;
  margin: 0 auto 5%;
}
#plan .wrap .content section#zeh .area01 .logoBox .txtBox .leadTxt {
  text-align: justify;
  margin: 0;
}
#plan .wrap .content section#zeh .area01 .zehImgBox {
  width: 100%;
  margin-bottom: 5%;
}
#plan .wrap .content section#zeh .area01 .zehImgBox .zehImg {
  width: 100%;
  position: relative;
  margin-bottom: 5%;
}
#plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox {
  color: #fff;
  width: 80%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-bottom: 0;
}
#plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox .zehTitle {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  margin: 0 0 20px 0;
  display: inline-block;
  position: relative;
}
#plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox .zehTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 100%;
  height: 1px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #fff;
}
#plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox .zehLead {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
}
#plan .wrap .content section#zeh .area01 .zehIllustration {
  width: 100%;
  margin: 0 auto;
}
#plan .wrap .content section#zeh .area01 .zehIllustration img {
  margin-bottom: 6%;
}
#plan .wrap .content section#zeh .area01 .zehIllustration .imgCap2 {
  text-align: justify;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
/* plan-PC
------------------------------------------------------- */
@media only screen and (min-width: 961px) {
  #plan .wrap .content .plan {
    margin: 0 auto;
  }

#plan .wrap .content .plan .enTitle {
  margin: 10% auto 40px;
}
#plan .wrap .content .plan h3 {
  font-size:26px;
  font-size: 1.625rem;
}


#plan .wrap .content .plan .landBox .leftBox{
	width: 48%;
	margin-bottom: 0;
	align-self: center;
}
#plan .wrap .content .plan .landBox .rightBox{
	width: 46%;
	align-self: center;
}
#plan .wrap .content .plan .designList li{
	width: 31%;
}

#plan .wrap .content .plan .price{
	margin: 0 auto 2%;
}
#plan .wrap .content .plan .price img{
	max-width: 700px;
}
#plan .wrap .content .plan .popupArea {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
#plan .wrap .content .plan .planItem {
    width: 29%;
    margin: 0 2% 4% 2%;
  }
#plan .wrap .content .plan .popup-window {
    width: 72vw;
    max-width: 1200px;
    min-height: auto;
    top: 53%;
    padding: 0;
  }
#plan .wrap .content .plan .popup-window.w_casbee {
    width: 50vw;
    max-width: 400px;
  }
#plan .wrap .content .plan .popup-window .typeBtn {
    position: absolute;
    display: inherit;
    width: 38%;
    left: 4%;
    top: 54%;
    margin: 0 auto;
    padding: 0;
    z-index: 10005;
  }
#plan .wrap .content .plan .popup-window .typeBtn li {
    border: 1px solid #CCC;
    margin-bottom: 10px;
    cursor: pointer;
  }
#plan .wrap .content .plan .popup-window .typeBtn li.cr {
    color: #FFF;
    background: #333;
  }
#plan .wrap .content .plan .popup-window .typeBtn li:last-of-type {
    margin-bottom: 0;
  }
#plan .wrap .content .plan .popup-close {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: -35px;
  }

#plan .wrap .content .plan .planList {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
#plan .wrap .content .plan .planList li {
    width: 28%;
    margin: 0 2% 4%;
  }	
  #plan .wrap .content section#zeh {
    padding-bottom: 100px;
  }
  #plan .wrap .content section#zeh .titleArea {
    margin-bottom: 60px;
  }
  #plan .wrap .content section#zeh .titleArea .titleBox {
    padding-left: 3vw;
  }
  #plan .wrap .content section#zeh .titleArea .titleBox .more02 {
    height: 100%;
  }
  #plan .wrap .content section#zeh .txtArea h2 {
    font-size: 2.3vw;
  }
  #plan .wrap .content section#zeh .area01 .logoBox {
    display: flex;
    justify-content: space-between;
  }
  #plan .wrap .content section#zeh .area01 .logoBox .zehLogo {
    width: 16%;
    margin: 0 0 0 0;
    align-self: center;
  }
  #plan .wrap .content section#zeh .area01 .logoBox .txtBox {
    width: 76%;
    align-self: center;
    margin: 0 0 0 0;
  }
  #plan .wrap .content section#zeh .area01 .zehImgBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #plan .wrap .content section#zeh .area01 .zehImgBox .zehImg {
    width: 30%;
    margin-bottom: 0;
  }
  #plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox {
    color: #fff;
    width: 80%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin-bottom: 0;
  }
  #plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox .zehTitle {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #plan .wrap .content section#zeh .area01 .zehImgBox .zehImg .txtBox .zehLead {
    font-size: 16px;
    font-size: 1rem;
  }
  #plan .wrap .content section#zeh .area01 .zehIllustration {
    width: 60%;
  }
  #plan .wrap .content section#zeh .area01 .zehIllustration .imgCap2 {
    text-align: center;
  }
}
