@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');


/* 共通部分 */
html{
  font-size:100%;
} 
body{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  line-height: 1.7;
  color: rgb(5, 5, 5);
  margin: 0;
  width: 100vw;
  height: 100vh;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}
a{
  text-decoration: none;
}

b{
  font-size: 1.3em;
}
img{
  width: 100%;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/*　大きな背景画像　*/
.big-bg{
  background-size: cover;
  background-position: center top;
}
  /*　見出し */
  .page-title{
    font-size: 2.0rem;
    font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
    text-transform: capitalize;
    font-weight: normal;position: relative;
    padding: .3em;
  }

  h2.page-title{
    line-height: 1.0;
  }
 
  .page-title:after {
    content: "";
    display: block;
    height: 10px;
    background: linear-gradient(to right, rgb(243 91 3 / 65%), transparent);
    }

  .sub-title{
    font-size: 1.375rem;
    padding: 0 8px 8px;
    border-bottom: 2px rgb(125, 221, 0) solid;
    font-weight: normal;
  }

  /* alide */
  .slide-container {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: row;
}
.slide-wrapper {
  display: flex;
  flex-direction: row;
  animation: slide-flow 60s infinite linear 1s both;
}
.slide{
  width: 400px;
  object-fit:cover;
}

@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}

img{
  border-style: none;
  width: 100%;
}

    .msg{
      font-size: 80px;
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50% , -50%);
   }
   .msg-01 {
       text-shadow: 2px 2px 3px #000, -1px -1px 3px #000;
   }

   .slide-paused:hover .slide-wrapper {
    animation-play-state: paused;
  }
  .slide-paused:hover .slide-wrapper img:hover {
    opacity: .8;
    cursor: grabbing;
  }
 
  /*　ボタン　*/
  .button{
    font-size: 1.6rem;
    background: orangered;
    color: white;
    border-radius: 100px;
    /*padding: 20px 30px;*/
    display:block;
    width: 300px;
  margin:0 auto;
  text-align: center;
  }

  .button:hover{
    background: #6eb41e;
  }

  .button::before {
    font-family: 'Material Icons';
    content: "\e913";
    color:white;
    font-size: 3.0rem;
  }

  
  /*.button::after {
    font-family: 'Material Icons';
    content: "\ebb9";
    color:white;
    font-size: 3.0rem;
  }*/



  /* iframe */
iframe{
  width: 100%;
}
  

/* header */
.page-header{
  display: flex;
  flex-direction:column
}

.logo{
  width: 150px;
}

.main-nav{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  display: flex;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-top: 8px;
  list-style: none;
}
.main-nav li{
  margin-left: 36px;
}

.main-nav a{
  color: #432;
}

.main-nav a:hover{
  color: #6eb41e;
}

input[type=checkbox] {
  display: none;   
}

.grid5{
  display: flex;
  gap: 50px;
  /* grid-template-columns: repeat(auto-fit,minmax(240px,1fr));*/
  /* margin-bottom: 10px; */
  /* justify-items: end; */
  /* width: 60%; */
  align-items: center;
}

  /* HOME
  --------------------------------------*/
  #home{
    background-image: url(./.png);
    background-blend-mode: luminosity;
  }

  #home .page-title{
    text-transform: none;
    line-height: 2;
  }

  .home-content{
    text-align: center;
    margin-top: 1%;
  }

  .home-content p{
    font-size: 4.0rem;
    margin: 20px 0 42px;
  }
  .under-content{
    margin-top: 1%;
    margin-bottom: 2%;
    /* margin-right: 20%; */
    /* margin-left:20%; */
    font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
    text-transform: uppercase;
    font-weight: normal;
  }
  .under-content h1{
    font-size: 2.0rem;
    font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
    text-align: center;
  }
  .under-content h2{
    font-size: 1.5rem;
    font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  }

  .under-content p{
    font-size: 1.2rem;
    margin: 1px 0 0;
  }

  .uc img{
    width:5%
  }
  .main-title img{
    width: 100%;
    height: 90%;
    text-align: center;
  }

  .comment img{
    width: 60%;
    height: 60%;
    text-align: center;
  }

  .even img{
    width: 60%;
    height: 60%;
    text-align: center;
  }

  .grid3 {
    display: flex;
    gap: 100px;
    margin-top: 3%;
    margin-bottom: 100px;
    justify-items: center;
    margin-bottom: 20px;
    /* flex-direction: row-reverse; */
    justify-content: center;
}
  
  .breadcrumb {
  margin: 0;
  padding-bottom: 20px;
  margin-left: 20%;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* ▶を表示*/
  content: ">";
  padding: 0 0.2em;
  color: silver;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.record-content{
  max-width: 1000px;
  margin-top: 0;
}
.record-title{
  font-size: 2.0rem;
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  text-transform: capitalize;
  font-weight: normal;position: relative;
  padding: .3em;
}

.grid7{
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  margin-bottom: 10px;
}

  /*買取エリア*/
.cp_h1-1title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-1title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '兵庫県南部';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}
.cp_h1-2title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-2title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '兵庫県中部';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}
.cp_h1-3title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-3title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '兵庫県北部';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}
.cp_h1-4title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-4title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '岡山県';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}
.cp_h1-5title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-5title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '鳥取県';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}
.cp_h1-6title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-6title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '京都府北部';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}

.cp_h1-7title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  border: 3px solid #6eb41e;
  border-radius: 0 10px 10px 10px;
}
.cp_h1-7title::before {
	font-size: 15px;
  font-size: 1.15rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '福井県西部';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #6eb41e;
}

.cp_h10title {
	padding: .3em;
  font-size: 2.0rem;
}
.cp_h10title::after {
	font-family: 'Material Icons';
  content: "\e811";
  color:#f71809;
 /* font-size: 3rem; */
}
.cp_h11title {
	padding: 0.2em;
}
.cp_h11title::before {
	font-family: 'Material Icons';
  content: "\e813";
  color:#6eb41e;
  font-size: 1.6rem;
}

 /* NEWS
-------------------------*/
#news{
  background-image: url(./);
}
#news .page-title{
 /* text-align: center; */
 line-height: 1.0;
} 
.news-contents{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.blog-image img{
  width: 60%;
}

/* 記事部分 */
article{
  width: 60%;
}
.post-info{
  position: relative;
  padding-top: 4px;
  margin-bottom: 40px;
}

.post-date{
  background: rgb(243, 91, 3);
  border-radius: 50%;
  color: #fff;
  width: 70px;
  height: 70px;
  font-size: 1.0rem;
  text-align: center;
  position: absolute;
  top: 0;
  padding-top: 5px;
}

.post-date span{
  font-size: 1rem;
  border-top: 1px rgba(255,255,255,.5) solid;
  padding-top: 6px;
  display: block;
  width: 60%;
  margin: 0 auto;
}

.post-title{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
}

.post-title,
.post-cat{
  margin-left: 120px;
}

article img{
  margin-bottom: 20px;
}

article p{
  margin-bottom: 1rem;
}
/* サイドバー */
aside{
  width: 30%;
}

.sub-menu{
  margin-bottom: 60px;
  list-style: none;
}

.sub-menu li{
  border-bottom: 1px #ddd solid;
}

.sub-menu a{
  color: #432;
  padding: 10px;
  display: block;
}

.sub-menu a:hover{
  color: #0bd;
}
aside p{
  padding: 12px 10px; 
}
/* SERVICE
------------------------------- */
#service {
  background-image: url(./);
  min-height: 0vh;
}

.service-content{
  max-width: 1000px;
  margin-top: 0%;
}

/*.service-content .page-title{
  text-align: center;
}*/

.service-content p{
  font-size: 0.8rem;
  margin: 1px 0 0;
}

.item a{
  color: #432;
}

.item a:hover{
  color: #6eb41e;
}

.grid{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
}

.grid4{
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  margin-top: 10%;
  margin-bottom: 10px;
}

.shop-name {
  font-size: 3.0rem;
  text-align: center;
}

.cp_h1title {
	padding: .3em;
}
.cp_h1title::before {
	font-family: 'Material Icons';
  content: "\002713";
  color:red;
  font-size: 3rem;
}

.cp_h2title {
	position: relative;
  padding: 1rem 2rem;
  text-align: center;
  color: #0075a9;
  border-radius: 0 10px 10px 10px;
  background: #d8ecf5;
}
.cp_h2title::before {
	font-family: 'Font Awesome 5 Free';
  font-size: 15px;
  font-size: 1.0rem;
  position: absolute;
  top: -24px;
  left: 0;
  height: 24px;
  padding: 0 1em;
  content: '\f0a4  POINT';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #0075a9;
}

.cp_h3title {
  position: relative;
  padding: 0 2em;
  text-align: center;
}

/*.cp_h3title:before,
.cp_h3title:after {
  font-family: 'Font Awesome 5 Free';
  line-height: 1;
  position: absolute;
  top: calc(50% - .5em);
  color: #eb6100;
}

.cp_h3title:before {
  left: 0;
  content: '\f101';
}

.cp_h3title:after {
  right: 0;
  content: '\f100';
}*/


.cp_h12title {
  position: relative;
  padding-left: 5em;
}

.cp_h12title span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1.0rem;
  color: #fff;
  border-radius: 5px;
  background: goldenrod;
}

.cp_h12title span i {
  margin-right: 1rem;
}

 /*span:after {
  position: absolute;
  top: calc(50% - 7px);
  right: -11px;
  width: 0;
  height: 0;
  content: '';
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent goldenrod;
}*/

.cp_h18title img {
	width: 30px;
}

.sale{
  font-size: 2.0rem;
}

.top-tel {
  font-size: 3.0rem;
}
.top-tel::before {
	font-family: 'Material Icons';
  content: "\e0b0";
  color:red;
  font-size: 2.0rem;
}

a {
  color: black;
  text-decoration: none;
}

.tel {
  font-size: 1.3rem;
}

/*url(./.png)*/
/*content: '\002713';/*チェックマーク*/
/*content: '\00266b';音符*/
/*content: '\002665';ハート*/
/*content: '\00272a';丸囲み星*/
/*content: '\002731';アスタリスク*/
/*content: '\002606';白抜き星*/
/*content: '\002619';葉っぱ*/
/*content: '\025b6';右向きのサンカク*/
/*content: '\025b7';白抜き右向きのサンカク*/
/*content: '\025c6';ひし形*/
/*content: '\025c7';白抜きひし形*/
/*content: '\02749';丸いアスタリスク*/
/*content: '\02668';温泉マーク*/
/*content: '\f0a4';指さしマーク*/

.info-content dt{
  padding-top: 1px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 4px;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(255,0,0);
  line-height:0.9;
  font-size: 1.5rem;
}

.service-title img{
  width:50px
}

/* CONTACT
--------------------------------*/
#contact{
  background-image: url(./.png);
  background-blend-mode: luminosity;
  min-height: 30vh;
}

.telephone {
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  font-size: 1.375rem;
}

.e-mail{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  font-size: 1.375rem;
}

/*.contact .page-title{
  text-align: center;
}*/

/* 会社情報・地図 */
/*.info-content .page-title{
  text-align: center;
}*/

/* #location{
  padding: 4% 0;
} */

#location .wrapper{
  display: flex;
  justify-content: space-between;
}

.location-info{
  width: 100%;
}

.location-info dd{
  padding: 12px 10px;
  font-size: 1.5rem;
}

.location-map{
  width: 40%;
}


/* SNS */
#sns{
  background: #FAF7F0;
  padding:4% 0;
}

#sns .wrapper{
  display: flex;
  justify-content: space-between;
}

#sns .sub-title{
  margin-bottom: 30px;
}

.sns-title{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  font-size: 1.375rem;
}

.line_btn{
  color: #69e404;
  padding: 0px 0px 0px 15px;
  display: flex;
  justify-content:space-around;
}

.twitter_btn{
  color: #0bd;
  padding: 0px 0px 0px 8px;
}

.insta_btn{
  color: rgb(250, 10, 210);
  padding: 0px 0px 0px 8px;
}

.name{
  padding-left: 500px;
}

/* フッター
-------------------------------*/
footer{
background: rgb(248, 80, 2);
text-align: center;
padding: 10px 0px 20px 0px;
}
footer p{
  color: #fff;
  font-size: 0.875rem;
}

footer a {
  color: #ddd;
  font-size: 0.875rem;
}

/* policy */
#policy{
  background-image: url(./);
  background-blend-mode: luminosity;
  min-height: 65vh;
}

.policy-content{
  margin-top: 5%;
}

.policy-content p{
  font-size: 1.0321rem;
  margin: 4px 0;
}

/*.policy-content .page-title{
  text-align: center;
}*/

.voice{
  color: rgba(255, 115, 0, 0.925);
}

.voices img{
  max-width: 60px;
}

.cp_h20title {
	position: relative;
  padding: 0.5rem 0.5rem;
  text-align: center;
  border-radius: 0 10px 10px 10px;
  border: 3px solid rgba(255, 115, 0, 0.925);
}
.cp_h20title::before {
	font-family: 'Font Awesome 5 Free' ;
  font-size: 15px;
  font-size: 1.0rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: "神崎郡 70代男性";
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 115, 0, 0.925);
}

.cp_h21title {
	position: relative;
  padding: 0.5rem 0.5rem;
  text-align: center;
  border-radius: 0 10px 10px 10px;
  border: 3px solid rgba(255, 115, 0, 0.925);
}
.cp_h21title::before {
	font-family: 'Font Awesome 5 Free';
  font-size: 15px;
  font-size: 1.0rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '宍粟市 40代女性';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 115, 0, 0.925);
}

.cp_h22title {
	position: relative;
  padding: 0.5rem 0.5rem;
  text-align: center;
  border-radius: 0 10px 10px 10px;
  border: 3px solid rgba(255, 115, 0, 0.925);

}
.cp_h22title::before {
	font-family: 'Font Awesome 5 Free';
  font-size: 15px;
  font-size: 1.0rem;
  position: absolute;
  top: -24px;
  left: -3px;
  height: 24px;
  padding: 0 1em;
  content: '姫路市 60代女性';
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: rgba(255, 115, 0, 0.925);
}


/* workshop */
#workshop{
  background-image: url();
  min-height: 30vh;
}

/*.workshop-content .page-title{
  text-align: center;
}*/

.workshop-content{
  max-width: 1000px;
  margin-top: 0%;
  text-align: center;
}

.workshop-content p{
  font-size: 1.5rem;
  margin: 50px 0 0;
}

.item p{
  font-size: 2.0rem;
}

/* pagetopbtn */
#page_top{
  width: 80px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}
#page_top a{
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 30px;
  color: rgb(248,80,2);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'TOP';
  font-size: 18px;
  color: white;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* 電話ボタン　*/
a#tel {
  position: fixed;
  width: 320px;
  height: 60px;
  text-align: center;
  line-height: 50px;
  left:2%;
  bottom: 10px;
  display: block;
  background: rgb(243 91 3 / 90%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size:23px;
  /* border-radius: 10px; */
  border-style: solid;
}

a#tel:hover{
  background: #6eb41e;
}

#tel::before {
  font-family: 'Material Icons';
  content: "\e913";
  color:white;
  font-size: 23px;
}

.phone-button{
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  font-size: 2.3rem;
  background: red;
  color: white;
  border-radius: 100px;
  /*padding: 20px 30px;*/
  display:block;
  width: 300px;
margin:0 auto;
text-align: center;
}

.phone-button:hover{
  background: #6eb41e;
}

.tele {
  font-size: 1.8rem;
}

.tele::before {
  font-family: 'Material Icons';
  content: "\e913";
  color:white;
  font-size: 3.0rem;
}


/* leader */
/*.leader-content .page-title{
  text-align: center;
  font-size:3.5rem;
}*/

/* knowhow */
#knowhow{
  background-image: url();
} 

/*.knowhow-content .page-title{
  text-align: center;
}*/

.knowhow-content{
  max-width: 1000px;
  margin-top: 0%;
}

.item p{
  font-size: 2.0rem;
}

.grid2{
  display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    margin-bottom: 10px;
    font-size: 1.3rem;
    justify-items: center;
    align-items: center;
}

.cp_h13title {
	padding: 0.2em;
}
.cp_h13title::before {
	font-family: 'Material Icons';
  content: "\e0b0";
  color:#6eb41e;
  font-size: 2.0rem;
}

.cp_h14title {
	padding: 0.2em;
}
.cp_h14title::before {
	font-family: 'Material Icons';
  content: "\f0e2";
  color:#6eb41e;
  font-size: 2.0rem;
}

.cp_h15title {
	padding: 0.2em;
}
.cp_h15title::before {
	font-family: 'Material Icons';
  content: "\ef4e";
  color:#6eb41e;
  font-size: 2.0rem;
}

.cp_h16title {
	padding: 0.2em;
}
.cp_h16title::before {
	font-family: 'Material Icons';
  content: "\f8ec";
  color:#6eb41e;
  font-size: 2.0rem;
}

.cp_h17title {
	padding: 0.2em;
}
.cp_h17title::before {
	font-family: 'Material Icons';
  content: "\ebcb";
  color:#6eb41e;
  font-size: 2.0rem;
}

.grid6{
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  margin-bottom: 10px;
}

/* サイトマップ */
/*.sitemap .page-title{
  text-align: center;
}*/

.sitemap a{
  font-size: 1.0rem;
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


/* モバイル版
---------------------------------*/
@media (max-width: 480px) {
  .page-title {
      font-size: 1.6rem;
  }
  .page-header {
    align-items: flex-start;
    display: flex;
  }
  .grid5{
    display: flex;
    gap: 0px;
  /* grid-template-columns: repeat(auto-fit,minmax(240px,1fr));*/
  /* margin-bottom: 10px; */
  /* justify-items: end; */
  /* width: 60%; */
  align-items: center;
  }
  /* HEADER */
  .main-nav {
      font-size: 1.0rem;
      padding-left: 1px;
  }
  .main-nav ul li {
    margin-left: 0.5px;
  }

  .main-nav ul li a{
    font-size: 1.0rem;
    padding-left: 1px;
  }

  .logo{
    margin-right: 20px;
  }

  @keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  @-webkit-keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  #overlay-button {
    position: absolute;
    right: 0.5em;
    top: 1em;
    padding: 26px 11px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
  }
  #overlay-button span {
    height: 4px;
    width: 30px;
    border-radius: 2px;
    background-color: black;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }
  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 10px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 4px;
    width: 30px;
    border-radius: 2px;
    background-color: black;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: black;
  }
  
  input[type=checkbox] {
    display: none; 
    
  }
  
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible; 
  }
  
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
    
    
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  #overlay {
    height: 100vh;
    width: 100vw;
    background: white;
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }
  
  #overlay ul {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type: none;
    margin-top: 20%;
  }
  #overlay ul li {
    padding: 0.5em;
  }
  #overlay ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.0em;
  }
  #overlay ul li a:hover {
    color: white!important;
  }

 
  /* HOME */
  .home-content {
      margin-top: 10px;
  }
  
  .img-frame{
    position: relative;
    width:250px;
    height: 260px;
    overflow: hidden;
    margin: 0 auto;
    }

    .img-02{
      background-image: url(/.png);
      animation: slide-animation-02 40s infinite;
      top: 20%;
      }

    .img-01, .img-02, .img-03,.img-04,.img-05{
    position: absolute;
    top:20px;
    left:0;
    width: 100%;
    height: 70%;
    background-size: cover;
    background-repeat: no-repeat;
    }

    .msg{
      font-size: 20px;
   }

   .grid3 {
    display: flex;
    gap: 30px;
    margin-top: 3%;
    justify-items: center;
    margin-bottom: 20px;
    flex-direction: column;
}

  /* NEWS */
  .news-contents {
      flex-direction: column;
 }

 .news-content {
  margin-top: 10px;
 }

  #news .page-title {
      margin-top: 10px;
  }
  article,
  aside {
      width: 100%;
  }
  aside {
      margin-top: 60px;
  }
  .post-info {
      margin-bottom: 30px;
  }
  .post-date {
      width: 70px;
      height: 70px;
      font-size: 1rem;
  }
  .post-date span {
      font-size: 0.875rem;
      padding-top: 2px;
  }
  .post-title {
      font-size: 1.375rem;
  }
  .post-cat {
      font-size: 0.875rem;
      margin-top: 10px;
  }
  .post-title,
  .post-cat {
      margin-left: 80px;
  }

  /* SERVICE */
  .service-content {
    margin-top: 10px;
  }

  .blog-image img{
    width: 100%;
  }

  /* leader */
.leader-content .page-title{
  /*text-align: center;*/
  font-size:1.5rem;
}

/* policy */
.policy-content{
  margin-top: 3%;
}

.policy{
  font-size: 2.5rem;
  font-family: 'Ubuntu Mono', "mplus-1p-regular",monospace, sans-serif;
  text-transform: uppercase;
  font-weight: normal;
}

.policy-content p{
  font-size: 1.5rem;
  margin: 10px 0;
}

/*.policy-content .page-title{
  text-align: center;
}*/

/* contact */
.contact {
  margin-top: 10px;
}

/* 店舗情報・地図 */
#location .wrapper,
#SNS .wrapper {
  flex-direction: column;
}
.location-info,
.location-map,
.sns-box {
  width: 100%;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer{
  background: rgb(248, 80, 2);
  text-align: center;
  padding: 10px 0px 80px 0px;
  }
}

@media screen and (min-width: 768px) {
  a#tel {
    display: none;
  }
  }
  @media screen and (min-width:960px) {
  a#tel {
    display: none;
  }
  }