@charset "UTF-8";
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif; /* GoogleFonts ゴシック：Noto Sans JP　明朝体：Noto Serif JP font-family: 'Oswald', sans-serif; Oswald*/
  /*font-family: Arial,Helvetica,"游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN",Meiryo,sans-serif;*/ /*角ゴシック体 */
  /*font-family: 'Kosugi Maru', sans-serif;*/ /* 丸ゴシック */
  font-weight: revert;
  list-style: none;
  line-height: 35px;
  color: #333333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.06em;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  display: block;
}

#sbi_load span {
  color: #fff !important;
}

a:has(> img) {
  line-height: 0;
  display: inherit;
}

p:has(> img) {
  line-height: 0;
  display: inherit;
}

a[target=_blank]::after {
  font-family: "Fontawesome";
  content: "\f08e";
  margin: 0 5px;
}

main a:not(.btn a, .contact-box dd a, .news a, .sitemap li a, .nav-links a, .paging a, .work-list a) {
  text-decoration: underline;
  color: #FF5B10;
}

#sb_instagram a[target=_blank]::after, #ad a[target=_blank]::after {
  content: "";
  margin: 0px;
}

a[href$=".pdf"]::before {
  font-family: "Fontawesome";
  content: "\f1c1";
  margin: 0 5px;
  color: #d21c00;
}
p.btn a[href$=".pdf"]::before {
  color: #fff;
}

a[href$=".zip"]::before {
  font-family: "Fontawesome";
  content: "\f1c6";
  margin: 0 5px;
  color: #f6de8e;
}
p.btn a[href$=".zip"]::before {
  color: #fff;
}

/* font-size */
h2 {
  font-size: 1.4em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1.2em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  line-height: 0;
}

details > summary {
  list-style: none; /* アイコンを非表示にする */
}

details > summary::-webkit-details-marker {
  display: none; /* WebKit系ブラウザでアイコンを非表示にする */
}

/* ページトップ */
#PageTopBtn {
  position: fixed;
  bottom: 0px;
  right: 0;
}
#PageTopBtn a {
  display: block;
  text-align: center;
  border-radius: 5px 0 0 0;
  outline: none;
  width: 100px;
  padding: 15px 0;
  font-size: 30px;
  color: #FFF;
  background: #FF5B10;
}
#PageTopBtn a:before {
  font-family: "Fontawesome";
  content: "\f0aa";
  position: relative;
}
#PageTopBtn a:hover {
  background: rgb(169, 53.0334728033, 0);
}

main .main, ul#bread {
  max-width: 1450px;
  margin: 0 auto;
}

.contact-box .home-mail-btn dl dd, .contact-box .home-line-btn dl dd, .contact-box .home-tel dl dd, main .main p.btn, .paging div, header nav #headtel {
  border: 1px solid #dedede;
  border-radius: 3px;
}

.text_align_right {
  text-align: right;
}

.text_align_center {
  text-align: center;
}

.text_align_left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

main .main .features_box figure figcaption .title {
  font-weight: 300;
  margin-bottom: 4vh;
  font-size: 2rem;
  margin-left: 0;
  padding-left: 0;
}

.flex2 {
  flex: 2 !important;
}

/* じわっと出てくる */
.blur {
  animation-name: blurAnime;
  animation-duration: 1.1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

/* 骨組み */
html {
  background: url(../img/background/bg.jpg) top left/auto repeat;
}

body {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
  z-index: -1;
}

header {
  padding: 1em;
  display: flex;
  justify-content: space-between;
  position: sticky;
  z-index: 1000;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5); /* 白色で70%の透過 */
  backdrop-filter: blur(10px); /* 10pxのぼかし効果を適用 */
  -webkit-backdrop-filter: blur(10px); /* Safari用のベンダープレフィックス */
}
header h1 img {
  width: 290px;
}
header nav {
  font-size: clamp(10px, 1vw, 14px);
}
header nav > ul {
  display: flex;
  gap: 2em;
  align-items: center;
  height: 100%;
}
header nav > ul li .sub-menu {
  display: none;
}
header nav > ul li:hover .sub-menu {
  display: block;
  position: absolute;
  width: 240px;
}
header nav > ul li:hover .sub-menu li {
  background: rgba(255, 255, 255, 0.9);
}
header nav > ul li:hover .sub-menu li a {
  display: block;
  padding: 0.5em 1.5em;
  width: 100%;
}
header nav > ul li.menu-item-has-children {
  position: relative;
}
header nav > ul li.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #FF5B10;
  border-bottom: 1px solid #FF5B10;
  margin: 0px 0 6% 10px;
  transform: rotate(45deg);
}
header nav a:hover {
  color: #FF5B10 !important;
}
header nav #headtel {
  padding: 5px 20px;
  text-align: center;
}
header nav #headtel #telnumber {
  font-family: "Oswald", sans-serif;
}
header nav #headtel #telnumber:before {
  font-family: "Fontawesome";
  content: "\f098";
  position: relative;
  left: -5px;
  top: -0.5px;
}

/* メイン画像 */
#mainimg figure {
  line-height: 0;
  position: relative;
}
#mainimg figure img {
  width: 100%;
}
#mainimg figure figcaption {
  width: 61%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 2vw;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
}
#mainimg figure figcaption p {
  font-size: clamp(20px, 1rem + 1.5vw, 45px);
  line-height: 1.6;
  font-weight: 600;
}
#mainimg figure figcaption span {
  color: #FF5B10;
}
#mainimg .slider img {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

/* パンくず */
.paging {
  display: flex;
  padding: 0 1em;
  margin: 4em 0 0;
  gap: 2em;
  justify-content: space-between;
}
.paging div {
  padding: 0.5em 2em;
}
.paging div a:hover {
  color: #FF5B10;
}
.paging div.next {
  text-align: right;
  margin-left: auto;
}

ul#bread {
  margin-bottom: 25px;
  margin-top: 10px;
  font-size: 75%;
}
ul#bread li {
  display: inline-block;
  padding: 0 10px;
}

/* パンくず end */
#container .contact {
  padding: 5em 1em 6em;
  background: #fbfbfb;
}

main {
  font-size: 20px;
}
main .main {
  padding: 5em 0;
}
main .main dt, main .main .title, main .main th {
  color: #FF5B10;
}
main .main h2, main .main h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-left: 1em;
  padding-right: 1em;
  line-height: normal;
  font-weight: 700;
}
main .main > h2 {
  margin-bottom: 2em;
  font-size: clamp(28px, 4vw, 48px);
  position: relative;
  padding-bottom: 0.5em;
}
main .main > h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50px;
  background: #a1a1a1;
}
main .main > h2::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: rgb(255, 233.68, 223.93);
  border-radius: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.85;
  z-index: -1;
}
main .main > h3 {
  margin-bottom: 2em;
  font-size: clamp(20px, 2.5vw, 32px);
}
main .main > p {
  padding: 0 1em;
}
main .main p.btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5em 2em;
  margin-top: 5em;
}
main .main p.btn > a:after {
  font-family: "Fontawesome";
  content: "\f0c1";
  position: relative;
  width: 6px;
  height: 6px;
  margin: 0px 0 6% 10px;
}
main .main p.btn a:hover {
  color: #FF5B10;
}
main .main p.btn + p:not(.btn) {
  margin-top: 3em;
}
main .main {
  /* 複数並べるとき */
}
main .main .btns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
main .main .btns-list p.btn {
  margin: 0;
}
main .main .fit {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main .main strong {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
main .main strong:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 6px;
  background: #ffd54f;
  border-radius: 999px;
  opacity: 0.8;
  z-index: -1;
  transform: rotate(-1deg) scaleY(1.2);
  filter: blur(0.5px);
}
main .main .column {
  display: flex;
  padding: 0 1em;
}
main .main .features_box {
  display: flex;
  gap: 10em;
  flex-direction: column;
}
main .main .features_box * {
  display: flex;
}
main .main .features_box figure {
  flex: 1;
  gap: 5em;
  align-items: center;
}
main .main .features_box figure:nth-child(even) {
  flex-direction: row-reverse;
}
main .main .features_box figure img {
  max-width: 855px;
  width: 100%;
}
main .main .features_box figure figcaption {
  flex-direction: column;
  max-width: 680px;
  padding: 5em 3em;
  text-align: justify;
}
main .main .features_box figure figcaption .text {
  margin-bottom: 2em;
}
main .main .features_box figure figcaption .btn {
  margin-top: 0;
  font-size: 14px;
}
main .main .step-flow {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 1em;
}
main .main .step-flow *:not(dd, a, br) {
  display: flex;
}
main .main .step-flow dl {
  gap: 2em;
  padding-bottom: 2em;
}
main .main .step-flow dl dt {
  font-weight: 800;
  position: relative;
  padding-right: 1em;
  font-size: 1.1em;
}
main .main .step-flow dl dt:after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
}
main .main .step-flow dl dd > a:after {
  font-family: "Fontawesome";
  content: "\f14c";
  position: relative;
  margin: 0 0 0 10px;
}
main .main .step-flow dl dd a:hover {
  color: #FF5B10;
}
main .main table {
  width: -moz-fit-content;
  width: fit-content;
  margin: 5em auto;
  border-top: 1px solid #dfdfdf;
}
main .main table tr {
  border-bottom: 1px solid #dfdfdf;
}
main .main table tr th, main .main table tr td {
  padding: 1em;
}
main .main table tr th {
  min-width: 150px;
  background: #f5f5f5;
}
main .main table.tax {
  position: relative;
}
main .main table.tax:after {
  position: absolute;
  content: "消費税別";
  right: 1em;
  font-size: 14px;
}
main .main ul.triangle, main .main ul.reference_mark {
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  padding: 0 1em;
}
main .main ul.triangle li, main .main ul.reference_mark li {
  position: relative;
  padding-left: 1.2em;
}
main .main ul.triangle li:before, main .main ul.reference_mark li:before {
  font-family: "Fontawesome";
  content: "\f0da";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 75%;
}
main .main ul.reference_mark {
  font-size: 0.7em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
main .main ul.reference_mark li:before {
  content: "*";
}
main .main {
  /* ページネーション */
}
main .main .pagination {
  text-align: center;
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 7em;
  padding: 0 1em;
}
main .main .pagination .nav-links {
  display: flex;
  gap: 1em;
}
main .main .pagination span, main .main .pagination a {
  width: 2.4vw;
  height: 2.4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  padding: 1em;
}
main .main .pagination a {
  transition: 0.3s ease-in-out;
}
main .main .pagination a:hover {
  background: rgb(245.5, 77.039748954, 0);
  color: #FFF;
}
main .main .pagination a:hover * {
  color: #FFF;
}
main .main .pagination span {
  background: rgb(245.5, 77.039748954, 0);
  color: #FFF;
}
main .main blockquote {
  padding: 1em;
  font-style: italic;
}
main .main .office {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
main .main .office dl {
  display: flex;
  padding: 2rem 0 2rem 1rem;
}
main .main .office dl dt {
  flex: 1;
}
main .main .office dl dd {
  flex: 3;
}
main .main .office dl:not(:last-child) {
  border-bottom: 1px solid #dfdfdf;
}
main .max-width {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
}
main .mw {
  width: 100% !important;
  max-width: initial !important;
  margin: 0 !important;
}
main .news {
  padding: 5em 2em;
  background: #f0f2f5;
}
main .news ul {
  flex-direction: column;
}
main .news ul * {
  display: flex;
  gap: 0.2em;
  align-items: baseline;
}
main .news ul li {
  gap: 1em;
  margin: 1em 0;
}
main .news ul li:first-child {
  font-weight: 100;
  font-size: clamp(3rem, 2.5vw, 4rem);
  line-height: normal;
  margin-top: 0;
}
main .news ul li span:nth-child(1) {
  font-size: 75%;
}
main .news ul li a:hover {
  color: #FF5B10;
}
main .news p a {
  font-size: 13px;
  color: var(--wp--preset--color--cyan-bluish-gray);
}
main .news p a:after {
  content: ">";
  margin: 5px 0 0 5px;
}
main + .contact {
  border-top: 1px solid rgb(196, 196, 198);
  padding: 5em 1em 6em;
}

/* formcss */
.wpcf7-form .wpcf7-list-item {
  margin: 0 10px 10px 0 !important;
}
.wpcf7-form h4 {
  margin-bottom: 20px;
  text-align: center;
}
.wpcf7-form dl.form-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px dotted #bbb;
  width: 80%;
  margin: 0 auto;
  gap: 2em;
}
.wpcf7-form dl.form-item dt {
  min-width: 250px;
  position: relative;
  padding: 8px 0 0;
  flex: 1;
}
.wpcf7-form dl.form-item + h4 {
  margin-top: 2em;
}
.wpcf7-form h4 + dl.form-item {
  border-top: 1px dotted #bbb;
}
.wpcf7-form .mandatory::after {
  content: "必須";
  top: 8px;
  right: 0;
  color: #e78;
  position: absolute;
}
.wpcf7-form dd {
  padding: 8px 0 0 10px;
  flex: 2;
}
.wpcf7-form dd .radio-662 {
  margin: 10px 0 0;
  position: absolute;
}
.wpcf7-form input[type=text], .wpcf7-form input[type=tel], .wpcf7-form input[type=email] {
  margin: 0;
  padding: 0 0 0 10px;
  width: 100%;
  max-width: 500px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  display: block;
  position: relative;
}
.wpcf7-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 0 0 10px;
  width: 260px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  vertical-align: middle;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: 34px auto;
  background-position: right 0 top 50%;
}
.wpcf7-form textarea {
  margin: 0;
  padding: 0 0 0 10px;
  width: 100%;
  max-width: 500px;
  height: 150px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  box-sizing: border-box;
}
.wpcf7-form .contact-agree-btn {
  margin-bottom: 50px;
  padding: 30px 0;
  border-bottom: 1px dotted #bbb;
}
.wpcf7-form .contact-agree-btn p {
  margin: 0 0 20px;
  text-align: center;
}
.wpcf7-form .contact-agree-btn p a {
  color: #FF5B10;
}
.wpcf7-form .contact-agree-btn p a:hover {
  color: #abb8c3;
}
.wpcf7-form .contact-agree-btn .acceptance-254 {
  margin: 0 auto;
  width: 300px;
  height: 50px;
  text-align: center;
  background-color: #eee;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  border-radius: 25px;
  position: relative;
  transition: 0.5s;
  line-height: 49px;
}
.wpcf7-form .contact-agree-btn .acceptance-254:hover {
  background: #FF5B10;
}
.wpcf7-form .contact-agree-btn .acceptance-254:hover span {
  color: #fff;
}
.wpcf7-form #decision input {
  margin: 0 auto;
  width: 300px;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0px 3px 3px 0px rgba(51, 51, 51, 0.35);
  display: block;
  border: none;
  background: #FF5B10;
  transition: 0.5s;
}
.wpcf7-form #decision input:hover {
  background: #10b4ff;
}

div.wpcf7cp-btns {
  text-align: center;
}
div.wpcf7cp-btns button {
  width: 300px;
  height: 50px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0px 3px 3px 0px rgba(51, 51, 51, 0.35);
  border: none;
  background: #FF5B10;
}
div.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #abb8c3;
  color: #000;
}

.contact-box {
  max-width: 990px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
.contact-box > * {
  flex: 1;
  text-align: center;
}
.contact-box .home-mail-btn dl dd, .contact-box .home-line-btn dl dd, .contact-box .home-tel dl dd {
  padding: 0.5em 0;
  margin-top: 1em;
  background: var(--wp--preset--color--white);
}
.contact-box .home-mail-btn dl dd > a:after, .contact-box .home-line-btn dl dd > a:after, .contact-box .home-tel dl dd > a:after {
  margin: 0 0 0 10px;
  font-size: 13px;
}
.contact-box .home-mail-btn dl dd a:hover, .contact-box .home-line-btn dl dd a:hover, .contact-box .home-tel dl dd a:hover {
  color: #FF5B10;
}
.contact-box .home-tel dd:before {
  font-family: "Fontawesome";
  content: "\f098";
  position: relative;
  left: -5px;
  top: -0.5px;
}
.contact-box .home-tel dd > a:after {
  content: initial !important;
}
.contact-box .home-tel dd span {
  font-size: 75%;
}
.contact-box .home-line-btn dt {
  color: #06c755;
}
.contact-box .home-line-btn dd {
  border-color: #06c755 !important;
}

footer {
  padding: 5em 1em 1em 1em;
  background: #f0f2f5;
  font-size: 75%;
}
footer #footerwidget {
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3em;
}
footer #footerwidget > * {
  flex: 1;
  width: 100%;
}
footer #footerwidget .footer-widget .sub-menu li {
  padding: 0 0 0 1em;
}
footer .copyright {
  text-align: center;
  font-size: 10px;
  margin: 15px 0 0;
}

/* トップページ */
.home .message h2 {
  margin-bottom: 1em;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--wp--preset--color--black);
}
.home .message .column {
  justify-content: center;
  align-items: center;
  gap: 70px;
}
.home .message .column_text {
  max-width: 640px;
}
.home .pr3 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f6f7f7;
  padding: 5em 10px;
}
.home .pr3 h2 {
  width: 100%;
  text-align: center;
}
.home .pr3_box {
  flex: 1;
  max-width: 512px;
  padding: 50px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}
.home .pr3_box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.home .pr3_box::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.home .pr3_box h3 {
  margin-bottom: 20px;
}
.home .pr3_box p {
  line-height: 45px;
}
.home #construction {
  overflow: hidden;
  position: relative;
}
.home #construction a {
  display: block;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.home #construction a figure {
  gap: 70px;
  justify-content: center;
  align-self: stretch;
}
.home #construction a figure picture {
  flex: 1;
  position: relative;
}
.home #construction a figure picture::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 91, 16, 0.5);
  z-index: -1;
}
.home #construction a figure picture img {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.3);
}
.home #construction a figure figcaption {
  flex: 1;
  max-width: 640px;
  padding: 50px;
}
.home #construction a figure figcaption h3 {
  margin-bottom: 1em;
}
.home #construction a figure figcaption p.btn {
  margin-top: 3em;
}
.home #construction a:not(:last-child) {
  margin-bottom: 5em;
}
.home #construction a:nth-child(2n) figure {
  flex-direction: row-reverse;
}
.home #construction a:nth-child(2n) figure picture::before {
  right: -40px;
  left: initial;
}
.home #construction::before {
  content: "";
  width: 900px;
  height: 200px;
  background-color: #bcbf06;
  position: absolute;
  bottom: -97px;
  right: -150px;
  transform: rotate(167deg);
  opacity: 0.2;
  z-index: -1;
}
.home #construction::after {
  content: "";
  width: 900px;
  height: 200px;
  background-color: #b95900;
  position: absolute;
  top: -97px;
  left: -150px;
  transform: rotate(167deg);
  opacity: 0.2;
  z-index: -1;
}

ul.work-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 10px;
}
ul.work-list li {
  flex: 0 1 calc((100% - 40px) / 3);
  max-width: 512px;
  padding: 15px 15px 40px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s;
}
ul.work-list li::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
ul.work-list li::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
ul.work-list li a {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #333;
  line-height: 35px;
}
ul.work-list li a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
ul.work-list li:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  ul.work-list li {
    flex: 0 1 100%;
  }
}

.post-type-archive-work .column {
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}
.post-type-archive-work .column dl {
  flex: 0 1 calc((100% - 40px) / 3);
}

/* faq */
.faq .main details {
  padding: 1em 2em;
  border-bottom: 1px solid #dfdfdf;
  background: #f5f5f5;
}
.faq .main details summary {
  position: relative;
  padding: 0 0 0 1.3em;
  font-weight: 600;
  /* デフォルトの矢印消す　Chrome、Safari 以外 */
  display: block;
}
.faq .main details summary:before {
  font-family: "Fontawesome";
  content: "Q";
  position: absolute;
  left: -5px;
  top: -0.5px;
}
.faq .main details {
  /* デフォルトの矢印消す　Chrome、Safari のみ */
}
.faq .main details summary::-webkit-details-marker {
  display: none;
}
.faq .main details p {
  padding: 0 0 0 1.3em;
  position: relative;
}
.faq .main details p:before {
  font-family: "Fontawesome";
  content: "A";
  position: absolute;
  left: -5px;
  top: 1.5px;
}
.faq .main details ul.triangle, .faq .main details ul.reference_mark {
  margin-top: 1em;
}
.faq .main {
  /* オープン時にアニメーションを設定 */
}
.faq .main details[open] p, .faq .main details[open] ul {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* サイトマップ */
.sitemap ul.list_4, .sitemap ul.list_3 {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  padding: 0 1em;
}
.sitemap ul.list_4 a:hover, .sitemap ul.list_3 a:hover {
  color: #222;
}
.sitemap ul.list_4 > li, .sitemap ul.list_3 > li {
  width: calc(25% - 1em);
}
.sitemap ul.list_4 > li > a:after, .sitemap ul.list_3 > li > a:after {
  font-family: "Fontawesome";
  content: "\f0a9";
  margin: 0px 0 6% 10px;
}
.sitemap ul.list_4 > li ul li, .sitemap ul.list_3 > li ul li {
  padding-left: 1.3em;
  position: relative;
}
.sitemap ul.list_4 > li ul li:before, .sitemap ul.list_3 > li ul li:before {
  font-family: "Fontawesome";
  content: "\f107";
  position: absolute;
  left: 0;
  transform: rotate(45deg);
  top: 2px;
}
.sitemap ul.list_3 > li {
  width: calc(33.3333333333% - 1em);
}

/* アーカイブとカテゴリーページ */
.archive .column, .category .column {
  gap: 1em;
}
.archive .column dl, .category .column dl {
  font-size: 14px;
  width: calc(25% - 1em);
  box-shadow: 0 1px 3px 0 rgba(88, 88, 88, 0.3);
  border-radius: 4px;
}
.archive .column dl dt a, .category .column dl dt a {
  line-height: 0;
  display: block;
}
.archive .column dl dd, .category .column dl dd {
  display: flex;
  flex-direction: column;
  padding: 1em;
}
.archive .column dl dd *, .category .column dl dd * {
  line-height: 1.7em;
}
.archive .column dl dd span:first-child a, .category .column dl dd span:first-child a {
  color: #3c3c43;
  font-weight: 600;
}

/* 投稿ページ */
.single-post .single-img {
  text-align: center;
}
.single-post .single-text {
  max-width: 950px;
  margin: auto;
}
.single-post ul, .single-post ol {
  padding: 0 1em;
}

.single-work main .main > h3 {
  margin-top: 2em;
}

/* オリジナルcss */
#page_title {
  margin-bottom: 0;
  display: flex;
}
#page_title h2 {
  width: 100%;
  display: flex;
  align-items: center;
}
#page_title h2:before {
  content: none;
}
#page_title h2:after {
  width: 90%;
}

.outer-wall picture {
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
  line-height: 0;
}
.outer-wall picture::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.outer-wall picture::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.outer-wall_list_img {
  max-width: 1300px !important;
}
.outer-wall_list_img ul {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.outer-wall_list_img ul li {
  flex: 0 1 calc((100% - 160px) / 3);
}
.outer-wall_list_img ul li picture img {
  width: 100%;
}
.outer-wall_list_img ul li h3 {
  padding: 0;
  margin: 0.8em 0;
}
.outer-wall_list_img ul li p {
  text-align: justify;
}
.outer-wall_list_img ul li {
  /* 下段2つ */
}
.outer-wall_list_img ul li:nth-child(n+4) {
  flex: 0 1 calc((100% - 80px) / 2);
}
@media (max-width: 768px) {
  .outer-wall_list_img li,
  .outer-wall_list_img li:nth-child(n+4) {
    flex: 0 1 100%;
  }
}
.outer-wall_money table {
  width: 640px !important;
  margin: 0 auto;
}
.outer-wall_money table td {
  text-align: center;
}
.outer-wall_money p + .yoko-scroll {
  margin-top: 90px;
}
.outer-wall .roof-painting_list_img ul li {
  flex: 0 1 calc((100% - 80px) / 2);
  /* 奇数最後 */
}
.outer-wall .roof-painting_list_img ul li:last-child:nth-child(odd) {
  flex-basis: 100%;
}
.outer-wall .reason {
  max-width: 1300px;
  margin: 12em auto;
  justify-content: space-between;
  align-items: center;
  gap: clamp(40px, 5vw, 95px);
}
.outer-wall .reason picture {
  flex: 1;
}
.outer-wall .reason figcaption {
  max-width: 525px;
  line-height: 2.3em;
  text-align: justify;
  flex: 1;
}
.outer-wall .reason {
  /* 偶数 */
}
.outer-wall .reason:nth-of-type(even) {
  flex-direction: row-reverse;
}
.outer-wall .reason + h2 {
  margin-top: 2em !important;
}

.roof-painting picture {
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
  line-height: 0;
}
.roof-painting picture::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.roof-painting picture::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: #FF5B10;
  z-index: -1;
}
.roof-painting_list_img {
  max-width: 1300px !important;
}
.roof-painting_list_img ul {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.roof-painting_list_img ul li {
  flex: 0 1 calc((100% - 160px) / 3);
}
.roof-painting_list_img ul li picture img {
  width: 100%;
}
.roof-painting_list_img ul li h3 {
  padding: 0;
  margin: 0.8em 0;
}
.roof-painting_list_img ul li p {
  text-align: justify;
}
.roof-painting_list_img ul li {
  /* 下段2つ */
}
.roof-painting_list_img ul li:nth-child(n+4) {
  flex: 0 1 calc((100% - 80px) / 2);
}
@media (max-width: 768px) {
  .roof-painting_list_img li,
  .roof-painting_list_img li:nth-child(n+4) {
    flex: 0 1 100%;
  }
}
.roof-painting_money table {
  width: 640px !important;
  margin: 0 auto;
}
.roof-painting_money table td {
  text-align: center;
}
.roof-painting_money p + .yoko-scroll {
  margin-top: 90px;
}
.roof-painting .roof-painting_list_img ul li {
  flex: 0 1 calc((100% - 80px) / 2);
  /* 奇数最後 */
}
.roof-painting .roof-painting_list_img ul li:last-child:nth-child(odd) {
  flex-basis: 100%;
}
.roof-painting .reason {
  max-width: 1300px;
  margin: 12em auto;
  justify-content: space-between;
  align-items: center;
  gap: clamp(40px, 5vw, 95px);
}
.roof-painting .reason picture {
  flex: 1;
}
.roof-painting .reason figcaption {
  max-width: 525px;
  line-height: 2.3em;
  text-align: justify;
  flex: 1;
}
.roof-painting .reason {
  /* 偶数 */
}
.roof-painting .reason:nth-of-type(even) {
  flex-direction: row-reverse;
}
.roof-painting .reason + h2 {
  margin-top: 2em !important;
}

.main:has(.reason) {
  background-color: #fffdf4 !important;
}
.main:has(.reason) > h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.main:has(.reason) > h2 span {
  background-color: #FF5B10;
  color: var(--wp--preset--color--white);
  font-size: 16px;
  padding: 0 0.5em;
  border-radius: 5px;
  margin-right: 10px;
}

.owner picture {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  display: block;
}

.owner-name {
  font-family: "Noto Serif JP", sans-serif;
  margin-top: 2em !important;
  font-weight: 700;
  font-size: 1.3em;
}
.owner-name span {
  font-size: 16px;
  font-family: "Noto Serif JP", sans-serif;
}/*# sourceMappingURL=base.css.map */