/*!
Theme Name: miya-rental-child
Template:miya-rental
Version: 1.0.0
*/

/**PCとスマホの表示切り替え**/
@media screen and (min-width: 1024px) {
  /* Tablet, PC */
  .sp {
    display: none !important;
  }
html {
    font-size: 87.5%;
  }
}
@media screen and (max-width: 1023px) {
  /* スマホ */
  .pc {
    display: none !important;
  }
html {
    font-size: 62.5%;
  }
} 
/* CSS Document */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: ＃F2F2F2;
}
.wrap {
     overflow: hidden;
 }
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
/* 英語タイトルへのフォント指定(Montserrat) */
.en-title-font {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
/* 緑字部分の色指定 */
.green-font-color {
  color: #009d8e;
font-weight: 600;
}
.green-font-size {
 font-size: 2rem;
}
.gray-font-color {
  color: #393737;
}
.yellow-font-color {
  color: #DCCB18;
}
.orange-font-color {
  color: #FF8C00;
}
img {
  width: 100%;
}
.center {
  text-align: center;
}
a {
  color: #DCCB18;
}
p {
	margin: 0;
}
.none {
	display: none;
}
/***Button***/
.btn-default {
  background-color: #fff;
  color: #009d8e;
  border: 1px solid #009d8e;
  padding: 10px 60px;
  border-radius: 10px;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
 a[href^="tel:"]{
    pointer-events: none;
  }
} 
/* 固定ページの不要な部分(ページタイトル・EDITリンク)を非表示 */
.entry-header, .entry-footer {
  display: none;
}
/*********** ヘッダー ***********/
#header-subttl {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
	margin-top: 30px;
}
 #header-logo {
      width: 55%;
      margin: 0 auto;
}
.adress {
  width: 180px;
  font-size: 1.1rem;
  align-self: center;
  margin-right: 20px;
}
.header-tel-btn {
  display: flex;
  align-self: center;
  width: 180px;
  height: 40px;
  line-height: 40px;
  margin-right: 40px;
background: #FFFFFF;
  text-align: center;
  border: 1px solid #FFFFFF;
  color: #FF8C00;
  font-size: 15px;
  font-weight: bold;
  padding: 5px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
box-shadow: 0px 0px 0px 2px #FF8C00;
  transition: all 0.5s ease;
}
#tel-icon {
 width: 25px;
 height: 25px;
 margin: 0 13px;
 align-self: center;
}
.header-tel-btn p {
  align-self: center;
}
.otoiawase-btn {
  align-self: center;
  width: 180px;
  height: 40px;
  line-height: 40px;
  letter-spacing: 2px;
	margin-right: 20px;
}
.otoiawase-btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #FF8C00;
  text-align: center;
  color: #FFFFFF;
  font-size: 15px;
  font-style: oblique;
  box-shadow: 3px 3px 0px 0px #BD6C2F;
}
.otoiawase-btn a:hover {
  background: #668AD8;
  color: #FFFFFF;
  margin-left: 3px;
  margin-top: 3px;
  box-shadow: none;
}
#header-nav-wrap {
  margin-top: 10px;
  background-color: #8F8F8F;
  border-top: 20px solid;
  border-top-color: #FF8C00;
}
#header-nav {
  widows: 1024px;
  text-align: center;
}
.header-nav-center {
  list-style: none;
  display: inline-block;
  width: 200px;
  text-align: center;
}
.header-nav-class {
  display: block;
  padding: 20px 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.header-nav-center a:hover {
  background-color: #FF8C00;
}
#sp-home-top-image {
	margin-top: -15px;
}
@media screen and (min-width: 1024px) {
#header-subttl {
  text-align: left;
  margin-left:20px;
	margin-bottom: -10px;
	margin-top: 20px;
}  
#header-wrap {
    display: flex;
    justify-content: flex-end;
  }
  #header-logo {
	width: 350px;
    margin-left: 20px;
    margin-right: auto;
  }
}
/*SP-nav-*/
#nav-drawer {
  order: 1;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 20%;
  height: auto;
}
input#nav-input {
  display: none;
}
#nav-open {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  right: 20%;
  top: 25px;
}
#hamburger {
  width: 65%;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out;
  background: rgba(0, 0, 0, 1)
}
#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.8;
}
/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 71%;
  max-width: 33rem;
  height: 100%;
  background-color: white;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}
.batsu {
  display: block;
  width: 45px; /*枠の大きさ*/
  height: 45px; /*枠の大きさ*/
  position: absolute;
  right: 15px;
  top: 20px;
}
.batsu::before, .batsu::after {
  content: "";
  display: block;
  width: 100%; /*バツ線の長さ*/
  height: 2px; /*バツ線の太さ*/
  background: black;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}
.batsu::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}
#sp-header-nav {
  display: grid;
  grid-template-rows: repeat(5, auto);
  margin-top: 80px;
}
.sp-header-nav-class {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  border-top: 1px solid #c0c0c0;
  position: relative;
}
.sp-header-nav-class:link, .sp-header-nav-class:visited, .sp-header-nav-class:hover, .sp-header-nav-class:active {
  color: black;
  text-decoration: none;
}
#sp-otoiawase {
  border-bottom: 1px solid #c0c0c0;
  background: linear-gradient(to right, #FF8C00, #ed6d35);
  text-align: center;
  padding-left: 0;
}
#sp-otoiawase > a {
  color: white;
  text-decoration: none;
}
.sp-header-nav-company-info-class {
  margin: 0 auto;
  text-align: center;
}
#sp-header-nav-company-info-logo > img {
  margin-top: 2rem;
  height: auto;
  width: 30%;
}
#sp-header-nav-company-info-text {
  font-size: 14px;
  line-height: 30px;
}
.sp-header-nav-arrow {
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: transparent transparent #565656 #565656;
  transform: rotate(-135deg);
  position: absolute;
  top: 40%;
  right: 10%;
}
/*slider*/
.slider{
	width: 100vw;
	height: 70vh;
	margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.main-image {
     position: absolute;
     z-index: 99;
}
.slider__content{
   min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
}
.slider__content:nth-child(1){
    animation: sliderAnime 6s ease-in-out infinite;
    z-index: 6;
}
.slider__content:nth-child(2){
    animation: sliderAnime2 6s ease-in-out 1s infinite;
    z-index: -1;
}
.slider__content:nth-child(3){
    animation: sliderAnime2 6s ease-in-out 3s infinite;
    z-index: -1;
}
@keyframes sliderAnime{
    0%{
        z-index: 5;
        transform: translateX(0);
    }
    16.6%{
        transform: translateX(0);
    }
    33.3%{
        transform: translateX(-100%);
    }
    50%{
        z-index: -1;
        transform: translateX(-100%);
    }
    66.6%{
        transform: translateX(100%);
    }
    83.2%{
        z-index: 5;
        transform: translateX(100%);
    }
    100%{
        z-index: 5;
        transform: translateX(0);
    }
}
@keyframes sliderAnime2{
    0%{
        z-index: 5;
        transform: translateX(100%);
    }
    16.6%{
        transform: translateX(0);
    }
    33.3%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(-100%);
    }
    66.6%{
        z-index: -1;
        transform: translateX(-100%);
    }
    83.2%{
        transform: translateX(100%);
    }
    100%{
        z-index: 5;
        transform: translateX(100%);
    }
 }
/*********** フッター-contact-***********/
#contact {
  background-color: #009d8e;
}
#contact-info {
  padding: 50px 0 0;
}
.btn-contact {
  background-color: #DCCB18;
  color: white;
	font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 2px;
}
.btn-contact-wrap a:hover{
background-color: white;
  color: #DCCB18;
}
#contact-info-title {
  font-weight: 600;
  font-size: 40px;
	color: white;
}
#contact p {
	color: white;
}
@media screen and (min-width: 1024px) {
  .btn-contact {
    margin: 30px 30px 50px;
    padding: 15px 40px;
    display: inline-block;
  }
}
@media screen and (max-width: 1023px) {
  .btn-contact {
    display: block;
    margin: 20px 20px 0;
    padding: 20px 0;
  }
  .btn-contact-wrap {
    padding-bottom: 50px;
  }
	#contact h1 {
		font-size: 25px;
	}
}
/*********** フッター-nav&copy-***********/
#footer-wrap {
  background-color: #8f8f8f;
}
#footer-nav {
	font-weight: bold;	
}
#copyright p {
  font-size: 15px;
  padding: 100px 0 30px;
}
@media screen and (min-width: 1024px) {
  #footer-nav {
    display: flex;
    justify-content: center;
    margin: 0;
    padding-top: 30px;
  }
  .footer-nav-class {
    margin: 0 30px;
  }
}
.footer-nav-class {
  color: black;
  text-decoration: none;
}
@media screen and (max-width: 1023px){
	#footer-nav {
	text-align: center;
		padding-top: 20px;
	}
	.footer-nav-class {
		line-height: 40px;
	}
	#copyright p {
    font-size: 7px;
    padding: 30px 0 20px;
	}
}

/********top-return-btn**********/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #3f98ef;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*********** ブログtop ***********/
@media screen and (min-width: 1024px) {
  #news {
    width: 1024px;
    margin: 100px auto;
  }
}
#news {
  margin: 40px auto 100px;
}
#news h1 {
  font-size: 30px;
}
#news-title {
  margin-left: 10px;
}
.news-list {
  list-style: none;
  margin: 20px 20px 40px 20px;
  padding: 0;
}
.news-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.news-list li .date {
  width: 85px;
  display: inline-block;
  margin-right: 10px;
  color: #888;
  vertical-align: top;
}
.news-list li .label-info {
  width: 65px;
  display: inline-block;
  margin-right: 10px;
  margin-top: -3px;
  background: #009d8e;
  font-size: 12px;
  text-align: center;
  padding: 3px 8px;
  color: #fff;
  vertical-align: top;
}
.news-list li a {
  color: #009d8e;
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
}
/*** SP***/
@media screen and (max-width: 1023px) {
  .news-list li a {
    width: 100%;
  }
	.news-list li .label-info {
  font-size: 9px;
	}
	.news-list li .date {
		width: 50px;
	}
}
/*********** ブログ個別投稿ページ ***********/
/*** Blog***/
.blog-title-article {

  font-size:25px;
  margin-top: 50px;
  margin-left: 50px;
}

.blog-wrap {
  margin: 0 50px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.blog-header {
  padding: 5px;
  border-bottom: 1px dotted #ccc;
  color: #888;
  font-size: 13px;
}
.blog-body {
margin: 50px 50px;
  padding: 10px 5px;
}

@media screen and (min-width: 1024px) {
#single-blog-wrap{
width: 980px;
margin: 0 auto;
}
}
/*** Page Navi***/

.page-navi{
margin: 50px 50px;
  display: flex;
  justify-content: space-between;
 }
#comment-container {
margin: 0 50px 50px;
}

/*********** ブログ投稿一覧ページ ***********/
.blog-title-index {
  margin-bottom: 0px;
  margin-left: 5px;
  font-size: 2em;
  color: #333;
}

.blog-title-category {
  font-size: 1.17em;
  font-weight: normal;
  color: #888;
}

.blog-footer {
  padding: 5px;
}
@media screen and (min-width: 1024px) {
#category-blog-wrap{
width: 980px;
margin: 0 auto;
}
}

/*********** メイン-strong point-***********/
hr {
background-color: #FF8C00;
height: 0.3rem;
width: 300px;
border-width: 0;
}
#strong {
 background-color: #F7E6CA;
}
#strong-wrap {
	margin: 0 auto;
	 padding: 100px 0;
}
#strong-title {
	color: #663D0F;
	text-align: center;
	margin-bottom: 20px;
}
#strong-contents {
text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 70px;
}
.strong-ttl-icon {
width: 90%;
}
.strong-box {
margin: 10px 0;
position:relative;
}
.strong-sentence {
font-size: 1.5rem;
font-weight:500;
}
@media screen and (min-width: 1024px) {
  #strong-wrap {
    width: 1024px;
  }
.strong-sub-ttl {
position:absolute;
margin-top:-120px;
margin-left: 75px;
}
.strong-sub-ttl2 {
margin-top:-140px;
margin-left: 10px;
}
.strong-icon2 {
 width: 80%;
margin:80px 0 50px;
}
}
@media screen and (max-width: 1023px) {
  #strong-contents {
    grid-template-columns: none;
  }
.strong-ttl-icon {
max-width: 200px;
}
.strong-sub-ttl{
margin-top:-80px;
}
.strong-sub-ttl2 {
margin-top:-90px;
}
.strong-icon {
width: 168px;
margin-top: 40px;
}
.strong-icon2 {
width: 150px;
margin-top: 40px;
}
	#strong-wrap {
    padding: 50px 0;
	}
	#strong-contents {
    margin-top: 30px;
	}
}
/*********** メイン-rental products-***********/
.products {
margin-top: 50px;
margin-bottom: 50px;
}
#products-sentence-wrap {
display: grid;
grid-template-columns: 40% 60%;
padding: 4rem 0 0;
}
.products-name h1{
font-size: 4rem;
}
.products-name h2{
font-size: 2rem;
margin-top:-3rem;
}
#products-image {
display:flex;
}
#products-image img {
width: 40%;
height: 100%;
margin: 0 auto;
}
#products-icon {
width: 370px;
margin: 0 auto;
}
.bleu-box{
display: inline-block;
background-color: #5B95AF; 
width: 140px;
color: white;
text-align: center;
padding: 10px;
font-size:1.3rem;
margin: 10px;
}
#left-wrap {
text-align: center;
}
#left-box {
background-color: #009d8e;
color: white; 
width: 210px;
margin: 0 auto 10px;
padding: 0.1px 0;
}
#left-box p {
	font-size:2.3rem;
	margin: 5px 0;
}
#photo {
position: relative;
width: 900px;
margin: 0 auto;
height:750px;
}
#photo_back {
position: absolute;
z-index: 1;
height:650px;
}
#photo_01 {
position: absolute;
z-index: 5;
width: 600px;
top: 125px;
left:-50px;
}
#photo_02 {
position: absolute;
z-index: 3;
width: 300px;
top: 50px;
right:-50px
}
#photo_03 {
position: absolute;
z-index: 4;
width: 300px;
top:-50px;
right:150px;
}
#photo_04 {
position: absolute;
z-index: 2;
width: 300px;
bottom: 50px;
right: 0;
}
#photo-text {
position: absolute;
z-index: 6;
right:50px;
top:250px;
font-size: 2.5rem;
font-weight: 600;
}
#line-up {
 width: 90%;
}
#line-up:hover { 
 opacity: 0.9; filter: brightness(90%);
 }
#right-wrap p {
	margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
.products {
width: 980px;
margin: 100px auto;
}
.bleu-box {
width: 180px;
}
#products-icon {
width: 900px;
}
#left-box {
width: 300px;
}
#line-up {
 width: 600px;
}
}
@media screen and (max-width: 1023px) {
#products-sentence-wrap { 
grid-template-columns: none;
}
#products-sentence-wrap {
max-width:550px;
margin: 0 auto;
}
#right-wrap {
	padding-left: 30px;
    padding-right: 30px;
	margin-top: 30px;
}
#photo {
width: auto;
height:600px;
}
#photo_back {
height: 500px;
}
#photo_01 {
width: 50%;
top: 170px;
left: 10%;
}
#photo_02 {
width: 35%;
top: 20px;
right: 10%;
}
#photo_03 {
width: 40%;
top: -10px;
left: 50px;
}
#photo_04 {
width: 45%;
bottom: 70px;
right: 5%;
}
#photo-text {
background-color: white;
width:200px;
padding-left:15px;
top: 35%;
left: 40%;
}
}
/*********** メイン-rental flow-***********/
.container {
	background: #FF8C00;
	margin: 100px auto 0;
}
#rental-flow {
  margin: 0 auto;
 padding: 0 10px 10px 10px;
}
#rental-flow-title {
  padding-top: 50px;
  color: white;
}
#rental-flow-contents {
  margin: 50px auto;
  background-color: white;
  padding: 10px;
	border-radius: 20px;
}
.rental-flow-box {
  display: flex;
  justyify-content: flex-start;
}
.rental-flow-images {
  width: 15%;
  margin-left: -20%;
}
.bg-title {
 font-size:2.5rem;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .container {
    width: 1024px;
  }
  #rental-flow {
    width: 900px;
  }
  #rental-flow-contents {
    width: 900px;
  }
  .rental-flow-box {
    margin: 5% 0 5% 30%;
  }
}
@media screen and (max-width: 1023px) {
  .rental-flow-box {
    margin: 5% 0 5% 20%;
  }
  #rental-flow h1 {
    font-size: 25px;
  }
	.bg-title {
		font-size: 1.7rem;
	}
}
/*********** メイン-zoom-***********/
#zoom {
	margin: 0 auto 100px; 
	padding: 0 10px;
}
@media screen and (min-width: 1024px) {
	#zoom {
	width:700px;
}
}
@media screen and (max-width: 1023px) {
	#zoom {
    margin: 40px auto;
    padding: 0px 50px;
	}
}
/*********** よくある質問-question-***********/
#question {
background-color: #f5f5f5;
padding: 50px 0;
}
.question-sub-ttl2{
font-size: 1.5rem;
} 
.question-text {
font-size: 1.5rem;
}
#question ul{
width: 340px;
margin: 0 auto 50px;
line-height:2.5rem;
}
@media screen and (max-width: 1023px) {
	#question ul {
    width: 260px;
    margin: 20px auto 50px;
	}
}
/*********** メイン-works-***********/
#works {
  background-image: url("https://miya-rental.com/wp-content/uploads/2021/04/top-works2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  #works-wrap {
    width: 900px;
    display: grid;
    grid-template-columns: 30% 70%;
  }
  #works-wrap img {
    padding: 50px;
  }
  #works-contents {
    padding: 100px 100px;
  }
  #works-contents h1 {
    font-size: 40px;
  }
}
#works-wrap {
  margin: 0 auto;
}
#works p {
  color: white;
  background-color: #009d8e;
  padding: 10px;
}
#works-btn {
	padding-top: 10px;
	margin-top: 30px;
}
@media screen and (max-width: 1023px) {
  #works-wrap {
    margin: 0 50px;
    padding: 50px 0;
  }
  #works-wrap img {
    width: 20%;
  }
  #works-btn {
    text-align: center;
  }
	#works h1 {
		font-size: 25px;
	}
}
/***********会社概要-company-***********/
.company-ttl{
  display: flex;
  align-items: center;
  padding: 50px 0;
  font-size: 2.5rem;
}
.company-ttl::before,.company-ttl::after {
  content: '';
  height: 3px;
  background-color: black;
  flex-grow: 1;
}
.company-ttl::before {
	margin-right: 30px;
}
.company-ttl::after {
	margin-left: 20px;
}
.company-wrap {
	background-image: url(https://rental.miya-works.co.jp/wp-content/uploads/2020/02/4f50ee8693b2f7f22763706dfcaffc24.png);
	background-size: cover;
	padding: 50px 0;
}
#company-history {
  background-color: #fef7be;
  margin: 5rem 0;
  padding: 50px 30px 30px 30px;
}
.company-history-line {
  width: auto;
  height: 1px;
  background-color: black;
}
#company-history-sentence-wrap {
  padding: 5% 10% 10% 10%;
}
.company-history-sentence {
  display: grid;
  grid-template-columns: 20% 80%;
  padding: 10px 20px;
}
#company-btn .btn2 {
  border: 1px solid black;
  color: black;
  margin: 30px auto;
}
#company-btn .btn2:hover {
  background-color: black;
  color: white;
}
.text-divider {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.text-divider::before, .text-divider::after {
  content: '';
  height: 3px;
  background-color: #fcef6b;
  flex-grow: 1;
}
.text-divider::before {
  margin-right: 30px;
}
.text-divider::after {
  margin-left: 20px;
}
#table-ttl {
	text-align: center;
}
table {
	margin: 50px auto 100px;
}
table td {
	padding: 10px 50px 10px 10px;
}
@media screen and (min-width: 1024px) {
  #company-history-sentence-wrap {
    width: 700px;
    margin: 0 auto;
  }
  #company-btn {
    width: 1024px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 50% 50%;
  }
	table {
	width: 50%;
}
	.company-wrap {
		width: 980px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 1023px) {
	.company-ttl {
    padding: 50px 0 0;
	}
	table {
    padding: 0 35px;
	}
}
/****ボタン-白抜き****/
.btn2 {
  display: table;
  position: relative;
  padding: 15px 30px;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid white;
  color: white;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.5s;
  font-size: 1.3rem;
  font-weight: 600;
}
.btn2::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}
.btn2:hover {
  border: 2px solid #3388dd;
  background-color: #3388dd;
  color: #fff;
}
/***********商品一覧-product-***********/
.product-name01 {
 font-size: 2.5rem;
} 
.product-name02 {
 font-size: 1.5rem;
} 
.product-line {
 width: 600px;
 margin: 0 auto 10px 0;
}
.product-box {
 padding-top: 100px;
}
.product-box ul {
 list-style: none;
 margin: 30px 0;
}
.product-box ul li {
 font-size: 1.5rem;
 margin-bottom: 10px;
}
.product-box ul li::before {
  content: '';
  display: inline-block;  
  width: 20px;
  height: 20px;
  background: #ff0000;
  position:  relative; 
  top: 2px;
  margin-right: 10px;
}
@media screen and (max-width: 1023px) {
	.product-box {
    padding-top: 50px;
	}
}
/*********お問合せ-contact_page*********/
.table-left {
  text-align: left;
}
.table-right {
  text-align: right;
}
.gray-back-color {
 background-color: #f5f5f5;
}
@media screen and (min-width: 1024px) {
.product-box {
 display: grid;
 grid-template-columns: 40% 60%;
 width: 1024px;
 margin: 50px auto 0;
}
#table-wrap {
 width: 1020px;
 margin: 0 auto 200px;
}
.product-table {
 width:650px; 
 margin: 0 0 0 auto;
}
}
@media screen and (max-width: 1023px) {
.product-photo {
 width:330px;
 margin: 0 auto;
}
.product-line {
 margin: 10px auto;
 width: 90%;
}
.product-name01 {
 text-align: center;
}
.product-name02 {
 text-align: center;
}
.product-box ul {
 width:375px;
 margin: 40px auto;
}
}

#form {
	background-color: whitesmoke;
}
.form-ttl {
	font-size: 3rem;
}
.form-ttl {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.form-ttl::before, .form-ttl::after {
  content: '';
  height: 2px;
  background-color:black;
  flex-grow: 1;
}
.form-ttl::before {
  margin-right: 30px;
}
.form-ttl::after {
  margin-left: 20px;
}

#form-wrap {
	padding-bottom: 10rem;
margin-left: 20px;
	
}
.form-name {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 5px;
	letter-spacing: 0.3rem;
}
.form-box {
margin-bottom: 20px;
}
.form-box2 {
margin: 20px auto;
color: white;
background-color: red;
padding: 10px 30px;
border-color: white;
border-radius: 5px;
}

.ns-box {
	width: 60%;
	text-align: center;
margin: 100px auto;
}
.ns-box p {
	font-size: 1.5rem;
}
.ns-sentence {
text-align: center;
margin: 100px 0;
}

@media screen and (min-width: 1024px){
#form-wrap {
width: 700px;
margin: 0 auto;
} 
.form-box {
width: 110%;
}
}
/*********オンライン相談-consultation_page*********/
#zoom_image {
	width: 350px;
	margin: 50px auto;
}
#zoom_nagare {
	font-size: 2rem;
	margin-top: 70px;
}
.zoom_nagare_ttl-wrap {
	display: flex;
}
.zoom_nagare_ttl-wrap img{
	width: 10rem;
	height: 3rem;
}
.zoom_nagare_ttl {
	margin-left: 10px;
	font-size: 1.8rem;
}
.zoom_nagare_box {
	margin: 50px 0;
	padding: 0 20px;
}
.side {
	padding: 0 20px;
}
.zoom_nagare_line {
	border-top: 1px dashed #bbb;
	background-color: #fff;
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.zoom_nagare_box {
		width: 900px;
		margin: 100px auto;
	}
}