@charset "utf-8";
/* common sp
--------------------------------------------- */
body{
  background-color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  color: black;
}
.container{
  margin: 0 auto;
  padding: 0 15px;
  max-width: 900px;
}
.is-pc{
  display: none;
}
.cmn_contact{
  padding: 50px;
}
.cmn_contact_text{
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
}
.cmn_contact_link{
  background-color: rgb(255, 172, 172);
  max-width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  font-size: 25px;
  margin:0 auto;
  box-shadow: 0 5px rgb(104, 70, 70);
  position: relative;
}
.cmn_contact_link::after{
 content: "→";
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
}
.cmn_contact_link:hover{
  opacity: 0.8;
}
.cmn_contact_link:active{
  opacity: 1;
  position: relative;
  top: 5px;
  box-shadow: none;
}

/* header sp
--------------------------------------------- */
.header{
  background-color: white;
  padding: 20px 0;
}
.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_title{
  font-size: 20px;
}
.header_title_lg{
  font-size: 45px;
}
.header_icn{
  background-color: black;
  width: 40px;
  padding: 7px;
  cursor: pointer;
}
.header_icn_inner{
  background-color: white;
  height: 3px;
  margin-bottom: 7px;
}
.header_icn_inner:last-child{
  margin-bottom: 0px;
}

/* main sp
--------------------------------------------- */
.main{
  height: 350px;
  background-image: url(../img/main.jpg);
  background-position: top 20% left 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_text{
  font-size: 50px;
  color: white;
  text-shadow: 0 0 6px white;
  padding: 0 15px;
}

/* introduce sp
--------------------------------------------- */
.introduce{
  padding: 50px 0;
  background-color: rgb(211, 253, 211);
}
.introduce_title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.introduce_body{
  background-color: white;
  padding: 20px;
}
.introduce_body_text_main{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.introduce_body_text_sub{
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.introduce_body_contents{
  border: 3px solid rgb(211, 253, 211);
  border-radius: 10px;
  padding: 10px 10px 10px 40px;
  max-width: 210px;
  margin: 0 auto;
}
.introduce_body_content{
  font-size: 20px;
  padding-left: 30px;
  position: relative;
}
.introduce_body_content::before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/check-icn.png);
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 6px;
}

/* service sp
--------------------------------------------- */
.service{
  padding: 50px 0;
  background-color: rgb(255, 255, 180);
}
.service_title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.service_text_main{
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.service_text_sub{
  text-align: center;
  font-size: 20px;
}
.service_content{
  background-color: white;
  margin:50px 0 0 0;
  padding: 40px 20px 20px;
  text-align: center;
  position: relative;
}
.service_content_icn{
  display: block;
  background-color: black;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate3d(-50%,-50%,0);
}
.service_content_icn::before{
  content: "オススメ";
  display: block;
  font-size: 9px;
  padding-top: 10px;
}
.service_content_text_main{
  font-size: 20px;
  font-weight: bold;
}
.service_content_text_sub{
  font-size: 15px;
}

/* guest sp
--------------------------------------------- */
.guest{
  padding: 50px 0;
  background-color: rgb(211, 253, 211);
}
.guest_title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}
.guest_body_contents{
  background-color: white;
  padding: 30px;
}
.guest_body_content{
  margin-bottom: 30px;
}
.guest_body_content:last-child{
  margin-bottom: 0;
}
.guest_body_content_img{
  display: block;
  width: 100px;
  border: 5px solid rgb(211, 253, 211);
  border-radius: 50%;
  margin: 0 auto 10px;
}
.guest_body_content_text{
  background-color: rgb(211, 253, 211);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 15px;
}

/* footer sp
--------------------------------------------- */
.footer{
  padding: 50px 0;
  background-color: rgb(131, 131, 131);

}
.footer_text{
  text-align: center;
  color: white;
}

@media (min-width: 768px) {

/* common pc
--------------------------------------------- */
.is-sp{
  display: none;
}
.is-pc{
  display: block;
}

/* header pc
--------------------------------------------- */
.header_nav_list{
  display: inline-block;
  margin-right: 20px;
  font-size: 20px;
}
.header_nav_list:last-child{
  margin-right: 0;
}
/* main pc
--------------------------------------------- */
/* introduce pc
--------------------------------------------- */
/* service pc
--------------------------------------------- */
.service_contents{
  display: flex;
  flex-wrap: wrap;
}
.service_content{
  width: 30%;
  margin:50px 5% 0 0;
}
.service_content:nth-child(3n){
  margin-right: 0;
}
/* guest pc
--------------------------------------------- */
.guest_body_content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.guest_body_content:nth-child(2n){
  flex-direction: row-reverse;
}
.guest_body_content_img{
  margin: 0;
}
.guest_body_content_text{
  position: relative;
  margin-left: 50px;
}
.guest_body_content_text::after{
  content: "";
  border: 15px solid transparent;
  border-right: 30px solid rgb(211, 253, 211);
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
}
.guest_body_content:nth-child(2n) .guest_body_content_text{
  margin-left: 0;
  margin-right: 50px;
}
.guest_body_content:nth-child(2n) .guest_body_content_text::after{
  left: auto;
  right: -45px;
  border: 15px solid transparent;
  border-left: 30px solid rgb(211, 253, 211);
}

/* footer pc
--------------------------------------------- */
}
