@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: 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: #000000;
  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;
}

#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, main .main #index a, .sitemap li a, .nav-links a, .paging a) {
  text-decoration: underline;
  color: #2a344a;
}

#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: #2a344a;
}
#PageTopBtn a:before {
  font-family: "Fontawesome";
  content: "\f0aa";
  position: relative;
}
#PageTopBtn a:hover {
  background: rgb(5.0689655172, 6.275862069, 8.9310344828);
}

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

.single-work .work-content-list li, .after-follow ul.column > li, .contact-box .home-mail-btn dl dd, .contact-box .home-line-btn dl dd, .contact-box .home-tel dl dd, main .main p.btn, main .main .paging div, header nav #headtel {
  border: 1px solid #dedede;
  border-radius: 3px;
}

.features-list-box li {
  box-shadow: 0 0 1em rgb(230, 230, 230);
}

.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;
}

/* 骨組み */
body {
  background-color: #E9EBEE;
}

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 #2a344a;
  border-bottom: 1px solid #2a344a;
  margin: 0px 0 6% 10px;
  transform: rotate(45deg);
}
header nav a:hover {
  color: #2a344a !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 {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
#mainimg figure img {
  width: min(100%, 1500px);
  padding-bottom: 50px;
  display: block;
  background: var(--wp--preset--color--white);
  border-radius: 0 0 0 100px;
}
#mainimg figure figcaption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 1;
}
#mainimg figure figcaption p {
  font-size: clamp(20px, 3vw, 30px);
  line-height: clamp(30px, 4vw, 50px);
  font-weight: 600;
}
#mainimg figure:before {
  content: "";
  width: 100%;
  height: 65%;
  background-color: var(--wp--preset--color--white);
  position: absolute;
  z-index: -1;
}
#mainimg .slider img {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

/* パンくず */
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: 17px;
}
main .main {
  padding: 5em 0;
}
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(3rem, 2.5vw, 4rem);
  position: relative;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.08);
}
main .main > h2::after {
  position: absolute;
  content: "";
  width: 0.1px;
  height: 40px;
  background-color: #000;
  bottom: -70%;
  left: 50%;
  transform: translateX(-50%);
}
main .main > h3 {
  margin-bottom: 2em;
  font-size: clamp(1rem, 2.5vw, 2rem);
}
main .main > p {
  padding: 0 1em;
}
main .main .paging {
  display: flex;
  padding: 0 1em;
  margin: 4em 0 0;
  gap: 2em;
  justify-content: space-between;
}
main .main .paging div {
  padding: 0.5em 2em;
}
main .main .paging div a:hover {
  color: #2a344a;
}
main .main .paging div.next {
  text-align: right;
}
main .main p.btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5em 2em;
  margin-top: 5em;
  background-color: var(--wp--preset--color--white);
}
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: #2a344a;
}
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 #index {
  counter-reset: number 0;
  /*backdrop-filter: blur(4px);  10pxのぼかし効果を適用 */
  /*-webkit-backdrop-filter: blur(4px);  Safari用のベンダープレフィックス */
  background: rgba(240, 242, 245, 0.8) !important;
}
main .main #index li {
  padding: 0 1em;
}
main .main #index li a:before {
  counter-increment: number 1;
  content: counter(number) ". ";
  position: relative;
}
main .main #index li a:hover {
  font-weight: 600;
  text-decoration: underline;
}
main .main .work-list, main .main .single-work .work-content-list, .single-work main .main .work-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em 1em;
  padding: 0 1em;
}
main .main .work-list li, main .main .single-work .work-content-list li, .single-work main .main .work-content-list li {
  width: calc(33.3333333333% - 1em);
}
main .main .work-list li a, main .main .single-work .work-content-list li a, .single-work main .main .work-content-list li a {
  display: block;
}
main .main .work-list li a img:hover, main .main .single-work .work-content-list li a img:hover, .single-work main .main .work-content-list li a img:hover {
  opacity: 0.8;
}
main .main .column {
  display: flex;
  padding: 0 1em;
  flex-wrap: wrap;
}
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: #2a344a;
}
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 {
  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;
}
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(32.7672413793, 40.5689655172, 57.7327586207);
  color: #FFF;
}
main .main .pagination a:hover * {
  color: #FFF;
}
main .main .pagination span {
  background: rgb(32.7672413793, 40.5689655172, 57.7327586207);
  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: 1360px;
  width: 100%;
  margin: 0 auto;
}
main .mw {
  width: 100% !important;
  max-width: initial !important;
  margin: 0 !important;
}
main .news, main .main #index {
  padding: 5em 2em;
  background: var(--wp--preset--color--white);
  border-top: 1px solid rgb(196, 196, 198);
  border-bottom: 1px solid rgb(196, 196, 198);
}
main .news ul, main .main #index ul {
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
}
main .news ul *, main .main #index ul * {
  display: flex;
  gap: 0.2em;
  align-items: baseline;
}
main .news ul li, main .main #index ul li {
  gap: 1em;
  margin: 1em 0;
}
main .news ul li span:nth-child(1), main .main #index ul li span:nth-child(1) {
  font-size: 75%;
}
main .news ul li a:hover, main .main #index ul li a:hover {
  color: #2a344a;
}
main .news p, main .main #index p {
  max-width: 640px;
  margin: 0 auto;
}
main .news p a, main .main #index p a {
  font-size: 13px;
  color: var(--wp--preset--color--cyan-bluish-gray);
}
main .news p a:after, main .main #index 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: #2a344a;
}
.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: #2a344a;
}
.wpcf7-form .contact-agree-btn .acceptance-254:hover span {
  color: #fff;
}
.wpcf7-form .contact-agree-btn details {
  text-align: center;
}
.wpcf7-form .contact-agree-btn details summary {
  text-align: center;
}
.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: #2a344a;
  transition: 0.5s;
}
.wpcf7-form #decision input:hover {
  background: #4a402a;
}

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: #2a344a;
}
div.wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #abb8c3;
  color: #000;
}

.contact-box {
  max-width: 1360px;
  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: #2a344a;
}
.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: 1360px;
  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 .pricing {
  max-width: 80%;
  margin: 0 auto;
  background: #fff;
  padding: 2em;
  border-radius: 3em;
  display: flex;
  gap: 2em;
  justify-content: center;
  align-items: normal;
  position: relative;
}
.home .pricing_box {
  width: 100%;
  background-color: #E9EBEE;
  padding: 2em;
  border-radius: 20px;
}
.home .pricing_box table {
  width: 100%;
}
.home .pricing_box table tr {
  border-bottom: 1px solid #b9b9b9;
}
.home .pricing_box table tr th {
  font-weight: 700;
  font-size: 1.6em;
  text-align: center;
  padding: 1em 0;
}
.home .pricing_box table tr td {
  padding: 1em;
}
.home .pricing_box table tr td:nth-child(1) {
  font-weight: 700;
  width: 25%;
}
.home .pricing_box table tr td:nth-child(2) {
  width: 75%;
}
.home .pricing_box table tr td ul.triangle, .home .pricing_box table tr td main .main ul.reference_mark, main .main .home .pricing_box table tr td ul.reference_mark {
  padding: 0;
}
.home .pricing_box table.tax {
  margin-bottom: 50px;
}
.home .problem {
  background-color: var(--wp--preset--color--white);
  position: relative;
}
.home .problem > ul {
  max-width: 1300px;
  justify-content: center;
  align-items: normal;
  gap: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home .problem > ul > li {
  border: 1px solid #888;
  flex: 0 1 calc((100% - 40px) / 3);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #fff;
}
.home .problem > ul > li i {
  font-size: 3em;
}
.home .problem > ul > li > ul > li:nth-child(1) {
  font-weight: 700;
  font-size: 18px;
}
.home .problem > ul > li > ul > li:nth-child(2) {
  text-align: justify;
}
.home .problem::after {
  content: "";
  width: 200px;
  height: 640px;
  display: block;
  background-image: url(../img/home/problem-bg.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home .problem::before {
  content: "";
  width: 200px;
  height: 640px;
  display: block;
  background-image: url(../img/home/problem-bg.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(-1);
}

/* 代表挨拶 */
.owner main figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owner main figure img {
  margin-bottom: 5em;
}
.owner main section .max-width {
  max-width: 900px;
}

/* アフターフォロー */
.after-follow ul.column {
  gap: 1em;
  margin-top: 7em;
  justify-content: space-between;
}
.after-follow ul.column > li {
  width: calc(33.3333333333% - 1em);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  background-color: var(--wp--preset--color--white);
}
.after-follow ul.column > li i {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  font-size: 3em;
  font-weight: 600;
  background: #000;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: 0;
}
.after-follow ul.column > li ul li {
  line-height: 1.8em;
}
.after-follow ul.column > li ul li:first-child {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}
.after-follow ul.column > li a {
  display: contents;
}

/* 新規制作・リニューアル */
.new-production .main .first-text, .renewal .main .first-text {
  flex-wrap: initial !important;
  gap: 4em;
  align-items: center;
  justify-content: center;
}
.new-production .main .first-text img, .renewal .main .first-text img {
  max-width: 500px;
  border: 1px solid #dfdfdf;
  width: 100%;
}
.new-production .main table, .renewal .main table {
  width: 50% !important;
  margin: 6em auto;
}
.new-production .main table tr, .renewal .main table tr {
  display: flex;
  justify-content: center;
  align-items: normal;
  border-bottom: 1px solid #dfdfdf;
}
.new-production .main table tr th, .new-production .main table tr td, .renewal .main table tr th, .renewal .main table tr td {
  flex: 1;
  padding: 1em;
}
.new-production .main table tr td ul.triangle, .new-production main .main table tr td ul.reference_mark, main .new-production .main table tr td ul.reference_mark, .renewal .main table tr td ul.triangle, .renewal main .main table tr td ul.reference_mark, main .renewal .main table tr td ul.reference_mark {
  margin: 0;
}
.new-production .main table tr td:nth-child(3), .renewal .main table tr td:nth-child(3) {
  text-align: right;
}
.new-production .main table.table-flex-2 tr th:last-child, .new-production .main table.table-flex-2 tr td:last-child, .renewal .main table.table-flex-2 tr th:last-child, .renewal .main table.table-flex-2 tr td:last-child {
  flex: 2;
}
.new-production .process, .renewal .process {
  counter-reset: list-counter;
  background-color: var(--wp--preset--color--white);
}
.new-production .process details, .renewal .process details {
  counter-increment: list-counter;
  padding: 2em;
}
.new-production .process details:nth-of-type(1), .renewal .process details:nth-of-type(1) {
  margin-top: 7em;
}
.new-production .process details summary, .renewal .process details summary {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 auto;
  max-width: 585px;
  width: 100%;
}
.new-production .process details summary:after, .renewal .process details summary:after {
  font-family: "Fontawesome";
  content: "\f107";
  margin-left: 1em;
}
.new-production .process details summary span, .renewal .process details summary span {
  font-size: 1rem;
  padding: 5px 20px;
  border-radius: 30px;
  background: #2a344a;
  color: var(--wp--preset--color--white);
  line-height: 1;
  margin: 0 2em 0 0;
  font-weight: 400;
}
.new-production .process details figure, .renewal .process details figure {
  display: flex;
  gap: 2em;
  padding-top: 2em;
  align-items: flex-start;
}
.new-production .process details figure img, .renewal .process details figure img {
  max-width: 320px;
  border: 1px solid #dfdfdf;
}
.new-production .process details[open] summary:after, .renewal .process details[open] summary:after {
  content: "\f106";
}

/* 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;
  }
}

/* 制作実績 これに関してはプラグインを入れないと動かない */
.single-work .work-content-list {
  gap: 1em !important;
}
.single-work .work-content-list li {
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  width: calc(50% - 1em) !important;
  padding: 0.5em 1em;
  background-color: #000;
  color: #fff;
}
.single-work .column {
  gap: 4em;
}
.single-work .column_box {
  width: calc(50% - 4em);
}
.single-work .column_box p.btn {
  margin-top: 0;
}
.single-work .column_box h3 {
  margin-bottom: 1em;
  font-size: 1.6em;
}
.single-work .column_box h3:not(:first-of-type) {
  margin-top: 2em;
}

/* サイトマップ */
.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 dt a img, .category .column dl dt a img {
  width: 100%;
}
.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;
}

/* 当社の特長 */
.features-list-box {
  gap: 4em;
  align-items: flex-start;
  justify-content: center;
}
.features-list-box li {
  width: calc(50% - 4em);
  padding: 3em;
  background-color: var(--wp--preset--color--white);
}
.features-list-box li details summary h3 {
  margin: 1em 0;
  font-size: 1.2em;
  font-weight: 600;
}
.features-list-box li details summary h3:after {
  font-family: "Fontawesome";
  content: "\f107";
  margin-left: 1em;
}
.features-list-box li details[open] summary h3:after {
  content: "\f106";
}
.features-list-box li details p {
  text-align: justify;
}

/* 投稿ページ */
.single-post .single-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/* 投稿ページ */
.privacy table {
  width: 50%;
  margin: 50px auto 0;
}
.privacy table tr th, .privacy table tr td {
  padding: 20px;
}
.privacy table tr th {
  min-width: 200px;
}

/* オリジナルcss */
.bg-white {
  background-color: var(--wp--preset--color--white);
}

.content-slider-wrap {
  width: 100%;
  overflow: hidden;
}

.content-slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: sliderLoop 40s linear infinite;
}

.content-slider__item {
  flex-shrink: 0;
  width: min(80vw, 400px);
}
.content-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes sliderLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=base.css.map */