﻿@charset "utf-8";
/*
Theme Name: theme_miyamachi2
Description: theme_miyamachi2
Version: 2025.09
*/

/*　カスタムプロパティ
----------------------------------------------- */
:root {
  --color-text: #353535;
  --color-border: #ddd;
  /* ボタン */
  --color-btn: #ff9421;
  /* リンク */
  --color-link: #999;
  --color-link-hover: #666;
  /* メインカラー em1 */
  --color-main: #26894f;
  --color-main-dark: #31562d;
  --color-main-light: #f1f8f1;
  /* サブカラー em2 */
  --color-sub: #ff9421;
  --color-sub-dark: #000;
  --color-sub-light: #f8f4ef;
  /* マーカー */
  --color-marker: #fff8b0;
  /* ベースカラー */
  --color-base-red: #b30f0f;
  --color-base-yellow: #ffc107;
  --color-base-green: #28a745;
  --color-base-blue: #007bff;
  --color-base-purple: #6f42c1;
  --color-base-pink: #e83e8c;
  /* フォント */
  --font-min: "Noto Serif JP", serif;
  --font-min-weight: 400;
  --font-min-style: normal;
  --font-en: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  --font-en-weight: 300;
  --font-en-style: normal;
}

/*　body / html
----------------------------------------------- */
body {
  position: relative;
  overflow-x: hidden;
  word-wrap: break-word;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
html {
  overflow-y: scroll;
}
.f-min {
  font-family: var(--font-min);
  font-weight: var(--font-min-weight);
  font-style: var(--font-min-style);
}
.f-en {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
  font-style: var(--font-en-style);
}
p {
  margin-bottom: 1em;
  line-height: 2;
}
/* link
----------------------------------------------- */
a {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
  cursor: pointer;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
.link01 {
  padding-left: 1.2em;
  background: url(images/common/icon-arrow01.png) no-repeat left 0.3em;
  background-size: 1em;
}
.link02 {
  padding-left: 1.2em;
  background: url(images/common/icon-arrow02.png) no-repeat left 0.3em;
  background-size: 1em;
}
.link03 {
  padding-left: 1.2em;
  background: url(images/common/icon-arrow04.png) no-repeat left 0.3em;
  background-size: 1em;
}
.faqlist li {
  margin-bottom: 0.4em;
}
.faqlist li a {
  background: url(images/common/icon-arrow01.png) no-repeat left 0.15em;
  background-size: 5px;
  padding-left: 12px;
  color: var(--color-text);
  text-decoration: none;
}
.faqlist li a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
/* clearfix
----------------------------------------------- */
.clearfix,
.cf,
.clear {
  display: block;
  clear: both;
}
/* page-title
----------------------------------------------- */
.page-title {
  clear: both;
  position: relative;
  width: 100%;
  padding: 3em 6%;
  background: url("images/common/bg-title.png") no-repeat center;
  background-size: cover;
}
.page-title__text {
  text-align: center;
}
.page-title__text span {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .page-title {
    padding: 5em 8%;
  }
  .page-title__text span {
    font-size: 2em;
  }
}
@media screen and (min-width: 992px) {
  .page-title {
    padding: 7em 8%;
  }
}
/* typography
----------------------------------------------- */
.post h2 {
  clear: both;
  margin: 2em 0px 1em;
  padding: 0 0.2em 0.8em;
  border-bottom: 4px double var(--color-main);
  font-weight: 600;
  font-size: 1.3em;
}
.post h3 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0.2em 0 0.2em 12px;
  border-left: solid 6px var(--color-main);
  font-weight: 600;
  font-size: 1.15em;
}
.post h4 {
  clear: both;
  margin: 2em 0 1em;
  padding: 0 0 0 28px;
  background: url("images/common/icon-diamond02.png") no-repeat left 0.2em;
  background-size: 20px;
  font-weight: 600;
  font-size: 1.1em;
}
.post h2.imgtitle,
.post h3.imgtitle,
.post h4.imgtitle {
  padding: 0;
  border: none;
  background: none;
}
@media screen and (min-width: 768px) {
  .post h2 {
    font-size: 1.8em;
  }
  .post h3 {
    font-size: 1.4em;
  }
}
/* image-style
----------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
img.border {
  border: 1px solid #ddd;
  padding: 0.3em;
}
img.frame {
  outline: 7px solid rgb(255 255 255 / 40%);
  outline-offset: -7px;
}
img.round {
  border-radius: 50%;
}
img.aligncenter,
img.center {
  display: block;
  margin: auto;
}
@media screen and (max-width: 767px) {
  img.alignright,
  img.alignleft {
    display: block;
    margin: 0 auto 1.5em;
  }
}
@media screen and (min-width: 768px) {
  img.alignright {
    float: right;
    width: min(45%, 400px);
    margin: 0 0 1em 1em;
  }
  img.alignleft {
    float: left;
    width: min(45%, 400px);
    margin: 0 1em 1em 0;
  }
  img.alignright.is-small,
  img.alignleft.is-small {
    width: min(25%, 200px);
  }
}
/* img_switch
----------------------------------------------- */
.switch {
  visibility: hidden;
}
/* box-style
----------------------------------------------- */
.box01,
.box02,
.box03,
.box04,
.box05,
.box06 {
  clear: both;
  margin: 2.5em 0;
  padding: 1em 5% 0;
}
.box01 {
  border: 3px double #ddd;
  background: #fff;
}
.box02 {
  border: 3px solid #eee;
  background: #fff;
}
.box02.c-main {
  border-color: var(--color-main);
}
.box03 {
  box-shadow: 0px 0px 8px #ddd;
  -ms-box-shadow: 0px 0px 8px #ddd;
  -moz-box-shadow: 0px 0px 8px #ddd;
  -webkit-box-shadow: 0px 0px 8px #ddd;
  border: 1px solid #fff;
  background: #fff;
}
.box04 {
  border: 1px solid #ddd;
  box-shadow: 7px 7px 0px #ddd;
  -ms-box-shadow: 7px 7px 0px #ddd;
  -moz-box-shadow: 7px 7px 0px #ddd;
  -webkit-box-shadow: 7px 7px 0px #ddd;
  background: #fff;
}
.box05 {
  border: 1px solid #f7f7f7;
  background: #f7f7f7;
}
.box06 {
  border: 1px solid #fff;
  background: url("images/common/notebg.png");
}
.t-box01 {
  margin: 0 0 2.5em;
}
.t-box01 .title {
  margin: 0;
  padding: 10px 5px 10px 14px;
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
  background: #666;
  border: 2px solid #666;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.t-box01 .t-box01In {
  padding: 1em 15px 0.1em;
  border: 2px solid #666;
  border-radius: 0px 0px 4px 4px;
}
[class^="boxcolor"] {
  border-radius: 6px;
}
[class^="boxcolor"] h4 {
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
  background: none;
}
.boxcolor-red {
  border: 1px solid var(--color-base-red);
  color: var(--color-base-red);
}
.boxcolor-yellow {
  border: 1px solid var(--color-base-yellow);
  color: var(--color-base-yellow);
}
.boxcolor-blue {
  border: 1px solid var(--color-base-blue);
  color: var(--color-base-blue);
}
.boxcolor-green {
  border: 1px solid var(--color-base-green);
  color: var(--color-base-green);
}
/* list-style
----------------------------------------------- */
.list01,
.list02,
.list03,
.checklist01,
.checklist02,
.checklist03,
.link-list {
  margin: 2em 0;
}
.list01 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(images/common/icon-circle02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.list02 li {
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  background: url(images/common/icon-circle01.png) no-repeat left 0.6em;
  background-size: 0.4em;
}
.list03 li {
  margin-bottom: 0.8em;
  padding-left: 1em;
  background: url(images/common/icon-diamond02.png) no-repeat left 0.5em;
  background-size: 0.6em;
}
.checklist01 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(images/common/icon-check01.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist02 li {
  margin-bottom: 0.8em;
  padding-left: 1.4em;
  background: url(images/common/icon-check02.png) no-repeat left 0.3em;
  background-size: 1em;
  font-size: 1.1em;
}
.checklist01.style01 {
  border-top: 1px solid #eee;
}
.checklist01.style01 li,
.checklist02.style01 li {
  margin: 0;
  padding: 0.8em 0.2em 0.8em 1.4em;
  border-bottom: 1px solid #eee;
  background-position: left 1.1em;
}
.checklist01.style02 li,
.checklist02.style02 li {
  margin: 0;
  padding: 0.8em 0.5em 0.8em 1.8em;
  background-position: 0.3em 1.1em;
}
.checklist01.style02 li:nth-child(even),
.checklist02.style02 li:nth-child(even) {
  background-color: #eee;
}
.link-list li {
  margin-bottom: 0.8em;
}
.link-list li a {
  padding-left: 1.1em;
  background: url(images/common/icon-arrow01.png) no-repeat left 0.3em;
  background-size: 1em;
}
.link-list02 li {
  margin-bottom: 0.8em;
}
.link-list02 li a {
  display: block;
  padding: 0.8em 2.5em 0.8em 1em;
  border-radius: 10px;
  border: solid 1px #ddd;
  background: url(images/common/icon-arrow02.png) no-repeat right 0.5em center;
  background-size: 1em;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.link-list02 li a:hover {
  background-color: var(--color-main-light);
}
@media screen and (min-width: 992px) {
  .link-list02 li a {
    padding: 0.8em 2.5em 0.8em 1em;
    font-size: 1.2em;
  }
}
/* dl-style
----------------------------------------------- */
.dl01 {
  margin-bottom: 2em;
}
.dl01 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.8em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.dl01 dt span {
  display: block;
}
.dl01 dd {
  margin: 0 0 1.5em;
}
.dl02 {
  margin-bottom: 2em;
}
.dl02 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.3em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon-square01.png) no-repeat 0 0.35em;
  background-size: 1em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl02 dd {
  margin: 0 0 25px;
}
.dl03 {
  margin-bottom: 2em;
}
.dl03 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.6em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon-original.png) no-repeat 0 0.1em;
  background-size: 1.3em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl03 dd {
  margin: 0 0 25px;
}
.dl04 {
  margin-bottom: 2em;
}
.dl04 dt {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em 1.4em;
  border-bottom: 1px solid var(--color-border);
  background: url(images/common/icon-diamond02.png) no-repeat 0 0.2em;
  background-size: 1.2em;
  font-size: 1.2em;
  font-weight: 600;
}
.dl04 dd {
  margin: 0 0 25px;
}
.faq {
  margin-bottom: 40px;
}
.faq dt {
  margin: 2em 0 1em;
  padding: 0 0 0.8em 1.8em;
  background: url(images/common/icon-faq-q.png) no-repeat 0px 0.1em;
  background-size: 1.5em;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  font-weight: 500;
}
.faq dd {
  margin: 0 0 1.6em;
  padding: 0 0 0.6em 1.8em;
  background: url(images/common/icon-faq-a.png) no-repeat 0 0.15em;
  background-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .dl02 dt {
    font-size: 1.5em;
  }
  .dl03 dt {
    font-size: 1.5em;
  }
  .dl04 dt {
    font-size: 1.5em;
  }
  .faq dt {
    font-size: 1.25em;
  }
  .faq dd {
    background-position: left 0.2em;
  }
}
/* table-style
----------------------------------------------- */
table.table01,
table.table02,
.ta {
  width: 100%;
  margin: 0 0 2em;
  border-collapse: collapse;
}
table.table01 th,
table.table01 td,
table.table02 th,
table.table02 td,
table.table03 th,
table.table03 td {
  font-weight: normal;
  text-align: left;
  padding: 1em 1.2em;
}
table.table01 th,
table.table02 th {
  width: 23%;
}
table.table01 td,
table.table02 td {
  width: 77%;
}
table.table01 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table01 th,
table.table01 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table01 th {
  background: #f6f6f6;
}
table.table02 {
  border-collapse: separate;
  border-spacing: 3px;
}
table.table02 th {
  background: #f6f6f6;
}
table.table03 {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
table.table03 th,
table.table03 td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
table.table03 th {
  background: #f6f6f6;
}
@media screen and (max-width: 991px) {
  table.table01 th,
  table.table01 td,
  table.table02 th,
  table.table02 td {
    display: block;
    width: 100%;
  }
}
/* text-style
----------------------------------------------- */
.txt-right {
  text-align: right !important;
}
.txt-left {
  text-align: left !important;
}
.floatright {
  float: right;
}
.center {
  text-align: center !important;
}
.color-red {
  color: #dd0000;
}
.font14 {
  font-size: 14px !important;
}
.font12 {
  font-size: 12px !important;
}
.font10 {
  font-size: 10px !important;
}
.lh16 {
  line-height: 1.6 !important;
}
.lh18 {
  line-height: 1.8 !important;
}
@media screen and (min-width: 768px) {
  .pc-center {
    text-align: center;
  }
}
/* Emphasis
----------------------------------------------------------- */
.em1,
.em1 a,
.em1b {
  color: var(--color-main);
}
.em2,
.em2 a,
.em2b {
  color: var(--color-sub);
}
.em1b,
.em2b,
.em3 {
  font-weight: 700;
}
.em4l {
  font-size: 110%;
}
.em4xl {
  font-size: 150%;
}
.em5 {
  text-decoration: underline;
}
.em6 {
  padding: 0 3px;
  background: #d2e5d5;
  font-weight: 700;
}
.em7 {
  padding: 0 3px;
  background: linear-gradient(transparent 80%, #d2e5d5 80%);
  font-weight: 700;
}
.em-red {
  color: var(--color-base-red);
}
.em-blue {
  color: var(--color-base-blue);
}
.em-green {
  color: var(--color-base-green);
}
.em-yellow {
  color: var(--color-base-yellow);
}
.em-purple {
  color: var(--color-base-purple);
}
.em-pink {
  color: var(--color-base-pink);
}
@media screen and (min-width: 768px) {
  .em4l {
    font-size: 130%;
  }
  .em4xl {
    font-size: 180%;
  }
}
/* layout-style
----------------------------------------------- */
[class^="layout"] {
  margin-bottom: 1.5em;
  overflow: hidden;
}
[class^="layout"] img {
  margin-bottom: 1.5em;
}
/* submit-style
----------------------------------------------- */
.submitBtn__img {
  position: relative;
  z-index: 2;
  margin: 2.5em 0;
}
.submitBtn {
  display: flex;
  justify-content: center;
  margin: 2.5em 0;
}
.submitBtn a {
  display: inline-block;
  width: clamp(260px, 95%, 520px);
  padding: 0.9em 2em 1em;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-style: normal;
  background-color: var(--color-btn);
  border: 1px solid var(--color-btn);
  color: #fff;
  font-size: 1.1em;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.submitBtn a:hover {
  background-color: #fff;
  color: var(--color-btn);
}
.submitBtn.is-green a {
  background-color: #32572e;
  border-color: #32572e;
  color: #fff;
}
.submitBtn.is-green a:hover {
  background-color: #fff;
  color: #32572e;
}
.submitBtn.is-small a {
  width: 160px;
  max-width: none;
  padding: 0.5em 1.5em 0.7em;
  font-size: 0.8em;
}
/* hr
----------------------------------------------- */
hr {
  clear: both;
  width: 80%;
  height: 1px;
  margin: 3em auto;
  border: none;
  background: var(--color-border);
}
hr.hr01 {
  border-top: dotted 1px #ddd;
  background: none;
}
hr.hr02 {
  width: 100%;
  max-width: 500px;
  height: 40px;
  background: url(images/common/break.png) no-repeat center center;
  background-size: contain;
}
/* 動画・地図
----------------------------------------------- */
.youtube-wrap,
.map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 15px;
  text-align: center;
}
.youtube-wrap iframe,
.map-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.calendar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5em;
}
.inlineb {
  display: inline-block;
}
/* flowbox
----------------------------------------------- */
.flowbox {
  clear: both;
  display: block;
  padding-bottom: 25px;
  margin-bottom: 15px;
  background: url(images/common/u-arrow01.png) no-repeat 50% bottom;
}
.flowbox.last {
  background: none;
}
.flowbox .itemleft {
  text-align: center;
}
/* flowbox01 （左）写真（右）テキスト */
.flowbox01 {
  padding-bottom: 3em;
  background: url(images/common/flow-arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox01 h3 {
  margin-top: 0;
  padding: 0;
  border: none;
  color: var(--color-main);
}
.flowbox01 h3 .flowbox__step {
  display: inline-block;
  margin-bottom: 0.6em;
  padding: 6px 12px 4px;
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  font-size: 0.8em;
  font-family: Helvetica Neue;
}
.flowbox01.last {
  background: none;
  padding-bottom: 0;
}
.flowbox01 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox01 .itemright {
  margin-bottom: 1.5em;
}
/* flowbox02 （左）テキスト（右）写真 */
.flowbox02 {
  padding-bottom: 2em;
  background: url(images/common/u-arrow01.png) no-repeat center bottom 1.5em;
}
.flowbox02.last {
  background: none;
}
.flowbox02 .itemleft {
  margin-bottom: 1.5em;
  text-align: center;
}
.flowbox02 .itemright {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .flowbox01 {
    display: flex;
    gap: 2em;
    padding-bottom: 4em;
    background-position: left 12% bottom 1.1em;
  }
  .flowbox01 .itemleft {
    margin-bottom: 0;
    width: 40%;
  }
  .flowbox01.w20 .itemleft img {
    width: 100%;
  }
  .flowbox01 .itemright {
    margin-bottom: 0;
    width: calc(60% - 2em);
  }
}
/* photolist
----------------------------------------------- */
.photolist {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.photolist li {
  width: calc((100% - 1em) / 2);
}
.photolist li figure figcaption {
  margin-top: 0.5em;
  font-size: 90%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .photolist {
    gap: 2em;
  }
  .photolist li {
    width: calc((100% - 2em) / 2);
  }
}
/* accordion
----------------------------------------------- */
.displayNone {
  display: none;
}
.contentWrap {
  margin: 10px;
}
.acswitch {
  cursor: pointer;
  font-weight: bold;
  padding: 12px 40px 12px 10px;
  text-align: center;
  font-size: 14px;
  position: relative;
  background-color: #c8b280;
  border: 1px solid #c8b280;
  color: #fff;
  border-radius: 30px;
}
.acswitch:after {
  content: ">";
  position: absolute;
  right: 10px;
  top: -100%;
  bottom: -100%;
  margin: auto;
  font-size: 16px;
  height: 16px;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: sans-serif;
}
.acswitch.open:after {
  content: "x";
}
/* testimonials
----------------------------------------------- */
.testimonial {
  margin: 0 0 20px;
  padding: 15px 15px 5px;
  border: 3px solid #e6e6e6;
  background: url(images/common/testimonial-bg.png) no-repeat 98% 10px #ffffff;
  background-size: 120px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.testimonial .title {
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 2px dotted #ccc;
  margin: 0 0 20px;
  background: none;
  font-weight: bold;
}

.testimonial .ph {
  display: block;
  margin: 0 auto 20px;
  float: none;
  max-width: 280px;
  text-align: center;
}

.testimonial .name {
  font-weight: bold;
}
/* 背景画像
----------------------------------------------- */
.bg_light {
  background: #fbfffb;
}
.bg_main {
  background: var(--color-main);
  color: #fff;
}
.bg_dark {
  background: var(--color-main-dark);
  color: #fff;
}
.bg_image {
  background: url(images/contents/bg01.jpg) no-repeat center center;
  background-size: cover;
}
.bg_image02 {
  background: url(images/contents/bg02.jpg) no-repeat center center;
  background-size: cover;
}
/* single
----------------------------------------------- */
h1.singlePost__title {
  margin: 0.2em 0 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #282828;
  font-weight: 400;
  font-size: 1.3em;
}
.singlePost__eyecatch {
  text-align: center;
}
.singlePost__eyecatch img {
  width: 800px;
  margin: 0 auto;
}
.singlePost_works h1 {
  margin: 0 0 1.5em;
  font-weight: 500;
  font-size: 1.3em;
}
.singlePost_works dl dt {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin: 0.8em 0 0.8em;
  font-weight: 400;
  font-size: 1.15em;
}
.singlePost_works dl dt::before,
.singlePost_works dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #333;
}
.singlePost_works dl dt::before {
  left: 0;
}
.singlePost_works dl dt::after {
  right: 0;
}
/* 投稿スタイル
----------------------------------------------- */
/* 投稿スタイル 01 */
.postList01 .postList__item {
  border-bottom: solid 1px #ddd;
}
.postList01 .postList__item:first-of-type {
  border-top: solid 1px #ddd;
}
.postList01 .postList__link {
  display: block;
  padding: 12px 20px 12px 2px;
  background: url("images/common/icon-arrow07.png") no-repeat right center;
  background-size: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList01 .postList__date {
  display: block;
  opacity: 0.4;
  font-size: 12px;
}
.postList01 .postList__title {
  margin: 0;
}
.postList01 .postList__empty {
  text-align: center;
}
/* 投稿スタイル 02 */
.postList02 .postList__item {
  margin-bottom: 15px;
  overflow: hidden;
}
.postList02 .postList__itemLink {
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
.postList02 .postList__itemLink:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.postList02 .postList__itemImg {
  aspect-ratio: 16/9;
  margin-bottom: 10px;
  overflow: hidden;
}
.postList02 .postList__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.postList02 .postList__itemLink:hover .postList__itemImg img {
  transform: scale(1.1);
}
.postList02 .postList__itemDate {
  display: block;
  margin-bottom: 5px;
}
.postList02 .postList__itemTitle {
  display: -webkit-box;
  display: -moz-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  height: calc(1.5em * 2);
  margin: 0;
}
.postList02 .postList__empty {
  text-align: center;
}
.contactBox {
  margin: 3em auto;
}
.contactBox p {
  margin-bottom: 0;
}
.contactBox .submitBtn {
  margin: 1em auto 0 !important;
}
/* ～767px メディアクエリ開始 */
@media screen and (max-width: 767px) {
  .table01.block th,
  .table01.block td {
    display: block;
  }
  .sp_none,
  .sp-none {
    display: none;
  }
  .postList02 .postList__itemLink {
    display: flex;
  }
  .postList02 .postList__itemImg {
    width: 30%;
    margin-bottom: 0;
  }
  .postList02 .postList__itemText {
    width: 70%;
    padding-left: 15px;
  }
}
/* 768px〜 メディアクエリ開始 */
@media screen and (min-width: 768px) {
  .list02 li {
    padding-left: 12px;
  }
  [class^="box0"],
  [class^="boxcolor"] {
    clear: both;
    margin: 3em 0;
    padding: 2em 2em 0.5em;
  }
  .t-box01 .title {
    padding: 15px 20px;
  }
  .t-box01 .t-box01In {
    padding: 20px 20px 5px;
  }
  .dl01 dt {
    margin-top: 2em;
    font-size: 1.2em;
  }
  .dl01 dd {
    margin-bottom: 2em;
  }
  .searchform div {
    justify-content: space-between;
  }
  .searchform input[type="text"] {
    width: calc(100% - 150px) !important;
    height: 54px;
    padding-left: 10px;
  }
  #searchsubmit {
    width: 120px;
    min-width: none;
    margin: 0;
  }
  .postList01 .postList__link {
    padding: 15px 30px 15px 10px;
    background-position: right 5px center;
  }
  .postList01 .postList__link:hover {
    background-color: #f8f8f8;
    background-position: right 2px center;
  }
  .postList02 {
    display: flex;
  }
  .postList02 .postList__item {
    width: calc(94% / 3);
    margin: 0 0 0 3%;
  }
  .postList02 .postList__item:first-of-type {
    margin-left: 0;
  }
  .pc_none {
    display: none;
  }
  [class^="layout"] {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  .layout2 .itemleft,
  .layout2 .itemright {
    width: calc((100% - 20px) / 2);
  }
  .layout28 .itemleft {
    float: left;
    width: 20%;
  }
  .layout28 .itemright {
    float: right;
    width: 78%;
  }
  .layout37 .itemleft {
    float: left;
    width: 30%;
  }
  .layout37 .itemright {
    float: right;
    width: 68%;
  }
  .layout73 .itemleft {
    float: left;
    width: 70%;
  }
  .layout73 .itemright {
    float: right;
    width: 30%;
  }
  .layout46 .itemleft {
    float: left;
    width: 40%;
  }
  .layout46 .itemright {
    float: right;
    width: 58%;
  }
  .layout64 {
    flex-direction: row-reverse;
  }
  .layout64 .itemleft {
    width: calc(55%);
  }
  .layout64 .itemright {
    width: calc(45% - 20px);
  }
  .testimonial {
    margin: 0 0 1.5em;
    padding: 25px 25px 5px;
    background: url(images/common/testimonial-bg.png) no-repeat 98% 10px #ffffff;
    background-size: 130px;
  }
  .testimonial .title {
    font-size: 1.3em;
  }
  .testimonial .ph {
    display: inline;
    margin: 0 0 10px 20px;
    float: right;
    max-width: 250px;
  }
  h1.singlePost__title {
    font-size: 1.5em;
  }
  .singlePost_works h1 {
    font-size: 1.5em;
  }
  .singlePost_works dl dt {
    font-size: 1.2em;
    padding: 0 50px;
  }
  .singlePost_works dl dt::before,
  .singlePost_works dl dt::after {
    width: 40px;
  }
  .submitBtn {
    margin: 3em 0 !important;
  }
}
/* 992px～ メディアクエリ開始 */
@media screen and (min-width: 992px) {
  [class^="box0"],
  [class^="boxcolor"] {
    margin: 3.5em 0;
    padding: 2.5em 2.5em 1em;
  }
  [class^="box0"].-round {
    border-radius: 10px;
  }
  .t-box01 {
    clear: both;
    margin: 40px 0px;
  }
  .t-box01 .title {
    padding: 20px 5px 20px 20px;
    font-size: 1.2em;
    border-bottom: none;
  }
  .t-box01 .t-box01In {
    padding: 3% 3% 1.5%;
  }
  .submitBtn {
    margin: 3.5em 0;
  }
  .contactBox {
    margin: 5em auto;
  }
  .contactBox .submitBtn {
    margin-top: 1.5em !important;
  }
}
/* flow */
.flow__box {
  margin: 2.5em 0 2.5em 15px;
}
.flow__list {
  position: relative;
}
.flow__list::before {
  content: "";
  width: 1px;
  height: 99.5%;
  background: #eee;
  margin-left: -130px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 120px;
}
.flow__list > li {
  position: relative;
}
.flow__list > li:not(:last-child) {
  margin-bottom: 3.5em;
}
.flow__list .icon {
  position: absolute;
  top: -15.5px;
  left: -28px;
  z-index: 1;
  width: 25px;
  padding: 15px 0;
  background-color: #fff;
}
.flow__list dl {
  padding-left: 6px;
  position: relative;
}
.flow__list dl dt {
  position: relative;
  margin-bottom: 1.5em;
  font-size: 1.1em;
  font-weight: 500;
}
.flow__list dl dd img.alignright {
  margin-bottom: 0.6em;
}
.flow__list dl dd p {
  margin-bottom: 2em;
}
.flow__list dl dd::after {
  display: block;
  content: "";
  clear: both;
}
@media screen and (min-width: 768px) {
  .flow__box {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .flow__list > li:not(:last-child) {
    margin-bottom: 4em;
  }
  .flow__list .icon {
    top: -22px;
    left: -45px;
    width: 40px;
  }
  .flow__list dl {
    padding-left: 15px;
  }
  .flow__list dl dd img.alignright {
    width: 200px;
  }
}
/* other-style
----------------------------------------------- */
.MT0 {
  margin-top: 0px !important;
}
.MT10 {
  margin-top: 10px !important;
}
.MT20 {
  margin-top: 20px !important;
}
.MT30 {
  margin-top: 30px !important;
}
.MT40 {
  margin-top: 40px !important;
}
.MT50 {
  margin-top: 50px !important;
}
.MB0 {
  margin-bottom: 0px !important;
}
.MB5 {
  margin-bottom: 5px !important;
}
.MB10 {
  margin-bottom: 10px !important;
}
.MB20 {
  margin-bottom: 20px !important;
}
.MB30 {
  margin-bottom: 30px !important;
}
.MB40 {
  margin-bottom: 40px !important;
}
.MB50 {
  margin-bottom: 50px !important;
}
.MR0 {
  margin-right: 0 !important;
}
.MR10 {
  margin-right: 10px !important;
}
.MR20 {
  margin-right: 20px !important;
}
.MR30 {
  margin-right: 30px !important;
}
.ML0 {
  margin-left: 0 !important;
}
.ML10 {
  margin-left: 10px !important;
}
.ML20 {
  margin-left: 20px !important;
}
.ML30 {
  margin-left: 30px !important;
}
.ML100 {
  margin-left: 100px !important;
}
.MRL-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.PT0 {
  padding-top: 0px !important;
}
.PT10 {
  padding-top: 10px !important;
}
.PT20 {
  padding-top: 20px !important;
}
.PT30 {
  padding-top: 30px !important;
}
.PB0 {
  padding-bottom: 0px !important;
}
.PB10 {
  padding-bottom: 10px !important;
}
.PB20 {
  padding-bottom: 20px !important;
}
.PB30 {
  padding-bottom: 30px !important;
}

/* タイムラインスタイル
----------------------------------------------- */
.dl_timeline {
  position: relative;
  margin: 2em 0;
}
.dl_timeline::before {
  content: "";
  position: absolute;
  left: 63px;
  top: 13px;
  bottom: 0;
  z-index: 2;
  width: 2px;
  height: calc(100% - 40px);
  background: #ae6a85;
}
.dl_timeline dt {
  position: relative;
  margin: 0;
  padding: 0.5em 0;
  font-weight: 600;
  color: #ae6a85;
  text-align: right;
  width: 50px;
  font-size: 0.7em;
  float: left;
  clear: both;
}
.dl_timeline dt::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #ae6a85;
  border-radius: 50%;
}
.dl_timeline dd {
  position: relative;
  margin: 0 0 0 80px;
  padding: 0.1em 0 1em 0;
  line-height: 1.6;
  min-height: 2.5em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .dl_timeline::before {
    left: 93px;
    top: 22px;
    height: calc(100% - 55px);
  }
  .dl_timeline dt::before {
    right: -30px;
  }
  .dl_timeline dt {
    font-size: 1.1em;
    width: 70px;
  }
  .dl_timeline dd {
    margin-left: 120px;
    padding-top: 0.3em;
    font-size: 1.2em;
  }
}
.lineBnr {
  margin-top: 3em;
  text-align: center;
}
.lineBnr a {
  display: inline-block;
}
.lineBnr a img {
  width: 100%;
}

/* ========================================
   宮町オリジナル
   ======================================== */
.orange02 {
  color: #ed5d00;
}
/* ========================================
   ご予約・お問い合わせ
   ======================================== */
.response {
  padding-top: 3em;
  border-top: solid 4px #a2caab;
  text-align: center;
}
.response__title h2 {
  margin-bottom: 1em;
  padding-bottom: 0.8em;
  background: url(images/common/hr01.png) no-repeat center bottom;
  background-size: 280px;
  font-size: 1.5em;
}
.response__lead p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.8;
}
.response__text {
  margin-bottom: 0.5em;
  padding-top: 1em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .response__title h2 {
    font-size: 1.8em;
    background-size: 360px;
  }
  .response__lead p {
    font-size: 1.3em;
  }
}

/* profile */
.profile__heading {
}
.profile__img {
  margin-bottom: 1.5em;
}
.profile__comment {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .profile__heading {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1em;
    align-items: center;
  }
  .profile__img {
    order: 2;
  }
  .profile__comment {
    order: 1;
  }
  .profile__comment {
    font-size: min(2.6vw, 1.7em);
  }
}
/*feature*/
.feature__box {
  position: relative;
}
.feature__number {
  position: absolute;
  top: -30px;
  left: 10px;
  color: var(--color-main);
  font-size: 3.5em;
  font-weight: 700;
  font-family: Helvetica Neue;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.8;
}
@media screen and (min-width: 992px) {
  .feature__number {
    top: -35px;
    font-size: 5em;
  }
  .feature__box dt {
    font-size: 1.6em;
  }
}
/* menu-list*/
.menu-list dt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu-list dt span:first-of-type {
  font-weight: 700;
}
/*検査ページ*/
.kensa-list {
  margin: 2em 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3em;
}
.kensa-list li {
  background: var(--color-main-light);
  border: solid 1px var(--color-main);
  color: var(--color-main);
  font-size: 1em;
  padding: 0.5em 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
.point-list {
  margin: 2em auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .point-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .kensa-list li {
    padding: 0.8em 0.5em;
  }
  .kensa-list li br {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .kensa-list {
    gap: 0.5em;
  }
  .kensa-list li {
    font-size: 1.15em;
    padding: 1em 0.5em;
  }
  .kensa-list li br {
    display: none;
  }
}

#sitemap_list li br {
  display: none;
}
.price {
  position: relative;
  max-width: 500px;
  margin: 3em auto 2em;
}

.price::before {
  content: "";
  position: absolute;
  top: -3em;
  left: -0.8em;
  z-index: 1;
  width: 4em;
  aspect-ratio: 1/1;
  background: url("images/common/icon-original.png") no-repeat center center;
  background-size: contain;
}

.price__head {
  background: var(--color-main);
  color: #fff;
  padding: 0.6em 0.6em 0.3em;
  font-weight: 600;
  text-align: center;
  font-size: 1.4em;
}

.price__inner {
  padding: 1em 1em 0.2em;
  border: solid 5px var(--color-main);
}

.price__title-box {
  text-align: center;
  border-bottom: dotted 3px var(--color-main);
  padding-bottom: 1em;
  margin-bottom: 0.5em;
}

.price__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 0.8em;
}

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

.price__title {
  margin-bottom: 0em;
  color: #f1670a;
  font-weight: bold;
  text-align: center;
  font-size: 2em;
  line-height: 1.4;
}
.price__title span {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  background: #f1670a;
  color: #fff;
  font-size: 0.7em;
  line-height: 1;
  text-align: center;
}
.price__campaign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.price__regular {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.price__regular-label {
  font-size: 0.6em;
}

.price__regular-value {
  font-weight: 800;
}

.price__regular-unit {
  font-size: 0.6em;
}

.price__arrow {
  width: 1em;
}

.price__new {
  color: #f1670a;
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1;
}

.price__new-value {
  font-weight: 800;
}

.price__new-unit {
  font-size: 0.4em;
}

.price__note {
  padding: 10px 15px;
  border-radius: 50px;
  text-align: center;
  background: #eee;
  line-height: 1.5;
}

.price__small {
  font-size: 0.8em;
}

@media screen and (min-width: 768px) {
  .price {
    max-width: 820px;
    margin-top: 4.5em;
  }

  .price::before {
    top: -4.5em;
    left: -1.2em;
    width: 6em;
  }

  .price__head {
    padding: 0.4em 0.6em 0.2em;
    font-size: min(5.5vw, 3em);
  }

  .price__inner {
    padding: 1.5em 1.5em 1em;
    border-width: 8px;
  }

  .price__title-box {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 3%;
    padding-bottom: 1.5em;
  }

  .price__img {
    width: 45%;
    margin-bottom: 0;
    aspect-ratio: 6/5;
  }

  .price__title {
    font-size: min(6.5vw, 3.4em);
  }
  .price__title span {
    margin-top: 0.5em;
    padding: 0.6em 1.5em;
    border-radius: 2em;
    font-size: 50%;
  }

  .price__campaign {
    gap: 1.5em;
  }

  .price__arrow {
    width: min(2.5vw, 1.4em);
  }

  .price__regular {
    font-size: min(6vw, 3.3em);
  }

  .price__new {
    font-size: min(14vw, 7.7em);
  }

  .price__note {
    font-size: 1.2em;
  }

  .price__small {
    text-align: center;
  }
}
.c-voice__box {
  margin-bottom: 1.5em;
  padding: 2em 1.5em 1.5em;
  border-radius: 15px;
  background: #fff;
  border: solid 4px #ddd;
}
.c-voice__profile {
  text-align: center;
}
.c-voice__name {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 1.15em;
  line-height: 1.6;
}
.c-voice__text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding-left: 2.5em;
  background: url(images/common/icon-original.png) no-repeat left center;
  background-size: 2em;
}
.c-voice__text ul li {
  padding: 0.2em 0.8em 0.3em;
  background: #fff;
  border: 1px solid #9ec6a4;
  font-size: 0.9em;
}
.c-voice__text h3.c-voice__heading {
  margin-top: 1em;
  padding: 0 0 0.5em;
  color: #1a5613;
  border-left: none;
  border-bottom: solid 4px #9ec6a4;
  font-size: 1.2em;
}
.c-voice__reply {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: dotted 1px #9ec6a4;
}
@media screen and (max-width: 767px) {
  .c-voice__profile img {
    width: 180px;
    margin: 0 auto;
  }
  .c-voice__text ul {
    margin-top: 1em;
  }
  .c-voice__reply-right p.em3 {
    text-align: center;
  }
  .c-voice__title h2 {
    width: 200px;
    background-size: 200px;
    font-size: 1.4em;
  }
}
@media screen and (min-width: 768px) {
  .c-voice__box {
    margin-bottom: 2em;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2em;
  }
  .c-voice__profile img {
    width: 160px;
  }
  .c-voice__text {
    width: calc(100% - 160px - 2em);
  }
  .c-voice__reply {
    width: 100%;
    display: flex;
    gap: 0 1em;
  }
  .c-voice__reply-left {
    width: 120px;
  }
  .c-voice__reply-right {
    width: calc(100% - 120px - 1em);
  }
}
.layout3 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.layout3 figure img {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .layout3 .item {
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .layout3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .layout3 .item {
    width: calc((100% - 2em) / 3);
  }
}
