/*
Theme Name: 外壁塗装								
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital@1&display=swap');
/**********************************************
    PC版 CSS
**********************************************/
.pc{
	display:none;
}

/**************************************************************
全体
**************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
    color: #000;
    text-align: left;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-size: 13px;

    margin: 0px;
    text-align: center;
    line-height: 180%;
}
/**************************************************************
リンク
**************************************************************/
a:link {
    color: #000;
    text-decoration: none;
	transition: 1.0s ;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a:active {
    color: #000;
    text-decoration: none;
}
/**************************************************************
アウトライン
**************************************************************/
#outline {
    margin: 0px auto;
    padding: 0px;
    width: 980px;
    background: #FFFFFF;
}
/**************************************************************
ヘッダー
**************************************************************/
#title {
    margin: 0px;
    padding: 0px;
    position: relative;
    text-align: left;
}
#title-inner h1{
	font-size:12px;
	font-weight:normal;
	  font-family: "Hiragino Sans", "Meiryo", "メイリオ", sans-serif;
	padding:5px;
}
#title-inner {
    margin: 0 auto;
}
#title-inner .logo {
	padding:7px 0;
	text-align:center;
}
#title-inner .logo img {
	height:60px;
	width:auto;
}

#title-inner .set{
    display: flex;
    font-size: 14px;
    text-align: center;
    line-height: 150%;
	justify-content:space-between;
	margin-bottom:15px;
	gap:10px;

}

#title-inner .set a{
    border-radius: 5px;
    margin-left: 5px;
}



/* 共通 */
#title-inner .set .ap,
#title-inner .set .pf{
    flex:1;
    width:auto;
}

#title-inner .set .ap a,
#title-inner .set .pf a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:10px;
    box-sizing:border-box;
    color:#fff;
    text-decoration:none;

    text-align:center;
    border-radius:10px;
    transition:.3s;
}

/* ご来場予約 */
#title-inner .set .ap a{
    background:#eb6100;
}

#title-inner .set .ap a:hover{
    background:#eb2c00;
}

#title-inner .set .ap a::before{
    content:"";
    width:30px;
    height:30px;
    background:url(../../../image/top/icon-mail2.svg) no-repeat center;
    background-size:contain;
	margin-right:10px;
}

/* LINE */
#title-inner .set .pf a{
    background:#06c755;
}

#title-inner .set .pf a:hover{
    background:#07a749;
}

#title-inner .set .pf a::before{
    content:"";
    width:30px;
    height:30px;
	margin-right:10px;
    background:url(../../../image/top/icon-line.svg) no-repeat center;
    background-size:contain;
}




#title-inner .set .tel{
    width: 200px;
}
#title-inner .set .tel a{
    display: block;
    padding: 10px;
    background-color: #fcc800;
    color: #000;
    font-weight: 700;
    font-size: 20px;
}
#title-inner .set .tel a:hover{
    background-color: #ffe536;
}
#title-inner .set .tel a::before {
  content: url(../../../image/base/icon-tel.png);
  position: relative;
  display: inline-block;
  width: 20px;
  height: auto;
  margin-right: 15px;
  vertical-align: middle;
}

/**************************************************************
グローバルナビ
**************************************************************/

 .hamburger-menu {
    display: block;
  }

  #menu-btn-check {
    display: none;
  }

  .menu-btn {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    background: #1261d3;
    border-radius: 50%;
    z-index: 10001;
    cursor: pointer;
  }

  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    content: "";
    position: absolute;
    left: 14px;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: .3s;
  }

  .menu-btn span {
    top: 26px;
  }

  .menu-btn span::before {
    top: -9px;
    left: 0;
  }

  .menu-btn span::after {
    top: 9px;
    left: 0;
  }

  #menu-btn-check:checked + .menu-btn span {
    background: transparent;
  }

  #menu-btn-check:checked + .menu-btn span::before {
    top: 0;
    transform: rotate(45deg);
  }

  #menu-btn-check:checked + .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    padding: 90px 28px 40px;
    box-shadow: -6px 0 20px rgba(0,0,0,.18);
    transition: .4s;
    overflow-y: auto;
  }

  #menu-btn-check:checked ~ .menu-content {
    right: 0;
  }

  .globalnavi-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .globalnavi-inner h3.sp {
    margin: 0 0 22px;
    color: #1261d3;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: .08em;
  }

  .globalnavi-inner a {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid #e5e5e5;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .globalnavi-inner a::after {
    content: "›";
    float: right;
    color: #1261d3;
    font-size: 22px;
    line-height: 1;
  }


/**************************************************************
Footer
**************************************************************/
#bottom {
	margin: 0px;
	position: relative;
	text-align: center;
	font-size: 12px;
	padding-top: 30px;
	padding-bottom: 10px;
	background-color: #fff;
	overflow: hidden;
	width: 100%;
	color:#000;
	border-top:solid 3px #fcc800;
}


#bottom-inner{
	width:1200px;
	margin:0 auto;
}

.bottom-box{width:360px;
float:left;
margin:20px;}

#bottom a:link, #bottom a:visited {
	color: #000;
	font-size: 14px;

}
#bottom a:hover, #bottom a:active {
	color: #c50000;
}

.bottom-tt{
	font-size:16px;
	color:#000;
	border-bottom:solid 1px #000;
	margin-bottom: 10px;
	padding: 5px 0;
}

.bottom-line{
	padding:3px;
	margin-bottom:1px;
	border-bottom:dotted 1px #000;
	margin-left: 15px;
	margin-right: 15px;
	text-align: left;
	font-size:14px;
}


.top-return{position:fixed;
bottom: 10px; 
right: 0px; 
z-index: 1500;}

.privacy-con{
	    float: right;
	width: 550px;}

#bottom .sns{
	padding-top:15px;
}
#bottom .sns img{
	width:50px;
	height:auto;
	margin-left:5px;
	margin-right:5px;
}

.footer-raijou a{
	padding:15px;
	display:block;
	background-color:#FFE500;
	font-size:18px;
	border-radius:5px;
}
.footer-raijou a:hover{
	background-color:#fff600;
	color:#000;
}


.footer-panf a{
	padding:15px;
	display:block;
	background-color:#ffa208;
	font-size:18px;
	border-radius:5px;
	margin-top:10px;
}
.footer-panf a:hover{
	background-color:#ffbc08;
	color:#000;
}

.gototop a{
	z-index:99999999;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #eb6100;
  display: block;
  text-align: center;
  border-radius: 24px;
}

.gototop a::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}




.sub-title{
    background-color: #eb6100;
    padding: 30px;
    font-size: 24px;
    color: #fff;
}

.w1100{
    width: 1100px;
    padding: 80px 0;
    margin: 0 auto;
}
.w1000{
    width: 1000px;
    padding: 80px 0;
    margin: 0 auto;
}



/**************************************************************
各ページ
**************************************************************/

.main-visual{
    background-image: url("../../../image/top/bg.jpg");
    background-size: cover;
    background-position: bottom;
}
.main-visual img{
    max-width: 1500px;
    height: auto;
    margin-top: 15px;
    border-radius: :10px;
}
.feature-area{
    background:#fee201;
    padding:20px 0;
}

.feature-inner{
    margin:0 auto;
}

.feature-list{
	display:flex;
	flex-wrap:wrap;
	margin:20px;
    flex:1;
    background:#fff;
    border-radius:25px;
    padding:20px;
    grid-template-columns:repeat(4,1fr);
}

.feature-item{
    text-align:center;
    padding:0 20px;
	margin-bottom:30px;
	border-bottom:solid 1px #ccc;
	padding-bottom:20px;
	width:50%;
	box-sizing:border-box;
}

.feature-item:last-child{
    border-right:none;
}

.feature-item img{
    width:40px;
    height:auto;
    margin-bottom:10px;
}

.feature-item h3{
    margin:0 0 15px;
    font-size: 18px;
    line-height:1.3;
    font-weight:700;
    color:#222;
}

.feature-item p{
    margin:0;
    font-size:1rem;
    line-height:1.5;
    color:#444;
	font-size:13px;
}
.feature-item p br{
	display:none;
}

.cta-box{
	margin:20px;
    text-align:center;
	margin-top:50px;
}

.cta-box h2{
    margin-bottom:25px;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    height:64px;
    border-radius:10px;
    font-size:1.1rem;
    font-weight:700;
    transition:.3s;
}

.btn img{
    width:28px;
    height:auto;
}

.mail{
    background:#fff;
    color:#333!important;
    margin-bottom:15px;
}

.mail:hover{
    background:#f7f7f7;
}

.line{
    background:#00C300;
    color:#fff!important;
}

.line:hover{
    background:#03B103;
}
.line img{
    width: 42px;
    height: auto;
}


.worries-section{
  background:#eef7ff;
  padding: 20px 20px 5px 20px;
}

.worries-inner{
  margin:0 auto;
  grid-template-columns:1fr 1.3fr;
  gap:16px;
  padding-top: 20px;
}

.worries-card{
  background:#fff;
  border-radius:10px;
  padding:22px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
	margin-bottom:30px;
}

.worries-card h2{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 20px;
  color:#1264d8;
  font-size:20px;
  font-weight:700;
  line-height:1.4;

}

.worries-card h2 span{
	display:none!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  background:#1264d8;
  color:#fff;
  border-radius:6px;
  font-size:20px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.worries-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.worry-item{
  min-height:125px;
  border-radius:6px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  padding:12px 8px;
}

.worry-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.35);
}

.worry-item p{
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 700;
    line-height: 1.55;
    color: #111;
    font-size: 16px;

    /* 白フチ */
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
        -2px  0px 0 #fff,
         2px  0px 0 #fff,
         0px -2px 0 #fff,
         0px  2px 0 #fff;
}

/* 画像を差し替えてください */
.bg01{ background-image:url("../../../image/top/worry01.jpg"); }
.bg02{ background-image:url("../../../image/top/worry02.jpg"); }
.bg03{ background-image:url("../../../image/top/worry03.jpg"); }
.bg04{ background-image:url("../../../image/top/worry04.jpg"); }
.bg05{ background-image:url("../../../image/top/worry05.jpg"); }
.bg06{ background-image:url("../../../image/top/worry06.jpg"); }

.worries-card h3{
  text-align:center;
  margin:10px 0 28px;
  font-size:20px;
  color:#222;
}

  .cause-list{
    flex-direction: column;
    gap: 20px;
  }

  .cause-item{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .circle{
    width: 200px;
    height: 100px;
  }

  .cause-item p{
    margin-top: 10px;
    font-size: 23px;
    line-height: 1.5;
  }

  /* 矢印を下向きに */
  .arrow{
    font-size: 20px;
    margin: 0;
    transform: rotate(90deg);
	  margin-top:10px;
	  margin-bottom:10px;
  }

/* 画像を差し替えてください */
.bg-cause01{ background-image:url("../../../image/top/cause01.jpg"); }
.bg-cause02{ background-image:url("../../../image/top/cause02.jpg"); }
.bg-cause03{ background-image:url("../../../image/top/cause03.jpg"); }
.bg-cause04{ background-image:url("../../../image/top/cause04.jpg"); }

  .catch{
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.6;
    padding: 0 20px;
  }

  .catch strong{
    display: block;
    font-size: 30px;
    line-height: 1.4;
    color:#F24F13;
  }


/**************************************/

.wash-check {
  background: #eef7ff;
	padding-bottom:15px;
}

.wash-check-inner{
	margin:0 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    gap: 18px;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.wash-step {
	display:none!important;
  width: 40px;
  height: 40px;
  background: #2868d8;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.wash-content {
  flex: 1;
}

.wash-content h3 {
  color: #1457c8;
  font-size: 20px;
  font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
    line-height: 130%;
	text-align:center;
}

.wash-flow {
  gap: 24px;
}

.price-box {
	width:100%;
	box-sizing:border-box;
  background: #fff;
  border: 2px solid #2c67ca;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
	margin-top:5px;
}

.box-head {
  color: #fff;
  font-weight: 700;
  padding: 8px;
  font-size: 18px;
}

.box-head.dark {
  background: #17366a;
}

.box-head.blue {
  background: #1f63d9;
}

.price-box p {
  margin: 10px 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.price-box strong {
  display: block;
  padding: 4px 0 14px;
  font-size: 42px;
  color: #1d3557;
  line-height: 1;
}

.price-box strong span {
  font-size: 20px;
}

.price-box strong.orange {
  color: #f26a1b;
  font-size: 34px;
}

.cost-circle {
  width: 130px;
  height: 130px;
  background: #ff7a1a;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
	margin-top:5px;
}

.cost-circle::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 24px solid #ff7a1a;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* =========================
   スマホ用
========================= */
@media screen and (max-width: 768px){

  .cost-circle{
    width:110px;
    height:110px;
    font-size:18px;
    margin:0 auto;
	  margin-top:8px;
  }

  .cost-circle::after{
    top:auto;
    right:50%;
    bottom:-22px;
    transform:translateX(50%) rotate(90deg);

    border-left:24px solid #ff7a1a;
    border-top:12px solid transparent;
    border-bottom:12px solid transparent;
  }

}

.wash-cta {
	margin-top:20px;
  background: #fff3a8;
  border: 2px solid #f5b400;
  border-radius: 8px;
  padding: 18px 18px 14px;
  text-align: center;
}

.wash-cta p {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.wash-cta strong {
  font-size: 22px;
}

.wash-cta a {
  display: block;
  background: #F44336;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
}


/**************************************/

.wash-section{
  margin: 0 auto;
  background-color: #eef7ff;
  padding: 30px 0 10px 0;
}

.wash-block{
	margin:0 20px 0 20px;
  background:#fff;
  border-radius:12px;
  padding:18px 22px 16px;
  margin-bottom:14px;
  box-shadow:0 4px 14px rgba(0,60,160,.08);
  box-sizing: border-box;
	margin-bottom:30px;
}

.sec-title{
  color:#1762d2;
  font-size:20px;
  font-weight:900;
  margin-bottom:30px;
}

.sec-title span{
	display:none!important;
  width:38px;
  height:38px;
  background:#2f6fdb;
  color:#fff;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.pro-area{

  gap:20px;
}

.pro-card{
  border:2px solid;
  border-radius:7px;
  background:#fff;
  overflow:hidden;
  text-align:center;
}

.pro-head{
  color:#fff;
  padding:7px;
  font-size:14px;
  font-weight:700;
}

.pro-card h3{
  margin:14px 0 8px;
  font-size:26px;
  color:#0d5bc8;
}

.pro-card p{
  margin:0 14px 16px;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
}

.pro-card.blue{ border-color:#2467d7; }
.pro-card.green{ border-color:#15949b; }
.pro-card.orange{ border-color:#f06b1a; }

.pro-card.blue .pro-head{ background:#2467d7; }
.pro-card.green .pro-head{ background:#15949b; }
.pro-card.orange .pro-head{ background:#f06b1a; }


.pro-card.blue .area{
	background-color:#2467d7; 
	color:#fff;
	padding:8px;
}
.pro-card.green .area{
	background-color:#15949b; 
	color:#fff;
	padding:8px;
}
.pro-card.orange .area{
	background-color:#f06b1a; 
	color:#fff;
	padding:8px;
}





.cross{
  font-size:42px;
  font-weight:300;
  color:#111;
}

.pro-text{
  margin-left:auto;
  font-size:18px;
  font-weight:900;
  line-height:1.6;
  color:#111;
	margin-top:25px;
}
.pro-text br{
	display:none;
}
.pro-text strong{
  color:#f06b1a;
	font-size:24px;
}

.case-list{
  gap:25px;
}

.case-card{
  background:#f7f7f7;
  border-radius:9px;
  padding:10px;
}

.case-card h4{
  margin:0 0 8px;
  font-size:20px;
  font-weight:900;
  color:#17386c;
	margin-bottom:15px;
	line-height:300%;
}

.photos{
  display:flex;
  align-items:center;
  gap:6px;
}

.photos img{
  width:calc((100% - 26px) / 2);
  aspect-ratio:1 / .75;
  object-fit:cover;
  border-radius:4px;
}

.photos b{
  color:#174f9f;
  font-size:20px;
}

.note{
  margin:12px 0 0;
  text-align:center;
  font-size:12px;
  color:#555;
}


/*******************************/
.reason-wrap-outer{
  background-color: #eef7ff;
    padding-bottom: 15px;
	padding-top:15px;
}
.reason-wrap {
	margin:20px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.reason-box {
  background: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 4px 16px rgba(0, 60, 160, .08);
	margin-top:30px;
}


.logobg{
	background-position:bottom right;
	background-repeat:no-repeat;
}



.reason-box h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #1261d3;
  font-size: 20px;
  font-weight: 900;
}

.reason-box h3 span {
	display:none!important;
  width:38px;
  height:38px;
  background:#2f6fdb;
  color:#fff;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}

.diff-table th,
.diff-table td {
  border: 2px solid #cfcfcf;
  padding: 14px 10px;
}

.diff-table th {
  background: #edf6ff;
  color: #17386c;
}

.diff-table td:first-child {
  text-align: left;
  background: #f7f7f7;
  color: #111;
}

.diff-table .blue {
  color: #0d58c8;
  font-size: 32px;
}

.diff-table span{
	font-size:14px;
	font-weight:500;
}

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

.reason-list li {
  align-items: center;
  margin-bottom: 18px;
  color: #17386c;
  font-size: 20px;
  font-weight: 900;
}

.reason-list li:last-child {
  margin-bottom: 0;
}

.reason-list span {
	padding:5px;
  background: #FF5722;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
	line-height:100%;
	margin-bottom:10px;
}

.reason-list strong{
	color:#ff8400;
	font-size:24px;
}


/*************************************************/
.price-area-wrap-outer{
  margin: 0 auto;
  background-color: #eef7ff;
  padding-bottom: 30px;
}
.price-area-wrap {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin:0 20px;
}

.info-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 60, 160, .08);
	margin-bottom:30px;
}

.info-box h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: #1261d3;
  font-size: 20px;
  font-weight: 900;
}

.info-box h3 span {
	display:none!important;
  width:38px;
  height:38px;
  background:#2f6fdb;
  color:#fff;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;}

.price-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid #ddd;
}

.price-row:last-child {
  border-bottom: 1px solid #ddd;
}

.price-row .icon {
  width: 48px;
  font-size: 30px;
  text-align: center;
}

.price-row p {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.price-row strong {
  background: linear-gradient(transparent 60%, #fff36b 60%);
}

.price-row b {
  font-size: 20px;
}

.price-note {
  margin: 22px 0 0;
  text-align: center;
  color: #555;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.area-content {
  gap: 22px;
}

.area-map {
	margin-bottom:20px;
}

.map-img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  background: #d9ecff;
  color: #2c70df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  border-radius: 8px;
}

.map-img img{
    width: 100%;
    height: auto;
}

.area-text {
  flex: 1;
  text-align: center;
}

.area-text h4 {
  margin: 0 0 16px;
  color: #1261d3;
  font-size: 28px;
  font-weight: 900;
	color:#fe6601;
}

.main-area {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.8;
}

.area-balloon{
  position:relative;
  display:inline-block;
  background:#fff36b;
  border:2px solid #f0cf00;
  border-radius:999px;
  padding:14px 22px;
  margin-top:18px;      /* 三角形分の余白 */
  margin-bottom:18px;
  font-size:15px;
  font-weight:900;
  line-height:1.5;
}

.area-balloon::before{
  content:"";
  position:absolute;
  left:50%;
  top:-12px;
  transform:translateX(-50%);

  border-left:12px solid transparent;
  border-right:12px solid transparent;
  border-bottom:12px solid #f0cf00;
}

.city {
  margin: 0;
  padding: 18px;
  border: 2px solid #f0cf00;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.7;
  text-align: left;
	text-align:center;
}


/************************************/
.faq-section-outer{
  margin: 0 auto;
  background-color: #eef7ff;
    padding-bottom: 30px;
	padding-top:30px;
}
.faq-section {
	margin:20px;
  background: #fff;
  border-radius: 14px;
	padding:20px;
  box-shadow: 0 4px 16px rgba(0, 60, 160, .08);
	box-sizing:border-box;

}

.faq-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #1261d3;
  font-size: 20px;
  font-weight: 900;
	margin-bottom:30px;
}

.faq-section h2 span {
	display:none!important;
  width: 38px;
  height: 38px;
  background: #2868d8;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
	font-size:24px;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.faq-list {
  gap: 10px 24px;
}

.faq-list details {
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 12px 48px 12px 18px;
  font-size: 14px;
  font-weight: 900;
  color: #111;
	text-align:left;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: #1261d3;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.answer {
  padding: 0 18px 16px 50px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
	text-align:left;
}
.cta-area-outer{
	padding:30px 20px;
}
.cta-area {
	margin:0 auto;
  background: #ffe600;
  border: 3px solid #f4d000;
  border-radius: 8px;
  padding: 20px;
  gap: 24px;
	position:relative;
	padding-top:50px;

}

.free-badge{
    position:absolute;
    left:50%;
    top:-46px;
    transform:translateX(-50%);

    width:92px;
    height:92px;
    background:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 8px rgba(0,0,0,.15);
}

.free-badge small {
  font-size: 12px;
}

.free-badge strong {
  font-size: 28px;
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 900;
  color: #111;
	line-height:110%;
}

.cta-text h3 span {
  color: #ff0000;
}

.cta-text p {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.cta-buttons {
  display: grid;
  gap: 10px;
	margin-top:20px;
}

.cta-buttons a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  padding: 12px;
  border-radius: 7px;
	font-size:16px;
}

.mail-btn {
  background: #fff;
  color: #111 !important;
}

.line-btn {
  background: #25c54a;
}

.footer{
    background:#061d4f;
    color:#fff;
    padding:26px 0;
    font-family:"Noto Sans JP",sans-serif;
}

.footer-inner{
    width:90%;
    max-width:1200px;
    margin:0 auto;

    justify-content:space-between;
    gap:40px;
}

.footer-logo h2{
    margin:0;
    font-size:18px;
    font-weight:700;
    line-height:1.2;
}

.footer-logo p{
    margin:8px 0 0;
    font-size:15px;
    color:#fff;
}

.footer-company h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
}

.footer-company p{
    margin-top:8px;
    font-size:15px;
}

.footer-right{
	display:none;
    margin-left:auto;
    text-align:right;
}

.footer-nav{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.footer-nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-nav a:hover{
    opacity:.7;
}

.footer-nav span{
    color:#a9b6d5;
}

.copyright{
    margin:0;
    font-size:14px;
    color:#fff;
}



.cf7-form-wrap-outer{
	background-color:#f6f6f6;
	padding:0px 20px 60px 20px;
}

.cf7-form-wrap {
	margin:20px;
  padding: 30px 20px;
  background: #fff;
  font-family: "Noto Sans JP", "Meiryo", sans-serif;
  box-sizing: border-box;
        box-shadow: 0 4px 16px rgba(0, 60, 160, .08);
        box-sizing: border-box;
	border-radius:20px;
}

.cf7-form-wrap .form-item {
  margin-bottom: 36px;
}

.cf7-form-wrap label {
	text-align:left;
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.cf7-form-wrap .required label::before {
  content: "※";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background: #ff3b00;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1;
}

.cf7-form-wrap input[type="text"],
.cf7-form-wrap input[type="email"],
.cf7-form-wrap input[type="tel"],
.cf7-form-wrap textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background: #fafafa;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
}

.cf7-form-wrap input[type="text"],
.cf7-form-wrap input[type="email"],
.cf7-form-wrap input[type="tel"] {
  height: 56px;
}

.cf7-form-wrap textarea {
  min-height: 260px;
  resize: vertical;
}

.cf7-form-wrap input::placeholder,
.cf7-form-wrap textarea::placeholder {
  color: #bbb;
}

.cf7-form-wrap input:focus,
.cf7-form-wrap textarea:focus {
  outline: none;
  border-color: #159400;
  background: #fff;
}

.cf7-form-wrap .wpcf7-checkbox {
  display: flex;
	flex-wrap:wrap;
  grid-template-columns: 1fr 1fr;
  gap: 16px 80px;
  margin-top: 5px;
  padding: 0 30px;
}

.cf7-form-wrap .wpcf7-list-item {
  margin: 0;
}

.cf7-form-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.cf7-form-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.cf7-form-wrap input[type="file"] {
  display: block;
  margin: 14px 0;
  font-size: 14px;
}

.file-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

.privacy-box {
  height: 220px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: #fafafa;
  padding: 22px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.9;
  color: #111;
}

.privacy-box h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.privacy-box p {
  margin: 0 0 24px;
}

.acceptance {
  margin-top: 22px;
  text-align: center;
}

.acceptance .wpcf7-list-item {
  margin: 0;
}

.acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.submit-area {
  text-align: center;
  margin-top: 50px;
}

.cf7-form-wrap input[type="submit"] {
  width: 430px;
  max-width: 100%;
  height: 72px;
  border: none;
  border-radius: 5px;
  background: #159400;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .3s;
	    font: 500 16px/1.75 "Noto Sans JP", sans-serif;
}

.cf7-form-wrap input[type="submit"]:hover {
  background: #0f7600;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
}

.wpcf7-response-output {
  margin: 30px 0 0 !important;
  padding: 15px 20px !important;
  border-radius: 4px;
}

.apply-tt{
	background-color:#ff8400;
	font-size:18px;
	color:#fff;
	padding:20px;
	margin-bottom:15px;
}

.wpcf7-spinner{
	display:block!important;
}


.cf7-form-wrap input[type="text"],
.cf7-form-wrap input[type="email"],
.cf7-form-wrap input[type="tel"],
.cf7-form-wrap textarea {
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 15px;
}


.floating-banners {
  position: fixed;
  right: -340px;
  bottom: 30px;
  width: 250px;
  z-index: 9999;
  transition: right .5s ease;
}

.floating-banners.is-show {
  right: 20px;
}

.floating-banner {
  display: block;
  margin-top: 14px;
  transition: .3s;
}

.floating-banner:hover {
  transform: translateX(-5px);
}

.floating-banner img {
  display: block;
	width:250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.floating-close {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
　/*------------------------------------------------
　 * 記事詳細
　 * ---------------------------------------------*/
/*------------------------------------------------
 * 記事詳細 single.php SP
 * ---------------------------------------------*/

.blog-single {
  background: #eaf6ff;
  padding: 40px 15px;
  box-sizing: border-box;
}

.blog-single__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 18px;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.blog-single__inner iframe{
	width:100%;
	height:300px;
}

.blog-single__head {
  margin-bottom: 22px;
  text-align: left;
}

.blog-single__cat {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #ffd900;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-single__title {
  margin: 0;
  color: #005fd1;
  font-size: 23px;
  line-height: 1.55;
  font-weight: bold;
  text-align: left;
}

.blog-single__content {
  color: #333;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.blog-single__content p {
  margin: 0 0 1.5em;
  text-align: left;
}

.blog-single__content h2 {
  margin: 34px 0 16px;
  padding: 11px 14px;
  border-left: 5px solid #006de5;
  background: #f2f9ff;
  color: #005fd1;
  font-size: 19px;
  line-height: 1.55;
  font-weight: bold;
  text-align: left;
}

.blog-single__content h3 {
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ffd900;
  color: #005fd1;
  font-size: 17px;
  line-height: 1.6;
  font-weight: bold;
  text-align: left;
}

.blog-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border-radius: 6px;
}

.blog-single__content ul,
.blog-single__content ol {
  padding-left: 1.4em;
  margin: 0 0 1.5em;
}

.blog-single__content li {
  margin-bottom: 0.6em;
}

.blog-single__content a {
  color: #006de5;
  text-decoration: underline;
}

.blog-single__pager {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #ddd;
}

.blog-single__prev,
.blog-single__next,
.blog-single__back {
  width: 100%;
  text-align: center;
}

.blog-single__pager a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #006de5;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
}


  /* ---------- archive.php ---------- */

/*------------------------------------------------
 * 記事一覧 archive.php SP
 * ---------------------------------------------*/

.blog-archive {
  background: #eaf6ff;
  padding: 40px 15px;
  box-sizing: border-box;
}

.blog-archive__inner {
  max-width: 100%;
  margin: 0 auto;
}

.blog-archive__head {
  margin-bottom: 22px;
  padding: 22px 18px;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.blog-archive__title {
  margin: 0;
  color: #005fd1;
  font-size: 24px;
  line-height: 1.45;
  font-weight: bold;
}

.blog-archive__lead {
  margin: 8px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blog-archive__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.blog-archive__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-archive__thumb {
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
  overflow: hidden;
}

.blog-archive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-archive__body {
  padding: 12px;
}

.blog-archive__cat {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffd900;
  color: #333;
  font-size: 11px;
  font-weight: bold;
}

.blog-archive__post-title {
  margin: 0;
  color: #222;
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}

.blog-archive__excerpt {
  display: none;
}

.blog-archive__more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #006de5;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.blog-archive__more::after {
  content: "→";
  margin-left: 8px;
}

.blog-archive__pagination {
  margin-top: 32px;
  text-align: center;
}

.blog-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.blog-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #006de5;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}

.blog-archive__pagination .page-numbers.current {
  background: #006de5;
  color: #fff;
}

.blog-archive__none {
  padding: 25px 15px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
}

/*TOP BLOG*/
/* ==============================
  TOPページ ブログ一覧 SP
============================== */

.top-blog {
  padding: 40px 12px;
  background: #eaf6ff;
}

.top-blog__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.top-blog__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.top-blog__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #006de5;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
}

.top-blog__title {
  margin: 0;
  color: #005fd1;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
	text-align: left;
}

.top-blog__lead {
  margin: 5px 0 0;
  color: #333;
  font-size: 12px;
  line-height: 1.6;
}

/* ここが重要：スマホは2列 */
.top-blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.top-blog__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top-blog__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.top-blog__thumb {
  aspect-ratio: 4 / 3;
  background: #f2f2f2;
  overflow: hidden;
}

.top-blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-blog__body {
  padding: 9px;
}

.top-blog__meta {
  margin-bottom: 6px;
}

.top-blog__meta span {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: #ffd900;
  color: #333;
  font-size: 10px;
  font-weight: bold;
}

.top-blog__post-title {
  margin: 0;
  color: #222;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}

.top-blog__more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #006de5;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.top-blog__more::after {
  content: "→";
  margin-left: 5px;
}


/*------------------------------------------------
  外壁洗浄専門店が選ばれる5つの理由
------------------------------------------------*/
 .p-reason {
  padding: 45px 15px;
  background: #edf8ff;
}

.p-reason__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.p-reason__title {
  margin: 0 0 22px;
  padding: 14px 15px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff9f00 0%, #ff7900 100%);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-reason__list {
  display: block;
}

.p-reason__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 18px;
  padding: 22px 18px 18px;
  border: 1px solid #dce2e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 74, 121, 0.12);
  box-sizing: border-box;
}

.p-reason__item:last-child {
  margin-bottom: 0;
}

.p-reason__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 50%;
}

.p-reason__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-reason__heading {
  margin: 0;
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-reason__lead {
  margin: 5px 0 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-reason__text {
  flex-grow: 1;
  padding: 18px;
  border-radius: 10px;
}

.p-reason__text p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.p-reason__item:nth-child(1) .p-reason__lead{
	color: #029d6b;
}
.p-reason__item:nth-child(2) .p-reason__lead{
	color: #025f9c;
}
.p-reason__item:nth-child(3) .p-reason__lead{
	color: #3c0297;
}
.p-reason__item:nth-child(4) .p-reason__lead{
	color: #a10251;
}
.p-reason__item:nth-child(5) .p-reason__lead{
	color: #c77405;
}

.p-reason__item:nth-child(1) .p-reason__text {
  background: #e3fff6;
}

.p-reason__item:nth-child(2) .p-reason__text {
  background: #e3f4ff;
}

.p-reason__item:nth-child(3) .p-reason__text {
  background: #eee3ff;
}

.p-reason__item:nth-child(4) .p-reason__text {
  background: #ffe3f1;
}

.p-reason__item:nth-child(5) .p-reason__text {
  background: #fff3e3;
}

	.stainlevel {
		padding: 35px 15px;
	}

	.stainlevel img {
		display: block;
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}


.stainlevel img.pc {
  display: none;
}

	.checktext {
		position: relative;
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		margin: 25px auto 0;
		padding: 22px 18px;
		border-radius: 8px;
		background-color: #e3f4ff;
		color: #0153b8;
		font-size: 16px;
		font-weight: bold;
		line-height: 1.7;
		text-align: left;
	}

	.checktext::before {
		content: "";
		display: block;
		width: 34px;
		height: 34px;
		margin: 0 auto 10px;
		padding: 0;
		background-image: url('../../../image/top/bulb.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	/* 下側の吹き出し */
	.checktext::after {
		content: "";
		position: absolute;
		bottom: -18px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 16px solid transparent;
		border-right: 16px solid transparent;
		border-top: 18px solid #e3f4ff;
	}

	.wash-cta {
		box-sizing: border-box;
		width: 100%;
		margin-top: 35px;
		padding: 25px 18px;
		text-align: center;
	}

	.wash-cta p {
		margin: 0 0 20px;
		font-size: 16px;
		line-height: 1.7;
	}

	.wash-cta strong {
		font-size: 21px;
		line-height: 1.5;
	}

	.wash-cta a {
		display: block;
		box-sizing: border-box;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		padding: 15px 20px;
		font-size: 17px;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
	}


/*********************会社**************/

.company-info {
  margin: 20px auto;
  padding: 22px 20px 16px;
  background: #fff;
  border: 1px solid #e2e7f0;
  border-radius: 14px;
  box-sizing: border-box;

  color: #171a29;
}

.company-info__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.company-info__name {
  margin: 0;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.company-info__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.company-info__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 12px;
  background: #304d8c;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  box-sizing: border-box;
}

.company-info__badges .is-gray {
  background: #9aa8c0;
}

.company-info__list {
  margin: 0;
}

.company-info__row {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px dashed #dfe5ef;
}

.company-info__row h2{
	font-size:18px;
	margin-bottom:10px;
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__row dt,
.company-info__row dd {
  margin: 0;
	text-align:left;
}

.company-info__row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.company-info__row dd {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #30313a;
}

.company-info__row dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-info__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9effa;
  border-radius: 50%;
  color: #294783;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.company-info__icon--small {
  font-size: 9px;
}

.company-info__icon--parking {
  color: #167e67;
}

.company-info__label {
  font-size: 16px;
  white-space: nowrap;
}

/*****スマホ*****/
  .company-info {

    margin: 12px auto;
    padding: 18px 16px 12px;
    border-radius: 12px;
  }

  .company-info__head {
    display: block;
  }

  .company-info__name {
    font-size: 21px;
  }

  .company-info__badges {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .company-info__badges span {
    min-height: 26px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .company-info__row {
    display: block;
    padding: 12px 0;
  }

  .company-info__row dt {
    margin-bottom: 6px;
  }

  .company-info__row dd {
    padding: 0 0 0 36px;
    font-size: 14px;
  }

  .company-info__label {
    font-size: 15px;
  }



.com-flex .botan a{
	display:block;
	padding:20px;
	background-color:#ff6600;
	text-decoration:none;
	font-weight:800;
	font-size:14px;
	color:#fff!important;
	border-radius:5px;
	margin-top:20px;

	/* ボタンの立体感 */
	box-shadow: 0 6px 0 #cc5200;
	transition: all .15s ease;
}

.com-flex .botan a:hover{
	transform: translateY(4px);
	box-shadow: 0 2px 0 #cc5200;
}

.president img{
	width:100%;
	height:auto;
}