@charset "utf-8";
/* CSS top-page */
h2 {/*サロン案内/こだわり/トリマー紹介*/
 font-size: 24px;
 font-family: 'Zen Maru Gothic', sans-serif;
 color: #EE7E0E;
 text-align: center;
}
h3 {
  font-size: 18px;
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 4px;
}
/*----------------------
description
-------------------------*/
.section_description {
  padding: 150px 0 60px;
  background-color: #FFE9C1;
}
.section_inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section_description_upper {
  max-width: 1080px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.section_description_lower {
  max-width: 1080px;
  display: flex;
  align-items: center;
}
.section_img {
  max-width: 450px;
  width: 50%;
  height: 300px;
  margin: 0 50px;
  box-sizing: border-box;
}
 .section_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.section_txt {
  width: 50%;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
 }
.section_txt h3 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #EE7E0E;
  font-weight: bold;
  border-bottom: dotted 3px #EE7E0E;
}
.section_txt p {
  margin-bottom: 10px;
}
/*スマホ版*/
@media (max-width: 650px) {
.section_description {
  padding: 100px 0 40px;
  background-color: #FFE9C1;
} 
.section_inner {
  max-width: 90%;
}
.section_description_upper {
  margin-bottom: 30px;
  flex-wrap: wrap;
  flex-wrap: wrap-reverse;
}
.section_description_lower {
  flex-wrap: wrap;
}
.section_img {
  width: 100%;
  height: 250px;
  margin: 0 auto;
}
.section_img img {
  width: 100%;
  height: 100%;
}
.section_txt {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
}
/*----------------------
point
-------------------------*/
.section_point {
  padding: 60px 0 60px;
  background-color: #FFF3E8; 
  box-sizing: border-box;
}
.section_point_list {
  width: 100%;
  margin: 40px auto 0;
}
.effect-fade {/*liタグ*/
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms; 
}
.effect-scroll {/*JS*/
  opacity: 1;
  transform: translate(0, 0);
}
.section_point_txt {
  width: 60%;
  padding: 0 10px;
  box-sizing: border-box;
}
.section_point_txt div {/*ナンバーとh3見出し、pタグは含まれない*/
  display: flex;
  align-items: flex-end;
}
.section_point_number {
  width: 50px;/*円の大きさ*/
  height: 50px;/*円の大きさ*/
  margin-right: 10px;/*数字タイトルとの間隔*/
  position: relative;
  border-radius: 50%;
  border: 1px solid #EE7E0E;
  background-color: #fff;
}
.section_point_number span {/*数字タイトル*/
  position: absolute;
  top: 25%;
  left: 10%;
  font-family: 'Oleo Script', cursive;
  font-size: 30px;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #EE7E0E;
}
.section_point_txt h3 {
  width: 70%;/*下線の長さ調整*/
  padding: 0 0 10px 10px;
  border-bottom: 2px solid #EE7E0E;
  font-weight: bold;
  line-height: 20px;
}
.section_point_txt p {
  width: 70%;
  padding: 10px 0 0 70px;
}
.section_point_img {
  width: 40%;
  max-width: 200px;
  height: 140px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.section_point_img::before{/*斜線背景*/
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  background-image: repeating-linear-gradient(-45deg,
 #fff, rgba(238, 126, 14,0.8) 10px, transparent 0, transparent 16px);
  z-index: -1;
}
.section_point_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 
/*スマホ版*/
@media (max-width: 480px) { 
.section_point {
  padding: 40px 0 40px;
  background-color: #FFF3E8; 
  box-sizing: border-box;
}
.section_point_list {
  width: 100%;
}
.section_point_list li {
  width: 100%;
  margin-bottom: 40px;
  display: block;
  flex-wrap: wrap;
}
.section_point_txt {
  width: 100%;
  margin: 0 auto;
}
.section_point_txt p {
  width: 90%;
  padding: 15px 0 15px 30px;
}
.section_point_img {
  width: 100%;
  max-width: 350px;
  height: 200px;
  margin: 0 auto;
}
.section_point_img img {
  width: 100%;
  height: 100%; 
}
}
/*----------------------
trimmer
-------------------------*/
.section_trimmer {
  padding: 60px 0 60px;
  background-color: #FFE9C1;
}
.section_trimmer_contents {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.trimmer_img {
  width: 30%;
  max-width: 300px;
  max-height: 200px;
  padding: 10px;
  box-sizing: border-box;
}
.trimmer_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.trimmer_txt {
   width: 70%;
   padding: 0 30px;
   box-sizing: border-box;
   text-align: left;
 }
.trimmer_txt p:nth-child(2) {
  margin-bottom: 10px;
}
@media (max-width: 600px) { 
.section_trimmer {
  padding: 40px 0 40px;
  background-color: #FFE9C1;
}
.section_trimmer_contents {
  flex-wrap: wrap;
  flex-wrap: wrap-reverse;
}
.trimmer_img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.trimmer_txt {
  width: 90%;
  margin: 0 auto 20px;
  padding: 0;
}
}