@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1160px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#fff;
  --color-grey:#858585;
  --color-text:#000;
  --color-u-text:#006EC1;
  --color-main:#E77400;
  --color-sub:#13843E;
  --color-accent:#4097ED;
  --color-corp:#43A207;
  --color-dark:#033c5e;
  --color-light:#FCF8E5;
  --font-main:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "メイリオ", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 32px;
    --content-negative-space: -32px;
    --content-width: 100%;
    --u-content-width: 92%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-semibold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  min-width: 1340px;
  font-size: 1.125rem;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 1.125rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 1rem;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
.l-header {
  height: 141px;
  position: sticky;
  width: 100%;
  min-width: 1340px;
  z-index: 100;
  top: 0;
}
.l-header .l-header__head {
  width: 100%;
  height: 111px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
.l-header .l-header__head.hide {
  background-color: transparent;
}
.l-header .l-header__head.hide .site-logo img {
  width: 210px;
  height: auto;
}
.l-header .l-header__head.hide .hdr-contact-area {
  right: 10px;
  top: 0;
}
.l-header .l-header__head.hide .hdr-contact-area .c-nav {
  display: none;
}
.l-header .l-header__head.hide .hdr-contact-area .hdr-contact a {
  font-size: 1.5rem;
}

.site-logo {
  margin-left: 50px;
  margin-top: 15px;
}
.site-logo img {
  width: 210px;
  transition: 0.3s;
}

.hdr-contact a {
  color: var(--color-text);
}

@media screen and (max-width: 1500px) {
  .site-logo img {
    width: 150px;
  }
}
.hdr-contact-area {
  height: 111px;
  display: flex;
  justify-content: flex-end;
  padding: 13px 10px 0 0;
}
.hdr-contact-area a {
  transition: 0.3s;
}
.hdr-contact-area a:hover {
  opacity: 0.8;
}

.hdr-contact {
  display: flex;
  align-items: flex-start;
  color: var(--color-dark);
  font-size: 2vw;
  flex-wrap: wrap;
  line-height: 1.2;
  margin-left: 48px;
}
.hdr-contact a {
  text-decoration: none;
}
.hdr-contact a img {
  display: inline-flex;
  margin-right: 5px;
  margin-top: 6px;
}
.hdr-contact a span.addr {
  font-size: 0.875rem;
  display: block;
  font-weight: 400;
  text-align: right;
}
.hdr-contact a.contact-btn {
  display: flex;
  background-color: var(--color-accent);
  color: #fff;
  align-items: center;
  padding: 9px 22px;
  border-radius: 30px;
  margin-left: 16px;
}
.hdr-contact a.contact-btn span {
  font-size: 1.125rem;
  font-weight: 700;
}
.hdr-contact a.contact-btn span.big {
  font-size: 1.25rem;
}
.hdr-contact a.line-btn {
  display: flex;
  background-color: #09AF12;
  align-items: center;
  padding: 9px 22px;
  border-radius: 30px;
  margin-left: 6px;
}
.hdr-contact a.line-btn span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.hdr-contact a.line-btn span.big {
  font-size: 1.375rem;
}

.c-nav {
  margin: -30px auto 0;
  text-align: center;
  z-index: 11;
}

.c-nav-list {
  width: 1268px;
  margin: 0 auto;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 30px;
  background-color: var(--color-light);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.c-nav-list > li {
  list-style: none;
  position: relative;
  padding: 0 20px;
  border-right: 1px dotted var(--color-main);
}
.c-nav-list > li.active {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-main);
}
.c-nav-list > li.active a {
  pointer-events: none;
}
.c-nav-list > li.has-sub {
  position: relative;
  font-weight: 500;
}
.c-nav-list > li.has-sub img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.c-nav-list > li.has-sub:hover img,
.c-nav-list > li.has-sub > ul:hover img {
  transform: rotate(-180deg);
}
.c-nav-list > li:nth-last-of-type(1) {
  border-right: none;
  font-size: 1.125rem;
  font-weight: 500;
}
.c-nav-list li:nth-of-type(3) .c-nav-list-lv2 {
  width: 280px;
  left: -60px;
}

.c-nav-list__link {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
}
.c-nav-list__link:hover {
  color: var(--color-main);
}
.c-nav-list__link::before {
  background: var(--color-main);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.c-nav-list__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c-nav-list-lv2 {
  display: none;
  position: absolute;
  left: -10px;
  top: 30px;
  margin: 0;
  padding: 18px 18px 20px;
  width: 164px;
  height: auto;
  z-index: 3;
  background-color: var(--color-light);
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.c-nav-list-lv2 > li {
  list-style: none;
  border-bottom: 1px dotted var(--color-main);
  padding: 10px 0;
}
.c-nav-list-lv2 > li a {
  text-align: left;
}
.c-nav-list-lv2 > li:nth-last-of-type(1) {
  border-bottom: none;
}

.c-nav-list-lv2__link {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.c-nav-list-lv2__link:hover {
  color: var(--color-main);
  opacity: 1;
}
.c-nav-list-lv2__link span {
  font-size: 1.625rem;
  line-height: 1;
  color: var(--color-light);
}

@media screen and (max-width: 1300px) {
  .site-logo {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1270px) {
  .hdr-contact-area {
    min-width: 360px;
    justify-content: center;
  }
  .hdr-contact-area .c-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 100;
    transition: 0.3s;
    min-width: 100%;
  }
  .l-header .l-header__head {
    height: 60px;
  }
  .l-header.hide {
    background-color: #fff;
  }
  .site-logo {
    margin-top: 8px;
    margin-left: 16px;
  }
  .site-logo img {
    width: 60%;
    height: auto;
  }
}
.l-main {
  overflow: hidden;
}

.fix-side {
  position: fixed;
  width: 70px;
  height: 260px;
  right: -300px;
  top: calc(50vh - 130px);
  background-color: var(--color-dark);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 0;
}
.fix-side a {
  display: flex;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  transition: 0.3s;
}
.fix-side a img {
  margin-top: 10px;
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

/* footer -------------------------------------- */
.l-footer {
  padding: 68px 0 50px;
}
.l-footer .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.l-footer .ftr-data {
  width: 300px;
}
.l-footer .ftr-data p.addr {
  margin-top: 30px;
  font-size: 1rem;
}
.l-footer .ftr-data .copyright {
  padding: 47px 0 0;
  font-size: 0.875rem;
}
.l-footer .ftr-data .sns {
  display: flex;
  margin-top: 27px;
  gap: 16px;
}
.l-footer .ftr-data .sns a:hover img {
  opacity: 0.7;
}

.page-thanks .sns {
  display: flex;
  justify-content: center;
  margin-top: 27px;
}
.page-thanks .sns a {
  margin-right: 26px;
}
.page-thanks .sns a:hover img {
  opacity: 0.7;
}

.ftr-link nav {
  display: flex;
}
.ftr-link nav ul {
  margin-right: 26px;
  padding: 0;
  margin-bottom: 0;
}
.ftr-link nav ul li {
  margin-bottom: 16px;
  margin-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}
.ftr-link nav ul li::before {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  background-image: url("../img/common/ftr-arrow.png");
  margin-right: 5px;
}
.ftr-link nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}
.ftr-link nav ul li a:hover {
  color: var(--color-main);
}
.ftr-link nav ul li.second {
  padding-left: 1em;
}
.ftr-link nav ul li.second::before {
  width: 10px;
  height: 1px;
  background-image: url("../img/common/ftr-line.png");
}
.ftr-link nav ul:nth-of-type(1) {
  width: 180px;
}
.ftr-link nav ul:nth-of-type(2) {
  width: 270px;
}
.ftr-link nav ul:nth-of-type(3) {
  width: 120px;
}
.ftr-link nav ul:nth-last-of-type(1) {
  margin-right: 0;
}
.ftr-link .bnr {
  margin-top: 75px;
}
.ftr-link .bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  background-color: #d4d4d4;
  border-radius: 50px;
  padding-left: 36px;
  text-decoration: none;
  font-size: 1rem;
}
.ftr-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
.ftr-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}

.ftr-fix {
  display: none;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: rgba(191, 127, 63, 0.8);
}

#page_top a {
  display: flex;
  width: 100px;
  height: 100px;
  font-size: 1rem;
  color: #fff;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0;
  }
  .l-footer .inner {
    width: 100%;
  }
  .l-footer .ftr-data {
    width: 92%;
    margin: 0 auto;
    padding: 44px 0 20px;
  }
  .l-footer .ftr-data .ftr-logo {
    margin: 0 auto;
  }
  .l-footer .ftr-data .addr {
    margin-top: 30px;
    text-align: left;
    font-size: 1rem;
  }
  .l-footer .ftr-data .copyright {
    padding: 5px 0;
    text-align: left;
    margin-top: 40px;
    font-size: 0.625rem;
    display: block;
  }
  .f-link {
    width: 100%;
    background: #452309;
    padding-top: 17px;
    height: 45px;
    color: #fff;
  }
  /* sp-nav */
  .ftr-link {
    margin-left: 10vw;
  }
  .ftr-link .first {
    margin-bottom: 20px;
  }
  .ftr-link .first ul {
    padding-left: 4%;
  }
  .ftr-link .first ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .first ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .first ul li a {
    text-decoration: none;
    font-size: 0.9375rem;
  }
  .ftr-link .first ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .second {
    margin-bottom: 20px;
  }
  .ftr-link .second ul {
    padding-left: 4%;
  }
  .ftr-link .second ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .second ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-light);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .second ul li a {
    text-decoration: none;
    font-size: 0.9375rem;
  }
  .ftr-link .second ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .bnr {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 0.9375rem;
  }
  .ftr-link .bnr a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
  }
  .ftr-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-fix {
    width: 100%;
    position: sticky;
    bottom: -200px;
    z-index: 90;
    display: flex;
    justify-content: space-between;
    transition: 0.3s all;
  }
  .ftr-fix.active {
    bottom: 0;
  }
  .ftr-fix a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50%;
    font-size: 4.2vw;
    text-decoration: none;
    font-weight: 700;
  }
  .ftr-fix a:nth-of-type(1) {
    background-color: var(--color-light);
  }
  .ftr-fix a:nth-of-type(2) {
    background-color: var(--color-accent);
    color: #fff;
  }
  .ftr-fix a:nth-of-type(3) {
    background-color: #09AF12;
    color: #fff;
  }
  .ftr-fix a img {
    width: auto;
    max-width: 35px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
  }
  .page-contact .ftr-fix a:nth-of-type(2) {
    background-color: #09AF12;
    color: #fff;
  }
}
/*
 * object
 */
/* 下層パンくず */
ol.breadcrumbs {
  width: 100%;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  flex-wrap: wrap;
}
ol.breadcrumbs li {
  list-style: none;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 0.625rem;
  padding: 0 5px;
}
ol.breadcrumbs li span {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color-text);
}
ol.breadcrumbs li a {
  font-size: 0.75rem;
  color: var(--color-grey);
}
ol.breadcrumbs li a span {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color-grey);
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /* 下層パンくず */
  ol.breadcrumbs {
    width: 100%;
    margin: 60px auto 0;
    padding: 7px 16px;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 0.75rem;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 0.75rem;
  }
  ol.breadcrumbs li span {
    font-size: 0.75rem;
    font-weight: normal;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/* ハンバーガー */
/* ボタン外側※レイアウトによってpositionや形状は適宜変更してください */
.openbtn {
  position: fixed;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: var(--color-light);
  z-index: 99999;
  right: 0;
  top: 0;
  transition: 0.3s;
  border: none;
  padding: 0;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /* アニメーションの設定 */
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 50%;
}
.openbtn span:nth-of-type(2) {
  top: 40px;
  width: 30%;
}
.openbtn span.menu {
  padding-top: 10px;
  text-align: center;
  font-size: 0.875rem;
  color: #000;
  line-height: 1;
  background-color: transparent;
}

/* activeクラスが付与されると線が回転して×に */
.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 28px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 42px;
  left: 28px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--color-light);
  z-index: 9000;
  top: 0;
  right: -200%;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
}

.mm-menu.active {
  top: 0;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  /* ハンバーガー */
  /* ボタン外側※レイアウトによってpositionや形状は適宜変更してください */
  .openbtn {
    position: fixed;
    /* ボタン内側の基点となるためrelativeを指定 */
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: var(--color-light);
    z-index: 99999;
    right: 0;
    top: 0;
    transition: 0.3s;
    border: none;
  }
  /* ボタン内側 */
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /* アニメーションの設定 */
    position: absolute;
    left: 16px;
    height: 1px;
    background-color: var(--color-main);
  }
  .openbtn span:nth-of-type(1) {
    top: 20px;
    width: 50%;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
    width: 30%;
  }
  /* activeクラスが付与されると線が回転して×に */
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn span.menu {
    padding-top: 8px;
    padding-left: 2px;
    font-size: 9px;
    font-weight: 700;
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    z-index: 9000;
    right: -200%;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 68px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    height: auto;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link nav ul {
    width: 100%;
    padding: 0;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li {
    list-style-type: none;
    background-image: url("../img/common/icon-sp-arrow.svg");
    background-repeat: no-repeat;
    background-position: 98% center;
    background-size: 25px 15px;
    line-height: 1;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li a {
    text-decoration: none;
    display: block;
    line-height: 1;
    padding: 14px 10px;
    border-top: 1px dashed var(--color-main);
  }
  .sp-menu-link .inner .sidemenu-link nav ul li.second {
    background-image: none;
    padding-left: 1em;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li.second a {
    border-top: none;
    padding: 9px;
    font-size: 1.125rem;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li.second a img {
    display: inline-block;
    vertical-align: bottom;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li:nth-of-type(1) {
    border-top: none;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li:nth-last-of-type(1) {
    border-bottom: 1px dashed var(--color-main);
  }
  .sp-menu-link .inner .sidemenu-link nav ul li:nth-of-type(8) {
    margin-bottom: 10px;
  }
  .sp-menu-link .inner .sidemenu-link nav ul li.nolink {
    padding: 14px 10px;
    background-image: none;
    border-top: 1px dashed var(--color-main);
  }
  .sp-menu-link .inner .sidemenu-link .tel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 700;
    line-height: 1.2;
  }
  .sp-menu-link .inner .sidemenu-link .tel a {
    text-decoration: none;
    font-size: 2.6875rem;
    font-family: "roboto";
  }
  .sp-menu-link .inner .sidemenu-link .tel span {
    display: block;
    width: 100%;
    font-size: 1.125rem;
    text-align: center;
    font-weight: 400;
  }
  .sp-menu-link .inner .sidemenu-link .tel img {
    margin-right: 8px;
  }
  .sp-menu-data a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 23px;
    text-decoration: none;
  }
  .sp-menu-data a span {
    font-size: 1.5625rem;
  }
  .sp-menu-data a.mail {
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 30px;
    padding: 7px 0;
  }
  .sp-menu-data a.mail img {
    margin-right: 9px;
  }
  .sp-menu-data a.line {
    background-color: #09AF12;
    border-radius: 30px;
    color: #fff;
    padding: 7px 0;
  }
  .sp-menu-data a.line img {
    margin-right: 9px;
  }
  .sp-menu-data .sns {
    display: flex;
    margin-top: 9px;
  }
  .sp-menu-data .main-company {
    margin-top: 52px;
    margin-bottom: 30px;
  }
  .sp-menu-data .main-company img {
    zoom: 0.5;
    height: auto;
    margin-left: 16px;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: 32%;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image {
  padding: 15px;
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  background-color: transparent;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #fff;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: var(--color-main);
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
    margin-bottom: 40px;
  }
}

.p-cta {
  position: relative;
  height: auto;
  width: 100%;
  padding: 47px 0;
  background-color: var(--color-main);
  z-index: 999;
}
.p-cta img.cta-float01 {
  position: absolute;
  top: -80px;
  right: 50%;
  margin-right: 430px;
}
.p-cta img.cta-float02 {
  position: absolute;
  top: -100px;
  left: 50%;
  margin-left: 430px;
}
.p-cta .inner {
  width: var(--content-width);
  margin: 0 auto;
}
.p-cta .inner p.title {
  font-size: 2.3125rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.p-cta .inner p.title span {
  color: var(--color-accent);
}
.p-cta .inner .box {
  width: 48%;
  margin: 0 1%;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 40px 20px;
}
.p-cta .inner .box .en {
  font-size: 3.75rem;
  line-height: 1;
  margin-top: -11px;
}
.p-cta .inner .box p {
  margin-top: 26px;
  font-size: 1.25rem;
}
.p-cta .inner .box p.title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: bold;
}
.p-cta .inner .box p.tel {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .inner .box p.tel span {
  font-size: 2rem;
}
.p-cta .inner .box p.fax {
  font-size: 1.5625rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .inner .box .c-for-list {
  margin: 56px auto 0;
}
.p-cta .inner .box .c-for-list a {
  margin: 0 auto;
  color: #fff;
}
.p-cta .area-wrap {
  display: flex;
  justify-content: space-between;
  width: 990px;
  margin: 43px auto 0;
  color: #fff;
  align-items: center;
}
.p-cta .area-wrap .title {
  width: 147px;
  height: 147px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-main);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-cta .area-wrap .area-list p {
  width: 824px;
  display: flex;
  margin-bottom: 12px;
}
.p-cta .area-wrap .area-list p span {
  width: 666px;
  display: block;
}
.p-cta .area-wrap .area-list p span.base {
  text-align: center;
  width: 146px;
  border: 2px solid #fff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-cta .area-wrap .area-list p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.p-cta .cta-link-area {
  display: flex;
  width: var(--content-width);
  margin: 43px auto 0;
  justify-content: space-between;
}
.p-cta .cta-link-area a {
  display: block;
  width: 370px;
  height: 190px;
  border: 5px solid #fff;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.p-cta .cta-link-area a:hover {
  transform: translateY(-10px);
}
.p-cta .cta-link-area a p.title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 19px 0;
  height: 70px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-radius: 18px 18px 0 0;
}
.p-cta .cta-link-area a p.title img {
  margin-right: 5px;
}
.p-cta .cta-link-area a p.main {
  font-size: 2.625rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  padding: 11px 0 4px;
}
.p-cta .cta-link-area a p.time {
  text-align: center;
  line-height: 1.4;
}
.p-cta .cta-link-area a p.time span {
  text-align: left;
  display: inline-block;
}
.p-cta .cta-link-area a:nth-of-type(1) p.title {
  background-color: var(--color-main);
}
.p-cta .cta-link-area a:nth-of-type(2) p.title {
  background-color: var(--color-accent);
  color: #fff;
}
.p-cta .cta-link-area a:nth-of-type(3) p.title {
  background-color: #09AF12;
}

.page-contact .u-contents .p-cta {
  background-color: #fff;
  margin-top: 0;
}
.page-contact .u-contents .p-cta .cta-link-area {
  width: var(--u-content-width);
  margin: 0 auto 60px;
  justify-content: center;
}
.page-contact .u-contents .p-cta .cta-link-area a {
  margin: 0 20px;
}
.page-contact .u-contents .p-cta .cta-link-area a:nth-of-type(1) {
  border: 4px solid var(--color-main);
}
.page-contact .u-contents .p-cta .cta-link-area a:nth-of-type(2) {
  border: 4px solid var(--color-corp);
}
.page-contact .u-contents .p-cta .cta-link-area a:nth-of-type(2) p.title {
  background-color: var(--color-corp);
  color: #fff;
}
.page-contact .u-contents .p-cta .cta-link-area p.title {
  margin-top: 0;
  border-radius: 14px 14px 0 0;
}
.page-contact .u-contents .p-cta .cta-link-area p.main {
  margin-top: 0;
}
.page-contact .u-contents .p-cta .cta-link-area p.time {
  margin-top: 0;
}

@media screen and (max-width: 1560px) {
  img.cta-float01 {
    position: absolute;
    top: -80px;
    right: 50%;
    margin-right: 430px;
    width: 200px;
    height: auto;
  }
  img.cta-float02 {
    position: absolute;
    top: -100px;
    left: 50%;
    margin-left: 430px;
    width: 200px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-color: #fff;
    margin-top: 0;
    padding: 0;
    z-index: 10;
  }
  .p-cta img.cta-float01 {
    width: 134px;
    top: -105px;
    left: 16px;
    right: auto;
    margin-right: 0;
  }
  .p-cta img.cta-float02 {
    width: 134px;
    height: auto;
    top: -105px;
    left: auto;
    right: 16px;
    margin-left: 0;
  }
  .p-cta .wrap {
    background-color: var(--color-main);
    padding: 65px 0 20px;
  }
  .p-cta .wrap .inner {
    width: 92%;
    margin: 0 auto;
  }
  .p-cta .wrap .inner p.title {
    font-size: 6.5vw;
  }
  .p-cta .area-wrap {
    display: block;
    width: 92%;
    margin: 0 auto;
  }
  .p-cta .area-wrap .title {
    font-size: 1.375rem;
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-radius: 23px;
    margin: 25px auto 12px;
  }
  .p-cta .area-wrap .area-list {
    width: 92%;
    margin: 0 auto;
  }
  .p-cta .area-wrap .area-list p {
    width: 100%;
    display: block;
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .p-cta .area-wrap .area-list p span.base {
    width: 100%;
    font-size: 1.125rem;
    margin-bottom: 6px;
  }
  .p-cta .cta-link-area {
    display: block;
    width: 92%;
    margin: 24px auto;
  }
  .p-cta .cta-link-area a {
    margin-bottom: 12px;
    width: 100%;
    height: auto;
  }
  .p-cta .cta-link-area a p.title {
    font-size: 7vw;
  }
  .p-cta .cta-link-area a p.time {
    padding-bottom: 10px;
  }
  .p-cta .cta-link-area a p.time span {
    font-size: 1.125rem;
  }
  .page-contact .u-contents .p-cta .cta-link-area a {
    margin: 0 auto 40px;
  }
}
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 96px 0 28px;
  font-size: 1.875rem;
  line-height: 1.4;
  border-top: 4px solid var(--color-main);
  border-bottom: 4px solid var(--color-main);
  padding: 10px 0 12px;
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 68px 0 28px;
  font-size: 1.625rem;
  background-color: var(--color-light);
  line-height: 1.5;
  padding: 9px 8px;
  border-radius: 10px;
}

:where(.basic-knowledge > .wp-block-group__inner-container) .c-heading-lv3,
:where(.u-editor .basic-knowledge > .wp-block-group__inner-container) h3:where(:not(.is-reset-wp-block)) {
  background-color: var(--color-white);
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 16px;
  font-size: 1.5rem;
  border-bottom: 4px solid var(--color-accent);
  line-height: 1.5;
  padding-bottom: 12px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-main);
  line-height: 1.5;
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 1.0625rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 1.4375rem;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 1.3125rem;
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 1.25rem;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 1.1875rem;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 1.125rem;
}

.c-link-text {
  display: inline-flex;
  margin: 0;
  padding: 0 8px 8px;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
  text-decoration: none;
  border-bottom: 2px solid var(--color-main);
}
.c-link-text::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  margin-left: 10px;
  width: 24px;
  height: 24px;
  background: url("../img/common/arrow-for-detail.png");
}
.c-link-text:hover {
  color: var(--color-main);
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
}
.c-unordered-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  padding: 0;
}
.c-unordered-list li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: -0.9em;
  margin-left: 0.9em;
}
.c-unordered-list li::before,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li::before {
  content: "⚫︎";
  font-size: 0.625rem;
  color: var(--color-main);
  margin-right: 5px;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  text-indent: -1.4em;
  margin-left: 1.4em;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li::before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li::before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-main);
  font-weight: bold;
}

dt,
dd {
  font-size: 1rem;
}

.c-define-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 30px 0 0;
}

.c-define-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.c-define-list > dt,
.c-define-list > dd {
  line-height: 1.5;
  font-size: 1.125rem;
}
.c-define-list > dt {
  color: var(--color-accent);
  font-weight: 700;
}
.c-define-list > dd {
  font-weight: 400;
}

.c-anc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 0;
  padding: 0;
}
.c-anc-list > li {
  list-style: none;
  width: calc(50% - 8px);
}

.c-anc-list__type {
  --main-text-color: #1A1A1A;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  text-decoration: none;
  transition: 0.3s background-color;
}
.c-anc-list__type:hover {
  --main-text-color: var(--color-main);
  background-color: var(--color-light);
}

.c-anc-list__type__head {
  padding: 10px 34px;
  color: var(--color-white);
  line-height: 1.6;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 40px 40px 0 0;
  border: 6px solid var(--color-main);
  border-bottom: none;
  overflow: hidden;
}

.c-anc-list__type__body {
  padding: 16px 34px 61px;
  text-align: center;
  color: var(--main-text-color);
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 700;
  background: url("../img/common/icon-arrow-down01.png") no-repeat bottom 10px center/90px auto;
  border-radius: 0 0 40px 40px;
  border: 6px solid var(--color-main);
  border-top: none;
  overflow: hidden;
  transition: 0.3s color;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  .c-order-list li::before,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li::before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
  .c-define-list > dt,
  .c-define-list > dd {
    font-size: 1rem;
  }
  .c-anc-list > li {
    width: 100%;
  }
  .c-anc-list__type__head {
    padding: 5px 34px 10px;
  }
  .c-anc-list__type__body {
    padding: 5px 34px 50px;
  }
}
.c-for-list,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 30px auto 0;
}
.c-for-list a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  position: relative;
  color: var(--color-txt);
  font-size: 1rem;
  background: #fff;
  padding: 14px 40px;
  border-radius: 31px;
  margin-top: 40px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid var(--color-main);
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.c-for-list a img,
.wp-block-button:where(:not(.is-reset-wp-block)) a img {
  margin-left: 10px;
  transition: all 0.3s ease;
}
.c-for-list a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  color: var(--color-main);
  font-weight: bold;
}
.c-for-list a.over img,
.wp-block-button:where(:not(.is-reset-wp-block)) a.over img {
  transition: all 0.3s ease;
}

.page-thanks .wp-block-buttons > .wp-block-button {
  margin: 0 auto;
}

.c-for-list a {
  margin: 40px auto 0;
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}

body:not(.home) .c-for-list,
.wp-block-button {
  margin-top: 40px;
}
body:not(.home) .c-for-list a,
.wp-block-button a {
  display: inline-block;
  position: relative;
  padding: 14px 60px 14px 40px;
  border-radius: 31px;
  text-decoration: none;
  font-weight: bold;
}
body:not(.home) .c-for-list a:after,
.wp-block-button a:after {
  content: url("../img/common/arrow-for-detail.png");
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
body:not(.home) .c-for-list a:hover::after,
.wp-block-button a:hover::after {
  content: url("../img/common/arrow-for-detail_on.png");
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    text-align: center;
    margin: 30px auto 64px;
    display: block !important;
    width: 100%;
  }
  .c-for-list a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    position: relative;
    max-width: 100%;
    font-size: 1.125rem;
    padding: 13px 22px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  padding: 48px 36px;
  border-radius: 60px;
  background-color: var(--color-light);
  position: relative;
}
.c-blockquote p,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) p {
  font-size: 1.125rem;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 1.125rem;
  color: var(--color-grey);
}
.c-blockquote::before,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: url("../img/page/icon-blockquote.svg");
  position: absolute;
  top: 16px;
  left: 24px;
}
.c-blockquote::after,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: url("../img/page/icon-blockquote-end.svg");
  position: absolute;
  bottom: 16px;
  right: 24px;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 100%;
    margin: 40px auto 0;
    border-radius: 30px;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 0.75rem;
  }
  .c-blockquote::before,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
    top: 12px;
    left: 12px;
  }
  .c-blockquote::after,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
    bottom: 12px;
    right: 12px;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 0.75rem;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 0.75rem;
    margin-top: 16px;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.u-editor {
  --table-border-color: var(--color-grey);
  --table-bg-color: var(--color-light);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
.u-editor table tr {
  border-bottom: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.3;
  font-size: 1.125rem;
  padding: 15px 30px;
  text-align: left;
  border-color: var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  border-right: 1px solid var(--table-border-color);
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-editor table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    line-height: 1.3;
    font-size: 1.125rem;
    padding: 15px 30px;
    text-align: left;
    border-color: var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-editor table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 7px 10px !important;
  color: var(--color-main);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main);
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}

.next-prev {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 2;
  color: var(--color-u-text);
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    padding: 10px 7px;
  }
  .wp-pagenavi .pages {
    width: 100%;
  }
  .next-prev {
    flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url("../img/common/icon-slider-play01.png");
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url("../img/common/icon-slider-stop01.png");
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 95px;
  transition: 0.2s all;
  cursor: pointer;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 69vw;
  }
  .c-slider--sp .splide__controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
  }
}
/* 画像ポップアップスタイル */
.image-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.image-popup-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-popup-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.image-popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 10000;
}
.image-popup-close:hover {
  background-color: rgb(255, 255, 255);
}
.image-popup-close:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

@media screen and (max-width: 767px) {
  .image-popup-overlay {
    padding: 10px;
  }
  .image-popup-close {
    top: -30px;
    right: -30px;
    width: 30px;
    height: 30px;
    font-size: 1.125rem;
  }
}
.c-faq {
  margin-top: 100px;
}
.c-faq .c-faq__item {
  margin-top: 48px;
}
.c-faq .c-faq__item .c-faq__item__question {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 11px 16px;
  background-color: var(--color-light);
  border-radius: 20px;
  position: relative;
  display: flex;
}
.c-faq .c-faq__item .c-faq__item__question p {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 700;
  width: calc(100% - 55px);
}
.c-faq .c-faq__item .c-faq__item__question::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/page/icon_q.png");
  background-repeat: no-repeat;
  margin-right: 20px;
}
.c-faq .c-faq__item .c-faq__item__answer {
  display: flex;
  padding: 0 16px;
  margin-top: 10px;
}
.c-faq .c-faq__item .c-faq__item__answer p {
  margin-top: 0;
  font-size: 1.125rem;
  width: calc(100% - 55px);
}
.c-faq .c-faq__item .c-faq__item__answer::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/page/icon_a.png");
  background-repeat: no-repeat;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .c-faq .c-faq__item .c-faq__item__question {
    align-items: center;
    border-radius: 0;
  }
  .c-faq .c-faq__item .c-faq__item__question p {
    line-height: 1.5;
  }
  .page .faq-c-list.wp-block-button a {
    padding: 13px 44px;
  }
  .page .faq-c-list.wp-block-button a::after {
    right: 16px;
  }
}
/*
 * pages
 */
.cat-area {
  width: var(--u-content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-area p.date {
  font-size: 1rem;
  margin-right: 12px;
  color: var(--color-grey);
}
.cat-area .cat {
  display: flex;
  align-items: center;
}
.cat-area .cat a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.cat-area .cat a:hover {
  background-color: #fff;
  color: #000;
}
.cat-area ul.cat {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 0;
  padding: 0;
}
.cat-area ul.cat li {
  list-style: none;
  margin-bottom: 10px;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1.125rem;
  background-color: #fff;
  color: var(--color-main);
  line-height: 1;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-main);
  color: #fff;
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1.125rem;
  background-color: var(--color-main);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}

.single-main .cat-area {
  justify-content: left;
}

.archive .c-heading-lv3,
.archive :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 0;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 1.125rem;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
}

.archive .c-unordered-list li,
.archive :where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: 0;
  margin-left: 0;
}

/*  施工事例一覧 */
.works-list .wrap {
  width: var(--u-content-width);
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.works-list .wrap .box {
  width: 310px;
  margin-right: 35px;
  margin-bottom: 40px;
}
.works-list .wrap .box:nth-of-type(3n) {
  margin-right: 0;
}
.works-list .wrap .box a {
  display: block;
  width: 100%;
  text-decoration: none;
  transition: 0.3s;
}
.works-list .wrap .box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.works-list .wrap .box a:hover {
  opacity: 0.8;
  transform: translateX(10px);
}
.works-list .wrap .box .image {
  width: 310px;
  height: 232px;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ccc;
}
.works-list .wrap .box p.cat {
  background-color: var(--color-main);
  color: #fff;
  padding: 8px 12px;
  line-height: 1;
  display: inline-block;
  margin-top: 20px;
  font-size: 1rem;
}
.works-list .wrap .box p.title {
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.works-list .wrap .box p.cont {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125rem;
  color: var(--color-main);
}
.works-list .c-for-list a {
  display: inline-flex;
}
.works-list .c-for-list a img {
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 100%;
  }
  .cat-area p.date {
    font-size: 0.875rem;
    line-height: 1;
  }
  .cat-area .cat {
    display: block;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 5px 10px;
    line-height: 1;
    text-decoration: none;
    margin-right: 10px;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  .cat-area ul.cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    margin-right: 16px;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 1rem;
    margin-right: 16px;
  }
  /*  施工事例一覧 */
  .works-list .wrap {
    width: 100%;
    margin: 0 auto;
  }
  .works-list .wrap .box {
    width: 100%;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .works-list .wrap .box:nth-of-type(3n) {
    margin-right: auto;
  }
  .works-list .wrap .box a {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: 0.3s;
  }
  .works-list .wrap .box a .image {
    width: 100%;
    height: 69vw;
    overflow: hidden;
  }
  .works-list .wrap .box a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .works-list .wrap .box a:hover {
    opacity: 0.8;
    transform: translateX(10px);
  }
  .works-list .wrap .box .image {
    width: 310px;
    height: 232px;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ccc;
  }
  .works-list .wrap .box p.cat {
    background-color: var(--color-main);
    color: #fff;
    padding: 8px 12px;
    line-height: 1;
    display: inline-block;
    margin-top: 20px;
    font-size: 1rem;
  }
  .works-list .wrap .box p.title {
    margin-top: 8px;
    font-weight: 700;
    line-height: 1.5;
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .works-list .wrap .box p.cont {
    margin-top: 0;
    font-weight: 700;
    line-height: 1.5;
    font-size: 1.125rem;
    color: var(--color-main);
  }
  .works-list .c-for-list a {
    display: inline-flex;
  }
  .works-list .c-for-list a img {
    transition: all 0.3s ease;
  }
}
.single-main {
  text-align: center;
  padding: 32px 0;
  background-color: var(--color-light);
  border-top: 4px solid #CE4800;
}
.single-main .inner {
  width: var(--u-content-width);
  margin: 0 auto;
}
.single-main h1 {
  margin: 24px auto 0;
  font-size: 2.125rem;
  text-align: left;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .single .l-main {
    background-color: #fff;
  }
  .single-main {
    padding-top: 40px;
    text-align: left;
  }
  .single-main .inner {
    width: 92%;
    margin: 0 auto;
  }
  .single-main h1 {
    width: 100%;
    margin: 12px auto 0;
    font-size: 1.5625rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
  }
}
/* 施工事例 */
.before-after-intro {
  font-size: 1.5rem;
  font-weight: 700;
}

.room-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.room-wrap .room-item {
  width: 48%;
}
.room-wrap .room-item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-wrap .room-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-wrap .room-item .image span {
  background-color: #000;
  padding: 3px 10px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.room-wrap .room-item .cont {
  font-size: 1rem;
  margin-top: 10px;
}

table.works-table th {
  width: 200px;
}

.reform-voice {
  display: flex;
  justify-content: space-between;
}
.reform-voice .txt {
  width: 68%;
  font-size: 1rem;
  line-height: 1.5;
}
.reform-voice .image {
  width: 30%;
}
.reform-voice .image img {
  width: 100%;
  height: auto;
}

.before-after-row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 60px;
}
.before-after-row .b-a-item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.before-after-row .b-a-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-row .b-a-item .image span {
  background-color: #000;
  padding: 3px 10px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.before-after-row .b-a-item .cont {
  font-size: 1rem;
  margin-top: 10px;
}
.before-after-row .before {
  width: 34%;
}
.before-after-row .after {
  width: 63%;
}

.related-voice a {
  display: block;
  width: 500px;
  margin: 40px auto 0;
  text-decoration: none;
  border-radius: 20px;
  background-color: var(--color-light);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 4px solid var(--color-corp);
  transition: 0.3s;
}
.related-voice a:hover {
  opacity: 0.8;
  transform: translateY(-10px);
}
.related-voice a .sub {
  font-size: 1.25rem;
  color: #FFF;
  background-color: var(--color-corp);
  padding: 10px 20px;
  text-align: center;
  margin-top: 0;
}
.related-voice a .main {
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  margin-top: 0;
  padding: 10px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .room-wrap {
    display: block;
  }
  .room-wrap .room-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .u-editor .works-table tr th {
    width: 9em;
    padding: 4%;
  }
  .u-editor .works-table tr td {
    width: calc(100% - 9em);
    padding: 4%;
  }
  .related-voice a {
    width: 92%;
  }
  .related-voice a .sub {
    line-height: 1.3;
  }
  .related-voice a .main {
    line-height: 1.3;
  }
  .reform-voice {
    display: block;
  }
  .reform-voice .txt {
    width: 100%;
  }
  .reform-voice .image {
    width: 100%;
    margin-top: 40px;
  }
  .reform-voice img {
    width: 100%;
    height: auto;
  }
  .before-after-row {
    display: block;
  }
  .before-after-row .before {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
  }
  .before-after-row .before .image {
    width: 50%;
  }
  .before-after-row .before .cont {
    width: 50%;
    padding: 2%;
  }
  .before-after-row .after {
    width: 100%;
  }
}
.u-main {
  width: 100%;
  height: 214px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--color-light);
  border-top: 4px solid var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-main .h1-wrap {
  text-align: center;
}
.u-main .h1-wrap .en {
  font-size: 1.25rem;
  font-family: "Outfit";
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1;
}
.u-main .h1-wrap h1 {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-bottom: 20px;
}
.u-main .h1-wrap h1::after {
  content: url("../img/top/h2_line.png");
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.page-thanks .news-list ul {
  padding: 0;
}
.page-thanks .news-list h3 {
  padding: 0;
  margin: 0;
  background-color: transparent;
}

/* 住宅用太陽光発電 */
.maker-logo-wrap .wp-block-columns {
  margin-bottom: 0;
}

.recommend-maker-wrap {
  margin-top: 60px;
}
.recommend-maker-wrap .wp-block-column p.title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: var(--color-light);
  padding: 8px;
}
.recommend-maker-wrap .wp-block-column p.r-reason {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 1.625rem;
  color: var(--color-main);
  font-weight: 700;
  line-height: 1;
}
.recommend-maker-wrap .wp-block-column .figure {
  margin-bottom: 24px;
}
.recommend-maker-wrap .r-point {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.recommend-maker-wrap .r-point span {
  font-size: 1.125rem;
  padding: 10px 20px;
  border-radius: 30px;
  text-align: center;
  color: var(--color-main);
  border: 2px solid var(--color-main);
  line-height: 1;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 63px;
}
.service-link a {
  width: 184px;
  height: 118px;
  border: 6px solid var(--color-accent);
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: 0.3s;
}
.service-link a:hover {
  background-color: var(--color-accent);
  color: #fff;
}
.service-link a::after {
  content: url("../img/page/icon-service-link.png");
  margin-left: 8px;
}
.service-link a.current {
  background-color: var(--color-accent);
  color: #fff;
}
.service-link a.current::after {
  content: none;
}

.basic-knowledge {
  padding: 96px 0;
  background-color: var(--color-light);
  margin-top: 120px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.basic-knowledge .wp-block-group__inner-container {
  width: var(--u-content-width);
  margin: 0 auto;
}
.basic-knowledge p.title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-main);
}

.service-box {
  background-color: #fff;
  padding: 68px 40px;
  border-radius: 60px;
  margin-top: 68px;
}
.service-box:nth-of-type(2) {
  margin-top: 0;
}
.service-box .wp-block-group__inner-container {
  width: 920px;
}
.service-box p.role-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 4px solid var(--color-accent);
  padding-bottom: 12px;
}
.service-box p.role-title span {
  font-size: 1.25rem;
  border: 2px solid var(--color-main);
  color: var(--color-main);
  border-radius: 10px;
  padding: 2px 16px;
  margin-right: 12px;
}
.service-box.fit h3 {
  color: var(--color-main);
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: transparent;
  padding: 0;
}
.service-box.fit h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main);
  text-align: left;
  padding-left: 8px;
  border-left: 5px solid var(--color-main);
  border-bottom: none;
  padding-bottom: 0;
}
.service-box ul {
  margin-top: 24px;
}

.merit-wrap {
  background-color: #FFF7F0;
  border-radius: 60px;
  padding: 40px;
  margin-top: 40px;
}
.merit-wrap .wp-block-group__inner-container {
  width: 840px;
}
.merit-wrap .wp-block-group__inner-container .merit-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #D42A00;
  text-align: center;
}
.merit-wrap .wp-block-group__inner-container p {
  margin-top: 8px;
}
.merit-wrap .wp-block-group__inner-container p a {
  color: #2A74BD;
}
.merit-wrap .wp-block-group__inner-container p.has-text-color {
  margin-top: 16px;
  line-height: 1;
}
.merit-wrap.demerit {
  background-color: #F2F8FF;
}
.merit-wrap.demerit .merit-title {
  color: #2A74BD;
}

.commitment {
  display: none;
  padding: 96px 0;
  background-color: var(--color-main);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.commitment .wp-block-group__inner-container {
  width: var(--u-content-width);
  margin: 0 auto;
}
.commitment .wp-block-group__inner-container h2 {
  color: #fff;
  text-align: center;
}
.commitment .wp-block-group__inner-container p {
  color: #fff;
}

.flow-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flow-image p {
  background-color: var(--color-main);
  color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  height: 124px;
  min-width: 170px;
}

.solor-flow-box {
  margin-top: 40px;
}
.solor-flow-box p.title {
  margin-top: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px;
  background-color: var(--color-light);
}

.related-works {
  display: none;
  padding: 96px 0;
  background-color: var(--color-light);
}
.related-works .inner {
  width: 1000px;
  margin: 0 auto;
}
.related-works h2 {
  margin: 0 0 28px;
  font-size: 1.875rem;
  line-height: 1.4;
  border-top: 4px solid var(--color-main);
  border-bottom: 4px solid var(--color-main);
  padding: 10px 0 12px;
  text-align: center;
}

.u-works-list .wrap {
  width: 1000px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
.u-works-list .wrap .box a {
  display: block;
  width: 306px;
  text-decoration: none;
  transition: 0.3s;
}
.u-works-list .wrap .box a:hover {
  opacity: 0.8;
  transform: translateX(10px);
}
.u-works-list .wrap .box .image {
  width: 306px;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ccc;
}
.u-works-list .wrap .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.u-works-list .wrap .box p {
  margin-top: 20px;
}
.u-works-list .wrap .box p.cat span {
  background-color: var(--color-main);
  color: #fff;
  padding: 8px 12px;
  line-height: 1;
  display: inline-block;
  margin-top: 5px;
  font-size: 1rem;
}
.u-works-list .wrap .box p.title {
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.u-works-list .wrap .box p.cont {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125rem;
  color: var(--color-main);
}

.battery-type h4 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-main);
  padding: 0;
  border-bottom: none;
  margin-bottom: 18px;
}
.battery-type ul li {
  margin-bottom: 10px;
}

.fit-comment {
  padding: 40px;
  border-radius: 30px;
  background-color: var(--color-light);
}

/* オール電化 */
.all-case {
  margin-top: 10px;
}
.all-case span {
  background-color: var(--color-main);
  color: #fff;
  padding: 8px 20px;
  line-height: 1;
  display: inline-block;
  border-radius: 20px;
  margin-right: 10px;
  margin-top: 8px;
  font-size: 1.125rem;
}
.all-case + p {
  margin-top: 10px;
}

.service-box p.role-title.all-electric span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 16px;
}

.all-b-f {
  margin-top: 40px;
}
.all-b-f ul {
  margin: 20px 0 0;
  padding: 0;
}
.all-b-f ul li {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 10px;
}
.all-b-f .wp-block-image {
  margin-top: 12px;
  margin-bottom: 12px;
}
.all-b-f .before-wrap {
  padding: 40px;
  background-color: #EDF6FF;
  border-radius: 40px;
}
.all-b-f .before-wrap .wp-block-group__inner-container {
  width: 100% !important;
}
.all-b-f .before-wrap .b-f-title {
  color: #2A74BD;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 900;
}
.all-b-f .before-wrap ul li::before {
  color: #2A74BD;
}
.all-b-f .after-wrap {
  padding: 40px;
  background-color: #FFF7F0;
  border-radius: 40px;
}
.all-b-f .after-wrap .wp-block-group__inner-container {
  width: 100% !important;
}
.all-b-f .after-wrap .b-f-title {
  color: #D42A00;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 900;
}

/*  パワーコンディショナー */
.secchi {
  background-color: #FFF7F0;
  padding: 10px;
}

.list-orange {
  color: var(--color-main);
}

.power-list li {
  line-height: 1.3;
  margin-bottom: 16px;
}

.power-meyasu p {
  margin-top: 8px;
  line-height: 1.5;
}
.power-meyasu p.power-list-title {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

@media screen and (max-width: 1340px) {
  .basic-knowledge,
  .commitment {
    width: 1340px;
    margin-left: calc(50% - 670px);
  }
}
@media screen and (max-width: 767px) {
  .basic-knowledge,
  .commitment {
    margin-top: 64px;
    padding: 80px 0;
    background-color: var(--color-light);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
  }
  .commitment {
    margin-top: 0;
    background-color: var(--color-main);
  }
  p.service-intro {
    font-size: 1.5rem !important;
    line-height: 1.5;
  }
  p.service-intro + p {
    text-align: left;
  }
  .maker-logo-wrap .wp-block-group__inner-container .wp-block-columns {
    display: flex;
    justify-content: space-between;
  }
  .maker-logo-wrap .wp-block-group__inner-container .wp-block-columns .wp-block-column {
    width: 48%;
  }
  .recommend-maker-wrap {
    margin-top: 40px;
  }
  .recommend-maker-wrap .wp-block-column p.title {
    font-variation-settings: 24px;
  }
  .recommend-maker-wrap .r-point span {
    font-size: 0.9375rem;
  }
  .service-box .wp-block-group__inner-container,
  .service-box .wp-block-group__inner-container {
    width: 100%;
  }
  .related-works .inner {
    width: 100%;
  }
  .u-works-list .wrap {
    width: 100%;
  }
  .service-link {
    display: block;
  }
  .service-link a {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    border-width: 3px;
  }
  .service-link a::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url("../img/page/icon-service-link.png");
    background-size: cover;
  }
  .basic-knowledge p.title {
    font-size: 1.5rem;
  }
  .service-box {
    border-radius: 40px;
    padding: 40px 18px;
  }
  .service-box p.role-title {
    display: block;
  }
  .service-box p.role-title span {
    font-size: 1rem;
    padding: 1px 10px;
  }
  .service-box.fit h3 {
    font-size: 1.5rem;
  }
  .merit-wrap {
    border-radius: 40px;
    padding: 40px 18px;
  }
  .merit-wrap .wp-block-group__inner-container p.merit-title {
    font-size: 1.5rem;
  }
  .merit-wrap .wp-block-group__inner-container p.has-text-color {
    line-height: 1.3;
  }
  .merit-wrap .wp-block-group__inner-container p.has-text-color {
    margin-top: 30px;
  }
  .flow-image {
    display: block;
    width: 100%;
  }
  .flow-image p {
    padding: 20px 16px;
    height: auto;
  }
  .flow-image img {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .solor-flow-box {
    margin-top: 50px;
    gap: 1em;
  }
  .solor-flow-box img {
    width: 100%;
    height: auto;
  }
  .solor-flow-box p.title {
    font-size: 1.375rem;
  }
  .related-works .inner {
    width: 92%;
    display: block;
    margin: 0 auto;
  }
  .related-works .inner h2 {
    font-size: 1.5rem;
  }
  .related-works .wrap .box a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .related-works .wrap .box a .image {
    width: 41%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .related-works .wrap .box a .txt {
    width: 56%;
  }
  .related-works .wrap .box a p.cat {
    margin-top: 0;
    padding: 0;
    font-size: 0.875rem;
  }
  .related-works .wrap .box a p.cat span {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .related-works .wrap .box a p.title {
    font-size: 1.125rem;
    margin-top: 0;
  }
  .related-works .wrap .box a p.cont {
    font-size: 1rem;
  }
  .related-works .c-for-list {
    margin-top: 36px;
    margin-bottom: 0;
  }
  .related-works {
    padding: 60px 0 100px;
  }
  .battery-type h4 {
    font-size: 1.5rem;
  }
  .fit-comment {
    padding: 8%;
  }
  .power-meyasu figure img {
    margin: 0 auto;
  }
}
/* レジリエンスチャージ */
.regi-column-txt h3 {
  background-color: transparent;
  border-bottom: var(--color-accent) 4px solid;
  padding: 0 0 12px;
  border-radius: 0;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.regi-column-txt p {
  line-height: 1.6;
}

.regi-column p {
  line-height: 1.8;
}

.page-id-705 .service-box h3 {
  background-color: var(--color-light);
}
.page-id-705 .service-box h4 {
  padding-top: 12px;
  border-top: 4px solid var(--color-accent);
  margin-bottom: 24px;
}
.page-id-705 .service-box p.caption {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 8px;
}

.mt-20 {
  margin-top: 20px !important;
}

/* 太陽光名人の強み */
.tsuyomi-wrap {
  margin-top: 24px;
}
.tsuyomi-wrap .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box {
  width: 480px;
  height: 200px;
  border-radius: 40px;
  background-color: var(--color-light);
  overflow: hidden;
  margin: 0;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box a {
  text-decoration: none;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box .title {
  width: 100%;
  background-color: var(--color-main);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box .title p {
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 20px;
  display: inline-block;
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box .title p span.tsuyomi {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box .title p span.num {
  font-size: 30px;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box p.cont {
  margin: 0 35px;
  padding: 15px 0 21px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.strength-list {
  margin-top: 64px;
  padding: 80px 0;
  background-color: var(--color-light);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.strength-list .wp-block-group__inner-container {
  width: var(--u-content-width);
  margin: 0 auto;
}

.strength-box {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 40px;
  background-color: #fff;
}
.strength-box .title {
  width: 100%;
  background-color: var(--color-main);
  padding: 12px 40px;
  display: flex;
  align-items: center;
}
.strength-box .title .circle {
  width: 150px;
  height: 150px;
  background-image: url(../img/page/circle-bg.png);
  text-align: center;
  font-size: 1.875rem;
  padding-top: 32px;
  line-height: 1;
  font-weight: 700;
  margin-top: 0;
}
.strength-box .title .circle span.tsuyomi {
  font-size: 1.5625rem;
  color: var(--color-main);
}
.strength-box .title .circle span.num {
  font-size: 2.5rem;
}
.strength-box .title .text {
  margin-top: 0;
  font-size: 2.125rem;
  color: #fff;
  line-height: 1.3;
  margin-left: 32px;
  font-weight: 900;
  flex: 1;
}
.strength-box .wp-block-columns {
  padding: 24px 0 40px;
  margin: 0 26px;
}
.strength-box .wp-block-columns p {
  line-height: 1.8;
  margin-top: 0.8em;
}

.is-layout-flex.reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1340px) {
  .strength-list {
    width: 1340px;
    margin-left: calc(50% - 670px);
  }
}
@media screen and (max-width: 767px) {
  .strength-list {
    margin-top: 64px;
    padding: 80px 0;
    background-color: var(--color-light);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
  }
  .strength-list > .wp-block-group__inner-container {
    width: 92%;
    max-width: 92%;
    margin: 0 auto;
  }
  .strength-box > .wp-block-group__inner-container {
    width: 100%;
  }
  .strength-box .wp-block-columns {
    margin: 0 18px;
  }
  .strength-box .title {
    padding: 4%;
  }
  .strength-box .title .circle {
    width: 90px;
    height: 90px;
    padding-top: 17px;
    font-size: 1.375rem;
    background-size: cover;
  }
  .strength-box .title .circle span.tsuyomi {
    font-size: 1.1875rem;
  }
  .strength-box .title .circle span.num {
    font-size: 1.875rem;
  }
  .strength-box .title .text {
    width: calc(100% - 100px);
    font-size: 1.4375rem;
    margin-left: 10px;
  }
  .tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box:nth-of-type(3n) {
    margin-right: auto;
  }
  .u-editor .company-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: 100% !important;
  }
  .company-table table tr th {
    display: block;
    width: 100% !important;
  }
  .company-table table tr td {
    display: block;
    width: 100% !important;
  }
}
/* 運営会社案内 */
.company-table table {
  margin-top: 0 !important;
}
.company-table table tr td {
  padding: 15px 20px !important;
}

.chikaramochi {
  display: block !important;
}

.chikaramochi img {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .link-text {
    font-size: 1.25rem !important;
  }
  .link-text + .wp-block-image {
    margin-top: 0;
  }
}
/* お客様の声 */
.questionnaire-wrap {
  display: flex;
  justify-content: space-between;
}
.questionnaire-wrap .questionnaire-image {
  width: 48%;
}
.questionnaire-wrap .questionnaire-image img {
  margin: 0 auto;
}

.comprehensive {
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: bold;
}
.comprehensive span {
  font-size: 4.375rem;
  color: var(--color-main);
  font-weight: 700;
}

.question p.q {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 40px 0 10px;
  color: var(--color-main);
}

/*  よくある質問 */
.faq-link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-link a {
  display: inline-block;
  padding: 10px 50px 10px 30px;
  border-radius: 30px;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--color-main);
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
.faq-link a::after {
  content: "▼";
  display: block;
  position: absolute;
  right: 20px;
  font-size: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.faq-link a:hover {
  background-color: var(--color-light);
  color: #000;
}

.cta-link-area-wrap {
  margin-top: 42px;
  padding: 40px 40px 30px;
  background-color: var(--color-main);
  border-radius: 20px;
}
.cta-link-area-wrap p.intro {
  text-align: center;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
}
.cta-link-area-wrap .cta-link-area {
  display: flex;
  margin: 25px auto 0;
  justify-content: space-between;
}
.cta-link-area-wrap .cta-link-area a {
  display: block;
  width: 300px;
  height: 190px;
  border: 5px solid #fff;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.cta-link-area-wrap .cta-link-area a:hover {
  transform: translateY(-10px);
}
.cta-link-area-wrap .cta-link-area a p.title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 19px 0;
  height: 70px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  border-radius: 18px 18px 0 0;
  margin-top: 0;
}
.cta-link-area-wrap .cta-link-area a p.title img {
  margin-right: 5px;
}
.cta-link-area-wrap .cta-link-area a p.main {
  font-size: 2.25rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  padding: 11px 0 4px;
  margin-top: 0;
}
.cta-link-area-wrap .cta-link-area a p.time {
  text-align: center;
  line-height: 1.4;
  margin-top: 5px;
}
.cta-link-area-wrap .cta-link-area a p.time span {
  text-align: left;
  display: inline-block;
}
.cta-link-area-wrap .cta-link-area a:nth-of-type(1) p.title {
  background-color: var(--color-main);
}
.cta-link-area-wrap .cta-link-area a:nth-of-type(2) p.title {
  background-color: var(--color-accent);
  color: #fff;
}
.cta-link-area-wrap .cta-link-area a:nth-of-type(3) p.title {
  background-color: #09AF12;
}

@media screen and (max-width: 767px) {
  .page .l-main,
  .error404 .l-main,
  .archive .l-main,
  .category .l-main {
    background-color: #fff;
  }
  .u-main {
    width: 100%;
    height: auto;
    min-height: 190px;
    padding: 20px;
    margin: 0 auto;
    background-color: var(--color-light);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap .en {
    font-size: 1.25rem;
    font-family: "Outfit";
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1;
  }
  .u-main .h1-wrap h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 10px;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
  /*  太陽光名人の流れ  */
  .page-id-64 h2 {
    flex-wrap: wrap;
  }
  .page-id-64 h2 span.free {
    font-size: 1.125rem;
    margin-right: 10px;
  }
  .page-id-64 h2 span.step {
    font-size: 1.375rem;
    margin-right: 10px;
  }
  .cta-link-area-wrap {
    padding: 40px 2% 6px;
  }
  .cta-link-area-wrap p.intro {
    font-size: 1.8125rem;
    line-height: 1.3;
  }
  .cta-link-area-wrap .cta-link-area {
    width: 92%;
    display: block;
    margin: 25px auto 0;
  }
  .cta-link-area-wrap .cta-link-area a {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }
  .cta-link-area-wrap .cta-link-area a p.title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 19px 0;
    height: 70px;
    font-size: 6vw;
  }
  .cta-link-area-wrap .cta-link-area a p.main {
    font-size: 2.25rem;
  }
  .cta-link-area-wrap .cta-link-area a p.time {
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
  }
  /* 断熱プラン一覧 */
  .top-plan.plan {
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
  }
  .top-plan.plan h2 {
    font-size: 1.4375rem;
  }
  .top-plan.plan img.plan-image-sp {
    margin-top: 31px;
  }
  .top-plan.plan .inner {
    width: 100%;
    background-image: none;
    margin-top: 24px;
  }
  .top-plan.plan .inner article {
    width: 48%;
    padding: 20px 16px 56px;
    position: relative;
    margin-bottom: 4%;
  }
  .top-plan.plan .inner article p {
    font-size: 4vw;
    text-align: left;
  }
  .top-plan.plan .inner article p.title {
    font-size: 4.6vw;
  }
  .top-plan.plan .inner article p.main-txt {
    font-size: 4vw;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .top-plan.plan .inner article a {
    font-size: 4vw;
  }
  .top-plan.plan .inner article:nth-of-type(1), .top-plan.plan .inner article:nth-of-type(3) {
    margin-right: 0;
  }
  /* お客様の声 */
  .questionnaire-wrap {
    display: block;
  }
  .questionnaire-wrap .questionnaire-image {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* 目的別おススメプラン */
.p-plan-section {
  margin-top: 96px;
}

.p-plan-box-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 0;
}

.p-plan-box {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  gap: 12px;
  padding: 34px;
  background-color: var(--color-white);
  border: 6px solid var(--color-main);
  border-radius: 40px;
}
.p-plan-box > :first-child {
  margin-top: 0 !important;
}
.p-plan-box > :last-child {
  margin-bottom: 0 !important;
}

.p-plan-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-plan-box__head > :first-child {
  margin-top: 0 !important;
}
.p-plan-box__head > :last-child {
  margin-bottom: 0 !important;
}

.p-plan-box__title {
  line-height: 1.4;
  color: var(--color-main);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.p-plan-box__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.p-plan-box__detail > :first-child {
  margin-top: 0 !important;
}
.p-plan-box__detail > :last-child {
  margin-bottom: 0 !important;
}

.p-plan-box02 {
  display: flex;
  margin: 40px 0 0;
  background-color: var(--color-white);
  border-radius: 40px;
  border: 6px solid var(--color-accent);
  overflow: hidden;
}

.p-plan-box02__img {
  flex-shrink: 0;
}

.p-plan-box02__detail {
  padding: 34px 34px 34px 24px;
}
.p-plan-box02__detail > :first-child {
  margin-top: 0 !important;
}
.p-plan-box02__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-plan-box02__more {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .p-plan-section {
    margin-top: 78px;
  }
  .p-plan-box-wrap {
    display: flex;
    flex-direction: column;
  }
  .p-plan-box {
    padding: 14px 26px;
    width: 100%;
  }
  .p-plan-box02 {
    flex-direction: column-reverse;
  }
  .p-plan-box02__img img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

/*  ご契約の流れ  */
.page-id-64 h2 {
  display: flex;
  align-items: center;
}
.page-id-64 h2 span.free {
  font-size: 1.5rem;
  font-weight: 700;
  background-color: var(--color-accent);
  padding: 0;
  margin-right: 20px;
}
.page-id-64 h2 span.step {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-main);
  margin-right: 20px;
}

.page-id-64 li {
  margin-bottom: 10px;
}

.mt-no {
  margin-top: 1em;
}

/* 送信完了　サンクスページ */
.news-list.shot-code article h3 {
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.news-list.shot-code article a:hover {
  color: var(--color-main);
}

.main-image {
  width: 100%;
  height: 699px;
  background-color: var(--color-main);
  background-image: url("../img/top/main-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin-top: -30px;
  padding-top: 52px;
  padding-left: 4.8vw;
  position: relative;
  min-width: 1340px;
  transition: all 0.3s ease;
}
.main-image a.main-float-bnr {
  display: block;
  width: 269px;
  height: 269px;
  position: absolute;
  right: 19px;
  top: 46px;
  pointer-events: none;
}
.main-image a.main-float-bnr:hover img {
  opacity: 0.8;
}
.main-image .main-txt .main-catch {
  width: 832px;
  background-color: #fff;
  border-radius: 30px;
  padding: 13px 42px 19px;
}
.main-image .main-txt .main-catch span.line {
  font-size: 2.125rem;
  font-weight: 900;
  color: #000;
  font-style: italic;
  line-height: 1;
}
.main-image .main-txt .main-catch p {
  font-size: 4.125rem;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}
.main-image .main-txt .main-catch p img {
  display: inline-block;
}
.main-image .main-txt .wrap {
  width: 832px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
.main-image .main-txt .wrap .box {
  width: 408px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}
.main-image .main-txt .wrap .box p.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
}
.main-image .main-txt .wrap .box ul {
  text-align: left;
  padding-left: 0;
  display: inline-block;
  margin: 8px 0;
}
.main-image .main-txt .wrap .box ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.main-image .main-txt .wrap .box ul li img {
  margin-right: 5px;
}
.main-image .main-txt p.under-txt {
  width: 832px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
  color: #fff;
  position: relative;
}
.main-image .main-txt p.under-txt img {
  position: absolute;
  right: -65px;
  bottom: -65px;
}
.main-image .main-txt p.under-txt span {
  color: #FFEB52;
}
.main-image .main-point {
  width: 41vw;
  max-width: 782px;
  display: flex;
  position: absolute;
  bottom: 84px;
  right: 2vw;
  gap: 8px;
  box-sizing: border-box;
}
.main-image .main-point p {
  max-width: 150px;
  max-height: 150px;
  width: 8vw;
  height: 8vw;
  min-width: 0;
  font-size: 1.3vw;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 5px solid #fff;
  flex-shrink: 1;
  object-fit: contain;
  color: #fff;
  background-color: var(--color-main);
}
.main-image .main-point p:nth-last-of-type(1) {
  font-size: 1.3125rem;
}

@media screen and (max-width: 1700px) {
  .main-image .main-point {
    width: 33vw;
    max-width: 582px;
    min-width: 465px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 84px;
    right: 1vw;
    gap: 8px;
    box-sizing: border-box;
  }
  .main-image .main-point p {
    max-width: inherit;
    max-height: inherit;
    width: 30%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #fff;
    padding: 1vw 0.4vw;
  }
  .main-image .main-point p:nth-last-of-type(1) {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1400px) {
  .main-image .main-point {
    width: 30vw;
    min-width: 400px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 84px;
    right: 1vw;
    gap: 8px;
    box-sizing: border-box;
  }
  .main-image .main-point p {
    max-width: inherit;
    max-height: inherit;
    width: 30%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #fff;
    padding: 1vw 0.4vw;
  }
}
@media screen and (max-width: 1560px) {
  .main-image {
    padding-left: 6vw;
  }
  .main-image a.main-float-bnr {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 1260px) {
  .main-image .main-txt .balloon img.main-fukidashi {
    left: -35px;
    top: -57px;
  }
}
.main-under {
  width: 1052px;
  margin: -53px auto 0;
  position: absolute;
  z-index: 11;
  left: 50%;
  transform: translateX(-500px);
}
.main-under p.title {
  text-align: center;
  color: #fff;
  background-color: var(--color-corp);
  padding: 0 20px 16px 80px;
  border-radius: 60px 60px 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  line-height: 1.5;
}
.main-under p.title img.icon-u-main {
  position: absolute;
  left: -14px;
  top: 8px;
}
.main-under p.title span.num {
  font-size: 2.8125rem;
  font-weight: 900;
  margin: 0 5px;
}
.main-under p.title span.middle {
  font-size: 1.5rem;
}
.main-under p.title span.yuma {
  background-color: #fff;
  padding: 1px 7px;
  margin-right: 7px;
  color: var(--color-sub);
  font-size: 1.625rem;
}
.main-under .cont {
  display: flex;
  justify-content: space-between;
  padding: 21px 14px 22px;
  border-radius: 0 0 60px 60px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--color-corp);
}
.main-under .cont p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  border-right: 3px solid var(--color-corp);
  padding: 0 16px;
  line-height: 1.3;
}
.main-under .cont p span {
  display: block;
  color: var(--color-sub);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.main-under .cont p:nth-last-of-type(1) {
  border-right: none;
}

@media screen and (max-width: 1040px) {
  .main-under {
    width: 92%;
    transform: translateX(-50%);
  }
  .main-under p.title {
    font-size: 1.5rem;
  }
  .main-under p.title img.icon-u-main {
    display: none;
  }
  .main-under .cont p {
    font-size: 1.6vw;
  }
  .main-under .cont p span {
    font-size: 2vw;
  }
}
.top-section .inner {
  width: var(--content-width);
  margin: 0 auto;
}
.top-section h2 {
  text-align: center;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 20px;
}
.top-section h2:after {
  content: url("../img/top/h2_line.png");
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.greeting {
  width: 100%;
  padding-top: 290px;
  padding-bottom: 111px;
}
.greeting .inner {
  position: relative;
}
.greeting .inner img.boss {
  position: absolute;
  right: -200px;
  top: 0;
}
.greeting .inner h2 {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.7;
  color: var(--color-main);
  text-align: left;
  padding-bottom: 0;
}
.greeting .inner h2::after {
  content: "";
}
.greeting .inner p {
  width: 772px;
  font-size: 1.375rem;
  margin-top: 24px;
  line-height: 2;
}
.greeting .inner .wrap {
  width: 710px;
  display: flex;
  gap: 10px;
}
.greeting .inner .wrap .box {
  width: 50%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.greeting .inner .wrap .box .c-for-list {
  text-align: left;
  margin: 0;
}
.greeting .inner .wrap .box .c-for-list a {
  margin-top: 10px;
}
.greeting .inner .wrap .box .balloon {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 9px 34px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  background: var(--color-main);
  border-radius: 10px;
}
.greeting .inner .wrap .box .balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--color-main);
}
.greeting .inner .wrap .box .balloon p {
  margin: 0;
  padding: 0;
}
.greeting .cam-bnr {
  margin-top: 100px;
}
.greeting .cam-bnr a {
  margin: 0 auto;
}
.greeting .cam-bnr a img {
  margin: 0 auto;
}
.greeting .cam-bnr a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1600px) {
  .greeting .inner img.boss {
    width: 400px;
    height: auto;
    right: 0;
  }
}
.service-section {
  background-color: var(--color-light);
  padding: 80px 0 120px;
}
.service-section .wrap {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 40px;
}
.service-section .wrap .box {
  margin-top: 40px;
  transition: 0.3s;
}
.service-section .wrap .box:hover {
  transform: translateX(10px);
}
.service-section .wrap .box a {
  display: block;
  width: 360px;
  height: 435px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: right;
}
.service-section .wrap .box a .image {
  width: 320px;
  height: 192px;
  border-radius: 20px;
}
.service-section .wrap .box a h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
  margin-top: 10px;
  text-align: center;
}
.service-section .wrap .box a p.txt {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin-top: 8px;
  text-align: left;
}
.service-section .wrap .box a p.detail {
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
  gap: 10px;
  text-decoration: none;
  border-bottom: 2px solid var(--color-main);
  margin-top: 16px;
}

.top-plan {
  width: 100%;
  background-color: var(--color-main);
  padding: 80px 0 320px;
  position: relative;
}
.top-plan h2 {
  color: #fff;
}
.top-plan h2:after {
  content: url("../img/top/h2_line2.png");
}
.top-plan .wrap {
  width: 1160px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.top-plan .wrap .box {
  width: 560px;
  height: 420px;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 24px;
  text-align: center;
}
.top-plan .wrap .box .sub {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  background-color: var(--color-accent);
  border-radius: 10px;
  padding: 8px 35px;
}
.top-plan .wrap .box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.2;
  margin-top: 8px;
  text-align: center;
}
.top-plan .wrap .box .tag-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.top-plan .wrap .box .tag-wrap span {
  font-size: 1rem;
  padding: 8px 12px;
  border: 2px solid var(--color-main);
  line-height: 1;
  color: var(--color-main);
}
.top-plan .wrap .box .box-wrap {
  width: 512px;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.top-plan .wrap .box .box-wrap .image {
  width: 250px;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
}
.top-plan .wrap .box .box-wrap p.txt {
  width: 246px;
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000;
}

@media screen and (max-width: 1560px) {
  .top-reform img.reform-float {
    width: 300px;
    height: auto;
    top: 40px;
  }
}
.top-works,
.top-voice {
  border-radius: 200px 200px 0 0;
  margin-top: -200px;
  padding: 72px 0;
  background-color: var(--color-light);
  position: relative;
}
.top-works .wrap,
.top-voice .wrap {
  width: var(--content-width);
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
}
.top-works .wrap .box a,
.top-voice .wrap .box a {
  display: block;
  width: 360px;
  text-decoration: none;
  transition: 0.3s;
}
.top-works .wrap .box a:hover,
.top-voice .wrap .box a:hover {
  opacity: 0.8;
  transform: translateX(10px);
}
.top-works .wrap .box .image,
.top-voice .wrap .box .image {
  width: 360px;
  height: 270px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ccc;
}
.top-works .wrap .box .image img,
.top-voice .wrap .box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-works .wrap .box p,
.top-voice .wrap .box p {
  margin-top: 20px;
}
.top-works .wrap .box p.cat span,
.top-voice .wrap .box p.cat span {
  background-color: var(--color-main);
  color: #fff;
  padding: 8px 12px;
  line-height: 1;
  display: inline-block;
  margin-top: 5px;
  font-size: 1rem;
}
.top-works .wrap .box p.title,
.top-voice .wrap .box p.title {
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.top-works .wrap .box p.cont,
.top-voice .wrap .box p.cont {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125rem;
  color: var(--color-main);
}
.top-works .c-for-list,
.top-voice .c-for-list {
  margin-top: 0;
}
.top-works .c-for-list a,
.top-voice .c-for-list a {
  display: inline-flex;
}
.top-works .c-for-list a img,
.top-voice .c-for-list a img {
  transition: all 0.3s ease;
}

.top-voice {
  margin-top: 0;
  border-radius: 0;
  padding-bottom: 120px;
}

.top-flow {
  padding-top: 120px;
  position: relative;
}
.top-flow img.flow-float {
  position: absolute;
  top: 30px;
  right: 50%;
  margin-right: 250px;
}
.top-flow .flow-image {
  margin-top: 48px;
}
.top-flow .flow-image img {
  margin: 0 auto;
}
.top-flow .c-for-list {
  margin-top: 0;
}

.link-area {
  width: var(--content-width);
  margin: 120px auto 0;
  display: flex;
  justify-content: space-between;
}
.link-area a {
  display: flex;
  width: 540px;
  height: 250px;
  border-radius: 60px;
  background-size: cover;
  background-position: center;
  align-items: center;
  padding-left: 50px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.link-area a img {
  margin-left: 24px;
}
.link-area a:nth-of-type(1) {
  background-image: url("../img/top/faq-bnr-bg.jpg");
}
.link-area a:nth-of-type(2) {
  background-image: url("../img/top/bnr-company-bg.jpg");
}
.link-area a:hover {
  opacity: 0.7;
}

.top-news {
  margin-top: 120px;
  padding-bottom: 100px;
}
.top-news .inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 80px 85px 85px;
  border-radius: 60px;
  background-color: var(--color-light);
}
.top-news .inner .news-list {
  margin-top: 68px;
}
.top-news .inner .c-for-list a {
  display: inline-flex;
}

.news-list article {
  list-style-type: none;
  padding-bottom: 20px;
  border-bottom: 2px solid #B2B2B2;
  margin-bottom: 30px;
}
.news-list article p {
  margin-bottom: 16px;
}
.news-list article p.cat {
  font-size: 0.875rem;
  font-weight: 400;
  color: #626262;
}
.news-list article p.cat span {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
  padding: 4px 12px;
  margin-left: 12px;
}
.news-list article a {
  font-size: 1.125rem;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
}
.news-list article a:hover {
  color: var(--color-main);
}

@media screen and (max-width: 767px) {
  .main-image {
    width: 100%;
    height: auto;
    min-width: 100%;
    padding-left: 0;
    margin-top: 60px;
    padding-top: 21px;
    text-align: center;
    background-image: url("../img/top/main-bg-sp.jpg");
  }
  .main-image a {
    display: block;
  }
  .main-image a.main-float-bnr {
    position: absolute;
    left: auto;
    top: 53vw;
    width: 38vw;
    height: auto;
    margin: 17px 0 0 auto;
  }
  .main-image .main-txt .wrap {
    width: 92%;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
  }
  .main-image .main-txt .wrap .box {
    width: 100%;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
  }
  .main-image .main-txt .wrap .box p.title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
  }
  .main-image .main-txt .wrap .box ul {
    text-align: left;
    padding-left: 0;
    display: inline-block;
    margin: 8px 0;
  }
  .main-image .main-txt .wrap .box ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .main-image .main-txt .wrap .box ul li img {
    margin-right: 5px;
  }
  .main-image .main-txt p.under-txt {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 16px;
    color: #fff;
    position: relative;
  }
  .main-image .main-txt p.under-txt img {
    position: absolute;
    right: -65px;
    bottom: -65px;
  }
  .main-image .main-txt p.under-txt span {
    color: #FFEB52;
  }
  .main-image .main-txt .main-catch {
    width: 92%;
    margin: 0 auto;
    padding: 13px 8px 19px;
  }
  .main-image .main-txt .main-catch span.line {
    display: block;
    font-size: 5.7vw;
    padding: 0;
    line-height: 1.2;
  }
  .main-image .main-txt .main-catch p {
    font-size: 8vw;
  }
  .main-image .main-txt .main-catch p img {
    width: 88%;
  }
  .main-image .main-txt p.under-txt {
    width: 100%;
    display: block;
  }
  .main-image img.staff {
    margin-top: -37px;
  }
  .main-image .main-point {
    position: relative;
    min-width: 92%;
    width: 92%;
    bottom: 2vw;
    margin: 20vw auto 0;
  }
  .main-image .main-point p {
    font-size: 4vw;
  }
  .main-image .main-point p:nth-last-of-type(1) {
    font-size: 4vw;
  }
  .teian-wrap {
    background-color: var(--color-main);
    width: 100%;
    padding: 16px 0 13vw;
    display: flex;
    justify-content: space-between;
  }
  .teian-wrap .box {
    width: 92%;
    margin: 0 auto 20px;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    text-align: center;
  }
  .teian-wrap .box p.title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
  }
  .teian-wrap .box ul {
    text-align: left;
    padding-left: 0;
    display: inline-block;
    margin: 8px 0;
  }
  .teian-wrap .box ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .teian-wrap .box ul li img {
    margin-right: 5px;
  }
  .teian-wrap p.under-txt {
    width: 96%;
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.2;
    margin: 16px auto 0;
    color: #fff;
    position: relative;
    text-align: center;
  }
  .teian-wrap p.under-txt span {
    color: #FFEB52;
  }
  .main-under {
    position: relative;
    width: 92%;
    margin: -10vw auto 0;
    left: auto;
    transform: translateX(0);
  }
  .main-under p.title {
    padding: 20px 26px 16px;
    font-size: 6.5vw;
    line-height: 1.4;
  }
  .main-under p.title img.icon-u-main {
    display: block;
  }
  .main-under p.title span.middle {
    font-size: 4.6vw;
  }
  .main-under p.title span.middle:nth-last-of-type(1) {
    font-size: 5.5vw;
  }
  .main-under p.title span.num {
    font-size: 8vw;
  }
  .main-under p.title span.yuma {
    font-size: 4.8vw;
  }
  .main-under p.title img.icon-u-main {
    width: 22vw;
    height: auto;
    left: -10px;
    top: auto;
    bottom: 44px;
  }
  .main-under .cont {
    display: block;
    padding: 8px 8px 20px;
  }
  .main-under .cont p {
    border-right: none;
    padding: 10px 6px;
    border-bottom: 3px solid var(--color-corp);
    font-size: 1.1875rem;
  }
  .main-under .cont p span {
    font-size: 1.5rem;
  }
  .main-under .cont p:nth-last-of-type(1) {
    border-bottom: none;
  }
  .top-section h2 {
    font-size: 2rem;
  }
  .top-section .inner {
    padding: 0 4%;
  }
  .greeting {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .greeting .inner img.boss {
    position: relative;
    width: auto;
    height: auto;
    zoom: 0.5;
    margin: 32px auto 0;
    right: auto;
    top: auto;
  }
  .greeting .inner h2 {
    font-size: 1.6875rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .greeting .inner p {
    width: 100%;
    font-size: 1.125rem;
    line-height: 1.8;
  }
  .greeting .inner .wrap {
    width: 100%;
    display: block;
    margin-top: 36px;
  }
  .greeting .inner .wrap .box {
    width: 100%;
  }
  .greeting .inner .wrap .box .c-for-list {
    margin-bottom: 16px;
  }
  .greeting .cam-bnr {
    margin-top: 30px;
  }
  .greeting .cam-bnr a {
    display: block;
    width: 92%;
    height: auto;
  }
  .top-reform {
    padding-top: 50px;
    padding-bottom: 126px;
  }
  .top-reform img.reform-float {
    width: 84.5vw;
    margin-left: 0%;
    left: 6%;
    top: -28px;
  }
  .top-reform h2 {
    font-size: 2rem;
  }
  .top-reform .reform-wrap {
    overflow: visible;
    margin-top: 62px;
    padding-top: 45vw;
  }
  .top-reform .reform-wrap .wrap {
    padding: 0 16px;
    display: block;
  }
  .top-reform .reform-wrap .wrap .box {
    width: 100%;
    margin-top: 32px;
  }
  .top-reform .reform-wrap .wrap .box .column {
    height: auto;
  }
  .top-reform .reform-wrap .wrap .box .column p {
    width: calc(100% - 126px);
  }
  .top-reform .reform-wrap .wrap .box .column img {
    width: 110px;
    height: auto;
  }
  .top-reform .reform-wrap .wrap img.reform-float02-sp {
    margin: 40px 0 0 -4%;
  }
  .top-reform .reform-wrap .reform-ftr {
    padding: 32px 16px 29px;
    text-align: center;
    border-radius: 0 0 60px 60px;
  }
  .top-reform .reform-wrap .reform-ftr p {
    font-size: 1.4375rem;
    line-height: 1.4;
  }
  .top-reform .reform-wrap .reform-ftr p span {
    font-size: 1.75rem;
    margin-top: 10px;
  }
  .top-reform .movie {
    margin-top: 40px;
  }
  .top-reform .movie p.title {
    font-size: 1.5rem;
  }
  .top-reform .movie p.title span {
    font-size: 1.375rem;
  }
  .top-reform .youtube {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .top-reform .youtube iframe {
    width: 100%;
    height: 100%;
  }
  .service-section {
    padding: 60px 0 80px;
  }
  .service-section .wrap {
    width: 100%;
    display: block;
  }
  .service-section .wrap .box {
    margin-top: 20px;
  }
  .service-section .wrap .box a {
    margin: 0 auto 20px;
    height: auto;
  }
  .top-plan {
    border-radius: 0;
    padding: 60px 16px;
  }
  .top-plan h2 {
    font-size: 2rem;
  }
  .top-plan .inner {
    background-image: none;
    padding: 0;
  }
  .top-plan .inner .wrap {
    width: 100%;
    display: block;
  }
  .top-plan .inner .wrap .box {
    width: 100%;
    height: auto;
    padding: 24px;
    margin-top: 20px;
  }
  .top-plan .inner .wrap .box .sub {
    width: 100%;
    font-size: 1.375rem;
    padding: 8px 14px;
  }
  .top-plan .inner .wrap .box .tag-wrap {
    flex-wrap: wrap;
  }
  .top-plan .inner .wrap .box .box-wrap {
    display: block;
    width: 100%;
  }
  .top-plan .inner .wrap .box .box-wrap .image {
    width: 100%;
    height: auto;
  }
  .top-plan .inner .wrap .box .box-wrap .txt {
    width: 100%;
    margin-top: 16px;
  }
  .top-works,
  .top-voice {
    margin-top: -60px;
    border-radius: 60px 60px 0 0;
    padding-top: 84px;
    padding-bottom: 0;
  }
  .top-works h2,
  .top-voice h2 {
    margin-bottom: 52px;
    font-size: 2rem;
  }
  .top-works .wrap,
  .top-voice .wrap {
    width: 92%;
    display: block;
    margin: 0 auto;
  }
  .top-works .wrap .box a,
  .top-voice .wrap .box a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .top-works .wrap .box a .image,
  .top-voice .wrap .box a .image {
    width: 41%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .top-works .wrap .box a .txt,
  .top-voice .wrap .box a .txt {
    width: 56%;
  }
  .top-works .wrap .box a p.cat,
  .top-voice .wrap .box a p.cat {
    margin-top: 0;
    padding: 0;
    font-size: 0.875rem;
  }
  .top-works .wrap .box a p.cat span,
  .top-voice .wrap .box a p.cat span {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .top-works .wrap .box a p.title,
  .top-voice .wrap .box a p.title {
    font-size: 1.125rem;
    margin-top: 0;
  }
  .top-works .wrap .box a p.cont,
  .top-voice .wrap .box a p.cont {
    font-size: 1rem;
  }
  .top-works .c-for-list,
  .top-voice .c-for-list {
    margin-top: 36px;
    margin-bottom: 0;
  }
  .top-voice {
    border-radius: 0;
    margin-top: 0;
    padding-bottom: 60px;
  }
  .top-flow {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 1px;
  }
  .top-flow h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .top-flow .flow-image {
    width: 92%;
    margin: 0 auto;
  }
  .top-flow .flow-image img {
    transform: rotate(0);
  }
  .top-flow .c-for-list {
    margin-top: 36px;
  }
  .top-flow .c-for-list a {
    width: 83%;
  }
  .link-area {
    background-color: #fff;
    margin: 0;
    padding-top: 16px;
    display: block;
  }
  .link-area a {
    width: 92%;
    height: 48.5vw;
    font-size: 2rem;
    margin: 0 auto 32px;
    padding-left: 32px;
  }
  .link-area a:nth-of-type(2) {
    margin-bottom: 0;
  }
  .top-news {
    background-color: #fff;
    width: 100%;
    margin-top: 0;
    text-align: center;
    padding-top: 80px;
  }
  .top-news .inner {
    margin: 0 auto;
    background: var(--color-light);
    padding: 64px 15px 1px;
  }
  .top-news .inner h2 {
    font-size: 2rem;
  }
  .news-list {
    margin-top: 42px;
  }
  .news-list article {
    margin-bottom: 20px;
  }
  .news-list article p {
    text-align: left;
  }
  .news-list article p.cat span {
    padding: 4px 12px;
  }
  .news-list article h3 {
    text-align: left;
  }
  .news-list article h3 a {
    line-height: 1.5;
  }
}
@media screen and (min-width: 659px) and (max-width: 767px) {
  .main-image .main-txt .balloon img.main-b-a {
    bottom: -27vw;
  }
  .main-image a.main-float-bnr {
    width: 34vw;
  }
}
@media screen and (max-width: 374px) {
  .top-section h2 {
    font-size: 9vw;
    line-height: 1.5;
  }
  .top-section h3 {
    font-size: 8vw;
    line-height: 1.5;
  }
  .top-section h4 {
    font-size: 7vw;
    line-height: 1.5;
  }
}
.u-contents {
  width: var(--u-content-width);
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 80px;
}
.u-contents > *:first-child {
  margin-top: 0 !important;
}
.u-contents.u-plan {
  padding-bottom: 0;
}

.u-contents:has(.basic-knowledge:last-child),
.u-contents:has(.strength-list:last-child) {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    width: var(--u-content-width);
    margin: 0 auto;
    padding-bottom: 100px;
  }
}