@charset "utf-8";

/* PC　title記述　*/

.title {
  height: 360px;
  margin-top: 100px;
  background-image: url("../images/pla_img01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #333333;
}

.title h1 {
  font-size: 42px;
  font-weight: normal;
}

.title p {
  font-size: 20px;
  margin-top: 15px;
}

/* PC　lead記述　*/

.lead {
  width: 100%;
  margin: 80px auto;
  text-align: center;
}

.lead h2 {
  font-size: 24px;
  line-height: 40px;
  font-weight: normal;
  color: #152630;
  margin-bottom: 40px;
} 

.lead p {
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}

.lead-inner {
  max-width: 1000px;
  margin: 60px auto 0px;
  display: flex;
  justify-content: space-between;
}

.lead-inner img {
  width: 480px;
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .4);
  margin-bottom: 30px;
}

.small {
  display: block;
  margin: 0 auto;
  font-size: 14px;
  text-align: right;
}

/* PC　image記述　*/

.image {
  width: 100%;
  margin: 0px auto 0px;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #333333;
  text-align: center;
  background-image: url("../images/common/bg_img01.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.image span {
  font-size: 14px;
  color: #333;
}

.image h2 {
  font-size: 35px;
  font-weight: normal;
  color: #2a9074;
  margin-top: 10px;
}

.image-inner {
  max-width: 1000px;
  margin: 40px auto 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  
  /* スクロールに応じてアニメーション */
  animation: fadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.image-inner img {
  display: block;
  width: 100%;
  margin: 0px auto;
}

.image-inner small {
  width: 90%;
  margin: 0 auto;
  font-size: 12px;
}

.image-pc { display: block !important; }
.image-sp { display: none !important; }

/* PC　roomplan記述　*/

.roomplan {
  width: 100%;
  margin: 0px auto;
  padding-top: 60px;
  padding-bottom: 30px;
  color: #333333;
  text-align: center;
  background-color: rgba(47, 79, 79,0.1);
}

.roomplan span {
  font-size: 14px;
  color: #333;
}

.roomplan h2 {
  font-size: 35px;
  font-weight: normal;
  color: #2a9074;
  margin-top: 10px;
}

.roomplan img {
  width: 90%;
  max-width: 950px;
  margin: 50px auto;
}

.plan-pc { display: block !important; }
.plan-sp { display: none !important; }

.roomplan p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 12px;
  text-align: right;
}

.roomplan-inner {
  max-width: 1000px;
  background-color: rgba(255, 255, 255);
  margin: 60px auto 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.roomplan-inner_wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.roomplan-inner_left {
  width: 70%;
}
.roomplan-inner_box {
  width: 350px;
  height: 35px;
  border: none;
  background-color: #60a8e3;
  margin-bottom: 40px;
}
.roomplan-inner_box h2 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  letter-spacing: 0.03em;
}

.roomplan-inner_left h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 35px;
  text-align: left;
  letter-spacing: 0.03rem;
}

.roomplan-inner_right {
  width: 30%;
  text-align: left;
}
.roomplan-inner_right ul li {
  list-style: none;
  font-size: 16px;
  line-height: 22px;
}
.roomplan-inner_right p {
  font-size: 11px;
  line-height: 15px;
  text-align: left;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 3px 0 3px 0;
  margin: 10px 0;
}

.roomplan-inner_right span {
  font-size: 32px;
  font-weight: bold;
  color: #de1f4b;
}

.roomplan-inner_right small {
  font-size: 14px;
  color: #de1f4b;
}

/* PC　link-button-02記述　*/


.link-button-02 {
  max-width: 700px;
  margin: 80px auto 40px;
  text-align: center;
  background-color: #2a9074;
  line-height: 55px;
  border: solid 0.1rem;
  border-color: #2a9074;
  border-radius: 24px;
  box-shadow: 4px 4px 6px rgba(90, 104, 112, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
}

.link-button-02:hover {
  background-color: #fff;
  color: #2a9074;
  border: solid 0.1rem;
  border-color: #2a9074;
}

.tel {
  text-align: center;
  font-size: 42px;
  color: #2a9074;
  margin: 30px auto 60px;
}

.tel small {
   font-size: 16px;
   color: #333333;
}

.sp {
  display: none;
}

/* ふわっとフェードイン記述　*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* サポートされていない場合のフォールバック */
@supports not (animation-timeline: view()) {
  .item {
    opacity: 1;
    transform: none;
  }
}



@media (max-width: 768px) {

/* スマホ　title記述　*/

.title {
  height: 320px;
  margin-top: 30px;
  background-image: url("../images/pla_img01.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
}

.title h1 {
  font-size: 32px;
  font-weight: normal;
}

.title p {
  font-size: 18px;
}
  
/* スマホ　lead記述　*/
  
.lead {
  padding-left: 20px;
  padding-right: 20px;
  margin: 60px auto 60px;
}

.lead h2 {
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  color: #152630;
  margin-bottom: 40px;
} 

.lead p {
  text-align: center;
  font-size: 14px;
  line-height: 23px;
}

  
.lead-inner {
  display: block;
  width: 100%;
}

.lead-inner img {
  width: 100%;
  margin-bottom: 20px;
}

.small {
  font-size: 11px;
}

.image {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}

  .image-inner img {
    width: 95%;
  }

  
  
/* スマホ roomplan記述　*/
  
.roomplan {
  max-width: 100%;
  margin: 40px auto 0px;
}
  
.roomplan h2 {
  font-size: 24px;
}

.roomplan img {
  width: 90%;
  margin: 20px auto;
}

.plan-pc { display: none !important; }
.plan-sp { display: block !important; }
  
  
.roomplan-inner {
  width: 95%;
  padding-top: 30px;
  padding-bottom: 30px;
}
  
.roomplan p {
  max-width: 90%;
  font-size: 11px;
}  

.roomplan-inner_wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
  
.roomplan-inner_left {
  width: 100%;
  margin: 0 auto;
}
  
.roomplan-inner_box {
  width: 90%;
  height: 35px;
  border: none;
  margin: 0 auto 40px;
}
  
.roomplan-inner_box h2 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.roomplan-inner_left h3 {
  max-width: 90%;
  margin:0 auto;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.06rem;
  margin-bottom: 40px;
}

.roomplan-inner_right {
  width: 80%;
  margin:0 auto 40px;
  text-align: left;
}
  
.roomplan-inner_right ul li {
  font-size: 14px;
  line-height: 20px;
}
  
.roomplan-inner_right p {
  font-size: 11px;
  line-height: 15px;
  text-align: left;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 3px 0 3px 0;
  margin: 10px 0;
}
  
.roomplan-inner_right span {
  font-size: 24px;
}
  
.roomplan-inner_right small {
   font-size: 14px;
}
  
.box {
  width: 90%;
  padding: 10px;
  margin: 20px 0 60px;
  background: #a48845;
  border: double 1.5px #FFFFFF;
}

.box span {
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
}
  
/* スマホ image記述　*/

.image h2 {
  font-size: 24px;
}

.image-inner small {
  width: 90%;
  margin: 0 auto;
  font-size: 11px;
  text-align: left;
}
  
.image-pc { display: block !important; }
.image-sp { display: none !important; }
  
/* スマホ　link-button-02記述　*/
  
.link-button-02 {
  max-width: 80%;
  margin: 50px auto 20px;
  padding: 10px;
  line-height:25px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: 0.3em;
}
  
.tel {
  font-size: 36px;
  margin: 30px auto 60px;
}

.tel small {
   font-size: 12px;
   line-height: 14px;
}
  
.sp {
  display: inline;
}
}
