@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*--------------------------------------------------------------------------------------------*/
body {
    background-image: none !important;
}
/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* テーマのフッターを非表示にする */
#footer {
  display:none;
}

/* 全体のスタイル */
.container {
	padding: 0px;
}

.content {
    margin-top: -15px;
}

nav ul li {
    margin: 15px 15px !important;
}

.wrap {
	width: 100%;
}
.main {
	padding:unset;
	border:unset;
}

body {
    /* font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0; */
    width: 100%;
    height: 100vh;
}

/* ヘッダー */
header {
  background: none;
  padding: unset;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* メインコンテンツ */
.Bock__Home_Top {
    padding: 20px;
    /* background-color: #fff; */
    margin: auto;
    /* max-width: 800px; */
    /* background: url(./img/img__top_background.jpg)no-repeat; */
    background: url(http://cleanness-pro.com/wp-content/uploads/2024/10/img__top_background-scaled.jpg)no-repeat;
    background-size: cover;
}

/* セクション */
section {
    margin-bottom: unset !important;
}

h2 {
    color: #333;
    margin-bottom: 10px;
    background-color: unset !important;
}

/* -------------------------------------------- */
/* Home Box */
.Block__Home__box {
    text-align: center;
    width: 520px;
    height: 350px;
    margin: 13% auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: relative;
    opacity: 0;
    transform: translateY(20px); /* 下に隠しておく */
    transition: opacity 0.6s ease, transform 0.6s ease, backdrop-filter 0.6s ease; /* アニメーション */
    /* transition: .4s; */
    font-family: 游明朝, YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    -webkit-backdrop-filter: blur(0px); /* iPhone Safari表示用 */
	backdrop-filter: blur(0px); /* 初期状態ではぼかしなし */
}
/* 表示状態のスタイル */
.Block__Home__box.show {
	opacity: 1;                   /* 要素を完全に表示 */
	transform: translateY(0);      /* 元の位置に戻す */
	-webkit-backdrop-filter: blur(10px); /* iPhone Safari表示用 */
	backdrop-filter: blur(10px);   /* すりガラスのようなぼかし効果を適用 */
}
	
.Block__Home__box::before {
    content: "";
    width: 50px;
    height: 50px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
    position: absolute;
    top: -1px;
    left: -1px;
    transition: .4s;
    transition-delay: .5s;
}
.Block__Home__box::after {
    content: "";
    width: 50px;
    height: 50px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
    position: absolute;
    bottom: -1px;
    right: -1px;
    transition: .4s;
    transition-delay: .5s;
}
.Block__Home__box:hover:before,
.Block__Home__box:hover::after {
    width: 100%;
    height: 100%;
    border-color:rgba(255,255,255,0.3);
    transition-delay: 0s;
}
.Block__Home__box:hover {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(15px); /* iPhone Safari表示用 */
	backdrop-filter: blur(15px);
    transition-delay: .3s;
}

/* -------------------------------------------- */
/* Home Button Service More */
.Button__Home_More {
    text-align: center;
    padding-top: 16rem;
    margin: auto;
    width: 20em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: relative;
  }
  .Button__Home_More {
    padding: 8px 80px;
    border-radius: 50px;
    background-image: linear-gradient(
      130deg,
      rgb(0, 119, 255),
      rgba(191, 233, 255, 1)
    );
    background-size: 200% 100%;
    transition: all 0.5s;
  }
  .Button__Home_More span {
    display: inline-block;
    font-family: Oswald;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.25s;
  }
  .Button__Home_More::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    transition: 0.2s;
  }
  .Button__Home_More:hover {
    background-position: 100% 0;
  }
  .Button__Home_More:hover::after {
    right: 15px;
  }
  .Button__Home_More:hover span {
    transform: scale(1.1);
  }

/* メニューの最後の項目に対するセレクタ */
  /* li:last-child {
    display: inline-block;
    background: #1b3475;
    font-size: 0.9rem;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
} */

/* li:last-child a{
    text-decoration: none !important;
} */

/* =============================================
カードのCSSはここから
============================================= */
/* 共通CSS */
.container {
    width: 100%;
/*     padding: 10rem 1rem; */
  }
  
  ul.item {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
  }
  
  li.list {
    width: 33.3%;
    min-height: 380px;
    margin-right: 2rem;
	
  }
  
  li.list:last-child {
    margin-right: 0;
  }
  
  div.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  h3.title {
    font-weight: bold;
    font-size: 20px;
	border: unset;
  }
  
  p.content {
    line-height: 1.6;
    color: #333;
  }

/* ------------------------------------------------------------------ */
/* サービス内容 */
  .service {
    /* background: url(./img/bg.png); */
    background: url(http://cleanness-pro.com/wp-content/uploads/2024/10/bg.png);
    background-size: 100%;
	padding: 80px 6px;
  }
  .service_Title {
    text-align: center;
  }
  .service_Title h2{
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
/*     margin: 2.5rem; */
  }
 
  .service_Title h2::before{
    font-size: 48px;
    font-weight: normal;
    color: #e3e9f3;
    font-family: "Allura", cursive;
    z-index: -1;
  }

  .service_Title h2::before {
    content: "Service";
    position: absolute;
    top: -40px;
    left: 0;
    transform: rotate(-15deg);
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .service_Title h2::after {
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;

    content: "";
    width: 50px;
    height: 1px;
    background: #6b6cac;
    position: absolute;
    bottom: -20px;
    left: 0;
  }

  li.list {
    display: flex;
    flex-direction: column;
    min-height: 380px;
    background: #fff;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: unset;
    padding-bottom: 1em;
    font-weight: normal;
    font-size: 0.9rem;
	margin-bottom: 2em;
  }
  
  li.list div.image {
    width: 100%;
    height: 220px;
  }
  
  h3.title {
    padding: 1rem 1rem 0.5rem;
    text-decoration: none !important;
  }
  
  p.content {
    padding: 1rem;
    }

  .number {
    background-color: #3eb9b9;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -35px;
    margin-bottom: -50px;
    padding: 0;
    top: 0px;
    left: -25px;
  }
  
  li a.btn {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border-radius: 30px;
    padding: 6px 18px;
    color: #fff;
    background: #6c76d1;
    margin: auto auto 1.5rem auto;
    border: 2px solid #6c76d1;
    transition: 0.2s;
  }
  
  li a.btn:hover {
    color: #333;
    background: #fff;
  }



/* -------------------------------------------------------------------- */
/* 作業料金例 */
div.PriceList_Title h2 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

div.PriceList_Title h2::before {
  font-size: 48px;
  font-weight: normal;
  color: #d5e1eb;
  font-family: "Allura", cursive;
  z-index: -1;
}

div.PriceList_Title h2::after {
  content: "";
  width: 50px;
  height: 1px;
  background: #d5e1eb;
  position: absolute;
  bottom: -20px;
  left: 0;
}

section.PriceList div.PriceList_Title {
  text-align: center;
}

section.PriceList div.PriceList_Title h2 {
  display: inline-block;
}

section.PriceList div.PriceList_Title h2::after {
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

section.PriceList div.PriceList_Title h2::before {
  content: "Price";
  position: absolute;
  top: -35px;
  left: 0;
  transform: rotate(-15deg);
}

section.PriceList {
  padding: 80px 16px;
}

section.PriceList .table01 {
  max-width: 720px;
  width: 100%;
  margin: 64px auto 0;
}

section.PriceList .table01 th,
section.PriceList .table01 td {
  padding: 16px;
  border-right: 1px solid #fff;
  vertical-align: middle;
}

section.PriceList .table01 th:last-child,
section.PriceList .table01 td:last-child {
  border-right: 0;
}

section.PriceList .table01 thead tr {
  background: #9fc3e0;
  color: #fff;
}

section.PriceList .table01 thead th {
	background: #9fc3e0;
	text-align: center;
}

section.PriceList .table01 tbody tr {
  border-bottom: 1px solid #fff;
  background: #FAF7F5;
}

section.PriceList .table01 tbody tr:last-child {
  border: none;
}

section.PriceList .table01 tbody th {
  width: 25%;
}

section.PriceList .table01 tbody .price {
  width: 25%;
  text-align: right;
  font-weight: bold;
  font-size: 20px;
}

/* ------------------------------------------------------------------ */
/* お申し込みの流れ */
/* .flow-container {
    background: url(./img/bg.png);
  } */
  .flow-container_Title {
    text-align: center;
  }
  .flow-container_Title h2{
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    margin: 2.5rem;
  }
 
  .flow-container_Title h2::before{
    font-size: 48px;
    font-weight: normal;
    color: #e3e9f3;
    font-family: "Allura", cursive;
    z-index: -1;
  }

  .flow-container_Title h2::before {
    content: "AppFlow";
    position: absolute;
    top: -40px;
    left: 0;
    transform: rotate(-15deg);
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .flow-container_Title h2::after {
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;

    content: "";
    width: 50px;
    height: 1px;
    background: #6b6cac;
    position: absolute;
    bottom: -20px;
    left: 0;
  }

  section.flow {
    background: #f3fcfd;
    padding: 104px 16px;
  }
  
  section.flow ul.item {
    margin-top: 64px;
  }
  
  section.flow ul.item li.list {
    position: relative;
  }
  
  section.flow div.image {
    width: 100%;
    height: 230px;
  }
  
  section.flow h3.title {
    color: #333;
    text-align: center;
    padding: 16px 0;
  }
  
  section.flow .number {
    background-color: #8dd8d8;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -35px;
    margin-bottom: -50px;
    padding: 0;
    top: 0px;
    left: -25px;
  }
  
/* ------------------------------------------------------------------ */
/* FAQ */
  .faq-container {
    /* background: url(./img/bg.png); */
    background: url(http://cleanness-pro.com/wp-content/uploads/2024/10/bg.png);
  }
  .faq-container_Title {
    text-align: center;
  }
  .faq-container_Title h2{
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    margin: 2.5rem;
  }
 
  .faq-container_Title h2::before{
    font-size: 48px;
    font-weight: normal;
    color: #e3e9f3;
    font-family: "Allura", cursive;
    z-index: -1;
  }

  .faq-container_Title h2::before {
    content: "Questions";
    position: absolute;
    top: -40px;
    left: 0;
    transform: rotate(-15deg);
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .faq-container_Title h2::after {
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;

    content: "";
    width: 50px;
    height: 1px;
    background: #6b6cac;
    position: absolute;
    bottom: -20px;
    left: 0;
  }

  section.faq {
    padding: 80px 16px;
  }
  
  section.faq div.faq-container {
    max-width: 720px;
    margin: 64px auto 0;
  }
  
  section.faq details:not(:last-child) {
    margin-bottom: 16px;
  }
  
  section.faq summary {
    display: block;
  }
  
  section.faq summary::-webkit-details-marker {
    display: none;
  }
  
  section.faq .summary-inner {
    display: block;
    cursor: pointer;
    padding: 16px 24px;
    font-weight: bold;
    color: #fff;
    background: #859be4;
    width: 100%;
  }
  
  section.faq div.content {
    border: solid 16px #FDC2B6;
    padding: 16px;
    line-height: 1.5;
  }
  
  section.faq span.title-alphabet {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    margin-right: 8px;
  }
  
  section.faq div.content span.title-alphabet {
    color: #FDC2B6;
  }
  
/* ------------------------------------------------------------------ */
/* お見積りボタン */
  .Button__AppFlow {
    display: block;
    text-align: center;
    padding-top: 16rem;
    margin: 40px auto 0;
    width: 25em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: relative;
  }
  .Button__AppFlow {
    padding: 18px 80px;
    border-radius: 50px;
    background-image: linear-gradient(
      130deg,
      rgb(0, 119, 255),
      rgba(191, 233, 255, 1)
    );
    background-size: 200% 100%;
    transition: all 0.5s;
  }
  .Button__AppFlow span {
    display: inline-block;
    font-family: Oswald;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.25s;
  }
  .Button__AppFlow::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    margin: auto;
    transition: 0.2s;
  }
  .Button__AppFlow:hover {
    background-position: 100% 0;
  }
  .Button__AppFlow:hover::after {
    right: 20px;
  }
  .Button__AppFlow:hover span {
    transform: scale(1.1);
  }

/* ------------------------------------------------------------------ */
/* サービス対応エリアボタン */
.Button__ServiceArea {
    display: block;
    text-align: center;
    padding-top: 16rem;
    margin: 20px auto 0;
    width: 20em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: relative;
  }
  .Button__ServiceArea {
    padding: 15px 0px;
    border-radius: 50px;
    background-image: linear-gradient(
      130deg,
      rgb(0, 119, 255),
      rgba(191, 233, 255, 1)
    );
    background-size: 200% 100%;
    transition: all 0.5s;
  }
  .Button__ServiceArea span {
    display: inline-block;
    font-family: Oswald;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.25s;
  }
  .Button__ServiceArea::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    margin: auto;
    transition: 0.2s;
  }
  .Button__ServiceArea:hover {
    background-position: 100% 0;
  }
  .Button__ServiceArea:hover::after {
    right: 20px;
  }
  .Button__ServiceArea:hover span {
    transform: scale(1.1);
  }


/* ------------------------------------------------------------------ */
/* 問い合わせフォーム */
section.contact {
background-color: #F0F0F0;
padding: 96px 16px;
margin-bottom: unset;
}
/* form01 */
.form01 {
    max-width: 700px;
    margin: 0 auto;
}
.form01 .form-inner {
    margin-bottom: 32px;
}
.form01 .form-label {
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}
.form01 .form-label label {
    vertical-align: middle;
}
.form01 .required {
    display: inline-block;
    background: #e4c140;
    color: #fff;
    font-size: 14px;
    padding: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.form01 input[type="text"],
.form01 input[type="email"] {
    width: 100%;
    height: 40px;
    background: #fff;
    padding: 16px;
    border-style: unset;
}
.form01 input[type="date"] {
    width: 100%;
    height: 40px;
    background: #fff;
    padding: 16px;
    border-style: unset;
}
.form01 textarea {
    width: 100%;
    height: 200px;
    background: #fff;
    padding: 16px;
    border-style: unset;
}
.form01 .form-btn {
    display: block;
    background: #2F2117;
    color: #fff;
    font-weight:600;
    text-align: center;
	width: 20em;
    padding: 18px 50px;
    margin: 0 auto;
    border-style: unset;
	border-radius: 10px;
	appearance: none;
	cursor: pointer;
}

.form-btn span {
    display: inline-block;
    font-family: Oswald;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all 0.25s;
}

.contact-container_Title {
text-align: center;
}
.contact-container_Title h2{
font-size: 24px;
font-weight: bold;
position: relative;
z-index: 1;
margin: 2.5rem;
}

.contact-container_Title h2::before{
font-size: 48px;
font-weight: normal;
color: #e3e9f3;
font-family: "Allura", cursive;
z-index: -1;
}

.contact-container_Title h2::before {
content: "Contact";
position: absolute;
top: -40px;
left: 0;
transform: rotate(-15deg);
bottom: -20px;
left: 0;
right: 0;
margin: auto;
}

.contact-container_Title h2::after {
bottom: -20px;
left: 0;
right: 0;
margin: auto;

content: "";
width: 50px;
height: 1px;
background: #6b6cac;
position: absolute;
bottom: -20px;
left: 0;
}


/* ------------------------------------------------------------------ */
/* footer */ 
section.footer01 {
padding: 32px 16px 16px;
background: #333;
justify-content: space-between;
align-items: center;
max-width: 100%;
margin: unset;
}

section.footer01 div.logo {
width: 60px;
height: 30px;
}

section.footer01 div.logo img {
width: 100%;
height: 100%;
object-fit: contain;
}

section.footer01 nav.nav ul.item {
display: flex;
margin-bottom: 50px;
max-width: 100%;
}

section.footer01 nav.nav ul.item li.list_footer {
padding-left: 28px;
}

section.footer01 nav.nav ul.item li.list_footer a {
display: block;
font-weight: bold;
color: #fff;
font-size: 1rem;
background-color: #5771e2;
padding: 5px 10px;
border-radius: 50px;
text-align: center;
width: 150px;
}

section.footer01 p.copyright {
text-align: center;
color: #fff;
}

section .footer_Common {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
  
@media screen and (max-width: 768px) {
section.footer01 {
    padding: 32px 16px 16px;
}

section.footer01 .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 414px;
    margin-bottom: 32px;
}

section.footer01 div.logo {
    margin-bottom: 28px;
}

section.footer01 nav.nav ul.item {
    flex-wrap: wrap;
    justify-content: center;
}

section.footer01 nav.nav ul.item li.list {
    padding: 8px;
}
}

/* ---------------------------------------------------------------------- */
/* SP */
/* ---------------------------------------------------------------------- */
  /* Home Box SP */
  @media screen and (max-width: 834px) {
    .main.main {
      padding: unset;
    }
  }
  /* Home Box SP */
  @media screen and (max-width: 834px) {
    .Block__Home__box {
      width: 250px;
      height: 150px;
      font-size: 25px;
    }
	
    /* Home Button SP */
    .Button__Home_More {
		width: 15em;
		padding: 6px;
      }
    .Button__Home_More span {
		font-size: 20px;
    }
  }

/* Service・flow SP */
  @media screen and (max-width: 834px) {
    section.service ul.item,
    section.flow ul.item {
      flex-wrap: wrap;
      max-width: 420px;
      padding-left: 0px;
    }
  
    section.service ul.item li.list,
    section.flow ul.item li.list {
      width: 100%;
      margin-right: 0;
      margin-bottom: 32px;
    }
  
    section.service li.list:last-child,
    section.flow li.list:last-child {
      margin-bottom: 0;
    }
  
    section.service {
      padding: 80px 16px;
    }

	section.service h3,section.service p {
	  margin-bottom: unset;
    }
	  
    section.service ul.item li.list {
      min-height: 380px;
    }
  
    section.service ul.item li.list .image {
      height: 200px;
    }
  
    section.flow {
      padding: 80px 16px;
    }

    section.flow h3,section.flow p {
	  margin-bottom: unset;
    }
	  
    section.flow ul.item {
      width: 90%;
    }
  
    section.flow ul.item li.list {
      min-height: auto;
    }
  }

  /* PriceList SP */
  @media screen and (max-width: 834px) {
    section.PriceList {
      padding: 80px 16px;
    }
  
    section.PriceList .table01 {
      max-width: 420px;
      width: 100%;
    }
  
    section.PriceList .table01 thead {
      display: none;
    }
  
    section.PriceList .table01 tbody tr {
      display: block;
      margin-bottom: 16px;
    }
  
    section.PriceList .table01 tbody th {
      background: #9fc3e0;
      color: #fff;
      display: block;
      border-right: none;
      text-align: center;
    }
  
    section.PriceList .table01 tbody td {
      border-bottom: 1px solid #fff;
      display: block;
      text-align: right;
      position: relative;
      border-right: none;
    }
  
    section.PriceList .table01 tbody td::before {
      font-size: 14px;
      content: attr(data-label);
      font-weight: bold;
      position: absolute;
      left: 16px;
    }
  
    section.PriceList .table01 td:last-child {
      border-bottom: 0;
    }
  
    section.PriceList .table01 tbody th,
    section.PriceList .table01 tbody .price {
      width: 100%;
    }
  
    section.PriceList .table01 .text {
      font-size: 14px;
    }
  
    section.PriceList .table01 tbody .price {
      font-size: 16px;
    }
  }

@media screen and (max-width: 834px) {
  /* お見積りボタン */
  .Button__AppFlow {
    padding: 18px 50px;
    width: 18em;
  }
  .Button__AppFlow span {
    font-weight: 600;
    font-size: 18px;
  }
  .Button__AppFlow:hover::after {
    right: 30px;
  }

  /* サービス対応エリアボタン */
  .Button__ServiceArea {
    width: 16em;
  }
  .Button__ServiceArea span {
    font-weight: 600;
    font-size: 14px;
  }
  .Button__ServiceArea::after {
    right: 30px;
  }
  .Button__ServiceArea:hover::after {
    right: 20px;
  }
}

/* FAQ SP */
@media screen and (max-width: 834px) {
  section.faq {
    padding: 80px 16px;
  }

  section.faq .summary-inner {
    font-size: 14px;
  }

  section.faq div.content {
    font-size: 14px;
  }

  section.faq span.title-alphabet {
    font-size: 20px;
  }
}

/* お見積り・お問い合わせフォーム SP */
@media screen and (max-width: 834px) {
  .contact-container_Title h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 80px;
  }
}

/* フッターメニュー SP */
@media screen and (max-width: 834px) {
  section.footer01 ul.item li.list_footer {
    padding-left: 0px;
  }
}

/* ------------------------------------------------------------------ */
/* アニメーション */
/* animation: fadein 3s forwards; アニメーション指定 */

@keyframes fadein {
	0% {opacity: 0} /*アニメーション開始時*/
	100% {opacity: 1} /*アニメーション終了時*/
}