@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:#CE4800;
  --color-sub:#13843E;
  --color-accent:#FFE100;
  --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 .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;
}

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

@media screen and (max-width: 1500px) {
  .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;
  flex-wrap: nowrap;
  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);
  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: 1000px;
  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;
}
.c-nav-list > li:nth-last-of-type(1) {
  border-right: none;
  font-size: 1.125rem;
  font-weight: 500;
}
.c-nav-list > li:nth-last-of-type(1) img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.c-nav-list > li:nth-last-of-type(1):hover img,
.c-nav-list > li:nth-last-of-type(1) > ul:hover img {
  transform: rotate(-180deg);
}

.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 {
  display: block;
  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) {
  .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;
  }
  .logo {
    margin-top: 8px;
    margin-left: 16px;
  }
  .logo img {
    width: 60%;
    height: auto;
  }
}
.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: 0px;
}
.fix-side a {
  display: block;
  width: 65px;
  height: 250px;
  margin: 5px 0 5px 5px;
  border: 1px solid #fff;
  display: flex;
  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 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;
}
.l-footer .ftr-data .sns a {
  margin-right: 26px;
}
.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: 34px;
  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;
}
.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: 305px;
}
.ftr-link nav ul:nth-of-type(2) {
  width: 120px;
}
.ftr-link nav ul:nth-of-type(3) {
  width: 200px;
}
.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: 0px;
  }
  .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);
  }
  .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: 4.2vw;
  }
  .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.second:nth-of-type(7) {
    margin-bottom: 10px;
  }
  .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 .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);
    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.9375rem;
  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: #000;
}
.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: -120px;
    left: 16px;
    right: auto;
    margin-right: 0;
  }
  .p-cta img.cta-float02 {
    width: 134px;
    height: auto;
    top: -120px;
    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: 1.75rem;
  }
  .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;
}

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

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

@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-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 {
  background: var(--color-main);
  color: #fff;
  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;
}

.page .c-for-list,
.single .c-for-list,
.error404 .c-for-list,
.wp-block-button {
  margin-top: 40px;
}
.page .c-for-list a,
.single .c-for-list a,
.error404 .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;
}
.page .c-for-list a:after,
.single .c-for-list a:after,
.error404 .c-for-list a:after,
.wp-block-button a:after {
  content: url(../img/common/btn-arrow.png);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-60%);
  width: 24px;
  height: 24px;
}
.page .c-for-list a:hover::after,
.single .c-for-list a:hover::after,
.error404 .c-for-list a:hover::after,
.wp-block-button a:hover::after {
  content: url(../img/common/btn-arrow_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;
    display: block;
    max-width: 98%;
    font-size: 1.125rem;
    padding: 13px 40px;
    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;
  line-height: 2;
  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-wrap: wrap;
  flex-direction: row;
  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;
  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 {
    text-align: center;
    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%;
  }
  .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;
}
.u-main .h1-wrap h1::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -16px;
}
.u-main .h1-wrap h1::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -16px;
  z-index: 10;
}

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

.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: 10px;
}
.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: #000;
}
.cta-link-area-wrap .cta-link-area a:nth-of-type(3) p.title {
  background-color: #09AF12;
}

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

/* 断熱プラン一覧 */
.top-plan.plan {
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  margin-top: 0;
  position: relative;
  z-index: 11;
  padding-top: 0;
  text-align: center;
}
.top-plan.plan h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 900;
  margin-top: 0;
}
.top-plan.plan h2:before {
  content: none;
}
.top-plan.plan h2::after {
  content: none;
}
.top-plan.plan .inner {
  width: var(--u-content-width);
}
.top-plan.plan .inner article:nth-of-type(1) {
  margin-right: 400px;
}
.top-plan.plan .inner article:nth-of-type(3) {
  margin-right: 400px;
}

/* 窓＋床下＋天井断熱＋屋根遮熱・換気プラン */
.osusume-wrap {
  width: 100%;
  background-color: var(--color-main);
  border-radius: 60px;
  padding: 40px;
  margin-top: 24px;
}
.osusume-wrap p.circle {
  width: 166px;
  height: 166px;
  border-radius: 83px;
  background-color: var(--color-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 106px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.5rem;
}
.osusume-wrap ul.list-white li {
  color: #fff;
}
.osusume-wrap ul.list-white li::before {
  color: var(--color-accent);
}
.osusume-wrap .meyasu .osusume-box {
  height: 183px;
}
.osusume-wrap .meyasu .osusume-box:nth-of-type(2) p:nth-of-type(1) {
  margin-top: 24px !important;
}
.osusume-wrap .osusume-box {
  background-color: var(--color-light);
  border-radius: 40px;
  padding: 24px;
  text-align: center;
}
.osusume-wrap .osusume-box p {
  margin-top: 6px;
  line-height: 1.5;
}
.osusume-wrap .osusume-box p.hojyokin-caption {
  font-size: 1rem;
  line-height: 1;
}
.osusume-wrap .osusume-box p span {
  font-size: 0.75rem;
  line-height: 1.4;
  display: block;
  margin-top: 8px;
}
.osusume-wrap .osusume-box:nth-last-of-type(1) ul {
  margin: 6px auto 0;
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
}
.osusume-wrap .osusume-box:nth-last-of-type(1) ul li {
  text-align: left;
}
.osusume-wrap .osusume-box.jyoseikin-box ul {
  margin: 6px auto 0;
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
}
.osusume-wrap .osusume-box.jyoseikin-box ul li {
  text-align: left;
}
.osusume-wrap .wp-block-buttons {
  margin-top: 24px;
}
.osusume-wrap .wp-block-buttons .wp-block-button a {
  margin-top: 0;
}

.wp-block-columns ul.wp-block-list {
  margin-top: 16px;
}

.plan-youtube {
  text-align: center;
}

.intro-second {
  margin-top: 64px;
}

.kouka-wrap {
  padding: 40px;
  border-radius: 60px;
  background-color: var(--color-light);
  margin-top: 24px;
}
.kouka-wrap .kouka-box {
  background-color: #fff;
  border-radius: 40px;
  padding: 24px 40px;
  margin-bottom: 16px;
  text-align: center;
}
.kouka-wrap .kouka-box .wp-block-columns {
  margin-bottom: 0;
}
.kouka-wrap .kouka-box .wp-block-columns .wp-block-column {
  text-align: left;
}
.kouka-wrap .kouka-box .wp-block-columns .wp-block-column p {
  line-height: 1.4;
}
.kouka-wrap .kouka-box p {
  margin-top: 6px;
  line-height: 1.5;
  text-align: left;
}

.merit-box {
  border: 6px solid var(--color-main);
  border-radius: 60px;
  padding: 40px;
  margin-top: 64px;
}

.merit-list {
  display: flex;
  justify-content: space-between;
  gap: 0.5em !important;
}
.merit-list p {
  width: 100%;
  height: 133px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  font-size: 1.5rem;
  line-height: 1.3;
}

.merit-wrap {
  margin-top: 96px;
  background-color: var(--color-light);
  padding: 96px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.merit-wrap .wp-block-group__inner-container {
  width: var(--u-content-width);
  margin: 0 auto;
}
.merit-wrap h3 {
  background-color: #fff;
}

.before-after-block {
  margin-top: 40px;
}
.before-after-block .wp-block-column:nth-of-type(1) {
  position: relative;
  z-index: 9;
}
.before-after-block .wp-block-column:nth-of-type(1)::before {
  content: "before";
  display: flex;
  width: 80px;
  height: 30px;
  background-color: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
.before-after-block .wp-block-column:nth-last-of-type(1) {
  position: relative;
  z-index: 9;
}
.before-after-block .wp-block-column:nth-last-of-type(1)::before {
  content: "after";
  display: flex;
  width: 80px;
  height: 30px;
  background-color: var(--color-main);
  color: #fff;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}

.plan-step {
  background-color: var(--color-light);
  padding: 9px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.3;
  margin-bottom: 24px;
}
.plan-step span {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.875rem;
  margin-right: 24px;
}

.plan-point {
  margin: 40px 0 96px;
  border: 4px solid var(--color-main);
  border-radius: 60px;
  padding: 20px 40px;
}
.plan-point p.title {
  border-bottom: 4px solid var(--color-accent);
}
.plan-point p {
  margin-top: 16px;
}
.plan-point.d-none {
  display: none !important;
}

.related-post {
  background-color: var(--color-light);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.related-post .inner {
  width: var(--u-content-width);
  margin: 0 auto;
  padding: 96px 0;
}
.related-post .inner .c-for-list a {
  margin-top: 0;
}
.related-post h2 {
  text-align: center;
}
.related-post h2:nth-of-type(1) {
  margin-top: 0;
}

.wp-block-button.jyoseikin-link a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/page/icon-newwindow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: 0.3s;
}
.wp-block-button.jyoseikin-link a:hover {
  background-color: #fff;
  color: var(--color-main);
}
.wp-block-button.jyoseikin-link a:hover::after {
  background-image: url(../img/page/icon-newwindow_on.png);
}

@media screen and (max-width: 1340px) {
  .merit-wrap,
  .related-post {
    width: 1340px;
    margin-left: calc(50% - 670px);
  }
}
@media screen and (max-width: 767px) {
  .merit-wrap,
  .related-post {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .osusume-wrap {
    padding: 40px 4%;
  }
  .osusume-wrap p.circle {
    margin: 0 auto;
  }
  .osusume-wrap .meyasu {
    height: auto;
  }
  .osusume-wrap .meyasu .osusume-box {
    border-radius: 20px;
    height: auto;
  }
  .osusume-wrap .meyasu .osusume-box:nth-of-type(2) p:nth-of-type(1) {
    margin-top: 0 !important;
  }
  .plan-intro {
    font-size: 1.5rem !important;
    line-height: 1.5;
  }
  .kouka-wrap {
    border-radius: 20px;
    padding: 20px 4%;
  }
  .kouka-wrap .kouka-box {
    border-radius: 20px;
    padding: 20px 4%;
    margin-bottom: 16px;
  }
  .kouka-wrap .kouka-box .wp-block-columns {
    gap: 1em;
  }
  .kouka-wrap .kouka-box .wp-block-columns .wp-block-column p {
    text-align: center;
  }
  .merit-box {
    border-radius: 20px;
    padding: 20px 4%;
  }
  .merit-list p {
    font-size: 1.125rem;
    padding: 4%;
    height: auto;
  }
  .before-after-block {
    gap: 0;
  }
  .before-after-block .wp-block-column:nth-of-type(2) .wp-block-image img {
    transform: rotate(90deg);
  }
  .plan-point p.title {
    line-height: 1.5;
  }
  .plan-step {
    font-size: 1.375rem;
  }
  .plan-step span {
    font-size: 1.5rem;
  }
}
/* 運営会社案内 */
.company-table table {
  margin-top: 0 !important;
}
.company-table table tr td {
  padding: 15px 20px !important;
}

/* 断熱名人の強み*/
.tsuyomi-wrap {
  margin-top: 24px;
}
.tsuyomi-wrap .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box {
  width: 320px;
  height: 222px;
  border-radius: 40px;
  background-color: var(--color-light);
  overflow: hidden;
  margin: 0 16px 16px 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: var(--color-accent);
  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-main);
}
.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;
}
.tsuyomi-wrap .wp-block-group__inner-container .tsuyomi-box:nth-of-type(3n) {
  margin-right: 0;
}

.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;
}
.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 40px;
  }
  .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;
  }
}
/* お客様の声 */
.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;
}

@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 0 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: 7vw;
  }
  .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;
  }
}
/* 送信完了　サンクスページ */
.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: 72px;
  padding-left: 11vw;
  position: relative;
  min-width: 1340px;
  transition: all 0.3s ease;
}
.main-image .main-float-bnr {
  display: block;
  width: 269px;
  height: 269px;
  position: absolute;
  right: 19px;
  top: 6px;
}
.main-image .main-txt .main-catch span.line {
  background-color: var(--color-accent);
  font-size: 2.125rem;
  font-weight: 900;
  padding: 0 30px;
  color: #000;
}
.main-image .main-txt .main-catch span.yellow-svg {
  position: relative;
  display: inline-block;
  color: var(--color-accent);
  font-size: 5.25rem;
  letter-spacing: -0.05em;
  line-height: 1;
  white-space: nowrap;
  z-index: 0;
  isolation: isolate;
}
.main-image .main-txt .main-catch span.yellow-svg .outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: -1;
  pointer-events: none;
  top: -7px;
}
.main-image .main-txt .main-catch span.yellow-svg .outline text {
  font: inherit;
  letter-spacing: inherit;
  dominant-baseline: alphabetic;
  fill: none;
  stroke: var(--color-main);
  stroke-width: 20px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke;
}
.main-image .main-txt .main-catch p {
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  margin-top: 10px;
}
.main-image .main-txt .balloon {
  display: inline-block;
  margin-top: 53px;
  background-color: var(--color-accent);
  border-radius: 30px;
  padding: 30px 65px 30px 37px;
  position: relative;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.4;
}
.main-image .main-txt .balloon img.main-fukidashi {
  position: absolute;
  left: -70px;
  top: 25px;
}
.main-image .main-txt .balloon img.main-b-a {
  position: absolute;
  right: -180px;
  top: -35px;
}
.main-image .main-txt .balloon img.main-logo {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
}
.main-image .main-txt .balloon span.wave {
  text-decoration: var(--color-main) wavy underline;
  text-underline-offset: 5px;
}
.main-image .main-txt .balloon span.bold {
  font-weight: 700;
}

@media screen and (max-width: 1560px) {
  .main-image {
    padding-left: 6vw;
  }
  .main-image .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: 1000px;
  margin: -66px 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;
  border-radius: 60px 60px 0 0;
  font-size: 1.875rem;
  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.625rem;
}
.main-under p.title span.yuma {
  background-color: #fff;
  color: var(--color-corp);
  padding: 1px 7px;
  margin-right: 7px;
  color: var(--color-sub);
}
.main-under .cont {
  display: flex;
  justify-content: space-between;
  padding: 21px 43px 22px;
  border-radius: 0 0 60px 60px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.main-under .cont p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  border-right: 3px solid var(--color-corp);
  padding: 0 20px;
  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;
}

.greeting {
  width: 100%;
  background-color: var(--color-light);
  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);
}
.greeting .inner p {
  width: 772px;
  font-size: 1.375rem;
  margin-top: 24px;
}
.greeting .inner .wrap {
  width: 704px;
  display: flex;
  justify-content: space-between;
}
.greeting .inner .wrap .box {
  width: 50%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
.greeting .inner .wrap .box .c-for-list {
  margin-top: 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;
  }
}
.top-reform {
  width: 100%;
  background-color: var(--color-main);
  color: #fff;
  padding: 97px 0 285px;
  position: relative;
}
.top-reform img.reform-float {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 325px;
  z-index: 10;
}
.top-reform h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.top-reform h2 span {
  display: block;
  color: var(--color-accent);
}
.top-reform h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}
.top-reform h2::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-accent);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
  z-index: 10;
}
.top-reform .reform-wrap {
  background-color: #fff;
  margin-top: 50px;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
  line-height: 1;
}
.top-reform .reform-wrap img.reform-float02 {
  position: absolute;
  bottom: 0;
  left: 120px;
}
.top-reform .reform-wrap .wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px 57px;
}
.top-reform .reform-wrap .wrap .box {
  width: 326px;
  text-align: center;
}
.top-reform .reform-wrap .wrap .box p.title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
  color: #000;
  line-height: 1.4;
  border-bottom: 3px solid var(--color-accent);
}
.top-reform .reform-wrap .wrap .box p.title + img {
  margin: 0 auto;
}
.top-reform .reform-wrap .wrap .box .column {
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
  height: 130px;
}
.top-reform .reform-wrap .wrap .box .column p {
  color: var(--color-main);
  font-size: 1.375rem;
  font-weight: 900;
  text-align: left;
  line-height: 1.2;
}
.top-reform .reform-wrap .wrap .box p.txt {
  color: #000;
  font-size: 1.125rem;
  text-align: left;
  line-height: 1.5;
  margin-top: 10px;
}
.top-reform .reform-wrap .reform-ftr {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  padding: 18px 0 22px 472px;
  background-color: var(--color-accent);
  line-height: 1.4;
}
.top-reform .reform-wrap .reform-ftr p {
  font-size: 1.75rem;
}
.top-reform .reform-wrap .reform-ftr p span {
  display: block;
  font-size: 2rem;
  color: var(--color-main);
  line-height: 1.4;
}
.top-reform .movie {
  text-align: center;
  margin-top: 53px;
}
.top-reform .movie p.title {
  font-size: 1.9375rem;
  color: var(--color-accent);
  font-weight: 700;
}
.top-reform .movie p.title span {
  display: block;
  font-size: 1.625rem;
  color: #fff;
  font-weight: 700;
}
.top-reform .movie .youtube {
  margin-top: 24px;
}

@media screen and (max-width: 1560px) {
  .top-reform img.reform-float {
    width: 300px;
    height: auto;
    top: 40px;
  }
}
.top-plan {
  background-color: var(--color-light);
  border-radius: 200px 200px 0 0;
  margin-top: -200px;
  position: relative;
  z-index: 11;
  padding-top: 91px;
  text-align: center;
}
.top-plan h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.top-plan h2 span {
  display: block;
  color: var(--color-accent);
}
.top-plan h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}
.top-plan h2::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
  z-index: 10;
}
.top-plan p.intro {
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 34px;
}
.top-plan .inner {
  width: var(--content-width);
  margin: 37px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-image: url(../img/top/plan-image.png);
  background-repeat: no-repeat;
  background-position: center;
}
.top-plan .inner article {
  width: 300px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 28px;
  padding: 44px 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.top-plan .inner article p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.top-plan .inner article p.title {
  font-size: 1.625rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-main);
  border-radius: 10px;
  line-height: 1.2;
  padding: 7px 0;
}
.top-plan .inner article p.main-txt {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 15px;
}
.top-plan .inner article a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-main);
  margin-top: 15px;
}
.top-plan .inner article a img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.top-plan .inner article a:hover {
  color: var(--color-main);
}
.top-plan .inner article:nth-of-type(1) {
  margin-right: 540px;
}
.top-plan .inner article:nth-of-type(3) {
  margin-right: 540px;
}

.top-works,
.top-voice {
  padding: 72px 0;
  background-color: var(--color-light);
}
.top-works h2,
.top-voice h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.top-works h2 span,
.top-voice h2 span {
  display: block;
  color: var(--color-accent);
}
.top-works h2:before,
.top-voice h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}
.top-works h2::after,
.top-voice h2::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
  z-index: 10;
}
.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;
  background-image: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ccc;
}
.top-works .wrap .box p.cat,
.top-voice .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;
}
.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 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 {
  padding-bottom: 120px;
}

.top-flow {
  padding-top: 120px;
  position: relative;
}
.top-flow img.flow-float {
  position: absolute;
  top: -7px;
  right: 50%;
  margin-right: 250px;
}
.top-flow h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.top-flow h2 span {
  display: block;
  color: var(--color-accent);
}
.top-flow h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}
.top-flow h2::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
  z-index: 10;
}
.top-flow .flow-image {
  margin-top: 48px;
}
.top-flow .flow-image img {
  margin: 0 auto;
}
.top-flow .c-for-list a {
  display: inline-flex;
}

.link-area {
  width: var(--content-width);
  margin: 120px auto 0;
  display: flex;
  justify-content: space-between;
}
.link-area a {
  display: block;
  width: 540px;
  height: 250px;
  border-radius: 60px;
  background-size: cover;
  background-position: center;
  display: flex;
  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 h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.top-news .inner h2 span {
  display: block;
  color: var(--color-accent);
}
.top-news .inner h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  position: relative;
  background-color: #FFBF02;
  z-index: 9;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
}
.top-news .inner h2::after {
  content: "";
  width: 30px;
  height: 6px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: -10px;
  z-index: 10;
}
.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) {
  .l-main {
    background-color: var(--color-light);
  }
  .main-image {
    width: 100%;
    height: auto;
    min-width: 100%;
    padding-left: 0;
    margin-top: 60px;
    padding-top: 21px;
    padding-bottom: 142px;
    text-align: center;
    background-image: url(../img/top/main-bg-sp.jpg);
  }
  .main-image img.main-float-bnr {
    position: relative;
    right: auto;
    top: auto;
    width: 38vw;
    height: auto;
    margin: 17px 0 0;
  }
  .main-image .main-txt .main-catch span.line {
    font-size: 1.125rem;
    padding: 0 15px;
  }
  .main-image .main-txt .main-catch span.yellow-svg {
    font-size: 2.6rem;
    white-space: inherit;
    display: contents;
    line-height: 1.1;
  }
  .main-image .main-txt .main-catch span.yellow-svg .outline {
    display: none;
  }
  .main-image .main-txt .main-catch p {
    font-size: 2.1875rem;
  }
  .main-image .main-txt .main-catch p .yellow {
    font-size: 2.6rem;
  }
  .main-image .main-txt .balloon {
    width: 85%;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-radius: 15px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .main-image .main-txt .balloon .bold {
    font-size: 1rem;
  }
  .main-image .main-txt .balloon img.main-logo {
    width: 26vw;
    margin-right: 0;
  }
  .main-image .main-txt .balloon img.main-b-a {
    width: 59vw;
    right: -24px;
    top: auto;
    bottom: -20vw;
  }
  .main-image .main-txt .balloon img.main-fukidashi {
    width: 57px;
    height: auto;
    left: -26px;
    top: -10px;
  }
  .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: 99px;
    height: auto;
    left: -18px;
    top: auto;
    bottom: -16px;
  }
  .main-under .cont {
    display: block;
    padding: 8px 16px;
  }
  .main-under .cont p {
    border-right: none;
    padding: 10px 20px 10px;
    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 .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;
  }
  .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%;
  }
  .top-plan {
    border-radius: 60px 60px 0 0;
    margin-top: -60px;
    padding: 84px 16px 60px;
  }
  .top-plan h2 {
    font-size: 2rem;
  }
  .top-plan p.intro {
    font-size: 1.1875rem;
    text-align: left;
  }
  .top-plan img.plan-image-sp {
    margin-top: 31px;
  }
  .top-plan .inner {
    background-image: none;
    margin-top: 24px;
  }
  .top-plan .inner article {
    width: 48%;
    padding: 20px 16px 45px;
    position: relative;
    margin-bottom: 4%;
  }
  .top-plan .inner article p {
    font-size: 1.125rem;
    text-align: left;
  }
  .top-plan .inner article p.title {
    font-size: 1.25rem;
  }
  .top-plan .inner article p.main-txt {
    font-size: 1.0625rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .top-plan .inner article a {
    position: absolute;
    bottom: 20px;
    display: block;
    width: calc(100% - 32px);
    text-align: center;
    padding-bottom: 3px;
  }
  .top-plan .inner article:nth-of-type(2) {
    order: 3;
  }
  .top-plan .inner article:nth-of-type(3) {
    order: 2;
  }
  .top-plan .inner article:nth-of-type(4) {
    order: 4;
  }
  .top-plan .inner p.intro {
    font-size: 1.1875rem;
  }
  .top-plan .inner article:nth-of-type(1), .top-plan .inner article:nth-of-type(3) {
    margin-right: 0;
  }
  .top-works,
  .top-voice {
    padding-top: 0;
    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: 8px;
    font-size: 0.875rem;
  }
  .top-works .wrap .box a p.title,
  .top-voice .wrap .box a p.title {
    font-size: 1.125rem;
  }
  .top-works .wrap .box a p.cont,
  .top-voice .wrap .box a p.cont {
    font-size: 1rem;
  }
  .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;
  }
  .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 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 .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;
}

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