@charset 'utf-8';
/* ----------------------------
reset css
----------------------------*/
/* 白色　#fffdfc */
/* 黒色 #202020 */
html{
    scroll-behavior: smooth;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body{
    font-size: 15px;
    background-color: #fff;
    font-family: 'Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
    line-height: 1;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-style: normal;
    background-color: #fffdfc;
    color: #4e4e4e;
  }
h1,h3,h4,p{
    letter-spacing: 0.05em;
}
img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align:bottom;
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
    color:#fbf5f3;
}
p{
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #202020;
}
/*------------------------------------
汎用 ↓
------------------------------------*/
.flex {display: flex;}
.aic {align-items: center;}
.jcb {justify-content: space-between;}
/*------------------------------------
ヘッダー a hover:下線アンダーライン ↓
------------------------------------*/
header ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fffdfc;
}
header ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #EB623A;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
header ul li a:hover {
  color: #EB623A;
}
header ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
/*------------------------------------
ヘッダー spハンバーガーメニュー ↓
------------------------------------*/
header .sp_nav {
  text-align: center;
}
.sidemenu {
  height: 100vh;
  padding-top: 100px;
  position: fixed;
  right: -100%; /*メニュー幅*/
  transition: all 0.6s;
  top: 0;
  width: 100%; /*メニュー幅*/
  background-color: #EDB28A;
  z-index: 2;
}
.sidemenu nav ul li {
  padding: 20px;
}
.hamburger {
  cursor: pointer;
  height: 60px;
  position: absolute;
  right: 30px;
  top: 0;
  width: 60px;
  z-index: 3;
}
.hamburger span {
  background-color: #FBF1EF;
  height: 2px;
  left: 15px;
  position: absolute;
  transition: all 0.6s;
  width: 30px;
}
.hamburger_linetop {
  top: 20px;
}
.hamburger_linecenter {
  top: 29px;
}
.hamburger_linebottom {
  top: 38px;
}
/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
/* アコーディオンが被る二箇所を修正 */
.hyouzi summary{
    z-index: -1;
}
/* メニューバー表示に関わるところ */
.nav_open .sidemenu {
  right: 0;
}
.nav_open .hamburger_linetop {
  top: 26px;
  transform: rotate(45deg);
}
.nav_open .hamburger_linecenter {
  left: 50%;
  width: 0;
}
.nav_open .hamburger_linebottom {
  top: 26px;
  transform: rotate(-45deg);
}
.nav_open .overlay {
  opacity: 0.8;
  visibility: visible;
}
/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
  background-color: #000000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 1;
}
.sidemenu {
    right: -60%; /*メニュー幅*/
    width: 60%; /*メニュー幅*/
  }
/*------------------------------------
topに戻るボタン
------------------------------------*/
.pagetop{
  position: fixed;
  bottom: 18%;
  right: 5%;
  background-color: #EB623A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.arrow::before{
    content:  '';
    width: 18px;
    height: 18px;
    display:  block;
    border-top: solid 4px;
    border-right: solid 4px;
    transform: rotate(-45deg);
    position:  absolute;
    top: 11px;
    bottom:  0;
    left:  0;
    right:  0;
    margin:  auto;
}
/* ----------------------------
header（共通）
----------------------------*/
header{
  background-color: #EDB28A;
  height: 60px;
  padding: 5px;
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media screen and (max-width: 970px){
  header{
    grid-template-columns: 100px 1fr;
  }
  h1{
    width: 200px;
    padding: 10px;
  }
  .sp_pc nav ul{
    justify-content: flex-start
  }
  .sp_pc nav ul a{
    padding: 3px;
  }
}
header h1 img{
  width: auto;
  height: auto;
}
h1{
  padding-left: 10px;
}
.sp_pc nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.sp_pc nav ul a{
  padding: 10px;
  color: #fffdfc;
}
.sp_nav{
  display: none;
}
@media screen and (max-width: 730px){
    .sp_pc{
      display: none;
    }
    .sp_nav{
      display: block;
    }
}

/* banner */
.banner{
  position: absolute;
  top: -2px;
  right: 5%;
}
.banner img{
  max-height: 250px;
}
.banner_sp{
  display: none;
}
@media screen and (max-width: 730px){
  .banner{
    display: none;
  }
  .banner_sp{
    display: block;
    position: fixed;
    top: 9%;
    right: 5%;
    width: 150px;
  }
}
/* ----------------------------
（共通）
----------------------------*/
.container{
  padding: 20px 30px;
}
@media screen and (max-width: 500px){
  .container{
    padding: 20px 10px;
  }
}
h2{
  margin: 0 auto;
  max-width: 360px;
  height: auto;
  padding: 15px;
}
section{
  max-width: 700px;
  margin: 0 auto;
}

/* ----------------------------
index.html
----------------------------*/
#home main{
  text-align: center;
}
#home main img{
  max-width: 100%;
}
#home main section{
  padding: 30px 10px;
}
#home main h2{
  max-width: 100%;
  margin-bottom: 10px;
  padding-top: 0;
  margin-top: 0;
}
/* 悩み */
#home main img.worries{
  max-width: 100%;
}
/* ポイント猫の輪っか */
#home main img.points{
  max-width: 60%;
  height: auto;
}
@media screen and (max-width: 670px){
  #home main img.points{
    max-width: 50%;
    height: auto;
  }
}
/* ★gridでまとめるお客様の声 */
#home main .list_voice{
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#home main .list_voice img{
  max-width: 280px;
  padding: 8px;
  display: grid;
}@media screen and (max-width: 470px){
  #home main .list_voice img{
    max-width: 150px;
  }
}
@media screen and (max-width: 570px){
  #home main .list_voice img{
    max-width: 180px;
    padding: 5px;
  }
}
/* 猫楽について */
#home main .about{
  background-color: #F7EEDB;
}
@media screen and (max-width: 700px){
  #home main h2{
    max-width: 100%;
    margin-bottom: 10px;
    padding-top: 0;
    margin-top: 0;
  }
}

/* ----------------------------
flow.html
----------------------------*/
#flow h3{
  margin-top: 10px;
}
#flow h3::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 18px;
  background-image: url('../img/flow.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#flow p{
  padding: 8px 30px;
}
#flow .a_kotira a{
  color: #202020;
  text-decoration: underline;
}
#flow .today_item{
  text-align: left;
}
#flow .today_item .today_item_list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  margin-bottom: 8px;
  max-width: 90%;
}
#flow .today_item .today_item_list img{
  max-width: 50px;
}

/* ----------------------------
contents.html
----------------------------*/
#contents section{
  padding: 8px;
}
/* 猫楽に依頼するメリット */
#contents .ontents h3,#price h3{
  width: 250px;
  height: auto;
  margin-bottom: 13px;
}
/* サービス内容 */
#contents .service_contens{
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

}
#contents .service_contens .service_list{
  max-width: 210px;
  margin: auto;
  margin-bottom: 10px;
}
#contents .service_contens .service_list p{
  font-size: 13px;
}
@media screen and (max-width: 750px){
  #contents .service_contens{
    max-width: 500px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px){
  #contents .service_contens{
    max-width: 500px;
    display: block;
  }
}
@media screen and (max-width: 750px){
  #contents .service_contens{
    grid-template-columns: 1fr 1fr;
  }
}
/* お引受けできる猫さん */
#contents .conditions ul{
  padding-left: 15px;
}
#contents .conditions li{
  margin-bottom: 8px;
}
#contents .conditions li::before{
  content: "";
  display: inline-block;
  width: 20px;
  height:13px;
  background-image: url('../img/conditions-img.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
/* ----------------------------
price.html
----------------------------*/
#price section{
  margin-bottom: 25px;
}
#price table{
  border-collapse:  collapse;
  letter-spacing: 0.1em;
}
#price th,td {
  border: solid 1px #d5c8af;
  padding: 7px 5px;
}
#price .title_color{
  background-color: #b4a076;
  color: #fffdfc;
  text-align: center;
}
#price .text_width{
  max-width: 20%;
}
#price .text_width2{
  width: 60%;
}
@media screen and (max-width: 665px){
  #price th,td {
    padding: 5px 5px;
    font-size: 13px;
  }
}
#price p,#price table{
  max-width: 600px;
  margin: 0 auto;
}
#price .text_tac{
  text-align: center;
}


/* ----------------------------
option
----------------------------*/
#option h2{
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  margin-left: 0;
  padding: 0;
}
#option section{
  margin-bottom: 20px;
}
#option p{
  max-width: 70%;
  margin-left: 8px;
  margin-top: 8px;
}
#option dl{
  display:flex;
  justify-content: flex-start;
}
#option dl dt{
  margin: 6px;
}
#option dl dd{
  margin: 6px;
}
/* カメラの写真 */
#option .about_camera img{
  max-width: 200px;
  height: auto;
}
#option .about_camera{
  display: flex;
  justify-content: center;
}
/* ガッツポーズする人-footerにつける */
#option .human{
  max-width: 200px;
  position: absolute;
  bottom: 100%;
  right: 10%;
}
@media screen and (max-width: 730px){
  #option .about_camera{
    text-align: center;
    display: inline-block;
  }
  #option section{
    margin-bottom: 10px;
  }
  #option p{
    text-align: left;
    max-width: 100%;
    margin-top: 5px;
  }
  #option dl{
    display:flex;
  }
  #option dl dt{
    margin: 6px;
  }
  #option dl dd{
    margin: 6px;
  }
  #option .about_camera img{
    max-width: 100px;
    margin-bottom: 10px;
  }
  #option img.human{
    display: none;
  }
}

/* ----------------------------
PrivacyPolicy
----------------------------*/
#privacypolicy h2{
  margin: 0;
  padding-left: 0;
  padding-bottom: 15px;
}
#privacypolicy p{
  margin-bottom: 20px;
}


/* ----------------------------
footer
----------------------------*/
footer{
  height: 200px;
  background-color: #efc6a6;
  position: relative;
}
/* 足跡 */
footer .footer_print{
  position: absolute;
  max-height: 150px;
  left: 5%;
  top: -10%;
  z-index: 2;
}
/* 草 */
footer .footer_reaf{
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  z-index: 99;
}
/* 看板 */
footer .footer_signboard{
  position: absolute;
  bottom: 0;
  left: 5%;
}
footer img.footer_signboard{
  max-width: 38% !important;
}
footer .footer_list{
  position: absolute;
  left: 55%;
  top:8%;
  text-align: left;
}
footer .footer_list li{
  margin-bottom: 8px;
}
@media screen and (max-width: 800px){
  footer img.footer_signboard{
    max-width: 72% !important;
  }
  footer .footer_list{
    left: 65%;
    top:10%;
  }
  footer .footer_list li{
    font-size: 13px;
  }
}

