@charset "UTF-8";
/*
 * foundation
 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");
*,
*: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: 1280px;
  --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:#aaa;
  --color-text:#2F2F2F;
  --color-main:#2F2F2F;
  --color-sub:#9B782D;
  --color-dark:#791611;
  --color-light:#E6D39E;
  --color-pink:#FDF2F2;
  --color-blown:#4A2402;
  --font-main: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-sub: "Zen Old Mincho", serif;
  --font-eng: "Lato", 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%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: var(--color-main);
  font-family: var(--font-main);
  font-weight: 500;
  min-width: 1315px;
}

* {
  box-sizing: border-box;
}

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

@media screen and (min-width: 1025px) {
  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;
}
*/
ul li,
ol li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.sp {
  display: none !important;
}

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

p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@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: 16px;
  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 -------------------------------------- */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  top: 0;
}
header::before {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: var(--color-dark);
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  z-index: 100000;
}
header .logo-area {
  position: absolute;
  top: 15px;
  left: 1.6vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .logo-area .h1-txt {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-dark);
  line-height: 140%;
}
header .hdr-contact-area {
  height: 100px;
  position: fixed;
  right: 200px;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  border-radius: 60px;
  padding: 0 1.8vw 0 0;
  transition: 0.3s;
  z-index: 8000;
}
header .hdr-contact-area nav.pc {
  transition: 0.3s;
}
header .hdr-contact-area nav.pc ul {
  display: flex;
  gap: 1.6vw;
  margin: 0;
}
header .hdr-contact-area nav.pc ul > li {
  list-style-type: none;
  margin-left: 0;
  position: relative;
}
header .hdr-contact-area nav.pc ul > li::before {
  background: var(--color-dark);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header .hdr-contact-area nav.pc ul > li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
header .hdr-contact-area nav.pc ul > li:hover {
  border-color: var(--color-dark);
}
header .hdr-contact-area nav.pc ul > li a {
  text-decoration: none;
}
header .hdr-contact-area nav.pc ul > li.has-sub {
  position: relative;
}
header .hdr-contact-area nav.pc ul > li .sub {
  display: none;
  position: absolute;
  left: -44px;
  top: 2em;
  width: 164px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 0 10px;
}
header .hdr-contact-area nav.pc ul > li .sub li {
  border-bottom: none !important;
}
header .hdr-contact-area nav.pc ul > li .sub li::before {
  content: none;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a span {
  font-size: 26px;
  line-height: 1;
  color: var(--color-light);
}
header .hdr-contact-area nav.pc ul > li .sub > li:nth-last-of-type(1) > a span {
  color: var(--color-sub);
}
header .hdr-contact-area nav.pc ul > li .sub > li > a:hover {
  color: #BF7939;
  opacity: 1;
}
header .hdr-contact-area p.hdr-contact.lora {
  color: var(--color-dark);
  font-size: 3rem;
  font-family: var(--font-sub);
  line-height: 150%;
  padding-left: 26px;
  position: relative;
}
header .hdr-contact-area p.hdr-contact.lora::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 55%;
  left: 0;
  background: var(--color-dark);
  mask: url(../img/common/icon-tel.svg) no-repeat top center/contain;
  transform: translateY(-50%);
}
header .hdr-contact-area p.hdr-contact.lora a {
  text-decoration: none;
}
@media screen and (max-width: 1270px) {
  header .hdr-contact-area {
    min-width: 360px;
    justify-content: center;
  }
  header .hdr-contact-area nav {
    display: none;
  }
}
header .hd-mail {
  position: fixed;
  top: 0;
  right: 100px;
  z-index: 8001;
  width: 100px;
  height: 100px;
}
header .hd-mail a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  padding-top: 30px;
  transition: 0.3s;
}
header .hd-mail a:hover {
  background-color: var(--color-dark);
}
header .hd-mail a span {
  display: block;
  padding-top: 41px;
  line-height: 1;
  position: relative;
}
header .hd-mail a span::before {
  display: block;
  content: "";
  width: 42px;
  height: 29px;
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  mask: url(../img/common/icon-mail.svg) no-repeat top center/contain;
  transform: translateX(-50%);
  transition: 0.3s;
}

@media screen and (max-width: 1500px) {
  header .u-logo img {
    width: 70%;
    height: auto;
  }
}
@media screen and (max-width: 1350px) {
  .page header .hdr-contact-area nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
    top: 0;
    left: 0;
    transition: 0.3s;
  }
  header .logo-area {
    display: flex;
  }
  header .logo-area .h1-txt {
    font-size: 1.3rem;
  }
}
main {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 80px;
  }
}

.fix-side {
  position: fixed;
  width: 64px;
  height: 213px;
  right: -100px;
  top: calc(50vh - 130px);
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  right: 12px;
}
.fix-side a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-decoration: none;
  background-color: var(--color-sub);
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  transition: 0.3s;
}
.fix-side a span {
  padding-top: 30px;
  position: relative;
}
.fix-side a span::before {
  display: block;
  content: "";
  width: 28px;
  height: 20px;
  background: #fff;
  mask: url(../img/common/icon-mail.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fix-side a:hover {
  background-color: var(--color-dark);
}

/* contact-area -------------------------------------- */
.contact-area {
  padding: 80px 0 106px;
  background: url(../img/common/contact_bg.jpg) no-repeat center/cover;
  border-top: 4px solid var(--color-dark);
}
.contact-area .inner {
  width: var(--content-width);
  margin: 0 auto;
}
.contact-area h2.top-h2 {
  margin-bottom: 30px;
}
.contact-area .lead {
  text-align: center;
  margin-bottom: 54px;
}
.contact-area .cta-wrap {
  display: flex;
  justify-content: space-between;
}
.contact-area .cta-wrap .box {
  width: 580px;
}
.contact-area .cta-wrap .box a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 52px;
  background: #fff;
  text-decoration: none;
  border: 2px solid var(--color-dark);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.contact-area .cta-wrap .box a:hover {
  background: #f1f1f1;
}
.contact-area .cta-wrap .box h3 {
  font-family: var(--font-sub);
  font-size: 2.8rem;
  line-height: 130%;
  text-align: center;
}
.contact-area .cta-wrap .box .number {
  font-family: var(--font-sub);
  font-size: 4rem;
  line-height: 100%;
  color: var(--color-dark);
  padding-left: 40px;
  position: relative;
}
.contact-area .cta-wrap .box .number::before {
  display: block;
  content: "";
  width: 30px;
  height: 40px;
  background: var(--color-dark);
  mask: url(../img/common/icon-tel.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-area .cta-wrap .box .txt {
  font-size: 2rem;
}
.contact-area .cta-wrap .box.mail .number {
  padding-left: 57px;
  color: var(--color-sub);
}
.contact-area .cta-wrap .box.mail .number::before {
  width: 43px;
  height: 30px;
  background: var(--color-sub);
  mask-image: url(../img/common/icon-mail.svg);
}
.contact-area .cta-wrap .box.mail .number span {
  padding-right: 40px;
  position: relative;
}
.contact-area .cta-wrap .box.mail .number span::before, .contact-area .cta-wrap .box.mail .number span::after {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.contact-area .cta-wrap .box.mail .number span::before {
  border-radius: 50%;
  background: var(--color-sub);
}
.contact-area .cta-wrap .box.mail .number span::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .contact-area {
    padding: 40px 20px 60px;
    border-top-width: 2px;
  }
  .contact-area .inner {
    width: 100%;
  }
  .contact-area .lead {
    margin-bottom: 30px;
  }
  .contact-area .cta-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .contact-area .cta-wrap .box {
    width: 100%;
  }
  .contact-area .cta-wrap .box a {
    gap: 24px;
    padding: 30px 20px;
  }
  .contact-area .cta-wrap .box h3 {
    font-size: 2.1rem;
  }
  .contact-area .cta-wrap .box .number {
    font-size: 34px;
    font-size: 3.4rem;
    padding-left: 34px;
  }
  .contact-area .cta-wrap .box .number::before {
    width: 26px;
    height: 36px;
  }
  .contact-area .cta-wrap .box .txt {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 150%;
    text-align: center;
  }
  .contact-area .cta-wrap .box.mail .number {
    font-size: 30px;
    font-size: 3rem;
    padding-left: 48px;
  }
  .contact-area .cta-wrap .box.mail .number::before {
    width: 36px;
    height: 26px;
  }
}
/* footer -------------------------------------- */
footer {
  background: var(--color-dark);
  padding: 64px 0 0;
}
footer .inner {
  width: 952px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
}
footer .inner .ftr-data {
  color: #fff;
}
footer .inner .ftr-data .ftr-name {
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
footer .inner .ftr-data p.addr, footer .inner .ftr-data p.tel {
  font-size: 14px;
  font-size: 1.4rem;
}
footer .inner .ftr-link {
  width: 400px;
}
footer .inner .ftr-link nav {
  display: flex;
  justify-content: flex-end;
  gap: 70px;
}
footer .inner .ftr-link nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
}
footer .inner .ftr-link nav ul li {
  list-style-type: none;
}
footer .inner .ftr-link nav ul li a {
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
footer .inner .ftr-link nav ul li a::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s;
}
footer .inner .ftr-link nav ul li a:hover {
  color: var(--color-light);
}
footer .inner .ftr-link nav ul li a:hover::before {
  left: 2px;
  border-color: var(--color-light);
}
footer .inner .ftr-link .bnr {
  margin-top: 75px;
}
footer .inner .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: 16px;
  font-size: 1.6rem;
}
footer .inner .ftr-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
footer .inner .ftr-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
footer .frt-bnr {
  background: #fff;
  padding: 24px;
}
footer .frt-bnr ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 14px;
}
footer .frt-bnr ul li {
  width: 210px;
}
footer .frt-bnr ul li a img {
  transition: 0.3s;
}
footer .frt-bnr ul li a:hover img {
  opacity: 0.8;
}
footer .copyright {
  padding: 15px 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid var(--color-dark);
  font-size: 14px;
  font-size: 1.4rem;
}

.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: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 40px;
  }
  footer .inner {
    width: 100%;
    margin: 0 auto 40px;
    justify-content: center;
  }
  footer .inner .ftr-data {
    text-align: center;
  }
  footer .inner .ftr-data .ftr-name {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  footer .frt-bnr {
    padding: 24px;
  
  }
  footer .frt-bnr ul {
    /* flex-direction: column; */
    gap:0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .frt-bnr ul li {
    width: 48%;
    margin-bottom: 14px;
  }
  footer .frt-bnr ul li img {
    width: 100%;
    height: auto;
  }
  footer .copyright {
    padding: 15px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid var(--color-dark);
    font-size: 14px;
    font-size: 1.4rem;
  }
  /* 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: 15px;
    font-size: 1.5rem;
  }
  .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: 15px;
    font-size: 1.5rem;
  }
  .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: 15px;
    font-size: 1.5rem;
  }
  .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: 9999;
    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;
    text-decoration: none;
    height: 50px;
    background-color: var(--color-dark);
    width: 50%;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
  }
  .ftr-fix a:nth-of-type(1) {
    border-right: 1px solid #fff;
  }
  .ftr-fix a span {
    padding-left: 36px;
    position: relative;
  }
  .ftr-fix a span::before {
    display: block;
    content: "";
    width: 28px;
    height: 18px;
    background: #fff;
    mask: url(../img/common/icon-mail.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr-fix a span.tel {
    padding-left: 30px;
  }
  .ftr-fix a span.tel::before {
    width: 20px;
    height: 30px;
    mask-image: url(../img/common/icon-tel.svg);
  }
}
/*
 * object
 */
/*下層パンくず*/
.breadcrumbs {
  background-color: var(--color-light);
}
.breadcrumbs ol {
  width: var(--u-content-width);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs ol li {
  list-style: none;
}
.breadcrumbs ol li::before {
  content: none;
  margin-left: 0;
}
.breadcrumbs ol li::after {
  content: "|";
  font-size: 10px;
  padding: 0 20px;
  color: var(--color-dark);
}
.breadcrumbs ol li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-dark);
  font-weight: 600;
}
.breadcrumbs ol li span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
}
.breadcrumbs ol li:nth-last-of-type(1)::after {
  content: none;
}

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

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1), .openbtn.active span:nth-of-type(3) {
  top: 40px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  top: 52px;
  transform: translateY(-6px) rotate(45deg);
}
.openbtn.active span:nth-of-type(3) {
  opacity: 0;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9000;
  top: 0;
  right: 0;
  transition: 0.8s;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
}

.mm-menu.active {
  opacity: 1;
  visibility: visible;
}

.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: 80px;
    height: 80px;
    cursor: pointer;
    background: var(--color-dark);
    z-index: 99999;
    right: 0;
    top: 0;
    transition: 0.3s;
    border: none;
  }
  .openbtn.hide {
    right: 10px;
    top: 10px;
  }
  .sp-tel {
    position: fixed;
    z-index: 99999;
    top: 10px;
    right: 85px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    line-height: 1;
    color: var(--color-dark);
  }
  .sp-tel img {
    margin: 14px auto 0;
  }
  .sp-tel span {
    position: absolute;
    bottom: 9px;
    left: 20px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 20px;
    width: 40px;
    height: 1px;
    background-color: #fff;
  }
  .openbtn span:nth-of-type(1) {
    top: 22px;
  }
  .openbtn span:nth-of-type(2) {
    top: 33px;
  }
  .openbtn span:nth-of-type(3) {
    top: 44px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1), .openbtn.active span:nth-of-type(3) {
    top: 26px;
    transform: translateY(6px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    top: 38px;
    transform: translateY(-6px) rotate(45deg);
  }
  .openbtn span.menu {
    padding-top: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9000;
    transition: 0.8s;
    overflow-y: scroll;
    padding: 90px 0 40px;
    top: 0;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  justify-content: center;
  min-width: 1200px;
  overflow: auto;
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
  padding-right: 80px;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 214px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  color: var(--color-dark);
  font-size: 3rem;
  font-family: var(--font-sub);
  padding-left: 26px;
  position: relative;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 55%;
  left: 0;
  background: var(--color-dark);
  mask: url(../img/common/icon-tel.svg) no-repeat top center/contain;
  transform: translateY(-50%);
}
.sp-menu-link .inner .sidemenu-link {
  width: 260px;
}
.sp-menu-link .inner .sidemenu-link nav {
  display: flex;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
}
.sp-menu-link .inner .sidemenu-link nav ul li a::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-sub);
  border-right: 1px solid var(--color-sub);
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover::before {
  left: 2px;
  border-color: var(--color-dark);
}

@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%;
    gap: 0;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 40%;
    margin: 0 auto;
  }
  .sp-menu-link .inner .sp-menu-data p.addr {
    text-align: center;
    margin-top: 30px;
  }
  .sp-menu-link .inner .sp-menu-data p.tel.lora a {
    text-decoration: none;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  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 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;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  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%;
  }
}

.p-cta {
  position: relative;
  height: auto;
  width: 100%;
  padding: 40px 0 0;
}
.p-cta .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.p-cta .wrap .box {
  width: 48%;
  margin: 0 1%;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 40px 20px;
}
.p-cta .wrap .box .en {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  margin-top: -11px;
}
.p-cta .wrap .box p {
  margin-top: 26px;
  font-size: 20px;
  font-size: 2rem;
}
.p-cta .wrap .box p.title {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
}
.p-cta .wrap .box p.tel {
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box p.tel span {
  font-size: 32px;
  font-size: 3.2rem;
}
.p-cta .wrap .box p.fax {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box .c-for-list {
  margin: 56px auto 0;
}
.p-cta .wrap .box .c-for-list a {
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-cta {
    position: relative;
    height: auto;
    background-image: url(../img/top/cta-bg-sp.jpg);
    background-size: cover;
    width: 100%;
    padding: 42px 0;
  }
  .p-cta .wrap {
    display: block;
    position: relative;
    z-index: 10;
  }
  .p-cta .wrap .box {
    width: 92%;
    margin: 0 auto 40px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 10px;
    background-position: left bottom;
    padding-bottom: 30px;
  }
  .p-cta .wrap .box .en {
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 1;
    text-align: center;
  }
  .p-cta .wrap .box p {
    margin: 0 4%;
    margin-top: 26px;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
  }
  .p-cta .wrap .box p a {
    text-decoration: none;
  }
  .p-cta .wrap .box p.title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box p.tel {
    font-size: 33px;
    font-size: 3.3rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
  }
  .p-cta .wrap .box p.tel span {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-cta .wrap .box p.fax {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box .c-for-list {
    margin: 30px auto 0;
  }
  .p-cta .wrap .box .c-for-list a {
    margin: 0 auto;
    color: #fff;
  }
  .p-cta .wrap .box:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
: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;
}
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 104px 0 32px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--color-dark);
  font-family: var(--font-sub);
  padding: 0 14px;
  border-left: 4px solid var(--color-sub);
}
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 72px 0 16px;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: var(--font-sub);
  line-height: 1.5;
  border-bottom: 4px dotted var(--color-sub);
  padding-bottom: 10px;
}
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 16px;
  font-size: 20px;
  font-size: 2rem;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 26px;
  font-family: var(--font-sub);
}
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 22px;
    font-size: 2.2rem;
    margin: 60px 0 16px;
  }
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
    margin: 52px 0 16px;
  }
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
  }
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
:where(.u-editor) p {
  margin-top: 1em;
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  padding: 0;
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: -1em;
  margin-left: 1em;
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: "⚫︎";
  font-size: 10px;
  color: var(--color-dark);
  margin-right: 5px;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
  padding: 0;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  text-indent: -1.4em;
  margin-left: 1.4em;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-dark);
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-dark);
  padding-left: 3px;
  margin-right: 5px;
  font-weight: bold;
}
:where(.u-editor) dt,
:where(.u-editor) dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  :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: 40px auto 0;
}
.c-for-list a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 274px;
  color: var(--color-text);
  font-size: 16px;
  font-size: 1.6rem;
  background: var(--color-light);
  padding: 19px 70px 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
.c-for-list a::before, .c-for-list a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::before,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.c-for-list a::before,
.wp-block-button:where(:not(.is-reset-wp-block)) a::before {
  border-radius: 50%;
  background: var(--color-blown);
}
.c-for-list a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-light);
  border-right: 1px solid var(--color-light);
  right: 46px;
  transform: translateY(-50%) rotate(45deg);
}
.c-for-list a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  background: var(--color-dark);
  color: #fff;
}
.c-for-list a:hover::before,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover::before {
  right: 35px;
  background: #fff;
}
.c-for-list a:hover::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover::after {
  right: 44px;
  border-color: var(--color-dark);
}
.c-for-list.red a,
.wp-block-button:where(:not(.is-reset-wp-block)).red a {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.c-for-list.red a::after,
.wp-block-button:where(:not(.is-reset-wp-block)).red a::after {
  content: url(../img/common/icon-red-white.png);
}
.c-for-list.red a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)).red a:hover {
  background: var(--color-main);
  color: var(--color-main);
  font-weight: bold;
}
.c-for-list.red a:hover::after,
.wp-block-button:where(:not(.is-reset-wp-block)).red a:hover::after {
  content: url(../img/common/icon-red.png);
  background-color: var(--color-main);
}

.anchor-block .wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  right: 45px;
  transform: translateY(-60%) rotate(135deg);
}
.anchor-block .wp-block-button:where(:not(.is-reset-wp-block)) a:hover::after {
  transform: translateY(-40%) rotate(135deg);
}

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

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

@media screen and (max-width: 767px) {
  .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;
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 auto;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px 80px;
  background-color: var(--color-pink);
  position: relative;
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #777;
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: 10px;
  left: 10px;
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: url(../img/page/icon-blockquote-end.svg);
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 100%;
    margin: 40px auto 0;
    padding: 11% 8%;
  }
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 16px;
}
:where(.u-editor) .wp-block-gallery {
  margin-top: 40px;
}

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

:where(.u-editor) {
  --table-border-color: #BDAEAD;
  --table-bg-color: var(--color-pink);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
:where(.u-editor) .single table,
:where(.u-editor) .page.table,
:where(.u-editor) table {
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid var(--table-border-color) !important;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
:where(.u-editor) .single table tr,
:where(.u-editor) .page.table tr,
:where(.u-editor) table tr {
  border-bottom: 1px solid var(--table-border-color) !important;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
:where(.u-editor) .single table tr th,
:where(.u-editor) .single table tr td,
:where(.u-editor) .page.table tr th,
:where(.u-editor) .page.table tr td,
:where(.u-editor) table tr th,
:where(.u-editor) table tr td {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: left;
  border-color: var(--table-border-color) !important;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
:where(.u-editor) .single table thead th,
:where(.u-editor) .page.table thead th,
:where(.u-editor) table thead th {
  background-color: var(--table-bg-color) !important;
  border-right: 1px solid var(--table-border-color) !important;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
:where(.u-editor) .single table tbody th,
:where(.u-editor) .page.table tbody th,
:where(.u-editor) table tbody th {
  background-color: var(--table-bg-color) !important;
  border-right: 1px solid var(--table-border-color) !important;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
:where(.u-editor) .single table tbody td,
:where(.u-editor) .page.table tbody td,
:where(.u-editor) table tbody td {
  border-right: 1px solid var(--table-border-color) !important;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: max-content !important;
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  :where(.u-editor) table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  :where(.u-editor) table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  :where(.u-editor) table tr th,
  :where(.u-editor) table tr td {
    line-height: 1.3;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: left;
    border-color: var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  :where(.u-editor) table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  :where(.u-editor) table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  :where(.u-editor) table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.blog .wp-pagenavi,
.archive .wp-pagenavi {
  margin: 80px auto 0;
  text-align: center;
}
.blog .wp-pagenavi span,
.blog .wp-pagenavi a,
.archive .wp-pagenavi span,
.archive .wp-pagenavi a {
  padding: 10px 17px;
  font-size: 16px;
  font-size: 1.6rem;
  border-color: var(--color-dark);
}
.blog .wp-pagenavi span.current, .blog .wp-pagenavi span:hover,
.blog .wp-pagenavi a.current,
.blog .wp-pagenavi a:hover,
.archive .wp-pagenavi span.current,
.archive .wp-pagenavi span:hover,
.archive .wp-pagenavi a.current,
.archive .wp-pagenavi a:hover {
  color: #fff;
  background-color: var(--color-dark);
}

.next-prev {
  margin: 100px auto 0;
}
.next-prev .prev {
  float: left;
  width: 50%;
}
.next-prev .prev a {
  max-width: 46%;
  display: inline-block;
  color: var(--color-dark);
  padding: 2% 2% 1.5% 2em;
  border-radius: 10px;
  text-indent: -0.8em;
  font-size: 16px;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev .prev a:hover {
  text-decoration: none;
}
.next-prev .next {
  float: right;
  width: 50%;
  text-align: right;
}
.next-prev .next a {
  display: inline-block;
  max-width: 46%;
  color: var(--color-dark);
  padding: 2%;
  border-radius: 10px;
  text-align: right;
  padding: 2% 1.5em 2% 2%;
  border-radius: 10px;
  text-indent: 1em;
  font-size: 16px;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev::after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .blog .wp-pagenavi,
  .archive .wp-pagenavi {
    margin: 80px auto 0;
    text-align: center;
  }
  .blog .wp-pagenavi span,
  .blog .wp-pagenavi a,
  .archive .wp-pagenavi span,
  .archive .wp-pagenavi a {
    padding: 15px 19px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .blog .wp-pagenavi span.extend,
  .blog .wp-pagenavi a.extend,
  .archive .wp-pagenavi span.extend,
  .archive .wp-pagenavi a.extend {
    display: none;
  }
  .blog .wp-pagenavi span.pages, .blog .wp-pagenavi span.first, .blog .wp-pagenavi span.last,
  .blog .wp-pagenavi a.pages,
  .blog .wp-pagenavi a.first,
  .blog .wp-pagenavi a.last,
  .archive .wp-pagenavi span.pages,
  .archive .wp-pagenavi span.first,
  .archive .wp-pagenavi span.last,
  .archive .wp-pagenavi a.pages,
  .archive .wp-pagenavi a.first,
  .archive .wp-pagenavi a.last {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 15px 10px;
  }
  .next-prev {
    margin: 80px auto 0;
  }
  .next-prev .prev {
    width: 100%;
  }
  .next-prev .prev a {
    display: inline-block;
    font-size: 16px;
    max-width: 100%;
  }
  .next-prev .next {
    width: 100%;
    margin-top: 10px;
  }
  .next-prev .next a {
    display: inline-block;
    padding: 2%;
    text-align: right;
    font-size: 13px;
    max-width: 100%;
  }
}
.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;
}

.faq-block {
  margin: 40px 0;
}
.faq-block .question,
.faq-block .answer {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 38px;
}
.faq-block .question::before,
.faq-block .answer::before {
  display: block;
  font-size: 29px;
  font-family: var(--font-sub);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.faq-block .question {
  font-size: 18px;
  color: var(--color-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}
.faq-block .question::before {
  content: "Q";
  color: var(--color-dark);
  top: -2px;
}
.faq-block .answer {
  font-size: 16px;
}
.faq-block .answer::before {
  content: "A";
  color: var(--color-sub);
}

/*
 * pages
 */
.cat-area {
  width: var(--content-width);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
}
.cat-area p.date {
  font-size: 14px;
  font-size: 1.4rem;
  margin-right: 26px;
  color: #5c5c5c;
}
.cat-area ul.cat {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 0;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: #fff;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  line-height: 1;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  margin-right: 20px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: #fff;
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 5px;
}

.blog .news-area,
.archive .news-area {
  width: 100%;
}
.blog .news-area .box,
.archive .news-area .box {
  margin-bottom: 40px;
}
.blog .news-area .box a,
.archive .news-area .box a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
.blog .news-area .box a figure,
.archive .news-area .box a figure {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin-right: 20px;
}
.blog .news-area .box a figure img,
.archive .news-area .box a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
.blog .news-area .box a .txt-block,
.archive .news-area .box a .txt-block {
  width: calc(100% - 170px);
}
.blog .news-area .box a .txt-block h3,
.archive .news-area .box a .txt-block h3 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  margin: 8px 0 0;
}
.blog .news-area .box a .txt-block p,
.archive .news-area .box a .txt-block p {
  margin-top: 10px !important;
}
.blog .news-area .box a .txt-block p.date,
.archive .news-area .box a .txt-block p.date {
  line-height: 1;
  margin-top: 0 !important;
  font-size: 14px;
  color: #5c5c5c;
}
.blog .news-area .box a:hover figure img,
.archive .news-area .box a:hover figure img {
  transform: scale(1.05);
}
.blog .news-area .box a:hover .txt-block,
.archive .news-area .box a:hover .txt-block {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 92%;
    margin: 10px auto 0;
    display: block;
  }
  .cat-area p.date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .cat-area .cat {
    display: flex;
    align-items: center;
    margin-top: 26px;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    margin-right: 10px;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  .cat-area ul.cat {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
    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: 16px;
    font-size: 1.6rem;
    margin-right: 16px;
  }
}
.single-main {
  width: 100%;
  height: auto;
  padding: 48px 0 55px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--color-sub);
}
.single-main .inner {
  width: var(--u-content-width);
}
.single-main .inner .cat-area {
  margin: 0 0;
}
.single-main .inner .cat-area p.data {
  font-size: 14px;
  color: #5c5c5c;
}
.single-main .inner .cat-area .cat a {
  display: inline-block;
  line-height: 1;
  background: none;
  border-radius: 0;
  border: 1px solid var(--color-light);
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
  margin-right: 10px;
  text-decoration: none;
}
.single-main .inner .cat-area .cat a:hover {
  opacity: 0.7;
}
.single-main h1 {
  font-size: 34px;
  font-size: 3.4rem;
  text-align: left;
  line-height: 1.5;
  margin-top: 18px;
  font-family: var(--font-sub);
}

@media screen and (max-width: 767px) {
  .single-main {
    width: 100%;
    text-align: center;
    padding: 32px 0;
    text-align: left;
    margin: 0 auto 54px;
  }
  .single-main .inner .cat-area p.data {
    font-size: 14px;
  }
  .single-main .inner .cat-area .cat {
    margin-top: 10px;
  }
  .single-main h1 {
    margin: 0 auto;
    font-size: 30px;
    font-size: 3rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.5;
    margin-top: 12px;
  }
}
.u-main {
  width: 100%;
  height: 245px;
  margin: 0 auto;
  background: linear-gradient(#FDF2F2, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-main .h1-wrap {
  text-align: center;
}
.u-main .h1-wrap .en {
  font-size: 61px;
  font-size: 6.1rem;
  font-family: var(--font-eng);
  font-weight: 100;
  padding-bottom: 10px;
  line-height: 1;
  color: var(--color-dark);
  text-transform: uppercase;
}
.u-main .h1-wrap h1 {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: var(--font-sub);
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
  color: var(--color-dark);
}

.u-contents a img {
  transition: 0.3s;
}
.u-contents a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .u-contents .anchor-block .wp-block-column > div {
    justify-content: center;
  }
  .u-contents .table-sp100 table {
    table-layout: inherit !important;
  }
  .u-contents .table-sp100 table tr {
    border-bottom: 0 !important;
  }
  .u-contents .table-sp100 table tr th, .u-contents .table-sp100 table tr td {
    padding: 16px !important;
  }
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

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

@media screen and (max-width: 767px) {
  .u-main {
    width: 100%;
    height: auto;
    margin: 0 auto 52px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap .en {
    font-size: 50px;
    font-size: 5rem;
    padding-bottom: 0;
    line-height: 1;
  }
  .u-main .h1-wrap h1 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
サービスメニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
body.page-service .u-main {
  background: var(--color-dark);
  height: 280px;
  position: relative;
}
body.page-service .u-main::before, body.page-service .u-main::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 10px;
  left: 0;
}
body.page-service .u-main::after {
  top: auto;
  bottom: 10px;
}
body.page-service .u-main .h1-wrap {
  position: relative;
}
body.page-service .u-main .h1-wrap::before, body.page-service .u-main .h1-wrap::after {
  display: block;
  content: "";
  width: 164px;
  height: 90px;
  background: url("../img/page/service_h1.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: -174px;
  transform: translateY(-50%);
}
body.page-service .u-main .h1-wrap::after {
  transform: scaleX(-1) translateY(-50%);
  left: auto;
  right: -174px;
}
body.page-service .u-main .h1-wrap h1, body.page-service .u-main .h1-wrap .en {
  color: #fff;
}
body.page-service .u-contents {
  padding: 104px 0 128px;
}
body.page-service .service-block {
  background: var(--color-pink);
  padding: 60px;
  margin-bottom: 0;
}
body.page-service .service-block + .service-block {
  margin-top: 70px;
}
body.page-service .service-block h2 {
  font-size: 2.8rem;
  border-left: 6px solid var(--color-dark);
  position: relative;
}
body.page-service .service-block h2 em {
  display: block;
  font-family: var(--font-main);
  font-size: 2.1rem;
  font-weight: bold;
  font-style: normal;
  color: var(--color-text);
}
body.page-service .service-block h2::before {
  display: block;
  content: "";
  width: 170px;
  height: 180px;
  background: url("../img/page/service_img001.png") no-repeat top center/contain;
  position: absolute;
  bottom: -15px;
  right: -15px;
}
body.page-service .service-block h2.h2-service02::before {
  width: 188px;
  background-image: url("../img/page/service_img002.png");
}
body.page-service .service-block h2.h2-service03::before {
  width: 160px;
  background-image: url("../img/page/service_img003.png");
}
body.page-service .service-block .service-menu {
  gap: 4px;
  margin-bottom: 0;
}
body.page-service .service-block .service-menu + .service-menu {
  margin-top: 4px;
}
body.page-service .service-block .service-menu > .wp-block-column {
  padding: 30px;
  background: #fff;
  min-height: 268px;
}
body.page-service .service-block .service-menu h3 {
  font-family: var(--font-main);
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-dark);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.page-service .service-block .service-menu h3 strong {
  display: block;
  width: 54px;
  font-family: var(--font-eng);
  font-size: 5.6rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(121, 22, 17, 0.4);
  padding-left: 6px;
  border-right: 1px solid var(--color-dark);
}
body.page-service .service-block .service-menu h3 em {
  display: contents;
  font-style: normal;
  font-size: 1.6rem;
}
body.page-service .service-block .service-menu h3.double {
  line-height: 0.9;
}
body.page-service .service-block .service-menu p {
  line-height: 1.6;
}
body.page-service .service-catch {
  text-align: center;
  margin: 50px auto 0;
  font-family: var(--font-sub);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 150%;
  color: var(--color-dark);
}

@media screen and (max-width: 767px) {
  body.page-service .u-main {
    height: 240px;
  }
  body.page-service .u-main::before {
    top: 8px;
  }
  body.page-service .u-main::after {
    bottom: 8px;
  }
  body.page-service .u-main .h1-wrap {
    position: relative;
    margin-top: -20px;
  }
  body.page-service .u-main .h1-wrap::before, body.page-service .u-main .h1-wrap::after {
    width: 140px;
    height: auto;
    aspect-ratio: 82/45;
    top: auto;
    bottom: -50px;
    left: -60px;
    transform: rotate(-15deg);
  }
  body.page-service .u-main .h1-wrap::after {
    transform: scaleX(-1) rotate(-15deg);
    left: auto;
    right: -60px;
  }
  body.page-service .u-contents {
    padding: 0 0 60px;
  }
  body.page-service .service-block {
    padding: 20px;
  }
  body.page-service .service-block + .service-block {
    margin-top: 40px;
  }
  body.page-service .service-block h2 {
    padding-right: 120px;
  }
  body.page-service .service-block h2 em {
    font-size: 1.6rem;
  }
  body.page-service .service-block h2::before {
    width: 120px;
    height: 130px;
  }
  body.page-service .service-block h2.h2-service02 {
    padding-right: 136px;
  }
  body.page-service .service-block h2.h2-service02::before {
    width: 136px;
  }
  body.page-service .service-block h2.h2-service03 {
    padding-right: 116px;
  }
  body.page-service .service-block h2.h2-service03::before {
    width: 116px;
  }
  body.page-service .service-block .service-menu {
    gap: 4px;
    margin-bottom: 0;
  }
  body.page-service .service-block .service-menu + .service-menu {
    margin-top: 4px;
  }
  body.page-service .service-block .service-menu > .wp-block-column {
    padding: 24px;
    min-height: auto;
  }
  body.page-service .service-catch {
    margin: 30px auto 0;
    font-size: 2rem;
  }
}
.gmap {
  width: 100%;
  max-height: 299px;
  aspect-ratio: 3/1.5;
}
@media screen and (max-width: 767px) {
  .gmap {
    max-width: inherit;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
ご依頼の流れ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .flow-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.flow-list li {
  text-indent: 0;
  margin: 0;
  width: 141px;
  height: 141px;
  border-radius: 50%;
  padding: 6px;
  background: var(--color-light);
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-list li {
    width: 26vw;
    height: 26vw;
    padding: 3px;
  }
}
.flow-list li span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-sub);
  font-size: 1.8rem;
  line-height: 140%;
  text-align: center;
  color: var(--color-dark);
}
@media screen and (max-width: 767px) {
  .flow-list li span {
    font-size: 3.7vw;
  }
}
.flow-list li::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-dark);
  border-right: 2px solid var(--color-dark);
  position: absolute;
  top: 50%;
  right: -28px;
  transform: rotate(45deg) translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow-list li::before {
    width: 10px;
    height: 10px;
    right: -18px;
  }
}
.flow-list li:last-child::before {
  display: none;
}

.flow-area .flow-item {
  padding: 40px;
  background-color: var(--color-pink);
  position: relative;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .flow-area .flow-item {
    padding: 20px;
  }
}
.flow-area .flow-item + .flow-item {
  margin-top: 80px;
}
.flow-area .flow-item::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--color-dark);
  border-right: 2px solid var(--color-dark);
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: rotate(135deg) translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow-area .flow-item::before {
    left: 40vw;
  }
}
.flow-area .flow-item:last-child::before {
  display: none;
}

#home main {
  overflow: hidden;
}

.top-section .inner {
  width: var(--content-width);
  margin: 0 auto;
}
.top-section .inner p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 24px;
}

.top-h2 {
  font-family: var(--font-sub);
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top-h2 {
    font-size: 1.8rem;
  }
}
.top-h2 span {
  display: block;
  font-family: var(--font-eng);
  font-size: 6.2rem;
  font-weight: 300;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .top-h2 span {
    font-size: 4.8rem;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-mv
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-mv {
  background: url(../img/top/main.jpg) no-repeat center/cover;
  padding: 52px 20px 79px;
  max-height: 700px;
}
.sec-mv .inner {
  width: 1315px;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.sec-mv .catch-area {
  width: 710px;
  padding-top: 100px;
}
.sec-mv .catch-area .lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 26px 0 0;
}
.sec-mv .catch-area .lead span {
  display: table;
  padding: 12px 25px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 130%;
}
.sec-mv .menu-area {
  width: 380px;
  background: var(--color-dark);
  padding: 40px;
}
.sec-mv .menu-area h2.top-h2 {
  margin-bottom: 35px;
  color: #fff;
}
.sec-mv .menu-area .ul-wrap {
  display: table;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.sec-mv .menu-area .ul-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-mv .menu-area .ul-wrap ul li {
  text-align: left;
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 22px;
}
.sec-mv .menu-area .c-for-list {
  margin-top: 40px;
}
.sec-mv .menu-area .c-for-list a:hover {
  background: #fff;
  color: var(--color-dark);
}
.sec-mv .menu-area .c-for-list a:hover::before {
  background: var(--color-dark);
}
.sec-mv .menu-area .c-for-list a:hover::after {
  border-color: #fff;
}

@media screen and (max-width: 767px) {
  .sec-mv {
   
    padding: 0;
    max-height: inherit;
  }
  .sec-mv .inner {
    width: 100%;
    flex-direction: column;
    justify-content: center;
   
   
  }
  .sec-mv .catch-area {
    width: 100%;
    margin: 0 auto;
    padding:12vw 4% 32vw;
    background: var(--color-pink) url(../img/top/main-sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* .sec-mv .catch-area picture {
    margin-top: 40px;
  } */
  .sec-mv .catch-area .lead {
    align-items: center;
    gap: 8px;
    margin: 0;
  }
  .sec-mv .catch-area .lead span {
    display: table;
    padding: 10px;
    font-size: 5.3vw;
  }
  .sec-mv .menu-area {
    width: 100%;
    padding: 30px 4%;
  }
  .sec-mv .menu-area h2.top-h2 {
    margin-bottom: 24px;
  }
  .sec-mv .menu-area .ul-wrap {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .sec-mv .menu-area .ul-wrap ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 0;
  }
  .sec-mv .menu-area .ul-wrap ul li {
    width: 48%;
    font-size: 4.3vw;
    text-align: left;
  }
  .sec-mv .menu-area .c-for-list {
    margin-top: 30px;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-ex
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-ex {
  padding: 104px 0;
  background: var(--color-pink);
  overflow: hidden;
}
.sec-ex .inner {
  width: 100%;
  max-width: 1420px;
}
.sec-ex .lead-area {
  position: relative;
}
.sec-ex .lead-area::before, .sec-ex .lead-area::after {
  display: block;
  content: "";
  width: 128px;
  aspect-ratio: 16/21;
  background: url(../img/top/ex_illust01.png) no-repeat center/cover;
  position: absolute;
}
.sec-ex .lead-area::before {
  top: 0;
  left: -50px;
}
.sec-ex .lead-area::after {
  width: 308px;
  aspect-ratio: 154/129;
  background-image: url(../img/top/ex_illust02.png);
  bottom: -44px;
  right: -50px;
}
.sec-ex .lead-area h2.top-h2 {
  color: var(--color-dark);
}
.sec-ex .lead-area .txt {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 44px;
}
.sec-ex .ex-area {
  background: #fff;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
  padding: 80px 5.7vw;
  position: relative;
}
.sec-ex .ex-area::before, .sec-ex .ex-area::after {
  display: block;
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  background: var(--color-sub);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.sec-ex .ex-area::after {
  top: auto;
  bottom: 10px;
}
.sec-ex .ex-area dl {
  counter-reset: number 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.sec-ex .ex-area dl dt {
  font-family: var(--font-sub);
  font-size: 2.8rem;
  line-height: 130%;
  color: var(--color-dark);
  position: relative;
}
.sec-ex .ex-area dl dt::before {
  counter-increment: number 1;
  content: counter(number) ". ";
  font-family: var(--font-eng);
  font-size: 5rem;
  position: relative;
  top: 4px;
}
.sec-ex .ex-area dl dd {
  margin: 20px 0 44px;
}
.sec-ex .ex-area dl dd:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .sec-ex {
    padding: 80px 20px;
  }
  .sec-ex .inner {
    max-width: none;
  }
  .sec-ex .lead-area::before {
    width: auto;
    height: 80px;
    inset: auto;
    bottom: -100px;
    left: 5vw;
  }
  .sec-ex .lead-area::after {
    width: auto;
    height: 160px;
    bottom: -160px;
    right: 5vw;
  }
  .sec-ex .lead-area .txt {
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 160px;
  }
  .sec-ex .ex-area {
    padding: 40px 30px;
  }
  .sec-ex .ex-area::before, .sec-ex .ex-area::after {
    width: calc(100% - 20px);
  }
  .sec-ex .ex-area dl dt {
    font-size: 2.4rem;
  }
  .sec-ex .ex-area dl dt::before {
    font-size: 3.6rem;
  }
  .sec-ex .ex-area dl dd {
    margin: 16px 0 30px;
  }
  .sec-ex .ex-area dl dd:last-child {
    margin-bottom: 0;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-voice
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-voice {
  padding: 128px 0;
}
.sec-voice .inner {
  display: flex;
  justify-content: space-between;
}
.sec-voice .txt-area {
  width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sec-voice .txt-area h2.top-h2 {
  text-align: left;
}
.sec-voice .txt-area .c-for-list {
  margin-left: 0;
}
.sec-voice .cnt-area {
  width: 606px;
  display: flex;
  justify-content: flex-end;
  gap: 38px;
}
.sec-voice .cnt-area .box {
  width: calc((100% - 38px) / 2);
}
.sec-voice .cnt-area .box a {
  text-decoration: none;
}
.sec-voice .cnt-area .box a:hover figure img {
  transform: scale(1.05);
}
.sec-voice .cnt-area .box .img-wrap {
  aspect-ratio: 4/3;
  position: relative;
}
.sec-voice .cnt-area .box .img-wrap::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-pink);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}
.sec-voice .cnt-area .box .img-wrap figure {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.sec-voice .cnt-area .box .img-wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.sec-voice .cnt-area .box h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--color-dark);
  letter-spacing: 0;
  border-bottom: 1px solid var(--color-dark);
  margin-top: 26px;
}

@media screen and (max-width: 767px) {
  .sec-voice {
    padding: 80px 20px;
  }
  .sec-voice .inner {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }
  .sec-voice .txt-area {
    width: 100%;
    justify-content: center;
  }
  .sec-voice .txt-area h2.top-h2 {
    text-align: center;
  }
  .sec-voice .cnt-area {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .sec-voice .cnt-area .box {
    width: 100%;
  }
  .sec-voice .cnt-area .box h3 {
    font-size: 2rem;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-flow
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-flow {
  padding: 104px 0;
  background: var(--color-pink);
  position: relative;
}
.sec-flow::before {
  display: block;
  content: "";
  width: 247px;
  aspect-ratio: 62/59;
  background: url(../img/top/flow_illust.png) no-repeat center/cover;
  position: absolute;
  top: -43px;
  right: 8.4vw;
}
.sec-flow .txt-area {
  display: flex;
  align-items: flex-end;
  gap: 90px;
  margin-bottom: 70px;
}
.sec-flow .txt-area h2.top-h2 {
  text-align: left;
  margin: 0;
}
.sec-flow .flow-area {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sec-flow .flow-area .box {
  width: 182px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
.sec-flow .flow-area .box::before {
  display: block;
  content: "";
  width: 20px;
  height: 4px;
  background: var(--color-light);
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.sec-flow .flow-area .box figure {
  width: 91px;
  height: 64px;
}
.sec-flow .flow-area .box .txt {
  text-align: center;
  line-height: 120%;
  margin: 15px auto 0;
}
.sec-flow .flow-area .box:last-child::before {
  display: none;
}
.sec-flow .c-for-list {
  margin: 64px auto 0;
}

@media screen and (max-width: 767px) {
  .sec-flow {
    padding: 120px 20px 80px;
  }
  .sec-flow::before {
    width: 140px;
    top: -43px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec-flow .txt-area {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
  }
  .sec-flow .txt-area h2.top-h2 {
    text-align: left;
    margin: 0;
  }
  .sec-flow .txt-area .txt {
    margin: 0;
  }
  .sec-flow .flow-area {
    flex-wrap: wrap;
    gap: 20px;
  }
  .sec-flow .flow-area .box {
    width: calc((100% - 20px) / 2);
  }
  .sec-flow .flow-area .box:nth-child(even)::before {
    width: 70%;
    inset: auto;
    bottom: -9%;
    left: -47%;
    transform: rotate(-45deg) translateY(-50%);
  }
  .sec-flow .c-for-list {
    margin: 40px auto 0;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-faq
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-faq {
  padding: 128px 0;
}
.sec-faq h2.top-h2 {
  margin-bottom: 32px;
}
.sec-faq .faq-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.sec-faq .faq-area::before {
  display: block;
  content: "";
  width: 190px;
  aspect-ratio: 95/122;
  background: url(../img/top/faq_illust.png) no-repeat center/cover;
  position: absolute;
  top: -244px;
  left: 60px;
}
.sec-faq .faq-area dl {
  width: 100%;
}
.sec-faq .faq-area dl dt {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  position: relative;
  padding: 20px 20px 20px 58px;
}
.sec-faq .faq-area dl dt::before {
  display: block;
  content: "Q";
  font-family: var(--font-sub);
  font-size: 3.8rem;
  line-height: 1;
  position: absolute;
  top: 18px;
  left: 16px;
}
.sec-faq .faq-area dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 16px;
}
.sec-faq .c-for-list {
  margin: 64px auto 0;
}

@media screen and (max-width: 767px) {
  .sec-faq {
    padding: 80px 20px;
  }
  .sec-faq .faq-area::before {
    width: 120px;
    top: -200px;
    left: -20px;
  }
  .sec-faq .faq-area dl dt {
    font-size: 2rem;
    padding: 10px 0 10px 42px;
  }
  .sec-faq .faq-area dl dt::before {
    top: 8px;
    left: 0;
  }
  .sec-faq .c-for-list {
    margin: 40px auto 0;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-news
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-news .inner {
  background: var(--color-pink);
  padding: 80px 5.2vw;
  position: relative;
}
.sec-news .inner::before, .sec-news .inner::after {
  display: block;
  content: "";
  width: 284px;
  aspect-ratio: 71/42;
  background: url(../img/top/news_illust01.png) no-repeat center/cover;
  position: absolute;
}
.sec-news .inner::before {
  top: -32px;
  left: -44px;
}
.sec-news .inner::after {
  width: 210px;
  aspect-ratio: 105/142;
  background-image: url(../img/top/news_illust02.png);
  right: -109px;
  bottom: -32px;
}
.sec-news h2.top-h2 {
  margin-bottom: 44px;
}
.sec-news .cnt-wrap {
  display: flex;
  justify-content: space-between;
}
.sec-news .cnt-wrap .news-area {
  width: 454px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sec-news .cnt-wrap .news-area .box a {
  text-decoration: none;
  display: flex;
  gap: 30px;
}
.sec-news .cnt-wrap .news-area .box a:hover figure img {
  transform: scale(1.05);
}
.sec-news .cnt-wrap .news-area .box a:hover .txt-block {
  opacity: 0.7;
}
.sec-news .cnt-wrap .news-area .box figure {
  width: 150px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.sec-news .cnt-wrap .news-area .box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.sec-news .cnt-wrap .news-area .box .txt-block {
  width: calc(100% - 180px);
}
.sec-news .cnt-wrap .news-area .box .txt-block h3 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  margin: 8px 0 0;
  line-height: 1.3;
}
.sec-news .cnt-wrap .news-area .box .txt-block p {
  margin-top: 10px;
}
.sec-news .cnt-wrap .news-area .box .txt-block p.date {
  line-height: 1;
  margin-top: 0;
  font-size: 14px;
  color: #5c5c5c;
}
.sec-news .cnt-wrap .news-area .c-for-list {
  margin: 0 auto;
}
.sec-news .cnt-wrap .news-area .c-for-list a {
  padding: 10px 56px 10px 20px;
  min-width: auto;
}
.sec-news .cnt-wrap .news-area .c-for-list a::before {
  right: 20px;
}
.sec-news .cnt-wrap .news-area .c-for-list a::after {
  right: 30px;
}
.sec-news .cnt-wrap .news-area .c-for-list a:hover::before {
  right: 18px;
}
.sec-news .cnt-wrap .news-area .c-for-list a:hover::after {
  right: 28px;
}
.sec-news .cnt-wrap .fb-area {
  width: 500px;
  height: 580px;
  background: #fff;
}
.sec-news .cnt-wrap .fb-area iframe {
  width: 100% !important;
  height: 580px !important;
}

@media screen and (max-width: 767px) {
  .sec-news {
    padding: 0 20px;
  }
  .sec-news .inner {
    padding: 40px 20px;
  }
  .sec-news .inner::before {
    width: 120px;
    top: -42px;
    left: -24px;
  }
  .sec-news .inner::after {
    width: 140px;
    right: -10px;
    bottom: -62px;
  }
  .sec-news h2.top-h2 {
    margin-bottom: 30px;
  }
  .sec-news .cnt-wrap {
    flex-direction: column;
    justify-content: center;
  }
  .sec-news .cnt-wrap .news-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .sec-news .cnt-wrap .news-area .box a {
    align-items: flex-start;
    gap: 20px;
  }
  .sec-news .cnt-wrap .news-area .box figure {
    width: 120px;
  }
  .sec-news .cnt-wrap .news-area .box .txt-block {
    width: calc(100% - 140px);
  }
  .sec-news .cnt-wrap .fb-area {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
sec-bnr
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-bnr {
  padding: 80px 0 128px;
}
.sec-bnr .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.sec-bnr .company-block {
  background: var(--color-dark);
  padding: 10px;
}
.sec-bnr .company-block .cnt-wrap {
  border: 1px solid var(--color-light);
  padding: 38px 22px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.sec-bnr .company-block .cnt-wrap figure {
  width: 330px;
  margin-right: 40px;
}
.sec-bnr .company-block .cnt-wrap h2.top-h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #fff;
  margin: 0;
}
.sec-bnr .company-block .cnt-wrap h2.top-h2 span {
  font-size: 5.5rem;
}
.sec-bnr .company-block .cnt-wrap .c-for-list {
  margin-top: 0;
  margin-left: 54px;
}
.sec-bnr .company-block .cnt-wrap .c-for-list a:hover {
  background: #fff;
  color: var(--color-dark);
}
.sec-bnr .company-block .cnt-wrap .c-for-list a:hover::before {
  background: var(--color-dark);
}
.sec-bnr .company-block .cnt-wrap .c-for-list a:hover::after {
  border-color: #fff;
}
.sec-bnr .btm-area ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 48px;
}
.sec-bnr .btm-area ul li {
  width: calc((100% - 48px) / 2);
}
.sec-bnr .btm-area ul li a img {
  transition: 0.3s;
}
.sec-bnr .btm-area ul li a:hover img {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .sec-bnr {
    padding: 80px 20px;
  }
  .sec-bnr .inner {
    gap: 30px;
  }
  .sec-bnr .company-block .cnt-wrap {
    padding: 30px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .sec-bnr .company-block .cnt-wrap figure {
    width: 80%;
    margin: 0 auto;
  }
  .sec-bnr .company-block .cnt-wrap h2.top-h2 {
    flex-direction: column;
    gap: 0;
  }
  .sec-bnr .company-block .cnt-wrap h2.top-h2 span {
    font-size: 5rem;
  }
  .sec-bnr .company-block .cnt-wrap .c-for-list {
    margin-left: auto;
  }
  .sec-bnr .btm-area ul {
    flex-direction: column;
    gap: 30px;
  }
  .sec-bnr .btm-area ul li {
    width: 100%;
  }
}
.u-contents {
  width: var(--u-content-width);
  margin: 0 auto;
  padding-bottom: 100px;
}
.u-contents > *:first-child {
  margin-top: 0 !important;
}

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