@charset "UTF-8";
@import url("../css/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@700&display=swap");
/* 表示切替 ----------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tab {
    display: none !important;
  }
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 499px) {
  .sp_only {
    display: none !important;
  }
}
/* 各種設定  */
:root {
  --white: #fff;
  --black: #000;
  --gray: #95a392;
  --point-color: #4d9842;
  --sub-color: #f46060;
  --bg-color01: #f0f3dd;
  --bg-color02: #f8f7f5;
  --bg-color03: #f5f8e5;
  --font-ZenMaruGothic: "Zen Maru Gothic", sans-serif;
  --font-ZenKakuGothicAntique: "Zen Kaku Gothic Antique", sans-serif;
}

html {
  font-size: clamp(7px, 0.5208333333vw, 10px);
  --font-size: clamp(7px, calc(10 / 1920 * 100vw), 10px);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media screen and (max-width: 1023px) {
  html {
    font-size: min(0.7936507937vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(1.3333333333vw, 6px);
  }
}

body {
  font-family: var(--font-ZenMaruGothic);
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  font-optical-sizing: auto;
  animation: fadeIn 1s forwards ease;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3rem;
  }
}

.wrapper {
  width: 100%;
  overflow-x: clip;
}

/*---------------------------------------
  ハンバーガー
---------------------------------------*/
.nav-toggle {
  position: fixed;
  width: 12rem;
  height: 11rem;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}
.nav-toggle div {
  position: relative;
  width: 7rem;
  height: 3.7rem;
}
.nav-toggle div span {
  position: absolute;
  content: "";
  width: 7rem;
  height: 0.3rem;
  top: 0;
  left: 0;
  background: #000;
  transition: 0.3s ease all;
}
.nav-toggle div span:first-child {
  top: 0;
}
.nav-toggle div span:nth-child(2) {
  top: 1.6rem;
}
.nav-toggle div span:nth-child(3) {
  width: 5rem;
  top: 3.4rem;
  background: var(--point-color);
}

.nav-toggle.active div {
  position: relative;
}
.nav-toggle.active div span {
  position: absolute;
  content: "";
  height: 0.3rem;
  width: 7rem;
  top: 50%;
}
.nav-toggle.active div span:first-child {
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  z-index: 1;
}
.nav-toggle.active div span:nth-child(2) {
  display: none;
}
.nav-toggle.active div span:nth-child(3) {
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}

/*---------------------------------------
  header
---------------------------------------*/
.site-description {
  width: 100%;
  font-size: max(10px, 1.4rem);
  line-height: 1.4285714286;
  padding: 1.0416666667em;
  background: var(--bg-color02);
}

.header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 36rem;
  height: 100%;
  max-height: 100vh;
  padding: 12rem 2.5rem 5rem;
  overflow-y: auto;
  pointer-events: none;
}
.header.scroll {
  position: fixed;
  padding-top: 5rem;
}
.header::-webkit-scrollbar {
  display: none;
}
.header .navgation-wrap {
  width: 100%;
  height: auto;
}
.header .navgation-wrap .logo {
  width: 31rem;
  margin-bottom: 2.5rem;
  transition: 0.3s ease all;
  pointer-events: auto;
}
.header .navgation-wrap .gnav {
  width: 100%;
  pointer-events: auto;
}
.header .navgation-wrap .gnav ul.main-nav {
  font-size: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header .navgation-wrap .gnav ul.main-nav li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 6rem;
  padding-left: 3.5rem;
  color: var(--black);
  background: var(--bg-color03);
  border-radius: 1rem;
}
.header .navgation-wrap .gnav ul.main-nav li a.current {
  background: var(--bg-color03);
}
.header .navgation-wrap .gnav ul.main-nav li a:hover {
  color: var(--black);
  background: var(--bg-color01);
}
.header .navgation-wrap .gnav ul.main-nav li a span {
  display: inline-block;
}
.header .navgation-wrap .gnav ul.main-nav li a span.menu-txt {
  position: relative;
  flex-grow: 1;
}
.header .navgation-wrap .gnav ul.main-nav li a span.menu-txt::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 0.3rem;
  height: 4.7rem;
  background-image: radial-gradient(circle, #989898 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 0.3rem 0.6rem;
}
.header .navgation-wrap .gnav ul.main-nav li a span.menu-icon {
  width: 9rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .navgation-wrap .gnav ul.main-nav li a span.menu-icon img {
  width: 4.5rem;
  height: 4rem;
}
.header .navgation-wrap .gnav .bnr-menu-member {
  display: block;
  width: min(100%, 31rem);
  margin: 1.4rem auto 0;
}
.header .navgation-wrap .site-info {
  display: none;
}
.header .nav-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header {
    position: fixed;
    width: 100%;
    height: 11rem;
    padding: 2.5rem;
    background: var(--white);
  }
  .header .navgation-wrap {
    width: 100%;
  }
  .header .navgation-wrap .logo {
    position: relative;
    top: 0;
    left: 0;
    width: 48.7rem;
    height: auto;
    transition: 0.3s ease all;
    margin-right: auto;
  }
  .header .navgation-wrap .logo img {
    width: 100%;
  }
  .header .navgation-wrap .gnav {
    display: none;
  }
  .header .navgation-wrap .gnav ul.main-nav {
    font-size: 2.3rem;
    font-weight: 700;
    width: 34rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .header .navgation-wrap .gnav ul.main-nav li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 5rem;
    padding-left: 6rem;
    color: var(--black);
    background: var(--white);
    border-radius: 0 2.5rem 2.5rem 0;
    border: 2px solid #d3d3d3;
    border-left: none;
  }
  .header .navgation-wrap .gnav ul.main-nav li a.current {
    color: var(--white);
    background: var(--point-color);
  }
  .header .navgation-wrap .gnav ul.main-nav li a:hover {
    color: var(--black);
    background: var(--sub-color);
  }
  .header .navgation-wrap .gnav .btn-insta {
    display: block;
    width: 5.3rem;
    margin-top: 4rem;
    margin-left: 6rem;
  }
  .header .navgation-wrap .site-info {
    display: none;
  }
  .header .nav-toggle {
    display: flex;
  }
  .header.open {
    position: fixed;
    height: 100vh;
    background: var(--white);
    padding: 0;
  }
  .header.open .navgation-wrap {
    padding: 11rem 5rem 20rem;
  }
  .header.open .navgation-wrap .logo {
    position: relative;
    top: 0;
    left: 0;
    width: 48.7rem;
    padding: 0;
    transition: 0.3s ease all;
    margin: 0 auto;
    text-align: center;
  }
  .header.open .navgation-wrap .logo img {
    width: 100%;
    height: auto;
  }
  .header.open .navgation-wrap .gnav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 8.5rem auto 0;
  }
  .header.open .navgation-wrap .gnav ul.main-nav {
    font-size: min(3rem, 20px);
    font-weight: 400;
    width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .header.open .navgation-wrap .gnav ul.main-nav li {
    width: 100%;
  }
  .header.open .navgation-wrap .gnav ul.main-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6rem;
    padding-left: 0;
    color: var(--black);
    background: var(--white);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #989898;
  }
  .header.open .navgation-wrap .gnav ul.main-nav li a span.menu-txt {
    padding-left: 2.5rem;
  }
  .header.open .navgation-wrap .gnav ul.main-nav li a span.menu-txt::after {
    display: none;
  }
  .header.open .navgation-wrap .gnav .bnr-menu-member {
    display: block;
    width: min(100%, 40rem);
    margin: 5rem auto 6rem;
  }
  .header.open .navgation-wrap .site-info {
    display: block;
    font-size: min(2.2rem, 16px);
    text-align: center;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .header.open .navgation-wrap .gnav ul.main-nav {
    font-size: 3rem;
  }
}

/*---------------------------------------
  footer
---------------------------------------*/
.footer {
  position: relative;
  z-index: 0;
  width: 100%;
}
.footer .footer-wrap {
  width: min(100%, 136rem);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.footer .footer-wrap .img-box {
  width: 50%;
  text-align: center;
}
.footer .footer-wrap .img-box img {
  width: min(75%, 51rem);
}
.footer .footer-wrap .f-info {
  width: 50%;
  flex-shrink: 0;
  padding-bottom: 17rem;
}
.footer .footer-wrap .f-info .logo {
  width: 52rem;
  margin-bottom: 1.5rem;
}
.footer .footer-wrap .f-info .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
}
.footer .footer-wrap .f-info p {
  font-size: 1.8rem;
}
.footer .footer-wrap .f-info p.tel-fax {
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.footer .footer-wrap .f-info p.tel-fax span {
  display: inline-block;
}
.footer .footer-box-02 {
  width: 100%;
  color: var(--white);
  background: var(--point-color);
}
.footer .copyright {
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
}
.footer .copyright p {
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
  }
  .footer .footer-wrap .img-box {
    width: 100%;
    text-align: center;
  }
  .footer .footer-wrap .img-box img {
    width: 51rem;
  }
  .footer .footer-wrap .f-info {
    width: 100%;
    flex-shrink: 0;
    padding-bottom: 21rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-wrap .f-info .logo {
    width: 52rem;
    margin-bottom: 2rem;
  }
  .footer .footer-wrap .f-info .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1em;
  }
  .footer .footer-wrap .f-info p {
    font-size: min(2.8rem, 18px);
    line-height: 1.3571428571;
  }
  .footer .footer-wrap .f-info p.tel-fax {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
  }
  .footer .footer-wrap .f-info p.tel-fax span {
    display: inline-block;
  }
  .footer .footer-box-02 {
    width: 100%;
    color: var(--white);
    background: var(--point-color);
  }
  .footer .copyright {
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
  }
  .footer .copyright p {
    font-size: 2.2rem;
    text-align: center;
  }
}

/* 追従バナー */
.fixed-bnr {
  position: fixed;
  z-index: 9999;
  bottom: 2.5rem;
  right: 2.5rem;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.fixed-bnr.stop {
  bottom: 7.5rem;
}
.fixed-bnr a {
  display: block;
  background: #fff;
  border-radius: 1rem;
}
.fixed-bnr a.bnr_free-number {
  width: 38rem;
}
.fixed-bnr a.bnr_offerings {
  width: 32rem;
}
.fixed-bnr a:hover img {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .fixed-bnr {
    width: 100%;
    bottom: 2.5rem;
    right: 0;
    display: flex;
    justify-content: center;
  }
  .fixed-bnr.stop {
    bottom: 10rem;
  }
  .fixed-bnr a {
    display: block;
    background: #fff;
    border-radius: 1rem;
  }
  .fixed-bnr a.bnr_free-number {
    width: 38rem;
  }
  .fixed-bnr a.bnr_offerings {
    width: 32rem;
  }
  .fixed-bnr a:hover img {
    opacity: 0.85;
  }
}

/* ページトップへ */
#pagetop {
  display: none;
  position: fixed;
  z-index: 9998;
  top: auto;
  bottom: 2rem;
  left: 2.5rem;
}
#pagetop.stop {
  bottom: 8rem;
}
#pagetop a {
  display: block;
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  #pagetop {
    left: auto;
    right: 1rem;
    bottom: 20rem;
  }
  #pagetop.stop {
    bottom: 26rem;
  }
}

/*---------------------------------------
  共通
---------------------------------------*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.btn {
  transition: 0.3s ease all;
}
.btn:hover {
  opacity: 0.7;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.content {
  padding-left: 36rem;
}
.content .content__inner {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 1023px) {
  .content {
    padding-left: 0;
  }
}

.btn-nomal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3636363636;
  width: 18.1818181818em;
  height: 2.9545454545em;
  color: var(--white);
  background: var(--point-color);
  border-radius: 1.4772727273em;
  transition: 0.3s all;
}
.btn-nomal span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}
.btn-nomal span::before {
  font-family: "Font Awesome 6 Free";
  font-size: 0.8em;
  font-weight: 900;
  content: "\f054";
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--point-color);
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s all;
}
.btn-nomal:hover {
  transform: scale(1.01);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-nomal {
    gap: 1rem;
    font-size: 3rem;
    line-height: 1;
    width: 15.6666666667em;
    height: 2.1666666667em;
    border-radius: 1.4772727273em;
  }
  .btn-nomal span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.7em;
  }
  .btn-nomal span::before {
    font-family: "Font Awesome 6 Free";
    font-size: 0.7em;
    line-height: 1;
    font-weight: 900;
    content: "\f054";
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--point-color);
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s all;
  }
}

.btn-small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3636363636;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.9545454545em;
  color: var(--white);
  background: var(--point-color);
  border-radius: 1.4772727273em;
  transition: 0.3s all;
  padding: 0 2rem;
}
.btn-small span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.btn-small span::before {
  font-family: "Font Awesome 6 Free";
  font-size: 0.8em;
  font-weight: 900;
  content: "\f054";
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--point-color);
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s all;
}
.btn-small:hover {
  transform: scale(1.01);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-small {
    font-size: 3rem;
    line-height: 1;
    height: 2.1666666667em;
    border-radius: 1.0833333333em;
    padding: 0 1em;
  }
  .btn-small span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
  }
  .btn-small span::before {
    font-family: "Font Awesome 6 Free";
    font-size: 0.7em;
    font-weight: 900;
    content: "\f054";
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--point-color);
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s all;
  }
}

.btn-order {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  width: 20em;
  height: 3.2em;
  color: var(--white);
  background: #fc9940;
  border-radius: 1.4772727273em;
  transition: 0.3s all;
}
.btn-order span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}
.btn-order span::before {
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--white);
  background-image: url("../images/icon_menu06.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 72%;
  border-radius: 50%;
  transition: 0.3s all;
}
.btn-order:hover {
  transform: scale(1.01);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn-order {
    font-size: 3.4rem;
    line-height: 1.0294117647;
    width: 14.7058823529em;
    height: 2.3529411765em;
  }
}

/*---------------------------------------
  TOPページ
---------------------------------------*/
.home {
  width: 100;
}
.home .content-title {
  position: relative;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  padding-top: 1.25em;
  margin-bottom: 0.75em;
}
.home .content-title::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 3.85em;
  aspect-ratio: 154/111;
  background: url("../images/bg-deco.png");
  background-size: 100% 100%;
}
.home .content-title span {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 2.2727272727;
}
.home #kv {
  position: relative;
  z-index: 1;
}
.home #kv .kv-main {
  position: relative;
  padding: 5rem 5rem 3rem;
  width: 100%;
}
.home #kv .kv-main .slider-box {
  width: 100%;
  border-radius: 5rem;
  background: var(--white);
  overflow: hidden;
}
.home #kv .kv-main .slider-box .slide-item {
  width: 100%;
}
.home #kv .kv-main .slider-box .slide-item img {
  width: 100%;
}
.home #kv .kv-main .kv-copy {
  position: absolute;
  z-index: 1;
  left: calc(5rem + 8.3333333333%);
  top: calc(5rem + 13.0208333333vw);
  width: min(29.4871794872%, 46rem);
}
@media screen and (max-width: 1023px) {
  .home #kv .kv-main {
    padding: 14rem 5rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .home #kv .kv-main {
    padding: 11rem 0 0;
  }
  .home #kv .kv-main .slider-box {
    border-radius: 0;
  }
  .home #kv .kv-main .kv-copy {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    top: 48vw;
    width: 46rem;
  }
}
.home #top-lead {
  position: relative;
}
.home #top-lead .box-wrap {
  width: min(100%, 1560px);
  margin: 0 auto;
}
.home #top-lead .box-wrap .lead-box {
  position: relative;
  width: 100%;
  padding-top: min(7.8125vw, 15rem);
  padding-bottom: min(9.8958333333vw, 19rem);
}
.home #top-lead .box-wrap .lead-box .bg-image {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: min(69.2708333333vw, 133rem);
}
.home #top-lead .box-wrap .lead-box .text-box {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: flex-start;
  margin-right: min(26.0416666667vw, 50rem);
  gap: min(2.6041666667vw, 5rem);
}
.home #top-lead .box-wrap .lead-box .text-box .lead-title {
  width: min(14.5833333333vw, 28rem);
  aspect-ratio: 280/530;
}
.home #top-lead .box-wrap .lead-box .text-box .inner-txt {
  writing-mode: vertical-rl;
  align-self: flex-end;
}
.home #top-lead .box-wrap .lead-box .text-box .inner-txt p {
  font-size: clamp(14px, 1.25vw, 2.4rem);
  line-height: 2.0833333333;
  letter-spacing: 0.1em;
  max-height: 15em;
  margin-bottom: 1em;
}
.home #top-lead .box-wrap .lead-box .text-box .image-consult {
  align-self: flex-end;
  width: min(18.2291666667vw, 35rem);
  margin-bottom: min(-3.6458333333vw, -7rem);
  margin-right: min(1.5625vw, 3rem);
}
@media screen and (max-width: 767px) {
  .home #top-lead .box-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .home #top-lead .box-wrap .lead-box {
    position: relative;
    width: 100%;
    padding-top: 14.6666666667vw;
    padding-bottom: 0;
  }
  .home #top-lead .box-wrap .lead-box .bg-image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 30.6666666667vw;
    width: 100%;
  }
  .home #top-lead .box-wrap .lead-box .text-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-right: 0;
    gap: 3.3333333333vw;
  }
  .home #top-lead .box-wrap .lead-box .text-box .lead-title {
    width: 37.3333333333vw;
    aspect-ratio: 280/530;
    margin-right: 30vw;
    margin-bottom: 4vw;
  }
  .home #top-lead .box-wrap .lead-box .text-box .inner-txt {
    writing-mode: vertical-rl;
    align-self: flex-end;
  }
  .home #top-lead .box-wrap .lead-box .text-box .inner-txt p {
    font-size: 4vw;
    line-height: 1.6666666667;
    letter-spacing: 0.1em;
    max-height: 15em;
    margin-bottom: 0;
  }
  .home #top-lead .box-wrap .lead-box .text-box .image-consult {
    align-self: flex-end;
    width: 53.3333333333vw;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.home #top-news .box-wrap {
  padding-top: 8rem;
  padding-bottom: 14rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.home #top-news .news-title {
  position: relative;
  font-size: 4rem;
  line-height: 1.25;
  text-align: center;
  padding: 0.5em;
}
.home #top-news .news-title::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 3.85em;
  aspect-ratio: 154/111;
  background: url("../images/bg-deco.png");
  background-size: 100% 100%;
}
.home #top-news .news-title span {
  display: inline-block;
  font-size: 2.2rem;
  line-height: 2.2727272727;
}
.home #top-news .news-list {
  width: min(100%, 120rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.home #top-news .news-list .news-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 4rem;
  background: var(--bg-color03);
  border-radius: 1rem;
  padding: 4rem 6rem;
}
.home #top-news .news-list .news-item .image-box {
  width: 22rem;
  aspect-ratio: 220/190;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.home #top-news .news-list .news-item .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home #top-news .news-list .news-item .text-box {
  flex-grow: 1;
}
.home #top-news .news-list .news-item .text-box p {
  font-size: 2rem;
  line-height: 1.5;
}
.home #top-news .news-list .news-item .text-box p.post-date {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  color: #599f4e;
}
.home #top-news .news-list .news-item .text-box p.post-ttl {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.home #top-news .news-list .news-item .text-box .btn-more {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  line-height: 1.1;
  margin-top: 3rem;
}
.home #top-news .news-list .news-item .text-box .btn-more::before {
  font-family: "Font Awesome 6 Free";
  font-size: 1.2rem;
  font-weight: 900;
  content: "\f054";
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--point-color);
  border-radius: 50%;
  transition: 0.3s all;
}
.home #top-news .btn-box {
  margin: 6rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home #top-news .box-wrap {
    padding-top: 7rem;
    padding-bottom: 10rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .home #top-news .news-title {
    position: relative;
    font-size: 4rem;
    line-height: 1.25;
    text-align: center;
    padding: 0.75em;
  }
  .home #top-news .news-title::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 3.85em;
    aspect-ratio: 154/111;
    background: url("../images/bg-deco.png");
    background-size: 100% 100%;
  }
  .home #top-news .news-title span {
    display: inline-block;
    font-size: 2.6rem;
    line-height: 1.9230769231;
    font-weight: 400;
  }
  .home #top-news .news-list {
    width: 100%;
    margin: 0 auto;
    gap: 4rem;
  }
  .home #top-news .news-list .news-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 4rem;
    background: var(--bg-color03);
    border-radius: 1rem;
    padding: 4rem 5rem;
  }
  .home #top-news .news-list .news-item .image-box {
    width: 44rem;
    aspect-ratio: 440/380;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
  }
  .home #top-news .news-list .news-item .image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home #top-news .news-list .news-item .text-box {
    width: 100%;
  }
  .home #top-news .news-list .news-item .text-box p {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .home #top-news .news-list .news-item .text-box p.post-date {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3461538462;
    color: #599f4e;
  }
  .home #top-news .news-list .news-item .text-box p.post-ttl {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.3125;
    margin-bottom: 0.5em;
  }
  .home #top-news .news-list .news-item .text-box .btn-more {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3333333333;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .home #top-news .news-list .news-item .text-box .btn-more::before {
    font-family: "Font Awesome 6 Free";
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 900;
    content: "\f054";
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: var(--point-color);
    border-radius: 50%;
    transition: 0.3s all;
  }
  .home #top-news .btn-box {
    margin: 6rem auto 0;
    text-align: center;
  }
}
.home #yasuragi-member {
  position: relative;
}
.home #yasuragi-member::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
}
.home #yasuragi-member .box-wrap {
  position: relative;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 20rem;
  padding-left: 5rem;
  padding-right: 5rem;
  background-image: url("../images/bg-illust_01.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: min(100%, 1560px);
}
.home #yasuragi-member .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
}
.home #yasuragi-member .yasuragi-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.home #yasuragi-member .yasuragi-title span {
  display: inline-block;
  font-weight: 500;
}
.home #yasuragi-member .yasuragi-title span.txt-small {
  font-size: 3rem;
}
.home #yasuragi-member .yasuragi-title span.line-dot {
  width: 31rem;
  height: 1.2rem;
  background: url("../images/line-dot.png") center center no-repeat;
  background-size: contain;
}
.home #yasuragi-member .yasuragi-title span.txt-ttl {
  font-size: 7rem;
  line-height: 1.1428571429;
  color: var(--sub-color);
}
.home #yasuragi-member .tag-txt {
  width: 30rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 500;
  color: var(--white);
  background: var(--sub-color);
  border-radius: 3rem;
  margin: 1.5rem auto;
}
.home #yasuragi-member .col3-box {
  width: min(100%, 1360px);
  margin: 2.5rem auto 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3.5rem;
}
.home #yasuragi-member .col3-box .item-box {
  width: min((100% - 7rem) / 3, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 2rem;
}
.home #yasuragi-member .col3-box .item-box .img-box {
  width: min(100%, 30rem);
}
.home #yasuragi-member .col3-box .item-box .item-ttl {
  font-size: clamp(13px, 1.25vw, 2.4rem);
  line-height: 1.4166666667;
  width: 100%;
  min-height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.home #yasuragi-member .bottomTxt {
  width: 100%;
  font-size: 4rem;
  text-align: center;
}
.home #yasuragi-member .btn-box {
  margin: 5rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home #yasuragi-member .col3-box {
    width: min(100%, 650px);
    margin: 3rem auto 7rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem 2.5rem;
  }
  .home #yasuragi-member .col3-box .item-box {
    width: calc(50% - 1.25rem);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0.5rem 2rem;
    background: var(--white);
    border-radius: 2rem;
  }
  .home #yasuragi-member .col3-box .item-box .img-box {
    width: min(100%, 30rem);
  }
  .home #yasuragi-member .col3-box .item-box .item-ttl {
    font-size: 3rem;
    line-height: 1.4166666667;
    width: 100%;
    min-height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.home #hall-information .box-wrap {
  padding-top: 15rem;
  padding-bottom: 12rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.home #hall-information .col2-box {
  width: min(100%, 1360px);
  margin: 5rem auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6rem;
}
.home #hall-information .col2-box .item-box {
  width: min(50% - 3rem, 650px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.home #hall-information .col2-box .item-box .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 650/400;
  border-radius: 2rem;
  overflow: hidden;
}
.home #hall-information .col2-box .item-box .img-box .addTxt {
  position: absolute;
  z-index: 1;
  right: 3rem;
  bottom: 2.5rem;
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
  min-width: 14rem;
  height: 3.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5em;
  color: var(--white);
  background: #95a392;
  border-radius: 1.75rem;
  text-align: center;
}
.home #hall-information .col2-box .item-box .text-box {
  padding: 4rem 2.5rem;
}
.home #hall-information .col2-box .item-box .text-box p {
  font-size: 2rem;
}
.home #hall-information .col2-box .item-box .text-box p.txt-01 {
  font-size: 2.5rem;
  font-weight: 500;
}
.home #hall-information .col2-box .item-box .text-box p.txt-01 span {
  font-size: 2.2rem;
}
.home #hall-information .col2-box .item-box .text-box p.txt-title {
  font-size: 4rem;
  line-height: 1.25;
  color: var(--point-color);
}
.home #hall-information .col2-box .item-box .text-box .hall-info {
  margin-top: 2rem;
  padding-top: 2rem;
  width: 100%;
  border-top: 1px solid #95a392;
}
.home #hall-information .col2-box .item-box .text-box .btn-box {
  width: 100%;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home #hall-information .box-wrap {
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .home #hall-information .col2-box {
    width: min(100%, 650px);
    margin: 5rem auto 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6rem;
  }
  .home #hall-information .col2-box .item-box {
    width: min(100%, 650px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .home #hall-information .col2-box .item-box .img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 650/400;
    border-radius: 2rem;
    overflow: hidden;
  }
  .home #hall-information .col2-box .item-box .img-box .addTxt {
    position: absolute;
    z-index: 1;
    right: 3rem;
    bottom: 2.5rem;
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    min-width: 14rem;
    height: 3.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5em;
    color: var(--white);
    background: #95a392;
    border-radius: 1.75rem;
    text-align: center;
  }
  .home #hall-information .col2-box .item-box .text-box {
    padding: 4rem 2.5rem;
  }
  .home #hall-information .col2-box .item-box .text-box p {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .home #hall-information .col2-box .item-box .text-box p.txt-01 {
    font-size: 3rem;
    font-weight: 500;
  }
  .home #hall-information .col2-box .item-box .text-box p.txt-01 span {
    font-size: 2.2rem;
  }
  .home #hall-information .col2-box .item-box .text-box p.txt-02 {
    font-size: 2.6rem;
  }
  .home #hall-information .col2-box .item-box .text-box p.txt-02 span {
    font-size: 2.2rem;
  }
  .home #hall-information .col2-box .item-box .text-box p.txt-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--point-color);
  }
  .home #hall-information .col2-box .item-box .text-box .hall-info {
    margin-top: 2rem;
    padding-top: 2rem;
    width: 100%;
    border-top: 1px solid #95a392;
  }
  .home #hall-information .col2-box .item-box .text-box .btn-box {
    width: 100%;
    margin-top: 5rem;
    text-align: center;
  }
}
.home #funeral-services {
  position: relative;
}
.home #funeral-services::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
}
.home #funeral-services .box-wrap {
  position: relative;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 14rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.home #funeral-services .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
}
.home #funeral-services .service-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: #6f7d1d;
}
.home #funeral-services .service-title span {
  display: inline-block;
  font-weight: 500;
}
.home #funeral-services .service-title span.line-dot {
  width: 31rem;
  height: 1.2rem;
  background: url("../images/line-dot.png") center center no-repeat;
  background-size: contain;
}
.home #funeral-services .service-title span.txt-ttl {
  font-size: 7rem;
  line-height: 1.1428571429;
}
.home #funeral-services .service-title span.txt-small {
  font-size: 5rem;
  line-height: 1;
}
.home #funeral-services p {
  font-size: 2rem;
  line-height: 2;
}
.home #funeral-services .topTxt {
  margin: 4rem auto;
}
.home #funeral-services .topTxt p {
  text-align: center;
}
.home #funeral-services .topTxt p span {
  font-size: 2.2rem;
  font-weight: 500;
}
.home #funeral-services .service-01 {
  width: min(100%, 1280px);
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.home #funeral-services .service-01 .text-box {
  width: 56rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding-top: 3rem;
}
.home #funeral-services .service-01 .text-box .title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
}
.home #funeral-services .service-01 .text-box .title span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.home #funeral-services .service-01 .text-box .title span::before, .home #funeral-services .service-01 .text-box .title span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 0.6;
  padding-bottom: 0.4em;
}
.home #funeral-services .service-01 .text-box .inner-box {
  width: 82.1428571429%;
  margin-top: 2rem;
}
.home #funeral-services .service-01 .text-box .inner-box .btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
}
.home #funeral-services .service-01 .img-box {
  position: relative;
  width: 57.03125%;
}
.home #funeral-services .service-01 .img-box .pic {
  width: 95.0684931507%;
  margin-left: auto;
}
.home #funeral-services .service-01 .img-box .illust-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20.4109589041%;
}
.home #funeral-services .service-02 {
  width: min(100%, 1280px);
  margin-top: 12rem;
  margin-right: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
}
.home #funeral-services .service-02 .text-box {
  width: 55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
  padding-top: 3rem;
}
.home #funeral-services .service-02 .text-box .title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
}
.home #funeral-services .service-02 .text-box .title span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.home #funeral-services .service-02 .text-box .title span::before, .home #funeral-services .service-02 .text-box .title span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 0.6;
  padding-bottom: 0.4em;
}
.home #funeral-services .service-02 .text-box .inner-box {
  width: 82.1428571429%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.home #funeral-services .service-02 .text-box .inner-box .list-box {
  position: relative;
  width: 100%;
  background: var(--white);
  border: 0.3rem solid #fc9940;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}
.home #funeral-services .service-02 .text-box .inner-box .list-box .list-title {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  color: #fc9940;
  font-weight: 500;
  margin-top: -4.5rem;
  margin-bottom: 2rem;
  padding: 0 0.25em;
  background-image: linear-gradient(0deg, #fff, #fff 30%, transparent 30%);
}
.home #funeral-services .service-02 .text-box .inner-box .list-box ul {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  padding-left: 1.25em;
}
.home #funeral-services .service-02 .text-box .inner-box .list-box ul li {
  list-style: disc;
}
.home #funeral-services .service-02 .text-box .inner-box .list-box ul li::marker {
  color: #9eb49b;
}
.home #funeral-services .service-02 .img-box {
  position: relative;
  width: 57.03125%;
}
.home #funeral-services .service-02 .img-box .pic {
  width: 95.0684931507%;
  margin-right: auto;
}
.home #funeral-services .service-02 .img-box .illust-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 27.1232876712%;
}
.home #funeral-services .service-03 {
  width: min(100%, 1280px);
  margin-top: 8rem;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home #funeral-services .service-03 .text-box {
  width: 56rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-shrink: 0;
}
.home #funeral-services .service-03 .text-box .title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
}
.home #funeral-services .service-03 .text-box .title span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.home #funeral-services .service-03 .text-box .title span::before, .home #funeral-services .service-03 .text-box .title span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 0.6;
  padding-bottom: 0.4em;
}
.home #funeral-services .service-03 .text-box .inner-box {
  width: 82.1428571429%;
  margin-top: 2rem;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .inbox-title {
  font-weight: 500;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 3.5rem;
  align-items: center;
  background: var(--white);
  border: 0.3rem solid #fc9940;
  border-radius: 1rem;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.ttl {
  line-height: 1.5;
  flex-shrink: 0;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.ttl small {
  font-size: 0.8em;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price {
  color: #fc9940;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.5em;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price span {
  display: inline-block;
}
.home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price span.price-num {
  font-size: 1.5em;
  font-weight: 500;
}
.home #funeral-services .service-03 .img-box {
  position: relative;
  width: 57.03125%;
}
.home #funeral-services .service-03 .img-box .pic {
  width: 95.0684931507%;
  margin-left: auto;
}
.home #funeral-services .service-03 .img-box .illust-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26.301369863%;
}
@media screen and (max-width: 767px) {
  .home #funeral-services .box-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 8rem;
    padding-bottom: 10rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .home #funeral-services .service-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #6f7d1d;
  }
  .home #funeral-services .service-title span {
    display: inline-block;
    font-weight: 500;
  }
  .home #funeral-services .service-title span.line-dot {
    width: 31rem;
    height: 1.2rem;
    background: url("../images/line-dot.png") center center no-repeat;
    background-size: contain;
  }
  .home #funeral-services .service-title span.txt-ttl {
    font-size: 7rem;
    line-height: 1.1428571429;
  }
  .home #funeral-services .service-title span.txt-small {
    font-size: 5rem;
    line-height: 1;
  }
  .home #funeral-services p {
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .home #funeral-services .topTxt {
    margin: 4rem auto;
  }
  .home #funeral-services .topTxt p {
    font-size: 2.7rem;
    text-align: left;
  }
  .home #funeral-services .topTxt p span {
    display: block;
    font-size: 3.4rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
  }
  .home #funeral-services .service-01 {
    width: min(100%, 650px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
  }
  .home #funeral-services .service-01 .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    padding-top: 0;
  }
  .home #funeral-services .service-01 .text-box .title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.4285714286;
    text-align: center;
  }
  .home #funeral-services .service-01 .text-box .title span {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5em;
  }
  .home #funeral-services .service-01 .text-box .inner-box {
    width: 59rem;
    margin-top: 2.5rem;
  }
  .home #funeral-services .service-01 .text-box .inner-box .btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
  }
  .home #funeral-services .service-01 .img-box {
    position: relative;
    width: 100%;
  }
  .home #funeral-services .service-01 .img-box .pic {
    width: 100%;
    margin-left: auto;
  }
  .home #funeral-services .service-01 .img-box .illust-box {
    position: absolute;
    left: 0;
    bottom: -3.5rem;
    width: 22.9230769231%;
  }
  .home #funeral-services .service-02 {
    width: min(100%, 650px);
    margin-top: 6rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
  }
  .home #funeral-services .service-02 .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    padding-top: 0;
  }
  .home #funeral-services .service-02 .text-box .title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.4285714286;
    text-align: center;
  }
  .home #funeral-services .service-02 .text-box .title span {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5em;
  }
  .home #funeral-services .service-02 .text-box .inner-box {
    width: 55rem;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .home #funeral-services .service-02 .text-box .inner-box .list-box {
    position: relative;
    width: 100%;
    background: var(--white);
    border: 0.3rem solid #fc9940;
    border-radius: 1rem;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
  }
  .home #funeral-services .service-02 .text-box .inner-box .list-box .list-title {
    display: inline-block;
    font-size: 3.4rem;
    line-height: 1;
    color: #fc9940;
    font-weight: 500;
    margin-top: -4.5rem;
    margin-bottom: 2rem;
    padding: 0 0.25em;
    background-image: linear-gradient(0deg, #fff, #fff 38%, transparent 38%);
  }
  .home #funeral-services .service-02 .text-box .inner-box .list-box ul {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.6rem;
    line-height: 1.5384615385;
    padding-left: 1.25em;
  }
  .home #funeral-services .service-02 .text-box .inner-box .list-box ul li {
    list-style: disc;
  }
  .home #funeral-services .service-02 .text-box .inner-box .list-box ul li::marker {
    color: #9eb49b;
  }
  .home #funeral-services .service-02 .img-box {
    position: relative;
    width: 100%;
  }
  .home #funeral-services .service-02 .img-box .pic {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .home #funeral-services .service-02 .img-box .illust-box {
    position: absolute;
    right: 0;
    bottom: -3.5rem;
    width: 30.4615384615%;
  }
  .home #funeral-services .service-03 {
    width: min(100%, 650px);
    margin-top: 8rem;
    margin-left: auto;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
  }
  .home #funeral-services .service-03 .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
  }
  .home #funeral-services .service-03 .text-box .title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.4285714286;
    text-align: center;
  }
  .home #funeral-services .service-03 .text-box .title span {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5em;
  }
  .home #funeral-services .service-03 .text-box .title span::before, .home #funeral-services .service-03 .text-box .title span::after {
    content: "…";
    color: #979d74;
    font-size: 2.5rem;
    line-height: 1;
  }
  .home #funeral-services .service-03 .text-box .inner-box {
    width: 55rem;
    margin-top: 2rem;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .inbox-title {
    font-weight: 500;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    padding: 1.5rem 3.5rem;
    align-items: center;
    background: var(--white);
    border: 0.3rem solid #fc9940;
    border-radius: 1rem;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.ttl {
    font-size: 3rem;
    line-height: 1.3333333333;
    flex-shrink: 0;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.ttl small {
    font-size: 0.8666666667em;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price {
    color: #fc9940;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0.5em;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price span {
    font-size: 3rem;
    display: inline-block;
  }
  .home #funeral-services .service-03 .text-box .inner-box .coupon-box .coupon-item p.price span.price-num {
    font-size: 4rem;
    font-weight: 500;
  }
  .home #funeral-services .service-03 .img-box {
    position: relative;
    width: 100%;
  }
  .home #funeral-services .service-03 .img-box .pic {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .home #funeral-services .service-03 .img-box .illust-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 29.5384615385%;
  }
}
.home #contact-us .box-wrap {
  padding-top: 13rem;
  padding-bottom: 8rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.home #contact-us .contact-box-01 {
  width: min(100%, 1360px);
  margin: 0 auto;
  background: #ffee92;
  border-radius: 5rem;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home #contact-us .contact-box-01 .title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
.home #contact-us .contact-box-01 .title span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.home #contact-us .contact-box-01 .title span::before, .home #contact-us .contact-box-01 .title span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 1;
}
.home #contact-us .contact-box-01 .contact-tel-box {
  position: relative;
  width: min(80%, 80rem);
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 5rem 10rem;
  border-radius: 5rem;
  background: var(--white);
}
.home #contact-us .contact-box-01 .contact-tel-box::before {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: min(-10%, -8rem);
  width: min(19.375%, 15.5rem);
  aspect-ratio: 155/283;
  background: url("../images/index/illust_10.png") center bottom no-repeat;
  background-size: 100% auto;
}
.home #contact-us .contact-box-01 .contact-tel-box::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: min(-18.75%, -15rem);
  width: min(31.375%, 25.1rem);
  aspect-ratio: 251/268;
  background: url("../images/index/illust_11.png") center bottom no-repeat;
  background-size: 100% auto;
}
.home #contact-us .contact-box-01 .contact-tel-box p {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
}
.home #contact-us .contact-box-01 .contact-tel-box p.bottomTxt {
  font-size: 2.2rem;
  line-height: cal(30/22);
}
.home #contact-us .contact-box-01 .contact-tel-box .tel-num {
  font-size: 5.5rem;
  line-height: 1;
  color: var(--point-color);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2rem;
  margin: 2rem auto 4rem;
}
.home #contact-us .contact-box-01 .contact-tel-box .tel-num span {
  display: inline-block;
}
.home #contact-us .contact-box-01 .contact-tel-box .tel-num span.icon {
  width: 1.2363636364em;
  aspect-ratio: 68/44;
  background: url("../images/icon_free-number.png") center center no-repeat;
  background-size: 100% auto;
}
.home #contact-us .contact-box-01 .contact-flow-box {
  position: relative;
  width: min(100%, 100rem);
  margin: -7rem auto 0;
  display: flex;
  justify-content: center;
  gap: 4.25rem;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox {
  position: relative;
  width: min((100% - 8.5rem) / 3, 305px);
  border-radius: 2rem;
  padding: 2rem;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox .inner {
  width: min(100%, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox p {
  width: 100%;
  text-align: center;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox p.ttl {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox p.txt {
  font-size: 2rem;
  line-height: 1.5;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox p.txt span {
  font-weight: 500;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01 {
  background: #f0f9fc;
  border: 0.5rem solid #51aecc;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01 p.ttl {
  color: #51aecc;
  border-bottom: 1px solid #51aecc;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01::after {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ZenKakuGothicAntique);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  content: "→";
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: #848484;
  border-radius: 50%;
  transition: 0.3s all;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02 {
  background: #e6f8ed;
  border: 0.5rem solid #64c08f;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02 p.ttl {
  color: #64c08f;
  border-bottom: 1px solid #64c08f;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02::after {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ZenKakuGothicAntique);
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  content: "→";
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: #848484;
  border-radius: 50%;
  transition: 0.3s all;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox03 {
  background: #f3f8d6;
  border: 0.5rem solid #8cc064;
}
.home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox03 p.ttl {
  color: #8cc064;
  border-bottom: 1px solid #8cc064;
}
.home #contact-us .contact-box-02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 9rem;
}
.home #contact-us .contact-box-02 p {
  font-size: 2rem;
  line-height: 2;
}
.home #contact-us .contact-box-02 p.title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .home #contact-us .box-wrap {
    padding-top: 9rem;
    padding-bottom: 8rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .home #contact-us .contact-box-01 {
    width: min(100%, 700px);
    margin: 0 auto;
    background: #ffee92;
    border-radius: 5rem;
    padding: 6rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home #contact-us .contact-box-01 .title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
  }
  .home #contact-us .contact-box-01 .title span {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5em;
  }
  .home #contact-us .contact-box-01 .title span::before, .home #contact-us .contact-box-01 .title span::after {
    content: "…";
    color: #979d74;
    font-size: 2.5rem;
    line-height: 1;
  }
  .home #contact-us .contact-box-01 .contact-tel-box {
    position: relative;
    width: 100%;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem 5rem 6rem;
    border-radius: 5rem;
    background: var(--white);
  }
  .home #contact-us .contact-box-01 .contact-tel-box::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 7rem);
    left: min(-2.8571428571%, -2rem);
    width: min(14.1428571429%, 9.9rem);
    aspect-ratio: 99/180;
    background: url("../images/index/illust_10.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .home #contact-us .contact-box-01 .contact-tel-box::after {
    content: "";
    position: absolute;
    top: -4rem;
    right: min(-6.7142857143%, -4.7rem);
    width: min(23%, 16.1rem);
    aspect-ratio: 161/171;
    background: url("../images/index/illust_11.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .home #contact-us .contact-box-01 .contact-tel-box p {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .home #contact-us .contact-box-01 .contact-tel-box p.bottomTxt {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
  }
  .home #contact-us .contact-box-01 .contact-tel-box .tel-num {
    font-size: 5.5rem;
    line-height: 1;
    color: var(--point-color);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2rem;
    margin: 2rem auto 4rem;
  }
  .home #contact-us .contact-box-01 .contact-tel-box .tel-num span {
    display: inline-block;
  }
  .home #contact-us .contact-box-01 .contact-tel-box .tel-num span.icon {
    width: 1.2363636364em;
    aspect-ratio: 68/44;
    background: url("../images/icon_free-number.png") center center no-repeat;
    background-size: 100% auto;
  }
  .home #contact-us .contact-box-01 .contact-flow-box {
    position: relative;
    width: 55rem;
    margin: -3rem auto 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox {
    position: relative;
    width: 100%;
    border-radius: 2rem;
    padding: 2.5rem;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox .inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox p {
    width: 100%;
    text-align: center;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox p.ttl {
    width: 22rem;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox p.txt {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox p.txt span {
    font-weight: 500;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01 {
    background: #f0f9fc;
    border: 0.5rem solid #51aecc;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01 p.ttl {
    color: #51aecc;
    border-bottom: 1px solid #51aecc;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox01::after {
    position: absolute;
    right: calc(50% - 2.5rem);
    top: calc(100% - 2rem);
    transform: rotate(90deg);
    font-family: var(--font-ZenKakuGothicAntique);
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    content: "→";
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: #848484;
    border-radius: 50%;
    transition: 0.3s all;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02 {
    background: #e6f8ed;
    border: 0.5rem solid #64c08f;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02 p.ttl {
    color: #64c08f;
    border-bottom: 1px solid #64c08f;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox02::after {
    position: absolute;
    right: calc(50% - 2.5rem);
    top: calc(100% - 2rem);
    transform: rotate(90deg);
    font-family: var(--font-ZenKakuGothicAntique);
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    content: "→";
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: #848484;
    border-radius: 50%;
    transition: 0.3s all;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox03 {
    background: #f3f8d6;
    border: 0.5rem solid #8cc064;
  }
  .home #contact-us .contact-box-01 .contact-flow-box .inbox.inbox03 p.ttl {
    color: #8cc064;
    border-bottom: 1px solid #8cc064;
  }
  .home #contact-us .contact-box-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 9rem;
  }
  .home #contact-us .contact-box-02 p {
    font-size: 2.6rem;
    line-height: 2;
  }
  .home #contact-us .contact-box-02 p.title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 500;
  }
  .home #contact-us .contact-box-02 .btn-box {
    margin-top: 4rem;
  }
}

/*---------------------------------------
  下層共通
---------------------------------------*/
.lower {
  width: 100%;
}
.lower #kv.page-header {
  padding: 5rem 5rem 0;
}
.lower #kv.page-header .kv-main {
  position: relative;
  width: 100%;
}
.lower #kv.page-header .kv-main .bg-box {
  width: 100%;
  height: 55rem;
  background: #95a392;
  border-radius: 5rem;
  overflow: hidden;
}
.lower #kv.page-header .kv-main .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower #kv.page-header .kv-main .bg-box.noimg {
  height: 35rem;
}
.lower #kv.page-header .kv-main .page-title {
  position: absolute;
  z-index: 0;
  left: 11rem;
  bottom: 6rem;
  font-size: 5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
}
.lower #kv.page-header .kv-main .page-title::before {
  content: "";
  width: 2.2em;
  aspect-ratio: 110/70;
  background: url("../images/deco-illust.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  top: -1em;
  left: -1.4em;
}
@media screen and (max-width: 1023px) {
  .lower #kv.page-header {
    padding: 14rem 5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .lower #kv.page-header {
    padding: 11rem 0 0;
  }
  .lower #kv.page-header .kv-main .bg-box {
    width: 100%;
    height: 55rem;
    background: #95a392;
    border-radius: 0;
    overflow: hidden;
  }
  .lower #kv.page-header .kv-main .bg-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lower #kv.page-header .kv-main .bg-box.noimg {
    height: 35rem;
  }
  .lower #kv.page-header .kv-main .page-title {
    position: absolute;
    z-index: 0;
    left: 10rem;
    bottom: 5rem;
    font-size: 5rem;
    line-height: 1;
    font-weight: 400;
    color: var(--white);
  }
  .lower #kv.page-header .kv-main .page-title::before {
    content: "";
    width: 2.2em;
    aspect-ratio: 110/70;
    background: url("../images/deco-illust.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: -1;
    top: -1em;
    left: -1.4em;
  }
}
.lower .page-content {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .lower .page-content {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.lower .section-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.lower .section-title span {
  display: inline-block;
  font-weight: 500;
}
.lower .section-title span.txt-small {
  font-size: 3rem;
}
.lower .section-title span.line-dot {
  width: 31rem;
  height: 1.2rem;
  background: url("../images/line-dot.png") center center no-repeat;
  background-size: contain;
}
.lower .section-title span.txt-ttl {
  font-size: 6rem;
  line-height: 1;
  color: #6f7d1d;
}
.lower .section-title span.txt-ttl-m {
  font-size: 5rem;
  line-height: 1;
  color: #6f7d1d;
}
.lower .content-title {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 500;
}
.lower .content-title span {
  display: inline-block;
  text-align: center;
}
.lower .content-title span.line-dot {
  width: 31rem;
  height: 1.2rem;
  background: url("../images/line-dot.png") center center no-repeat;
  background-size: contain;
}
.lower .content-title span.txt-small {
  font-size: 2.2rem;
  line-height: 1;
}
.lower .content-title span.txt-ttl {
  font-size: 6rem;
  line-height: 1;
  color: #6f7d1d;
}
.lower .content-title.deco {
  padding-top: 1em;
  margin-bottom: 0.75em;
  text-align: center;
}
.lower .content-title.deco::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 3.85em;
  aspect-ratio: 154/111;
  background: url("../images/bg-deco.png");
  background-size: 100% 100%;
}
.lower .content-subtitle {
  font-size: min(1.8229166667vw, 3.5rem);
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
}
.lower .content-subtitle > span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.lower .content-subtitle > span small {
  font-size: 2.5rem;
}
.lower .content-subtitle > span::before, .lower .content-subtitle > span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 0.6;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 1023px) {
  .lower .content-subtitle {
    font-size: min(2.2435897436vw, 3.5rem);
  }
}
@media screen and (max-width: 767px) {
  .lower .content-subtitle {
    font-size: 3.5rem;
  }
}
.lower .page-anchor-nav {
  padding-top: 10rem;
  padding-bottom: 14rem;
  width: min(100%, 1360px);
  margin: 0 auto;
}
.lower .page-anchor-nav ul {
  font-size: min(1.3020833333vw, 2.5rem);
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.2em;
}
.lower .page-anchor-nav ul li a {
  position: relative;
  width: 11.6em;
  height: 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  color: var(--white);
  padding: 0 1em;
  transition: 0.3s all;
}
.lower .page-anchor-nav ul li a.w250 {
  width: 10em;
}
.lower .page-anchor-nav ul li a.w400 {
  width: 16em;
}
.lower .page-anchor-nav ul li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--point-color);
}
.lower .page-anchor-nav ul li a::after {
  position: absolute;
  content: "";
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background: var(--point-color);
  border-radius: 1.5rem;
  border: 1px solid var(--white);
}
.lower .page-anchor-nav ul li a span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.lower .page-anchor-nav ul li a span.num {
  position: absolute;
  top: 0.5em;
  left: 1em;
  font-size: 0.88em;
}
.lower .page-anchor-nav ul li a span.txt {
  flex-grow: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.lower .page-anchor-nav ul li a span.arrow {
  font-family: "Font Awesome 6 Free";
  font-size: 0.64em;
  font-weight: 900;
  width: 1.875em;
  height: 1.875em;
  color: var(--point-color);
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}
.lower .page-anchor-nav ul li a span.arrow::before {
  content: "\f078";
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.lower .page-anchor-nav ul li a:hover {
  opacity: 0.7;
}
.lower .page-anchor-nav.flow-nav {
  padding-top: 5rem;
  padding-bottom: 8rem;
}
.lower .page-anchor-nav.flow-nav ul {
  flex-wrap: wrap;
  gap: 2.5rem 1.6025641026%;
}
.lower .page-anchor-nav.flow-nav ul li {
  width: min((100% - 4em) / 5, 10em);
}
.lower .page-anchor-nav.flow-nav ul li a {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .lower .page-anchor-nav ul {
    font-size: min(1.6025641026vw, 2.5rem);
  }
}
@media screen and (max-width: 767px) {
  .lower .page-anchor-nav {
    padding-top: 3.5rem;
    padding-bottom: 8rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lower .page-anchor-nav ul {
    font-size: 3rem;
    line-height: 1.1666666667;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .lower .page-anchor-nav ul li a {
    width: 16.6666666667em;
    height: 3.3333333333em;
    padding: 0 1.1666666667em;
  }
  .lower .page-anchor-nav ul li a.w400 {
    width: 16.6666666667em;
  }
  .lower .page-anchor-nav ul li a span {
    position: relative;
    z-index: 1;
    color: #fff;
  }
  .lower .page-anchor-nav ul li a span.txt {
    flex-grow: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .lower .page-anchor-nav ul li a span.arrow {
    font-family: "Font Awesome 6 Free";
    font-size: 0.64em;
    font-weight: 900;
    width: 1.875em;
    height: 1.875em;
    color: var(--point-color);
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .lower .page-anchor-nav ul li a span.arrow::before {
    content: "\f078";
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .lower .page-anchor-nav.flow-nav {
    padding-top: 3.5rem;
    padding-bottom: 8rem;
    padding-left: 0;
    padding-right: 0;
  }
  .lower .page-anchor-nav.flow-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .lower .page-anchor-nav.flow-nav ul li {
    width: calc((100% - 1em) / 2);
  }
  .lower .page-anchor-nav.flow-nav ul li a.w250 {
    width: 100%;
  }
}
.lower .page-anchor-btn {
  padding-top: 10rem;
  padding-bottom: 14rem;
  width: min(100%, 1360px);
  margin: 0 auto;
}
.lower .page-anchor-btn ul {
  font-size: min(1.3020833333vw, 2.5rem);
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.lower .page-anchor-btn ul li {
  width: min((100% - 3em) / 4, 12.8em);
}
.lower .page-anchor-btn ul li a {
  width: 100%;
  position: relative;
  height: auto;
  display: block;
  transition: 0.3s all;
}
.lower .page-anchor-btn ul li a img {
  width: 100%;
}
.lower .page-anchor-btn ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .lower .page-anchor-btn ul {
    font-size: min(1.6025641026vw, 2.5rem);
  }
}
@media screen and (max-width: 767px) {
  .lower .page-anchor-btn {
    padding-top: 3.5rem;
    padding-bottom: 8rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .lower .page-anchor-btn ul {
    font-size: 3rem;
    line-height: 1.1666666667;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
  }
  .lower .page-anchor-btn ul li {
    width: min((100% - 1em) / 2, 10.6666666667em);
  }
  .lower .page-anchor-btn ul li a {
    width: 100%;
    position: relative;
    height: auto;
    display: block;
    transition: 0.3s all;
  }
  .lower .page-anchor-btn ul li a img {
    width: 100%;
  }
  .lower .page-anchor-btn ul li a:hover {
    opacity: 0.7;
  }
}
.lower a.txt-link {
  color: var(--point-color);
  display: inline;
  border-bottom: 1px solid;
}
.lower a.txt-link:hover {
  opacity: 0.7;
}

/* パンくず */
.breadcrumb {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.breadcrumb ul {
  font-size: 1.8rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em;
}
.breadcrumb ul li {
  position: relative;
}
.breadcrumb ul li a {
  display: inline-block;
  line-height: 1.2;
  border-bottom: 1px solid;
  color: #989898;
}
.breadcrumb ul li a:hover {
  color: var(--point-color);
}
.breadcrumb ul li span {
  display: inline-block;
}
.breadcrumb ul li:not(:last-child)::after {
  position: relative;
  display: inline-block;
  content: "＞";
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .breadcrumb ul {
    width: 100%;
    font-size: 2.6rem;
  }
}

/*-------------------------------------------/
    お葬式価格
/-------------------------------------------*/
.cost p.topTxt {
  text-align: center;
  margin: 2rem auto 3rem;
}
@media screen and (max-width: 767px) {
  .cost p.topTxt {
    text-align: left;
  }
}
.cost #simulation .box-wrap {
  position: relative;
  width: min(100%, 136rem);
  padding: 8rem 8rem 10rem;
  margin: 0 auto;
}
.cost #simulation .box-wrap::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  content: "";
  width: 100%;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
  border-radius: 5rem;
}
.cost #simulation .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.cost #simulation .box-wrap .inner-box {
  width: min(100%, 120rem);
  margin: 3rem auto 0;
  padding: 6rem;
  background: var(--white);
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .cost #simulation.page-content {
    padding-left: 0;
    padding-right: 0;
  }
  .cost #simulation p.topTxt {
    text-align: left;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .cost #simulation .box-wrap {
    position: relative;
    width: 100%;
    padding: 8rem 2.5rem 10rem;
    margin: 0 auto;
  }
  .cost #simulation .box-wrap::before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    content: "";
    width: 100%;
    height: calc(100% - 14rem);
    background: var(--bg-color01);
    border-radius: 0;
  }
  .cost #simulation .box-wrap::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70rem;
    aspect-ratio: 700/460;
    border-radius: 50%;
    background: var(--bg-color01);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  }
  .cost #simulation .box-wrap .inner-box {
    width: min(100%, 120rem);
    margin: 3rem auto 0;
    padding: 6rem 3rem;
    background: var(--white);
    border-radius: 2rem;
  }
}
.cost #option {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.cost #option .box-wrap {
  width: min(100%, 120rem);
  margin: 0 auto;
}
.cost #option .option-title {
  position: relative;
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: first center;
  gap: 1rem;
  color: #b989f3;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
}
.cost #option .option-title::before {
  content: "";
  width: 1.92em;
  height: 1.92em;
  background: url("../images/cost/icon_option.png") no-repeat;
  background-size: 100% 100%;
  flex-shrink: 0;
}
.cost #option .option-title::after {
  content: "";
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: #b989f3;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cost #option .option-title span {
  display: inline-block;
}
.cost #option .option-title span .subTxt {
  font-size: 0.8em;
  line-height: 1.2;
  color: #000;
  font-weight: 400;
}
.cost #option .option-box {
  width: 100%;
}
.cost #option .option-box ul.option-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem;
  gap: 2rem;
}
.cost #option .option-box ul.option-list li {
  width: calc((100% - 10rem) / 6);
  align-content: center;
  background: #f8f3fe;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cost #option .option-box ul.option-list li img {
  width: min(72.2222222222%, 13rem);
}
.cost #option .option-box ul.option-list li p {
  font-size: clamp(12px, 0.9375vw, 1.8rem);
}
.cost #option .tab-content-wrap {
  width: 100%;
  margin: 12rem auto 0;
}
.cost #option .tab-content-wrap ul.tab-label-group {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2;
  display: flex;
  justify-content: center;
  gap: 9rem;
  align-items: stretch;
  transform: translateY(2px);
}
.cost #option .tab-content-wrap ul.tab-label-group li.tab_label {
  width: 40rem;
  height: 7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #b989f3;
  border-radius: 3.5rem 3.5rem 0 0;
  border: 2px solid #b989f3;
  border-bottom-color: transparent;
  cursor: pointer;
}
.cost #option .tab-content-wrap ul.tab-label-group li.tab_label.is-active {
  color: #b989f3;
  background: var(--white);
}
.cost #option .tab-content-wrap .tab-content-group {
  padding: 5rem;
  border: 2px solid #b989f3;
  background: var(--white);
  border-radius: 2rem;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content {
  width: min(100%, 100rem);
  margin: 0 auto;
  display: none;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content.is-show {
  display: block;
  animation: fadeIn 1s ease;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox p {
  line-height: 1.75;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box {
  width: min(50% - 1.5rem, 45rem);
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .pic {
  width: 100%;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box {
  padding: 1.5rem 1rem 2rem;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.ttl {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 500;
  text-align: center;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.price {
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 500;
  color: var(--point-color);
  text-align: center;
}
.cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.txt {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .cost #option .option-box {
    width: 100%;
  }
  .cost #option .option-box ul.option-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1rem;
    gap: 2rem;
  }
  .cost #option .option-box ul.option-list li {
    width: calc((100% - 6rem) / 4);
    align-content: center;
    background: #f8f3fe;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cost #option .option-box ul.option-list li img {
    width: min(72.2222222222%, 130px);
  }
  .cost #option .option-box ul.option-list li p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .cost #option .option-title {
    position: relative;
    font-size: 3.2rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    color: #b989f3;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }
  .cost #option .option-title::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background: url("../images/cost/icon_option.png") no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;
  }
  .cost #option .option-title::after {
    content: "";
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: #b989f3;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .cost #option .option-box {
    width: 100%;
  }
  .cost #option .option-box ul.option-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1rem;
    gap: 2rem;
  }
  .cost #option .option-box ul.option-list li {
    width: calc((100% - 4rem) / 3);
    align-content: center;
    background: #f8f3fe;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cost #option .option-box ul.option-list li img {
    width: min(72.2222222222%, 130px);
  }
  .cost #option .option-box ul.option-list li p {
    font-size: 2.2rem;
  }
  .cost #option .tab-content-wrap {
    width: calc(100% + 5rem);
    margin: 12rem -2.5rem 0;
  }
  .cost #option .tab-content-wrap ul.tab-label-group {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
    transform: translateY(2px);
  }
  .cost #option .tab-content-wrap ul.tab-label-group li.tab_label {
    width: 30rem;
    height: 7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #b989f3;
    border-radius: 3.5rem 3.5rem 0 0;
    border: 2px solid #b989f3;
    border-bottom-color: transparent;
    cursor: pointer;
  }
  .cost #option .tab-content-wrap ul.tab-label-group li.tab_label.is-active {
    color: #b989f3;
    background: var(--white);
  }
  .cost #option .tab-content-wrap .tab-content-group {
    padding: 5rem 2.5rem;
    border: 2px solid #b989f3;
    background: var(--white);
    border-radius: 2rem;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content {
    width: min(100%, 100rem);
    margin: 0 auto;
    display: none;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content.is-show {
    display: block;
    animation: fadeIn 1s ease;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap {
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox p {
    line-height: 1.75;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box {
    width: min(100%, 450px);
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .pic {
    width: 100%;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box {
    padding: 1.5rem 1rem 2rem;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.ttl {
    font-size: 3rem;
    line-height: 1.3333333333;
    font-weight: 500;
    text-align: center;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.price {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 500;
    color: var(--point-color);
    text-align: center;
  }
  .cost #option .tab-content-wrap .tab-content-group .tab_content .box-wrap .inbox .col2-box .item-box .text-box p.txt {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-top: 1.5rem;
  }
}
.cost #example {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
.cost #example .box-wrap .col2-box {
  display: flex;
  justify-content: center;
  gap: 6rem;
}
.cost #example .box-wrap .col2-box .item-box {
  width: 47rem;
  padding: 3rem 3rem 2rem;
  border-radius: 2rem;
  background: #f0f3dd;
}
.cost #example .box-wrap .col2-box .item-box .inbox {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
}
.cost #example .box-wrap .col2-box .item-box .inbox .text-box {
  flex-grow: 1;
}
.cost #example .box-wrap .col2-box .item-box .inbox .text-box p {
  line-height: 1.5;
}
.cost #example .box-wrap .col2-box .item-box .inbox .text-box p.caution {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  margin-top: 0.5em;
}
.cost #example .box-wrap .col2-box .item-box .inbox .illust-box {
  width: 12rem;
  flex-shrink: 0;
}
.cost #example .box-wrap .col2-box .item-box .inbox .illust-box img {
  width: 100%;
}
.cost #example .box-wrap .col2-box .item-box .content-subtitle {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .cost #example .box-wrap .col2-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 6rem;
  }
  .cost #example .box-wrap .col2-box .item-box {
    width: min(100%, 470px);
    padding: 3rem;
    border-radius: 2rem;
    background: #f0f3dd;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox .text-box {
    flex-grow: 1;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox .text-box p {
    line-height: 1.6666666667;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox .text-box p.caution {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    margin-top: 0.5em;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox .illust-box {
    width: 12rem;
    flex-shrink: 0;
    align-self: flex-end;
  }
  .cost #example .box-wrap .col2-box .item-box .inbox .illust-box img {
    width: 100%;
  }
  .cost #example .box-wrap .col2-box .item-box .content-subtitle {
    font-size: 3.2rem;
  }
}

/* 見積シミュレーション */
#simulation .formbox .simulation-area table.form-wrap {
  font-size: min(1.0416666667vw, 2rem);
  width: 100%;
}
#simulation .formbox .simulation-area table.form-wrap tr th {
  font-size: 1.1em;
  font-weight: 500;
  padding: 1.25em 0.5em;
  text-align: left;
  width: 14.5454545455em;
  border-bottom: 1px solid #95a392;
  vertical-align: top;
}
#simulation .formbox .simulation-area table.form-wrap tr td {
  padding: 1.25em 0.5em;
  width: calc(100% - 16em);
  border-bottom: 1px solid #95a392;
}
#simulation .formbox .simulation-area p {
  line-height: 1.5;
}
#simulation .formbox .simulation-area p.ttl {
  font-weight: 500;
  color: #b989f3;
  text-decoration: underline;
}
#simulation .formbox .simulation-area p.caution {
  color: #fc9940;
}
#simulation .formbox .simulation-area p.item-ttl {
  color: #b989f3;
  font-weight: 500;
  width: 4em;
}
#simulation .formbox .simulation-area .input-field {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1em 2em;
}
#simulation .formbox .simulation-area .input-field > .inbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#simulation .formbox .simulation-area .input-field .input-field_in,
#simulation .formbox .simulation-area .input-field div[data-class=wpcf7cf_group] {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
#simulation .formbox .simulation-area .input-field .input-field_in.check-group div[data-class=wpcf7cf_group],
#simulation .formbox .simulation-area .input-field div[data-class=wpcf7cf_group].check-group div[data-class=wpcf7cf_group] {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
}
#simulation .formbox .simulation-area .input-field-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.25em;
}
#simulation .formbox .simulation-area .input-field-wrap .input-field_in {
  width: 100%;
  padding: 0.75em 0;
  border-top: 1px solid #95a392;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
}
#simulation .formbox .simulation-area .input-field-wrap .input-field_in .bottomTxt {
  display: inline-block;
  margin-left: 5em;
  font-size: max(12px, 0.8em);
}
#simulation .formbox .simulation-area .calculated-price-box,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0 1em;
}
#simulation .formbox .simulation-area .calculated-price-box span,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span {
  display: inline-flex;
}
#simulation .formbox .simulation-area .calculated-price-box span.fbox,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.fbox {
  display: inline-flex;
  flex-shrink: 0;
}
#simulation .formbox .simulation-area .calculated-price-box span span.c-number,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span span.c-number {
  border-bottom: 1px solid #000;
  min-width: 2em;
  max-width: 3em;
  text-align: center;
}
#simulation .formbox .simulation-area .calculated-price-box span span.c-number .wpcf7-form-control,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span span.c-number .wpcf7-form-control {
  width: 100%;
  text-align: center;
}
#simulation .formbox .simulation-area .calculated-price-box span.c-price,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price {
  font-size: 1.2em;
}
#simulation .formbox .simulation-area .calculated-price-box span.c-price .wpcf7-form-control-wrap,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price .wpcf7-form-control-wrap {
  max-width: 4em;
}
#simulation .formbox .simulation-area .calculated-price-box span.c-price .wpcf7-form-control-wrap .wpcf7-form-control,
#simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
}
#simulation .formbox .simulation-area .cal-number {
  min-width: 2em;
  display: inline-flex;
}
#simulation .formbox .simulation-area .cal-number .wpcf7-form-control-wrap {
  width: inherit;
  margin: 0;
}
#simulation .formbox .simulation-area .cal-number .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  text-align: center;
}
#simulation .formbox .simulation-area .cal-number .calculated-001 {
  display: inline-block;
}
#simulation .formbox .simulation-area .calculation-result-area {
  width: min(100%, 90rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem;
  margin: 5rem auto;
  background: var(--bg-color01);
  border-radius: 2rem;
}
#simulation .formbox .simulation-area .calculation-result-area .btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#simulation .formbox .simulation-area .calculation-result-area .btn-box .wpcf7-spinner {
  display: none;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  pointer-events: none;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box {
  width: 37rem;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  background: var(--white);
  border-radius: 2rem;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box p.title {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.1363636364;
  width: 4em;
  flex-shrink: 0;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box p.title.member {
  color: var(--sub-color);
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box p.title.no-member {
  color: #646464;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box p.price {
  font-size: 1.4em;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box p.price .tax {
  font-size: 0.5714285714em;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] {
  flex-grow: 1;
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] .hide-area {
  width: 100%;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span {
  display: inline-block;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span.cal-price-box {
  display: inline-flex;
  align-items: baseline;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span.cal-price-box .price {
  width: 100%;
  display: inline-flex;
  align-items: center;
  min-width: 5em;
  font-size: 1.4em;
  line-height: 1;
}
#simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span.cal-price-box .tax {
  font-size: 0.8em;
  flex-shrink: 0;
}
#simulation .formbox .recruiting-members {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-top: 8rem;
}
#simulation .formbox .recruiting-members .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
}
#simulation .formbox .recruiting-members .title span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--sub-color);
  width: 12.5em;
  height: 2em;
  border-radius: 1em;
  text-align: center;
}
#simulation .formbox .recruiting-members .title span::before {
  position: absolute;
  right: calc(100% - 0.5em);
  bottom: 0;
  z-index: 1;
  content: "";
  width: 1.75em;
  aspect-ratio: 70/93;
  background: url("../images/member/illust_01.png") no-repeat;
  background-size: 100% 100%;
}
#simulation .formbox .recruiting-members .title span::after {
  position: absolute;
  left: calc(100% - 0.5em);
  bottom: -0.25em;
  z-index: 1;
  content: "";
  width: 1.95em;
  aspect-ratio: 78/118;
  background: url("../images/member/illust_02.png") no-repeat;
  background-size: 100% 100%;
}
#simulation form {
  font-size: min(1.0416666667vw, 2rem);
  line-height: 1.5;
  width: 100%;
  /* Contact Form 7が追加する余計なスタイルをリセット */
}
#simulation form .wpcf7-form-control,
#simulation form .wpcf7-form {
  width: inherit;
  margin: 0;
}
#simulation form .wpcf7-form-control-wrap {
  width: inherit;
  margin: 0;
  display: flex;
  flex-grow: 1;
}
#simulation form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 1.5em;
}
#simulation form .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
#simulation form .wpcf7-checkbox,
#simulation form .saidan .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 1.5em;
}
#simulation form .wpcf7-checkbox .wpcf7-list-item,
#simulation form .saidan .wpcf7-form-control .wpcf7-list-item {
  margin-left: 0;
}
#simulation form .wpcf7-checkbox.col2-wrap .wpcf7-list-item,
#simulation form .saidan .wpcf7-form-control.col2-wrap .wpcf7-list-item {
  width: 32rem;
  flex-direction: column;
  flex-grow: 1;
}
#simulation form .wpcf7-checkbox.radio-altar .wpcf7-list-item.first::after,
#simulation form .saidan .wpcf7-form-control.radio-altar .wpcf7-list-item.first::after {
  display: inline-block;
  content: "";
  width: 100%;
  aspect-ratio: 320/200;
  background: url("../images/cost/img_saidan_01.png") no-repeat;
  background-size: 100% 100%;
  margin: 2rem 0;
}
#simulation form .wpcf7-checkbox.radio-altar .wpcf7-list-item.last::after,
#simulation form .saidan .wpcf7-form-control.radio-altar .wpcf7-list-item.last::after {
  display: inline-block;
  content: "";
  width: 100%;
  aspect-ratio: 320/200;
  background: url("../images/cost/img_saidan_02.png") no-repeat;
  background-size: 100% 100%;
  margin: 2rem 0;
}
#simulation form .saidan.is-family .f-image-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 1.5em;
}
#simulation form .saidan.is-family .f-image-wrap .inbox-item {
  width: min(50% - 0.75em, 320px);
  flex-direction: column;
}
@media screen and (max-width: 500px) {
  #simulation form .saidan.is-family .f-image-wrap .inbox-item {
    width: 100%;
  }
}
#simulation form .saidan.is-family .f-image-wrap .saidan-image {
  width: 100%;
  aspect-ratio: 320/200;
  margin-top: 2rem;
  display: none;
}
#simulation form .saidan.is-family.hall01 .f-image-wrap .saidan-image,
#simulation form .saidan.is-family.hall03 .f-image-wrap .saidan-image {
  display: block;
  background: url("../images/cost/img_f-saidan_01.png") no-repeat;
  background-size: 100% 100%;
}
#simulation form .saidan.is-family.hall02 .f-image-wrap .saidan-image {
  display: block;
  background: url("../images/cost/img_f-saidan_02.png") no-repeat;
  background-size: 100% 100%;
}
#simulation form .saidan.is-family.hall04 .f-image-wrap .saidan-image {
  display: block;
  background: url("../images/cost/img_f-saidan_03.png") no-repeat;
  background-size: 100% 100%;
}
#simulation form input[type=number] {
  padding: 0.25em 0.5em;
  background: #fff;
  border-radius: 0.4rem;
  outline: 1px solid #000;
  text-align: center;
  margin: 0 0.5em;
}
#simulation form input[type=number].input_num {
  border-radius: 0;
  outline: none;
  margin: 0;
  padding: 0.25em 0;
}
#simulation form input[type=number].input_num:-moz-read-only {
  opacity: 0.5;
}
#simulation form input[type=number].input_num:read-only {
  opacity: 0.5;
}
#simulation form input[type=number] {
  width: 4em;
}
#simulation form input[type=number].wpcf7-free-text:disabled {
  background: #fcfbfa;
}
#simulation form .check-group .wpcf7-form-control-wrap,
#simulation form .wpcf7-checkbox.radio-option .wpcf7-form-control-wrap,
#simulation form .radio-group .wpcf7-form-control-wrap {
  width: inherit;
  margin: 0;
}
#simulation form .check-group .wpcf7-form-control-wrap .wpcf7-list-item,
#simulation form .wpcf7-checkbox.radio-option .wpcf7-form-control-wrap .wpcf7-list-item,
#simulation form .radio-group .wpcf7-form-control-wrap .wpcf7-list-item {
  display: flex;
  margin: 0;
}
#simulation form .check-group .wpcf7-form-control-wrap .wpcf7-list-item label,
#simulation form .wpcf7-checkbox.radio-option .wpcf7-form-control-wrap .wpcf7-list-item label,
#simulation form .radio-group .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#simulation form .check-group div[data-class=wpcf7cf_group],
#simulation form .check-group .wpcf7-checkbox,
#simulation form .wpcf7-checkbox.radio-option div[data-class=wpcf7cf_group],
#simulation form .wpcf7-checkbox.radio-option .wpcf7-checkbox,
#simulation form .radio-group div[data-class=wpcf7cf_group],
#simulation form .radio-group .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
}
#simulation form .check-group .wpcf7-list-item-label,
#simulation form .wpcf7-checkbox.radio-option .wpcf7-list-item-label,
#simulation form .radio-group .wpcf7-list-item-label {
  position: relative;
  height: 1em;
  line-height: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}
#simulation form input[type=checkbox],
#simulation form input[type=radio] {
  position: relative;
  width: 2.2em;
  height: 2.2em;
  border-radius: 0.4rem;
  border: 1px solid #000;
  margin: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
#simulation form input[type=checkbox]:checked::after,
#simulation form input[type=radio]:checked::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  width: 1.6em;
  height: 0.8em;
  background-color: transparent;
  border-left: 0.4rem solid #000;
  border-bottom: 0.4rem solid #000;
  top: 0.25em;
  left: 0.25em;
  transform: rotate(-45deg);
}
#simulation form .btn-submit {
  font-size: 1.1em;
  width: 18.1818181818em;
  height: 2.9545454545em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--point-color);
  outline: 2px solid var(--white);
  border-radius: 1.4772727273em;
  transition: 0.3s all;
}
#simulation form .btn-submit:hover {
  opacity: 0.7;
  transform: scale(1.01);
}
#simulation form .edit_button,
#simulation form .exit_button {
  font-size: 1em;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.9545454545em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--point-color);
  outline: 2px solid var(--white);
  border-radius: 1.4772727273em;
  padding: 0 2em;
  transition: 0.3s all;
}
#simulation form .edit_button:hover,
#simulation form .exit_button:hover {
  opacity: 0.7;
  transform: scale(1.01);
}
#simulation .saidan .inbox {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#simulation .error .wpcf7-not-valid-tip {
  display: none !important;
}
#simulation .error .error-message {
  color: red;
  display: none;
}
#simulation .error:has(.wpcf7-not-valid-tip) .error-message {
  display: block;
  margin: 1rem 0;
}
#simulation table.confirm-active {
  pointer-events: none;
}
#simulation table.confirm-active select[readonly],
#simulation table.confirm-active input[type=radio][readonly],
#simulation table.confirm-active input[type=checkbox][readonly] {
  pointer-events: none;
  opacity: 0.5;
}
@media screen and (max-width: 1199px) {
  #simulation .formbox .simulation-area table.form-wrap {
    font-size: min(1.2820512821vw, 2rem);
  }
  #simulation .formbox .simulation-area table.form-wrap tr th {
    display: block;
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
  #simulation .formbox .simulation-area table.form-wrap tr td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #95a392;
  }
  #simulation form {
    font-size: min(1.2820512821vw, 2rem);
  }
}
@media screen and (max-width: 767px) {
  #simulation .formbox .simulation-area table.form-wrap {
    font-size: 2.8rem;
  }
  #simulation .formbox .simulation-area .input-field-wrap .input-field_in .bottomTxt {
    display: inline-block;
    margin-left: 0;
    font-size: 2.6rem;
  }
  #simulation .formbox .simulation-area .calculated-price-box,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 0.5em;
  }
  #simulation .formbox .simulation-area .calculated-price-box span,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span {
    display: inline-flex;
  }
  #simulation .formbox .simulation-area .calculated-price-box span.fbox,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.fbox {
    display: inline-flex;
    flex-shrink: 0;
  }
  #simulation .formbox .simulation-area .calculated-price-box span span.c-number,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span span.c-number {
    border-bottom: 1px solid #000;
    min-width: 2em;
    max-width: 3em;
    text-align: center;
  }
  #simulation .formbox .simulation-area .calculated-price-box span span.c-number .wpcf7-form-control,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span span.c-number .wpcf7-form-control {
    width: 100%;
    text-align: center;
  }
  #simulation .formbox .simulation-area .calculated-price-box span.c-price,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price {
    font-size: 1.2em;
  }
  #simulation .formbox .simulation-area .calculated-price-box span.c-price .wpcf7-form-control-wrap,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price .wpcf7-form-control-wrap {
    max-width: 5em;
  }
  #simulation .formbox .simulation-area .calculated-price-box span.c-price .wpcf7-form-control-wrap .wpcf7-form-control,
  #simulation .formbox .simulation-area div[data-class=wpcf7cf_group] span.c-price .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
  }
  #simulation .formbox .simulation-area .calculation-result-area {
    width: min(100%, 90rem);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.5rem;
    padding: 5rem 3rem;
    margin: 5rem auto;
    background: var(--bg-color01);
    border-radius: 2rem;
  }
  #simulation .formbox .simulation-area .calculation-result-area .btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #simulation .formbox .simulation-area .calculation-result-area .btn-box .wpcf7-spinner {
    display: none;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box {
    width: min(100%, 350px);
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    background: var(--white);
    border-radius: 2rem;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box p.title {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.1363636364;
    width: auto;
    flex-shrink: 0;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box p.title.member {
    color: var(--sub-color);
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box p.title.no-member {
    color: #646464;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] {
    flex-grow: 1;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] .hide-area {
    width: 100%;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span {
    display: inline-block;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span.cal-price-box {
    font-size: 1.3333333333em;
  }
  #simulation .formbox .simulation-area .calculation-result-area .cal-box div[data-class=wpcf7cf_group] span.tax {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  #simulation form {
    font-size: 2.8rem;
  }
  #simulation form .wpcf7-radio,
  #simulation form .wpcf7-checkbox {
    gap: 0.5em 1.5em;
  }
  #simulation form .wpcf7-radio .wpcf7-list-item,
  #simulation form .wpcf7-checkbox .wpcf7-list-item {
    min-width: 10em;
    flex-grow: 1;
  }
}

/*-------------------------------------------/
    ホールのご案内
/-------------------------------------------*/
.hall #lead {
  position: relative;
}
.hall #lead::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  content: "";
  width: 100vw;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
}
.hall #lead .box-wrap {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.hall #lead .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.hall #lead .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.hall #lead .service-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 6rem;
  margin: 16rem auto 0;
}
.hall #lead .service-box .inbox {
  width: min(50% - 3rem, 600px);
  padding: 3rem 2.5rem;
  border-radius: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.hall #lead .service-box .inbox .illust-box {
  width: min(100% - 5rem, 36rem);
  margin-top: -16rem;
}
.hall #lead .service-box .inbox .illust-box img {
  width: 100%;
}
.hall #lead .service-box .inbox .inner {
  width: min(100% - 5rem, 48rem);
  margin: 0 auto;
}
.hall #lead .service-box .inbox .inner p span {
  color: #fc9940;
  font-weight: 500;
}
.hall #lead .merrit-box {
  width: min(100%, 136rem);
  margin: 10rem auto 0;
}
.hall #lead .merrit-box ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 6rem 3rem;
}
.hall #lead .merrit-box ul li {
  position: relative;
  width: 43rem;
  min-height: 20rem;
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.hall #lead .merrit-box ul li p {
  text-align: center;
}
.hall #lead .merrit-box ul li p.num {
  position: absolute;
  top: -3rem;
  right: 3.5rem;
  font-size: 3rem;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: #fc9940;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .hall #lead .service-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16rem;
    margin: 16rem auto 0;
  }
  .hall #lead .service-box .inbox {
    width: min(100%, 600px);
    padding: 3rem;
    border-radius: 3rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .hall #lead .service-box .inbox .illust-box {
    width: min(60%, 36rem);
    margin-top: -16rem;
  }
  .hall #lead .service-box .inbox .illust-box img {
    width: 100%;
  }
  .hall #lead .service-box .inbox .inner {
    width: calc(100% - 5rem);
    margin: 0 auto;
  }
  .hall #lead .service-box .inbox .inner p span {
    color: #fc9940;
    font-weight: 500;
  }
  .hall #lead .merrit-box {
    width: min(100%, 136rem);
    margin: 10rem auto 0;
  }
  .hall #lead .merrit-box ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 6rem 3rem;
  }
  .hall #lead .merrit-box ul li {
    position: relative;
    width: min(100%, 430px);
    min-height: 20rem;
    background: var(--white);
    border-radius: 2rem;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .hall #lead .merrit-box ul li p {
    text-align: center;
  }
  .hall #lead .merrit-box ul li p.num {
    position: absolute;
    top: -3rem;
    right: 3.5rem;
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: #fc9940;
    border-radius: 50%;
  }
}
.hall #hall-infomation {
  padding-top: 10rem;
}
.hall #hall-infomation .box-wrap {
  width: min(100%, 136rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hall #hall-infomation .hall-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 10rem;
  margin: 4rem auto 0;
  gap: 4rem 8rem;
}
.hall #hall-infomation .hall-box .title-box {
  width: 100%;
  text-align: center;
}
.hall #hall-infomation .hall-box .title-box .hall-title {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.hall #hall-infomation .hall-box .title-box .hall-title span {
  display: inline-block;
}
.hall #hall-infomation .hall-box .title-box .hall-title span.tag-txt {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  color: var(--white);
  background: #95a392;
  border-radius: 1.5rem;
  padding: 0 1em;
  margin-bottom: 1rem;
}
.hall #hall-infomation .hall-box .title-box .hall-title span.sub-txt {
  font-size: 3rem;
  line-height: 1.2;
}
.hall #hall-infomation .hall-box .title-box .hall-title span.ttl-txt {
  color: #599f4e;
}
.hall #hall-infomation .hall-box .hall-detail {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.hall #hall-infomation .hall-box .hall-detail .main-image {
  width: min(51.4705882353%, 70rem);
  border-radius: 2rem;
  overflow: hidden;
}
.hall #hall-infomation .hall-box .hall-detail .main-image .slide-item {
  width: 100%;
}
.hall #hall-infomation .hall-box .hall-detail .main-image .slide-item img {
  width: 100%;
}
.hall #hall-infomation .hall-box .hall-detail .text-box {
  width: min(42.6470588235%, 58rem);
  align-self: center;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box {
  width: 100%;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box table {
  font-size: 2.2rem;
  line-height: 1.2;
  width: 100%;
  border-top: 1px solid #95a392;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box table tr th {
  font-weight: 400;
  line-height: cal(35/20);
  color: #808080;
  background: #f9faf1;
  padding: 1.75rem;
  width: 15rem;
  border-bottom: 1px solid #95a392;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box table tr td {
  padding: 1.75rem 4rem;
  width: calc(100% - 15rem);
  border-bottom: 1px solid #95a392;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box .link-access {
  font-size: 1.6rem;
  line-height: 1.5625;
  padding: 0 0.5em;
  color: var(--white);
  background: var(--point-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: 0.3s all;
}
.hall #hall-infomation .hall-box .hall-detail .text-box .table-box .link-access:hover {
  opacity: 0.7;
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem 3.5rem;
  margin: 8rem auto 0;
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox {
  width: min((100% - 7rem) / 3, 43rem);
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox .pic {
  position: relative;
  width: 100%;
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox .pic img {
  width: 100%;
  border-radius: 2rem;
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox p.caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: inline-block;
  line-height: 1.75;
  color: var(--white);
  min-width: 14rem;
  text-align: center;
  background: #95a392;
  border-radius: 1.75rem;
}
.hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox p.txt {
  padding: 1rem;
  text-align: center;
  line-height: 1.5;
  max-width: 17em;
  margin: 0 auto;
}
.hall #hall-infomation .hall-box .hall-detail .access-box {
  width: 100%;
  margin: 6rem auto 0;
  background: #f9faf1;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 5rem;
}
.hall #hall-infomation .hall-box .hall-detail .access-box .gmap {
  width: min(100%, 110rem);
  height: 35rem;
  margin: 3rem auto 0;
  border: 3px solid var(--white);
  border-radius: 2rem;
  overflow: hidden;
}
.hall #hall-infomation .hall-box .hall-detail .access-box .gmap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hall #hall-infomation .hall-box .hall-detail .root-box {
  width: min(100%, 110rem);
  margin: 5rem auto 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.hall #hall-infomation .hall-box .hall-detail .root-box p.title {
  font-size: 2.2rem;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: first center;
  gap: 2rem;
  color: #4d9842;
}
.hall #hall-infomation .hall-box .hall-detail .root-box p.title span {
  display: inline-block;
}
.hall #hall-infomation .hall-box .hall-detail .root-box p.title span.icon {
  width: 2.7272727273em;
  flex-shrink: 0;
}
.hall #hall-infomation .hall-box .hall-detail .root-box .inbox {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hall #hall-infomation .hall-box .hall-detail .root-box .inbox .info-txt {
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .hall #hall-infomation {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .hall #hall-infomation .hall-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 10rem;
    margin: 4rem auto 0;
    gap: 4rem 8rem;
  }
  .hall #hall-infomation .hall-box .title-box {
    width: min(100%, 550px);
    text-align: center;
  }
  .hall #hall-infomation .hall-box .title-box .hall-title {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }
  .hall #hall-infomation .hall-box .title-box .hall-title span {
    display: inline-block;
  }
  .hall #hall-infomation .hall-box .title-box .hall-title span.tag-txt {
    font-size: 3rem;
    line-height: 1.3333333333;
    color: var(--white);
    background: #95a392;
    border-radius: 2rem;
  }
  .hall #hall-infomation .hall-box .title-box .hall-title span.sub-txt {
    font-size: 3rem;
    line-height: 1.2;
  }
  .hall #hall-infomation .hall-box .title-box .hall-title span.ttl-txt {
    color: #599f4e;
  }
  .hall #hall-infomation .hall-box .title-box p {
    text-align: left;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hall #hall-infomation .hall-box .hall-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .hall #hall-infomation .hall-box .hall-detail .main-image {
    width: min(100%, 600px);
    border-radius: 2rem;
    overflow: hidden;
  }
  .hall #hall-infomation .hall-box .hall-detail .main-image .slide-item {
    width: 100%;
  }
  .hall #hall-infomation .hall-box .hall-detail .main-image .slide-item img {
    width: 100%;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box {
    width: min(100%, 550px);
    margin-top: 5rem;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box {
    width: 100%;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box table {
    font-size: 3rem;
    line-height: 1.5;
    width: 100%;
    border-top: 1px solid #95a392;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box table tr th {
    font-weight: 400;
    line-height: cal(40/30);
    color: #808080;
    background: #f9faf1;
    padding: 1.75rem;
    width: 18rem;
    border-bottom: 1px solid #95a392;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box table tr td {
    padding: 1.75rem 2.5rem;
    width: calc(100% - 18rem);
    border-bottom: 1px solid #95a392;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box .link-access {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    padding: 0 0.5em;
    color: var(--white);
    background: var(--point-color);
    border-radius: 0.5rem;
    text-align: center;
    transition: 0.3s all;
  }
  .hall #hall-infomation .hall-box .hall-detail .text-box .table-box .link-access:hover {
    opacity: 0.7;
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 8rem auto 0;
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox {
    width: min((100% - 2rem) / 2, 43rem);
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox .pic {
    position: relative;
    width: 100%;
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox .pic img {
    width: 100%;
    border-radius: 2rem;
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox p.caption {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: inline-block;
    font-size: 2.6rem;
    line-height: 1.5384615385;
    color: var(--white);
    min-width: 14rem;
    text-align: center;
    background: #95a392;
    border-radius: 1.75rem;
  }
  .hall #hall-infomation .hall-box .hall-detail .sub-image-wrap .inbox p.txt {
    font-size: 2.8rem;
    padding: 1rem;
    text-align: center;
    line-height: 1.5;
  }
  .hall #hall-infomation .hall-box .hall-detail .access-box {
    width: 100%;
    margin: 6rem auto 0;
    background: #f9faf1;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 2.5rem;
  }
  .hall #hall-infomation .hall-box .hall-detail .access-box .gmap {
    width: min(100%, 110rem);
    height: 35rem;
    margin: 3rem auto 0;
    border: 3px solid var(--white);
    border-radius: 2rem;
    overflow: hidden;
  }
  .hall #hall-infomation .hall-box .hall-detail .access-box .gmap iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box {
    width: min(100%, 110rem);
    margin: 5rem auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box p.title {
    font-size: 3.2rem;
    display: flex;
    justify-content: flex-start;
    align-items: first center;
    gap: 2rem;
    color: #4d9842;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box p.title span {
    display: inline-block;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box p.title span.icon {
    width: 6rem;
    flex-shrink: 0;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box .inbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-shrink: unset;
  }
  .hall #hall-infomation .hall-box .hall-detail .root-box .inbox .info-txt {
    padding-left: 2.5rem;
  }
}

/*-------------------------------------------/
    葬儀の流れ
/-------------------------------------------*/
.flow #lead .box-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.flow #lead .box-wrap .lead-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.flow #lead .box-wrap .lead-box p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow #lead .box-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
  .flow #lead .box-wrap .lead-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .flow #lead .box-wrap .lead-box p {
    text-align: left;
  }
}
.flow #sec-flow {
  padding-bottom: 10rem;
}
.flow #sec-flow .box-wrap {
  width: min(100%, 136rem);
  margin: 0 auto;
  padding: 5rem 5rem 0;
  border-radius: 5rem;
  background: var(--bg-color01);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
.flow #sec-flow .box-wrap .flow-box {
  position: relative;
  width: min(100%, 120rem);
  margin: 0 auto;
  padding: 3rem 5rem 8rem;
  background: var(--white);
  border-radius: 5rem;
}
.flow #sec-flow .box-wrap .flow-box:not(:last-child)::after {
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 11.2rem;
  height: 3.6rem;
  background: url("../images/flow/arrow.png") no-repeat;
  background-size: 100% 100%;
}
.flow #sec-flow .box-wrap .flow-box > .inner {
  width: min(100%, 100rem);
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox {
  margin-top: 2rem;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
  color: #fc9940;
  font-weight: 500;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span {
  display: inline-block;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.num {
  font-size: 3rem;
  width: 6rem;
  height: 6rem;
  color: var(--white);
  background: #fc9940;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.txt01 {
  font-size: 2.4rem;
  line-height: 1.4;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.line {
  width: 3em;
  height: 1px;
  background: #fc9940;
  flex-grow: 1;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.txt02 {
  margin-left: auto;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox p .ttl {
  font-size: 1.1em;
  font-weight: 500;
  color: #6f7d1d;
}
.flow #sec-flow .box-wrap .flow-box > .inner .inbox > .inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.flow #sec-flow .box-wrap .flow-box .flow-title {
  position: relative;
  z-index: 0;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 500;
  color: #6f7d1d;
  padding-top: 1em;
  padding-bottom: 0.5em;
}
.flow #sec-flow .box-wrap .flow-box .flow-title::before {
  content: "";
  width: 3.85em;
  aspect-ratio: 154/111;
  background: url("../images/bg-deco2.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  left: -1.25em;
  top: 0;
}
.flow #sec-flow .box-wrap .flow-box .flow-title span.num {
  position: absolute;
  top: 0;
  left: -1.25em;
}
.flow #sec-flow .box-wrap .flow-box p {
  line-height: 1.75;
}
.flow #sec-flow .box-wrap .flow-box p span {
  font-weight: 500;
  color: #fc9940;
}
.flow #sec-flow .box-wrap .flow-box p span.point {
  font-size: 1.2em;
}
.flow #sec-flow .box-wrap .flow-box .text-box {
  width: 58rem;
  flex-grow: 1;
}
.flow #sec-flow .box-wrap .flow-box .illust-box {
  position: relative;
  width: min(32%, 32rem);
  flex-shrink: 0;
}
.flow #sec-flow .box-wrap .flow-box .illust-box img {
  position: absolute;
  bottom: 0;
}
.flow #sec-flow .box-wrap .btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.flow #sec-flow .box-wrap .btn-box .btn-link {
  position: relative;
  padding: 0 2em;
  line-height: 2.5;
  background: var(--point-color);
  color: var(--white);
  border-radius: 1.25em;
  margin-left: 3em;
  transition: 0.3s all;
}
.flow #sec-flow .box-wrap .btn-box .btn-link::after {
  content: "";
  position: absolute;
  top: -1em;
  left: -3em;
  width: 4.35em;
  aspect-ratio: 87/62;
  background: url("../images/flow/fukidashi.png") no-repeat;
  background-size: 100% 100%;
  transition: 0.3s all;
}
.flow #sec-flow .box-wrap .btn-box .btn-link:hover {
  background: rgba(77, 152, 66, 0.7);
}
.flow #sec-flow .box-wrap .btn-box .btn-link:hover::after {
  transform: scale(1.02);
}
.flow #sec-flow .box-wrap .col2-box {
  display: flex;
  gap: 6rem;
}
.flow #sec-flow .box-wrap .col2-box .text-box {
  min-height: 12rem;
}
.flow #sec-flow .box-wrap .consultation-box {
  position: relative;
  z-index: 0;
  width: min(100%, 100rem);
  margin: 3rem auto 0;
  padding-left: 30rem;
}
.flow #sec-flow .box-wrap .consultation-box::before {
  position: absolute;
  z-index: -1;
  left: -4rem;
  bottom: 0;
  content: "";
  width: 40rem;
  aspect-ratio: 400/410;
  background: url("../images/flow/img_01.png") center bottom no-repeat;
  background-size: 100% 100%;
}
.flow #sec-flow .box-wrap .consultation-box .text-box .title {
  font-size: 3rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
.flow #sec-flow .box-wrap .consultation-box .text-box .title span {
  display: inline-block;
  color: var(--white);
  background: #fc9940;
  border-radius: 27.5rem;
  padding: 0 3rem;
}
.flow #sec-flow .box-wrap .consultation-box .text-box .inner {
  padding: 3rem 0 9rem 3rem;
}
@media screen and (max-width: 767px) {
  .flow #sec-flow {
    padding-left: 0;
    padding-right: 0;
  }
  .flow #sec-flow .box-wrap {
    width: 100%;
    padding: 8rem 2.5rem 0;
    border-radius: 0;
  }
  .flow #sec-flow .box-wrap .flow-box {
    width: min(100%, 120rem);
    margin: 0 auto;
    padding: 5rem 2.5rem;
    background: var(--white);
    border-radius: 5rem;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner {
    width: min(100%, 100rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox {
    margin-top: 2rem;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    color: #fc9940;
    font-weight: 500;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span {
    display: inline-block;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.num {
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    background: #fc9940;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.txt01 {
    font-size: 3.2rem;
    width: calc(100% - 7rem);
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.line {
    width: 3em;
    height: 1px;
    background: #fc9940;
    flex-grow: 1;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox .ttl-box span.txt02 {
    margin-left: 0;
  }
  .flow #sec-flow .box-wrap .flow-box > .inner .inbox p .ttl {
    font-size: 1.1em;
    font-weight: 500;
    color: #6f7d1d;
  }
  .flow #sec-flow .box-wrap .flow-box .flow-title {
    position: relative;
    z-index: 0;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    color: #6f7d1d;
    padding-top: 1em;
    padding-bottom: 0.5em;
  }
  .flow #sec-flow .box-wrap .flow-box .flow-title::before {
    content: "";
    width: 3.85em;
    aspect-ratio: 154/111;
    background: url("../images/bg-deco2.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: -1;
    left: -0.75em;
    top: 0;
  }
  .flow #sec-flow .box-wrap .flow-box .flow-title span.num {
    position: relative;
    top: 0;
    left: 0;
    margin-right: 1em;
  }
  .flow #sec-flow .box-wrap .flow-box p {
    line-height: 1.6666666667;
  }
  .flow #sec-flow .box-wrap .flow-box p span {
    font-weight: 500;
    color: #fc9940;
  }
  .flow #sec-flow .box-wrap .flow-box p span.point {
    font-size: 1.0666666667em;
  }
  .flow #sec-flow .box-wrap .btn-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem 1rem;
    margin-top: 3rem;
  }
  .flow #sec-flow .box-wrap .btn-box .btn-link {
    position: relative;
    padding: 0.5em 2em;
    line-height: 1.2;
    background: var(--point-color);
    color: var(--white);
    border-radius: 1.25em;
    margin-left: 3em;
    transition: 0.3s all;
  }
  .flow #sec-flow .box-wrap .btn-box .btn-link::after {
    content: "";
    position: absolute;
    top: -1em;
    left: -3em;
    width: 4.35em;
    aspect-ratio: 87/62;
    background: url("../images/flow/fukidashi.png") no-repeat;
    background-size: 100% 100%;
    transition: 0.3s all;
  }
  .flow #sec-flow .box-wrap .btn-box .btn-link:hover {
    background: rgba(77, 152, 66, 0.7);
  }
  .flow #sec-flow .box-wrap .btn-box .btn-link:hover::after {
    transform: scale(1.02);
  }
  .flow #sec-flow .box-wrap .col2-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .flow #sec-flow .box-wrap .col2-box .text-box {
    width: 100%;
    flex-shrink: unset;
  }
  .flow #sec-flow .box-wrap .col2-box .illust-box {
    position: relative;
    width: 32rem;
  }
  .flow #sec-flow .box-wrap .col2-box .illust-box img {
    position: relative;
  }
  .flow #sec-flow .box-wrap .consultation-box {
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 3rem auto 0;
    padding-left: 0;
  }
  .flow #sec-flow .box-wrap .consultation-box::before {
    position: absolute;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: "";
    width: 40rem;
    aspect-ratio: 400/410;
    background: url("../images/flow/img_01.png") center bottom no-repeat;
    background-size: 100% 100%;
  }
  .flow #sec-flow .box-wrap .consultation-box .text-box .title {
    text-align: center;
    font-size: 4rem;
    line-height: 1.6666666667;
    font-weight: 500;
  }
  .flow #sec-flow .box-wrap .consultation-box .text-box .title span {
    display: inline-block;
    color: var(--white);
    background: #fc9940;
    border-radius: 27.5rem;
    padding: 0 1.5em;
  }
  .flow #sec-flow .box-wrap .consultation-box .text-box .inner {
    padding: 3rem 5rem 45rem 5rem;
  }
  .flow #sec-flow .box-wrap .consultation-box .text-box .inner p {
    line-height: 1.6666666667;
  }
}

/*-------------------------------------------/
    会員特典
/-------------------------------------------*/
.member #lead {
  width: min(100%, 100rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-top: 10rem;
  padding-bottom: 8rem;
}
.member #lead .lead-box .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 1em;
}
.member #lead .lead-box .title span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--sub-color);
  width: 12.5em;
  height: 2em;
  border-radius: 1em;
  text-align: center;
}
.member #lead .lead-box .title span::before {
  position: absolute;
  right: calc(100% - 0.5em);
  bottom: 0;
  z-index: 1;
  content: "";
  width: 1.75em;
  aspect-ratio: 70/93;
  background: url("../images/member/illust_01.png") no-repeat;
  background-size: 100% 100%;
}
.member #lead .lead-box .title span::after {
  position: absolute;
  left: calc(100% - 0.5em);
  bottom: -0.25em;
  z-index: 1;
  content: "";
  width: 1.95em;
  aspect-ratio: 78/118;
  background: url("../images/member/illust_02.png") no-repeat;
  background-size: 100% 100%;
}
.member #lead .lead-box p.topTxt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .member #lead .lead-box p.topTxt {
    text-align: left;
    line-height: 1.6666666667;
  }
}
.member #benefits {
  position: relative;
}
.member #benefits::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  content: "";
  width: 100vw;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
}
.member #benefits .box-wrap {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.member #benefits .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.member #benefits .benefits-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 17rem 6rem;
  margin: 16rem auto 0;
}
.member #benefits .benefits-box .inbox {
  width: min(50% - 3rem, 600px);
  padding: 3rem 2.5rem;
  border-radius: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.member #benefits .benefits-box .inbox .illust-box {
  width: min(100% - 5rem, 29rem);
  margin-top: -16rem;
}
.member #benefits .benefits-box .inbox .illust-box img {
  width: 100%;
}
.member #benefits .benefits-box .inbox .benefits-title {
  font-size: min(1.3020833333vw, 2.5rem);
  line-height: 1.5;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.member #benefits .benefits-box .inbox .benefits-title::before, .member #benefits .benefits-box .inbox .benefits-title::after {
  content: "…";
  color: #979d74;
  font-size: 1em;
  line-height: 0.6;
  padding-bottom: 0.4em;
}
.member #benefits .benefits-box .inbox .benefits-title > span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.member #benefits .benefits-box .inbox .benefits-title > span > span {
  display: inline-block;
}
.member #benefits .benefits-box .inbox .benefits-title > span > span .point {
  font-size: 1.4em;
  color: #fc9940;
}
.member #benefits .benefits-box .inbox .benefits-title > span > span small {
  font-size: 0.8em;
}
@media screen and (max-width: 1023px) {
  .member #benefits .benefits-box .inbox .benefits-title {
    font-size: min(1.6025641026vw, 2.5rem);
  }
}
@media screen and (max-width: 767px) {
  .member #benefits .benefits-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16rem;
    margin: 16rem auto 0;
  }
  .member #benefits .benefits-box .inbox {
    width: min(100%, 600px);
    padding: 3rem;
    border-radius: 3rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .member #benefits .benefits-box .inbox .illust-box {
    width: min(48.3333333333%, 29rem);
    margin-top: -16rem;
  }
  .member #benefits .benefits-box .inbox .illust-box img {
    width: 100%;
  }
  .member #benefits .benefits-box .inbox .benefits-title {
    font-size: 3rem;
  }
}
.member #membership {
  padding-top: 10rem;
}
.member #membership .box-wrap {
  width: min(100%, 90rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member #membership .box-wrap > .text-box p {
  font-size: 1.1em;
  line-height: 1.8181818182;
}
.member #membership .box-wrap > .text-box p span {
  color: #fc9940;
  font-weight: 500;
}
.member #membership .box-wrap .col2-box {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
.member #membership .box-wrap .col2-box .text-box {
  width: 58rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.member #membership .box-wrap .col2-box .text-box p {
  display: flex;
  align-items: first baseline;
  gap: 0 1em;
}
.member #membership .box-wrap .col2-box .text-box p span {
  display: inline-block;
}
.member #membership .box-wrap .col2-box .text-box p span.ttl {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8181818182;
  width: 10.6818181818em;
  text-align: center;
  color: var(--white);
  background: var(--sub-color);
  border-radius: 0.9090909091em;
  flex-shrink: 0;
}
.member #membership .box-wrap .col2-box .illust-box {
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .member #membership .box-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .member #membership .box-wrap > .text-box p {
    font-size: 1em;
    line-height: 1.6666666667;
  }
  .member #membership .box-wrap > .text-box p span {
    color: #fc9940;
    font-weight: 500;
  }
  .member #membership .box-wrap .col2-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
  }
  .member #membership .box-wrap .col2-box .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .member #membership .box-wrap .col2-box .text-box p {
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    gap: 0.5em 1em;
  }
  .member #membership .box-wrap .col2-box .text-box p span {
    display: inline-block;
  }
  .member #membership .box-wrap .col2-box .text-box p span.ttl {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.5625;
    width: 10.6818181818em;
    text-align: center;
    color: var(--white);
    background: var(--sub-color);
    border-radius: 0.9090909091em;
    flex-shrink: 0;
  }
  .member #membership .box-wrap .col2-box .text-box p span.txt {
    padding-left: 5rem;
  }
  .member #membership .box-wrap .col2-box .illust-box {
    width: 28rem;
  }
}
.member #voice {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.member #voice .box-wrap {
  width: 100%;
  margin: 0 auto;
}
.member #voice .voice-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.member #voice .voice-box .inbox {
  position: relative;
  z-index: 0;
  font-size: min(1.25vw, 2.4rem);
  line-height: 1.6666666667;
}
.member #voice .voice-box .inbox::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: 3rem;
  content: "";
  width: 100%;
  height: calc(100% - 3rem);
}
.member #voice .voice-box .inbox .illust-box {
  width: 3.75em;
  margin: 0 auto;
}
.member #voice .voice-box .inbox .text-box {
  margin-top: 1rem;
  padding: 0 1.5em;
}
.member #voice .voice-box .inbox.voice-01 {
  width: 13.75em;
  padding-bottom: 3.3333333333em;
}
.member #voice .voice-box .inbox.voice-01::before {
  background: url("../images/member/voice-01_bg.png") no-repeat;
  background-size: 100% 100%;
}
.member #voice .voice-box .inbox.voice-02 {
  z-index: -1;
  width: 13.3333333333em;
  padding-bottom: 2.5em;
  margin-top: 3.3333333333em;
  margin-left: -1.6666666667em;
}
.member #voice .voice-box .inbox.voice-02::before {
  background: url("../images/member/voice-02_bg.png") no-repeat;
  background-size: 100% 100%;
}
.member #voice .voice-box .inbox.voice-03 {
  z-index: -2;
  width: 13.3333333333em;
  padding-bottom: 3.75em;
  margin-left: -2.0833333333em;
}
.member #voice .voice-box .inbox.voice-03::before {
  background: url("../images/member/voice-03_bg.png") no-repeat;
  background-size: 100% 100%;
}
.member #voice .voice-box .inbox.voice-04 {
  z-index: -2;
  width: 13.75em;
  padding-bottom: 2.5em;
  margin-top: 1.6666666667em;
}
.member #voice .voice-box .inbox.voice-04::before {
  background: url("../images/member/voice-04_bg.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 1023px) {
  .member #voice .voice-box .inbox {
    font-size: min(1.5384615385vw, 2.4rem);
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 767px) {
  .member #voice .voice-box {
    width: 65rem;
    margin: 0 auto;
    flex-direction: column;
  }
  .member #voice .voice-box .inbox {
    font-size: 3rem;
    line-height: 1.6666666667;
  }
  .member #voice .voice-box .inbox .illust-box {
    width: 3em;
    margin: 0 auto;
  }
  .member #voice .voice-box .inbox.voice-01 {
    margin-left: 0;
    margin-right: auto;
  }
  .member #voice .voice-box .inbox.voice-02 {
    z-index: 0;
    margin-top: -8rem;
    margin-left: auto;
  }
  .member #voice .voice-box .inbox.voice-03 {
    z-index: -2;
    margin-left: 0;
    margin-top: -8rem;
    margin-right: auto;
  }
  .member #voice .voice-box .inbox.voice-04 {
    margin-top: -10rem;
    margin-left: auto;
  }
}
.member #contact-us .box-wrap {
  padding-bottom: 8rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.member #contact-us .contact-box {
  width: min(100%, 1360px);
  margin: 0 auto;
  background: #ffee92;
  border-radius: 5rem;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member #contact-us .contact-box .title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
.member #contact-us .contact-box .title span {
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
.member #contact-us .contact-box .title span::before, .member #contact-us .contact-box .title span::after {
  content: "…";
  color: #979d74;
  font-size: 2.5rem;
  line-height: 1;
}
.member #contact-us .contact-box .contact-tel-box {
  position: relative;
  width: min(80%, 80rem);
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 5rem;
  border-radius: 5rem;
  background: var(--white);
}
.member #contact-us .contact-box .contact-tel-box::before {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: min(-10%, -8rem);
  width: min(19.375%, 15.5rem);
  aspect-ratio: 155/283;
  background: url("../images/index/illust_10.png") center bottom no-repeat;
  background-size: 100% auto;
}
.member #contact-us .contact-box .contact-tel-box::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: min(-18.75%, -15rem);
  width: min(31.375%, 25.1rem);
  aspect-ratio: 251/268;
  background: url("../images/index/illust_11.png") center bottom no-repeat;
  background-size: 100% auto;
}
.member #contact-us .contact-box .contact-tel-box p {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
}
.member #contact-us .contact-box .contact-tel-box p.bottomTxt {
  font-size: 2.2rem;
  line-height: cal(30/22);
}
.member #contact-us .contact-box .contact-tel-box .tel-num {
  font-size: 5.5rem;
  line-height: 1;
  color: var(--point-color);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2rem;
  margin: 2rem auto 4rem;
}
.member #contact-us .contact-box .contact-tel-box .tel-num span {
  display: inline-block;
}
.member #contact-us .contact-box .contact-tel-box .tel-num span.icon {
  width: 1.2363636364em;
  aspect-ratio: 68/44;
  background: url("../images/icon_free-number.png") center center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .member #contact-us {
    padding-left: 0;
    padding-right: 0;
  }
  .member #contact-us .box-wrap {
    padding-bottom: 8rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .member #contact-us .contact-box {
    width: min(100%, 700px);
    margin: 0 auto;
    background: #ffee92;
    border-radius: 5rem;
    padding: 6rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .member #contact-us .contact-box .title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
  }
  .member #contact-us .contact-box .title span {
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 0.5em;
  }
  .member #contact-us .contact-box .title span::before, .member #contact-us .contact-box .title span::after {
    content: "…";
    color: #979d74;
    font-size: 2.5rem;
    line-height: 1;
  }
  .member #contact-us .contact-box .contact-tel-box {
    position: relative;
    width: 100%;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem 5rem 6rem;
    border-radius: 5rem;
    background: var(--white);
  }
  .member #contact-us .contact-box .contact-tel-box::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 7rem);
    left: min(-2.8571428571%, -2rem);
    width: min(14.1428571429%, 9.9rem);
    aspect-ratio: 99/180;
    background: url("../images/index/illust_10.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .member #contact-us .contact-box .contact-tel-box::after {
    content: "";
    position: absolute;
    top: -4rem;
    right: min(-6.7142857143%, -4.7rem);
    width: min(23%, 16.1rem);
    aspect-ratio: 161/171;
    background: url("../images/index/illust_11.png") center bottom no-repeat;
    background-size: 100% auto;
  }
  .member #contact-us .contact-box .contact-tel-box p {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
  }
  .member #contact-us .contact-box .contact-tel-box p.bottomTxt {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
  }
  .member #contact-us .contact-box .contact-tel-box .tel-num {
    font-size: 5.5rem;
    line-height: 1;
    color: var(--point-color);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2rem;
    margin: 2rem auto 4rem;
  }
  .member #contact-us .contact-box .contact-tel-box .tel-num span {
    display: inline-block;
  }
  .member #contact-us .contact-box .contact-tel-box .tel-num span.icon {
    width: 1.2363636364em;
    aspect-ratio: 68/44;
    background: url("../images/icon_free-number.png") center center no-repeat;
    background-size: 100% auto;
  }
}

/*-------------------------------------------/
    供物のご注文
/-------------------------------------------*/
.offering #sec-offering {
  padding-top: 10rem;
  padding-bottom: 12rem;
}
.offering #sec-offering .box-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.offering #sec-offering .box-wrap .lead-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.offering #sec-offering .box-wrap .lead-box p {
  text-align: center;
}
.offering #sec-offering .box-wrap .offering-box {
  width: min(100%, 120rem);
  margin: 0 auto;
  background: #ffee92;
  border-radius: 5rem;
  padding: 9rem 10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box {
  background: var(--white);
  padding: 6rem 5rem;
  border-radius: 5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box p span {
  color: #fc9940;
  font-weight: 500;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .text-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .text-box p {
  text-align: center;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .btn-box {
  text-align: center;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info {
  width: min(100%, 87rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box {
  width: min(47.0588235294%, 40rem);
  clip-path: inset(0 0 round 2rem);
  display: flex;
  flex-direction: column;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox {
  width: 100%;
  padding: 3rem 3rem 2rem;
  background: #f0f3dd;
  text-align: center;
  flex-grow: 1;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p {
  font-size: clamp(11px, 0.9375vw, 1.8rem);
  line-height: 1.3888888889;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p.title {
  font-size: 1.6666666667em;
  font-weight: 500;
  margin-bottom: 1rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p.txt {
  font-size: 1.2222222222em;
  font-weight: 500;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 14rem;
  margin-top: 2rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt::after {
  content: "";
  width: 11.4rem;
  aspect-ratio: 114/122;
  background: url("../images/offering/illust_01.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt p {
  text-align: left;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .btn-download {
  display: block;
  width: 27rem;
  margin: 1.5rem auto 0;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-tel {
  width: 100%;
  height: 8rem;
  color: var(--white);
  background: var(--point-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4545454545em;
  font-size: 4.4rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-tel::before {
  content: "";
  width: 1.2045454545em;
  aspect-ratio: 53/34;
  background: url("../images/icon_free-number_white.png") no-repeat;
  background-size: 100% 100%;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-fax {
  width: 100%;
  height: 8rem;
  color: var(--white);
  background: var(--point-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4545454545em;
  font-size: 4.4rem;
}
.offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-fax::before {
  content: "";
  width: 0.7727272727em;
  aspect-ratio: 34/34;
  background: url("../images/icon_fax_white.png") no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .offering #sec-offering .box-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
  .offering #sec-offering .box-wrap .lead-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .offering #sec-offering .box-wrap .lead-box p {
    text-align: left;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .offering #sec-offering .box-wrap .offering-box {
    width: 100%;
    margin: 0 auto;
    background: #ffee92;
    border-radius: 5rem;
    padding: 9rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box {
    background: var(--white);
    padding: 6rem 5rem;
    border-radius: 5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box p span {
    color: #fc9940;
    font-weight: 500;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .text-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .text-box p {
    text-align: left;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .btn-box {
    text-align: center;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info {
    width: min(100%, 400px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 6rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box {
    width: 100%;
    clip-path: inset(0 0 round 2rem);
    display: flex;
    flex-direction: column;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox {
    width: 100%;
    padding: 3rem 5rem 2rem;
    background: #f0f3dd;
    text-align: center;
    flex-grow: 1;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p {
    font-size: 2.8rem;
    line-height: 1.3888888889;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p.title {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox p.txt {
    font-size: 3rem;
    font-weight: 500;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 0;
    padding-right: 14rem;
    margin-top: 2rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt::after {
    content: "";
    width: 11.4rem;
    aspect-ratio: 114/122;
    background: url("../images/offering/illust_01.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 0;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .inner-txt p {
    text-align: left;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .inbox .btn-download {
    display: block;
    width: min(77.1428571429%, 270px);
    margin: 1.5rem auto 0;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-tel {
    width: 100%;
    height: 8rem;
    color: var(--white);
    background: var(--point-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4545454545em;
    font-size: 5rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-tel::before {
    content: "";
    width: 1.2045454545em;
    aspect-ratio: 53/34;
    background: url("../images/icon_free-number_white.png") no-repeat;
    background-size: 100% 100%;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-fax {
    width: 100%;
    height: 8rem;
    color: var(--white);
    background: var(--point-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4545454545em;
    font-size: 5rem;
  }
  .offering #sec-offering .box-wrap .offering-box .inner-box .order-info .item-box .number-box-fax::before {
    content: "";
    width: 0.7727272727em;
    aspect-ratio: 34/34;
    background: url("../images/icon_fax_white.png") no-repeat;
    background-size: 100% 100%;
  }
}
.offering #offering-form {
  padding-bottom: 15rem;
}
.offering #offering-form p.topTxt {
  text-align: center;
}
.offering #offering-form .box-wrap {
  position: relative;
  width: min(100%, 136rem);
  padding: 8rem 8rem 10rem;
  margin: 0 auto;
}
.offering #offering-form .box-wrap::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  content: "";
  width: 100%;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
  border-radius: 5rem;
}
.offering #offering-form .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.offering #offering-form .box-wrap .inner-box {
  width: min(100%, 120rem);
  margin: 3rem auto 0;
  padding: 6rem;
  background: var(--white);
  border-radius: 2rem;
}
.offering #offering-form .offering-title {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.92;
  font-weight: 500;
  color: #fc9940;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
}
.offering #offering-form .offering-title::before {
  content: "";
  width: 1.92em;
  height: 1.92em;
  background: url("../images/offering/icon_offering.png") no-repeat;
  background-size: 100% 100%;
  flex-shrink: 0;
}
.offering #offering-form .offering-title::after {
  content: "";
  width: 100%;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: #fc9940;
  position: absolute;
  left: 0;
  bottom: 0;
}
.offering #offering-form .offering-title span {
  display: inline-block;
}
.offering #offering-form .offering-title span .subTxt {
  font-size: 0.8em;
  line-height: 1.2;
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .offering #offering-form.page-content {
    padding-left: 0;
    padding-right: 0;
  }
  .offering #offering-form p.topTxt {
    text-align: left;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .offering #offering-form .box-wrap {
    position: relative;
    width: 100%;
    padding: 8rem 2.5rem 10rem;
    margin: 0 auto;
  }
  .offering #offering-form .box-wrap::before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    content: "";
    width: 100%;
    height: calc(100% - 14rem);
    background: var(--bg-color01);
    border-radius: 0;
  }
  .offering #offering-form .box-wrap::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70rem;
    aspect-ratio: 700/460;
    border-radius: 50%;
    background: var(--bg-color01);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  }
  .offering #offering-form .box-wrap .inner-box {
    width: min(100%, 120rem);
    margin: 3rem auto 0;
    padding: 5rem 2.5rem;
    background: var(--white);
    border-radius: 2rem;
  }
  .offering #offering-form .offering-title {
    position: relative;
    font-size: 3rem;
    line-height: 1.92;
    font-weight: 500;
    color: #fc9940;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }
  .offering #offering-form .offering-title::before {
    content: "";
    width: 1.92em;
    height: 1.92em;
    background: url("../images/offering/icon_offering.png") no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;
  }
  .offering #offering-form .offering-title::after {
    content: "";
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: #fc9940;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .offering #offering-form .offering-title span {
    display: inline-block;
  }
  .offering #offering-form .offering-title span .subTxt {
    font-size: 0.8em;
    line-height: 1.2;
    color: #000;
    font-weight: 400;
  }
}

/*-------------------------------------------/
  供物のご注文フォーム
/-------------------------------------------*/
/* フォーム */
#offering-form .formbox {
  font-size: min(1.0416666667vw, 2rem);
  width: min(100%, 100rem);
  margin: 0 auto;
  background: #fff;
}
#offering-form .formbox > p:not(:last-child) {
  margin-bottom: 1em;
}
#offering-form .formbox p.caution-required {
  color: red;
  font-size: max(14px, 1.8rem);
  text-align: center;
}
#offering-form .formbox table.form-wrap {
  font-size: min(1.0416666667vw, 2rem);
  width: 100%;
}
#offering-form .formbox table.form-wrap tr th {
  font-size: 1.1em;
  font-weight: 500;
  padding: 1.25em 0.5em;
  text-align: left;
  width: 14.5454545455em;
  border-bottom: 1px solid #95a392;
}
#offering-form .formbox table.form-wrap tr th.no-line {
  border-bottom: none;
  padding-bottom: 0;
}
#offering-form .formbox table.form-wrap tr th span {
  display: inline-block;
}
#offering-form .formbox table.form-wrap tr th span.mandatory {
  font-size: 0.7272727273em;
  font-weight: 400;
  line-height: 1.5625;
  padding: 0 0.5em;
  border-radius: 0.4rem;
  color: var(--white);
  background: var(--point-color);
  margin-left: 1em;
}
#offering-form .formbox table.form-wrap tr td {
  padding: 1.25em 0.5em;
  width: calc(100% - 16em);
  border-bottom: 1px solid #95a392;
}
#offering-form .formbox table.form-wrap tr td.no-line {
  border-bottom: none;
  padding-bottom: 0;
}
#offering-form .formbox table.form-wrap tr td .input-field {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5em 1em;
}
#offering-form .formbox table.form-wrap tr td .input-field > .inbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5em 1.25em;
}
#offering-form .formbox table.form-wrap tr td .input-field.is-col {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
#offering-form .formbox .form_box_in {
  width: 100%;
}
#offering-form .formbox .form_box_in:not(:first-child) {
  margin-top: 7rem;
}
#offering-form .formbox .form_box_in p.smallTxt {
  font-size: max(12px, 1.5rem);
  line-height: 1.4;
}
#offering-form .formbox .form_box_in .input-field {
  width: calc(100% - 16em);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5em 1em;
}
#offering-form .formbox .form_box_in .input-field > .inbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5em 1.25em;
}
#offering-form .formbox .form_box_in .input-field.is-col {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
#offering-form .formbox .form_box_in .input-field.check-group {
  display: block;
  line-height: 1;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  margin-left: 0;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item::after {
  display: inline-block;
  font-size: max(13px, 1.6rem);
  line-height: 1.5;
  padding-left: 2em;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:first-child::after {
  content: "後日、請求書を送付します。お支払いは振込みでお願いします。静岡市農協各支店（葵区・駿河区のみ）の窓口からは、振込手数料がかかりません。";
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:nth-child(2)::after {
  content: "専用の払込用紙を送付します。いつでもコンビニエンスストアでお支払いが可能です。手数料はかかりません。";
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item:nth-child(3)::after {
  content: "式場がやすらぎホールでの場合に限らせていただきます。（式場がやすらぎホール以外の場合は請求書支払い又はコンビニ支払いでお願いいたします。）";
}
#offering-form .formbox .form_box_in .input-field.check-group input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-list-item.first {
  margin-left: 0;
}
#offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 0.4rem;
  border: 1px solid #000;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}
#offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  width: 0.8em;
  height: 0.4em;
  background-color: transparent;
  border-left: 0.3rem solid #000;
  border-bottom: 0.3rem solid #000;
  top: 0.7em;
  left: 0.2em;
  transform: rotate(-45deg);
  display: none;
}
#offering-form .formbox .form_box_in .input-field.check-group input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap,
#offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control {
  width: 100%;
  display: inline-block;
}
#offering-form .formbox .form_box_in .input-field.check-group label {
  line-height: 2;
}
#offering-form .formbox .form_box_in .input-field_in {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: first baseline;
  gap: 1em;
}
#offering-form .formbox .form_box_in .input-field_in.w250 {
  width: 12.5em;
  flex-grow: 1;
}
#offering-form .formbox .form_box_in .input-field_in.w300 {
  width: 15em;
  flex-grow: 1;
}
#offering-form .formbox .form_box_in .input-field_in.w330 {
  width: 16.5em;
  flex-grow: 1;
}
#offering-form .formbox .form_box_in .input-field_in.zip-wrap, #offering-form .formbox .form_box_in .input-field_in.txt-wrap {
  width: -moz-fit-content;
  width: fit-content;
}
#offering-form .formbox .form_box_in .input-field_in .afterTxt {
  flex-shrink: 0;
}
#offering-form .formbox .form_box_in .input-field_in.noglow {
  flex-grow: unset !important;
}
#offering-form .formbox .form_box_in .input-field_in .nowrap {
  white-space: pre-wrap;
}
#offering-form .formbox .form_box_in .input-field_in.confirm-wrap {
  gap: 0.1em;
}
#offering-form .formbox .form_box_in .bottomTxt {
  padding: 2rem;
}
#offering-form .formbox .form_box_in .bottomTxt p {
  text-align: center;
}
#offering-form .formbox .form_box_in .order-item-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5rem;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box {
  width: 30rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box .item-pic {
  width: min(100%, 300px);
  position: relative;
  margin-bottom: 1.5rem;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box p {
  font-size: min(1.0416666667vw, 2rem);
  line-height: 1.2;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-name {
  font-size: 1.25em;
  font-weight: 500;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-price {
  font-size: 1em;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-price .price {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--point-color);
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box .input-field {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  margin: 0.5em auto;
}
#offering-form .formbox .form_box_in .order-item-wrap .item-box .input-field .input-field_in {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}
#offering-form .formbox .date-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#offering-form .formbox .tagname-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}
#offering-form .formbox form {
  font-size: min(1.0416666667vw, 2rem);
  line-height: 1.5;
  width: 100%;
  /* Contact Form 7が追加する余計なスタイルをリセット */
}
#offering-form .formbox form .wpcf7-form-control,
#offering-form .formbox form .wpcf7-form {
  width: inherit;
  margin: 0;
}
#offering-form .formbox form .wpcf7-form-control-wrap {
  width: inherit;
  margin: 0;
  display: flex;
  flex-grow: 1;
}
#offering-form .formbox form input[type=text],
#offering-form .formbox form input[type=email],
#offering-form .formbox form input[type=tel],
#offering-form .formbox form select,
#offering-form .formbox form textarea {
  padding: 0.5em 1em;
  background: #f0f3dd;
  outline: 1px solid #f0f3dd;
}
#offering-form .formbox form input[type=text],
#offering-form .formbox form input[type=tel] {
  width: min(100%, 650px);
}
#offering-form .formbox form input[type=text].zip,
#offering-form .formbox form input[type=tel].zip {
  width: 10em;
}
#offering-form .formbox form input[type=text].w200,
#offering-form .formbox form input[type=tel].w200 {
  width: 10em;
  flex-grow: 1;
}
#offering-form .formbox form input[type=text].w250,
#offering-form .formbox form input[type=tel].w250 {
  width: 12.5em;
  flex-grow: 1;
}
#offering-form .formbox form input[type=text].wpcf7-free-text:disabled,
#offering-form .formbox form input[type=tel].wpcf7-free-text:disabled {
  background: #fcfbfa;
}
#offering-form .formbox form input[type=email] {
  width: min(100%, 650px);
}
#offering-form .formbox form select {
  position: relative;
  line-height: 1.5;
  padding: 0.5em 1.5em 0.5em 1em;
  background-image: url("../images/arrow.png");
  background-position: right 0.75em center;
  background-repeat: no-repeat;
  background-size: 0.75em auto;
  cursor: pointer;
  width: 100%;
}
#offering-form .formbox form select.select-type {
  background-color: #fff;
  outline: 1px solid #000;
  border-radius: 0.4rem;
  width: 10em;
}
#offering-form .formbox form select.select-number {
  background-color: #fff;
  outline: 1px solid #000;
  border-radius: 0.4rem;
  width: 5em;
}
#offering-form .formbox form select.select-short {
  width: 3em;
  padding: 0.5em 1em 0.5em 0.5em;
  background-position: right 0.5em center;
}
#offering-form .formbox form select option {
  font-size: 1em;
  background-color: #fff;
  color: #000;
  font-weight: 400;
}
#offering-form .formbox form textarea {
  width: min(100%, 650px);
  height: 7.5em;
  padding: 0.5em 1em;
}
#offering-form .formbox form textarea.is-text {
  height: 2.5em;
}
#offering-form .formbox form textarea.w250 {
  width: 12.5em;
  flex-grow: 1;
}
#offering-form .formbox form .wpcf7-list-item {
  margin: 0.5em;
}
#offering-form .formbox form .wpcf7-list-item.has-free-text {
  display: block;
}
#offering-form .formbox .form-bottom {
  position: relative;
  margin: 6.5rem auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#offering-form .formbox .form-bottom .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
#offering-form .formbox .form-bottom .btn-submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3636363636;
  width: 18.1818181818em;
  height: 2.9545454545em;
  color: var(--white);
  background-color: var(--point-color);
  background-image: url("../images/btn-arrow.png");
  background-size: 1.4090909091em auto;
  background-position: 2.7272727273em center;
  background-repeat: no-repeat;
  border-radius: 1.4772727273em;
  transition: 0.3s all;
  padding: 0 5em;
}
#offering-form .formbox .form-bottom .btn-submit:hover {
  transform: scale(1.01);
  opacity: 0.7;
}
#offering-form .formbox .form-bottom .btn-submit:disabled {
  cursor: not-allowed;
  transform: none;
}
#offering-form .formbox .form-bottom span.wpcf7-spinner {
  display: none;
}
#offering-form .formbox .form-bottom .btn-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  justify-content: center;
  gap: 2rem;
  background: #fff;
  border: 0.3rem solid var(--point-color);
  font-size: 2.2rem;
  padding: 0 0.5em;
  cursor: pointer;
  transition: 0.3s all;
}
#offering-form .formbox .form-bottom .btn-back::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_arrow-prev.png") no-repeat;
  background-size: 100% 100%;
}
#offering-form .formbox .form-bottom .btn-back:hover {
  background: #f0f9fc;
}
#offering-form .formbox .thanks-message {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
#offering-form .formbox .thanks-message p {
  text-align: center;
}
@media screen and (max-width: 1199px) {
  #offering-form .formbox table.form-wrap {
    font-size: min(1.2820512821vw, 2rem);
    width: 100%;
  }
  #offering-form .formbox table.form-wrap tr th {
    width: 100%;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
  #offering-form .formbox table.form-wrap tr td {
    width: 100%;
    display: block;
    border-bottom: 1px solid #95a392;
    padding-top: 0.5em;
  }
  #offering-form .formbox .form_box_in {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #offering-form .formbox {
    font-size: 2.8rem;
    width: 100%;
    margin: 0 auto;
    background: #fff;
  }
  #offering-form .formbox table.form-wrap {
    font-size: 2.8rem;
    width: 100%;
  }
  #offering-form .formbox table.form-wrap tr th {
    font-size: 1.1em;
    font-weight: 500;
    padding: 1.25em 0.5em 0;
    text-align: left;
    width: 100%;
    border-bottom: none;
  }
  #offering-form .formbox table.form-wrap tr th span {
    display: inline-block;
  }
  #offering-form .formbox table.form-wrap tr th span.mandatory {
    font-size: 0.7272727273em;
    font-weight: 400;
    line-height: 1.5625;
    padding: 0 0.5em;
    border-radius: 0.4rem;
    color: var(--white);
    background: var(--point-color);
    margin-left: 1em;
  }
  #offering-form .formbox table.form-wrap tr td {
    padding: 0.5em 0.5em 1.25em;
    width: 100%;
    border-bottom: 1px solid #95a392;
  }
  #offering-form .formbox table.form-wrap tr td .input-field {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5em 1em;
  }
  #offering-form .formbox table.form-wrap tr td .input-field > .inbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5em 1.25em;
  }
  #offering-form .formbox table.form-wrap tr td .input-field > .inbox .input-field_in.w300,
  #offering-form .formbox table.form-wrap tr td .input-field > .inbox .input-field_in.w330 {
    width: auto;
  }
  #offering-form .formbox table.form-wrap tr td .input-field > .inbox .input-field_in.w300 .nowrap,
  #offering-form .formbox table.form-wrap tr td .input-field > .inbox .input-field_in.w330 .nowrap {
    white-space: pre-wrap;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.is-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group {
    display: block;
    line-height: 1;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group input[type=radio] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group .wpcf7-list-item.first {
    margin-left: 0;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group span.wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group span.wpcf7-list-item-label::before {
    display: block;
    content: "";
    border-radius: 0.4rem;
    border: 1px solid #000;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group span.wpcf7-list-item-label::after {
    display: block;
    position: absolute;
    content: "";
    border-radius: 0;
    width: 0.8em;
    height: 0.4em;
    background-color: transparent;
    border-left: 0.3rem solid #000;
    border-bottom: 0.3rem solid #000;
    top: 0.7em;
    left: 0.2em;
    transform: rotate(-45deg);
    display: none;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group input[type=radio]:checked + span.wpcf7-list-item-label::after {
    display: block;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group .wpcf7-form-control-wrap,
  #offering-form .formbox table.form-wrap tr td .input-field.check-group .wpcf7-form-control {
    width: 100%;
    display: inline-block;
  }
  #offering-form .formbox table.form-wrap tr td .input-field.check-group label {
    line-height: 2;
  }
  #offering-form .formbox .form_box_in {
    width: 100%;
  }
  #offering-form .formbox .form_box_in p.smallTxt {
    font-size: 2.5rem;
  }
  #offering-form .formbox .form_box_in .fieldTitle {
    width: 15em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  #offering-form .formbox .form_box_in .fieldTitle span {
    display: inline-block;
  }
  #offering-form .formbox .form_box_in .fieldTitle span.ttl {
    font-size: 3rem;
    font-weight: 500;
  }
  #offering-form .formbox .form_box_in .fieldTitle span.mandatory {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5625;
    padding: 0 0.5em;
    border-radius: 0.4rem;
    color: var(--white);
    background: var(--point-color);
    margin-right: auto;
    margin-left: 1em;
  }
  #offering-form .formbox .form_box_in .input-field {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 3rem;
    padding: 0;
  }
  #offering-form .formbox .form_box_in .input-field.is-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  #offering-form .formbox .form_box_in .input-field.check-group {
    display: block;
    line-height: 1;
  }
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
    margin-left: 0;
  }
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item::after {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 1.5;
    padding-left: 2em;
  }
  #offering-form .formbox .form_box_in .input-field.check-group input[type=radio] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-list-item.first {
    margin-left: 0;
  }
  #offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label::before {
    display: block;
    content: "";
    border-radius: 0.4rem;
    border: 1px solid #000;
    width: 1em;
    height: 1em;
    margin-right: 10px;
  }
  #offering-form .formbox .form_box_in .input-field.check-group span.wpcf7-list-item-label::after {
    display: block;
    position: absolute;
    content: "";
    border-radius: 0;
    width: 0.8em;
    height: 0.4em;
    background-color: transparent;
    border-left: 0.3rem solid #000;
    border-bottom: 0.3rem solid #000;
    top: 0.7em;
    left: 0.2em;
    transform: rotate(-45deg);
    display: none;
  }
  #offering-form .formbox .form_box_in .input-field.check-group input[type=radio]:checked + span.wpcf7-list-item-label::after {
    display: block;
  }
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control-wrap,
  #offering-form .formbox .form_box_in .input-field.check-group .wpcf7-form-control {
    width: 100%;
    display: inline-block;
  }
  #offering-form .formbox .form_box_in .input-field.check-group label {
    line-height: 2;
  }
  #offering-form .formbox .form_box_in .input-field_in {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: first baseline;
    gap: 2rem;
  }
  #offering-form .formbox .form_box_in .input-field_in.w250 {
    width: 12.5em;
    flex-grow: 1;
  }
  #offering-form .formbox .form_box_in .input-field_in.w300 {
    width: 15em;
    flex-grow: 1;
  }
  #offering-form .formbox .form_box_in .input-field_in.w350 {
    width: 17.5em;
    flex-grow: 1;
  }
  #offering-form .formbox .form_box_in .input-field_in .afterTxt {
    flex-shrink: 0;
  }
  #offering-form .formbox .form_box_in .koumoku-ttl {
    width: 4em;
  }
  #offering-form .formbox .form_box_in .order-item-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box {
    width: 30rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box .item-pic {
    width: min(100%, 300px);
    position: relative;
    margin-bottom: 1.5rem;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box p {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-name {
    font-size: 3rem;
    font-weight: 500;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-price {
    font-size: 1em;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box p.item-price .price {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--point-color);
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box .input-field {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    margin: 0.5em auto;
  }
  #offering-form .formbox .form_box_in .order-item-wrap .item-box .input-field .input-field_in {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
  }
  #offering-form .formbox form {
    font-size: 2.8rem;
    width: 100%;
  }
  #offering-form .formbox form input[type=text] {
    width: min(100%, 650px);
  }
  #offering-form .formbox form input[type=text].zip {
    width: 10em;
  }
  #offering-form .formbox form input[type=text].w200 {
    width: 10em;
    flex-grow: 1;
  }
  #offering-form .formbox form input[type=text].w250 {
    width: 12.5em;
    flex-grow: 1;
  }
  #offering-form .formbox form input[type=text].wpcf7-free-text:disabled {
    background: #fcfbfa;
  }
  #offering-form .formbox form select.select-type {
    background-color: #fff;
    outline: 1px solid #000;
    border-radius: 0.4rem;
    width: 8em;
  }
  #offering-form .formbox form select.select-number {
    background-color: #fff;
    outline: 1px solid #000;
    border-radius: 0.4rem;
    width: 5em;
  }
  #offering-form .formbox form textarea {
    width: min(100%, 650px);
    height: 7.5em;
    padding: 0.5em 1em;
  }
  #offering-form .formbox form textarea::-moz-placeholder {
    font-size: 2.6rem;
  }
  #offering-form .formbox form textarea::placeholder {
    font-size: 2.6rem;
  }
  #offering-form .formbox form textarea.is-text {
    height: 2.5em;
  }
  #offering-form .formbox form textarea.w250 {
    width: 12.5em;
    flex-grow: 1;
  }
  #offering-form .formbox form .bottom-box {
    text-align: center;
    margin-top: 5rem;
  }
  #offering-form .formbox form .bottom-box .agree_check {
    margin: 1em auto;
  }
  #offering-form .formbox form .bottom-box p.link-privacy {
    text-align: center;
  }
  #offering-form .formbox form .bottom-box .btn-box {
    margin-top: 6rem;
  }
  #offering-form .formbox form .bottom-box .btn-box .btn-back input {
    height: 2.3333333333em;
  }
  #offering-form .formbox form .bottom-box .btn-box .btn-submit {
    font-size: 3rem;
    font-weight: 500;
  }
  #offering-form .formbox form .bottom-box .btn-box .btn-submit input[type=submit] {
    width: 9.3333333333em;
    height: 3.3333333333em;
  }
}

/*-------------------------------------------/
    お葬式の知識
/-------------------------------------------*/
.knowledge #lead .box-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.knowledge #lead .box-wrap .lead-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.knowledge #lead .box-wrap .lead-box p {
  text-align: center;
}
.knowledge #lead .page-anchor-nav {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .knowledge #lead .box-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
  .knowledge #lead .box-wrap .lead-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .knowledge #lead .box-wrap .lead-box p {
    text-align: left;
  }
}
.knowledge #sec-knowledge {
  padding-bottom: 10rem;
}
.knowledge #sec-knowledge .box-wrap {
  width: min(100%, 136rem);
  margin: 0 auto;
  padding: 5rem;
  border-radius: 5rem;
  background: var(--bg-color01);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box {
  width: min(100%, 120rem);
  margin: 0 auto;
  padding: 8rem 5rem;
  background: var(--white);
  border-radius: 5rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner {
  width: min(100%, 100rem);
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox {
  margin-top: 2rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 1rem;
  color: #fc9940;
  font-weight: 500;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span {
  display: inline-block;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.num {
  font-size: 3rem;
  width: 6rem;
  height: 6rem;
  color: var(--white);
  background: #fc9940;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.txt01 {
  font-size: 2.4rem;
  line-height: 1.4;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.line {
  width: 1em;
  height: 1px;
  background: #fc9940;
  flex-grow: 1;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.txt02 {
  margin-left: auto;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox p .ttl {
  font-size: 1.1em;
  font-weight: 500;
  color: #6f7d1d;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox > .inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box .knowledge-title {
  position: relative;
  z-index: 0;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 500;
  color: #6f7d1d;
  padding-bottom: 0.5em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box .knowledge-title::before {
  content: "";
  width: 3.85em;
  aspect-ratio: 154/111;
  background: url("../images/bg-deco2.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  z-index: -1;
  left: -1.375em;
  top: -1em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box p {
  line-height: 1.75;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box p span {
  font-weight: 500;
  color: #fc9940;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box p span.point {
  font-size: 1.2em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box ol {
  line-height: 1.75;
  font-weight: 500;
  color: #fc9940;
  padding-left: 2em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box ul {
  line-height: 1.75;
  font-weight: 500;
  padding-left: 1em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box ul li {
  display: flex;
  align-items: first center;
  gap: 0.5em;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box ul li::before {
  font-size: 0.5em;
  content: "●";
  color: #fc9940;
  flex-shrink: 0;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box ol {
  flex-shrink: 0;
}
.knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box .illust-box {
  width: 48.5rem;
}
@media screen and (max-width: 767px) {
  .knowledge #sec-knowledge {
    padding-left: 0;
    padding-right: 0;
  }
  .knowledge #sec-knowledge .box-wrap {
    width: 100%;
    padding: 5rem 2.5rem;
    border-radius: 0;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box {
    width: min(100%, 120rem);
    margin: 0 auto;
    padding: 8rem 2.5rem;
    background: var(--white);
    border-radius: 5rem;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner {
    width: min(100%, 100rem);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox {
    margin-top: 2rem;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    color: #fc9940;
    font-weight: 500;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span {
    display: inline-block;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.num {
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    background: #fc9940;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.txt01 {
    font-size: 3.2rem;
    width: calc(100% - 7rem);
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.line {
    width: 3em;
    height: 1px;
    background: #fc9940;
    flex-grow: 1;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox .ttl-box span.txt02 {
    margin-left: 0;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box > .inner .inbox p .ttl {
    font-size: 1.1em;
    font-weight: 500;
    color: #6f7d1d;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box .knowledge-title {
    position: relative;
    z-index: 0;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 500;
    color: #6f7d1d;
    padding-bottom: 0.5em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box .knowledge-title::before {
    content: "";
    width: 3.85em;
    aspect-ratio: 154/111;
    background: url("../images/bg-deco2.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    z-index: -1;
    left: -1em;
    top: -1em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box p {
    line-height: 1.6666666667;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box p span {
    font-weight: 500;
    color: #fc9940;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box p span.point {
    font-size: 1.0666666667em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box ol {
    line-height: 1.6666666667;
    font-weight: 500;
    color: #fc9940;
    padding-left: 2em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box ul {
    line-height: 1.6666666667;
    font-weight: 500;
    padding-left: 1em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box ul li {
    display: flex;
    align-items: first center;
    gap: 0.5em;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box ul li::before {
    font-size: 0.5em;
    content: "●";
    color: #fc9940;
    flex-shrink: 0;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box ol {
    width: 100%;
    flex-shrink: unset;
  }
  .knowledge #sec-knowledge .box-wrap .knowledge-box .col2-box .illust-box {
    width: 48.5rem;
  }
}

/*-------------------------------------------/
    会社概要
/-------------------------------------------*/
.company #corporate-philosophy {
  position: relative;
  z-index: 1;
  padding: 0 10rem;
}
.company #corporate-philosophy::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  content: "";
  width: 100vw;
  height: calc(100% - 14rem);
  background: var(--bg-color01);
}
.company #corporate-philosophy .box-wrap {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.company #corporate-philosophy .box-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70rem;
  aspect-ratio: 700/460;
  border-radius: 50%;
  background: var(--bg-color01);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.company #corporate-philosophy .philosophy-box {
  width: min(100%, 120rem);
  background: var(--white);
  border-radius: 5rem;
  margin: 0 auto;
  padding: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
}
.company #corporate-philosophy .philosophy-box .inbox {
  text-align: center;
}
.company #corporate-philosophy .philosophy-box .inbox p.title {
  font-size: 4rem;
  line-height: 1;
  color: #6f7d1d;
  font-weight: 500;
  margin-bottom: 2rem;
}
.company #corporate-philosophy .philosophy-box .inbox p.title span {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1.6;
}
.company #corporate-philosophy .philosophy-box .inbox p.txt {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.company #corporate-philosophy .philosophy-box .inbox p.txt:not(:last-child) {
  margin-bottom: 1em;
}
.company #corporate-philosophy .logo {
  width: 50rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .company #corporate-philosophy {
    padding: 0 2.5rem;
  }
  .company #corporate-philosophy .philosophy-box {
    width: 100%;
    background: var(--white);
    border-radius: 5rem;
    margin: 0 auto;
    padding: 8rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
  }
  .company #corporate-philosophy .philosophy-box .inbox {
    text-align: center;
  }
  .company #corporate-philosophy .philosophy-box .inbox p.title {
    font-size: 4rem;
    line-height: 1;
    color: #6f7d1d;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .company #corporate-philosophy .philosophy-box .inbox p.title span {
    display: inline-block;
    font-size: 3rem;
    line-height: 1.3333333333;
  }
  .company #corporate-philosophy .philosophy-box .inbox p.txt {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
  .company #corporate-philosophy .philosophy-box .inbox p.txt:not(:last-child) {
    margin-bottom: 1em;
  }
}
.company #concept {
  padding-top: 14rem;
  padding-bottom: 5rem;
}
.company #concept .concept-box {
  width: min(100%, 100rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  margin: 10rem auto 0;
}
.company #concept .concept-box .text-box {
  text-align: center;
}
.company #concept .concept-box .image-box {
  width: 51rem;
  border-radius: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company #concept {
    padding-top: 10rem;
  }
  .company #concept .concept-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem;
    margin: 10rem auto 0;
  }
  .company #concept .concept-box .text-box {
    text-align: left;
  }
  .company #concept .concept-box .image-box {
    width: 51rem;
    border-radius: 3rem;
    overflow: hidden;
  }
}
.company #company-profile {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.company #company-profile .box-wrap {
  width: min(100%, 100rem);
  margin: 0 auto;
}
.company #company-profile .box-wrap .table-box {
  font-size: 2rem;
  line-height: 1.75;
  width: 100%;
}
.company #company-profile .box-wrap .table-box table {
  width: 100%;
  border-top: 1px solid #95a392;
}
.company #company-profile .box-wrap .table-box table tr th {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: cal(35/20);
  color: #808080;
  background: #f9faf1;
  padding: 1.75rem;
  width: 21rem;
  border-bottom: 1px solid #95a392;
}
.company #company-profile .box-wrap .table-box table tr td {
  padding: 1.75rem 4rem;
  width: calc(100% - 21rem);
  border-bottom: 1px solid #95a392;
}
.company #company-profile .box-wrap .table-box .link-access {
  font-size: 1.6rem;
  line-height: 1.5625;
  padding: 0 0.5em;
  color: var(--white);
  background: var(--point-color);
  border-radius: 0.5rem;
  text-align: center;
  margin: 0 1em;
  transition: 0.3s all;
}
.company #company-profile .box-wrap .table-box .link-access:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .company #company-profile .box-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .company #company-profile .box-wrap .table-box {
    font-size: 3rem;
    line-height: 1.6666666667;
    width: 100%;
  }
  .company #company-profile .box-wrap .table-box table {
    width: 100%;
    border-top: 1px solid #95a392;
  }
  .company #company-profile .box-wrap .table-box table tr th {
    display: block;
    font-size: 3rem;
    font-weight: 400;
    line-height: cal(35/20);
    color: #808080;
    background: #f9faf1;
    padding: 1.75rem 3rem;
    width: 100%;
    border-bottom: none;
    text-align: left;
  }
  .company #company-profile .box-wrap .table-box table tr td {
    display: block;
    padding: 1.75rem 3rem;
    width: 100%;
    border-bottom: 1px solid #95a392;
  }
  .company #company-profile .box-wrap .table-box .link-access {
    display: inline-block;
    font-size: 2.6rem;
    line-height: 1.5384615385;
    padding: 0 0.5em;
    color: var(--white);
    background: var(--point-color);
    border-radius: 0.5rem;
    text-align: center;
    margin: 0;
    transition: 0.3s all;
  }
  .company #company-profile .box-wrap .table-box .link-access:hover {
    opacity: 0.7;
  }
}
.company #privacy-policy {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.company #privacy-policy .box-wrap {
  width: min(100%, 100rem);
  margin: 0 auto;
}
.company #privacy-policy .privacy-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.company #privacy-policy .privacy-box .inbox h4 {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  border-top: 1px solid #95a392;
  border-bottom: 1px solid #95a392;
  padding: 1rem 3rem;
}
.company #privacy-policy .privacy-box .inbox .inner {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.company #privacy-policy .privacy-box .inbox .inner ol {
  padding-left: 4.5rem;
}
.company #privacy-policy .privacy-box .inbox .inner ol li {
  padding-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .company #privacy-policy .privacy-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  .company #privacy-policy .privacy-box p {
    line-height: 1.6666666667;
  }
  .company #privacy-policy .privacy-box .inbox h4 {
    font-size: 3.2rem;
    line-height: 1.5625;
    border-top: 1px solid #95a392;
    border-bottom: 1px solid #95a392;
    padding: 1rem 3rem;
  }
  .company #privacy-policy .privacy-box .inbox .inner {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .company #privacy-policy .privacy-box .inbox .inner ol {
    padding-left: 4.5rem;
    line-height: 1.6666666667;
  }
  .company #privacy-policy .privacy-box .inbox .inner ol li {
    padding-left: 0.5em;
  }
}

/*-------------------------------------------/
    お知らせ
/-------------------------------------------*/
/* 記事一覧 */
.news #news {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.news #news .news-list {
  width: min(100%, 136rem);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 7rem 3.5rem;
}
.news #news .news-list .news-item {
  width: min((100% - 7rem) / 3, 43rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-color03);
  border-radius: 1rem;
  padding: 2rem;
}
.news #news .news-list .news-item .image-box {
  width: min(100%, 39rem);
  aspect-ratio: 390/250;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
}
.news #news .news-list .news-item .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.3s all;
}
.news #news .news-list .news-item .text-box {
  width: 100%;
  padding: 3rem 2rem;
}
.news #news .news-list .news-item .text-box p {
  font-size: 2rem;
  line-height: 1.5;
}
.news #news .news-list .news-item .text-box p.post-date {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  color: #599f4e;
}
.news #news .news-list .news-item .text-box p.post-ttl {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.news #news .news-list .news-item .text-box .post-excerpt {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.news #news .news-list .news-item:hover {
  opacity: 1;
}
.news #news .news-list .news-item:hover .image-box img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .news #news .news-list {
    width: min(100%, 65rem);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 7rem 3.5rem;
  }
  .news #news .news-list .news-item {
    width: min(100%, 430px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-color03);
    border-radius: 1rem;
    padding: 2rem;
  }
  .news #news .news-list .news-item .image-box {
    width: min(100%, 390px);
    aspect-ratio: 390/250;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--white);
  }
  .news #news .news-list .news-item .image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1);
    transition: 0.3s all;
  }
  .news #news .news-list .news-item .text-box {
    width: 100%;
    padding: 3rem 2rem;
  }
  .news #news .news-list .news-item .text-box p {
    font-size: 3rem;
    line-height: 1.6666666667;
  }
  .news #news .news-list .news-item .text-box p.post-date {
    font-size: 2.6rem;
    line-height: 1.3461538462;
    color: #599f4e;
  }
  .news #news .news-list .news-item .text-box p.post-ttl {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3333333333;
    margin-bottom: 0.5em;
  }
  .news #news .news-list .news-item .text-box .post-excerpt {
    line-height: 1.6666666667;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .news #news .news-list .news-item:hover {
    opacity: 1;
  }
  .news #news .news-list .news-item:hover .image-box img {
    transform: scale(1.05);
  }
}

/* 記事詳細 */
.single .post-single {
  padding-top: 10rem;
  padding-bottom: 15rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.single .post-single article {
  width: min(100%, 110rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single .post-single article .post-meta {
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.single .post-single article .post-meta p.post-date {
  font-size: 2.2rem;
  line-height: 1.5909090909;
  color: var(--point-color);
}
.single .post-single article .post-meta .post-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1666666667;
}
.single .post-single article .post-content {
  width: min(100%, 90rem);
  margin: 0 auto;
}
.single .post-single article .post-content p:not(:last-child) {
  margin-bottom: 1.5em;
}
.single .post-single article .post-content .wp-block-image {
  margin-bottom: 5rem;
}
.single .post-single article .btn-box {
  width: 100%;
  text-align: center;
  margin: 9rem auto 0;
}
.single .post-single article .btn-box .btn-pdf {
  font-size: 2.2rem;
  width: 30rem;
  height: 6.5rem;
  border-radius: 3.25rem;
  color: var(--white);
  background: var(--point-color);
  padding: 0 4rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: 0.3s all;
}
.single .post-single article .btn-box .btn-pdf span {
  display: inline-block;
}
.single .post-single article .btn-box .btn-pdf::after {
  display: inline-block;
  content: "";
  width: 1em;
  height: 1.1818181818em;
  background: url("../images/icon_pdf.png") no-repeat;
  background-size: 100% 100%;
}
.single .post-single article .btn-box .btn-pdf:hover {
  opacity: 0.7;
  transform: scale(1.01);
}
.single .post-single article .page-link {
  width: 100%;
  margin: 7rem auto;
}
.single .post-single article .page-link ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single .post-single article .page-link ul li {
  display: inline-block;
}
.single .post-single article .page-link ul li a {
  width: 5rem;
  height: 5rem;
  color: #bfc4a7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single .post-single article .page-link ul li a:hover {
  opacity: 0.8;
}
.single .post-single article .page-link ul li.prev a {
  content: "";
  background: url("../images/icon_arrow-prev.png") center center no-repeat;
  background-size: 2rem 2rem;
}
.single .post-single article .page-link ul li.next a {
  content: "";
  background: url("../images/icon_arrow-next.png") center center no-repeat;
  background-size: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .single .post-single article {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .single .post-single article .post-meta {
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .single .post-single article .post-meta p.post-date {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    color: var(--point-color);
  }
  .single .post-single article .post-meta .post-title {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.25;
  }
  .single .post-single article .post-content {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    margin: 0 auto;
  }
  .single .post-single article .post-content p:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .single .post-single article .post-content .wp-block-image {
    margin-bottom: 5rem;
  }
  .single .post-single article .btn-box {
    width: 100%;
    text-align: center;
    margin: 9rem auto 0;
  }
  .single .post-single article .btn-box .btn-pdf {
    font-size: 2.2rem;
    width: 30rem;
    height: 6.5rem;
    border-radius: 3.25rem;
    color: var(--white);
    background: var(--point-color);
    padding: 0 4rem;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: 0.3s all;
  }
  .single .post-single article .btn-box .btn-pdf span {
    display: inline-block;
  }
  .single .post-single article .btn-box .btn-pdf::after {
    display: inline-block;
    content: "";
    width: 1em;
    height: 1.1818181818em;
    background: url("../images/icon_pdf.png") no-repeat;
    background-size: 100% 100%;
  }
  .single .post-single article .btn-box .btn-pdf:hover {
    opacity: 0.7;
    transform: scale(1.01);
  }
  .single .post-single article .page-link {
    width: 100%;
    margin: 7rem auto;
  }
  .single .post-single article .page-link ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .single .post-single article .page-link ul li {
    display: inline-block;
  }
  .single .post-single article .page-link ul li a {
    width: 5rem;
    height: 5rem;
    color: #bfc4a7;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .single .post-single article .page-link ul li a:hover {
    opacity: 0.8;
  }
  .single .post-single article .page-link ul li.prev a {
    content: "";
    background: url("../images/icon_arrow-prev.png") center center no-repeat;
    background-size: 2rem 2rem;
  }
  .single .post-single article .page-link ul li.next a {
    content: "";
    background: url("../images/icon_arrow-next.png") center center no-repeat;
    background-size: 2rem 2rem;
  }
}

/* ページネーション */
.pagenation {
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 10rem auto 0;
}
.pagenation .page-numbers {
  min-width: 4rem;
  height: 4rem;
  padding: 0 0.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 2rem;
  color: var(--white);
  background: #bfc4a7;
}
.pagenation .page-numbers.current {
  background: var(--point-color);
}
.pagenation .page-numbers.current:hover {
  opacity: 1;
}
.pagenation .page-numbers.next {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/icon_arrow-next.png");
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  background-color: transparent;
}
.pagenation .page-numbers.next:hover {
  opacity: 0.7;
  background-image: url("../images/icon_arrow-next.png");
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  background-color: transparent;
}
.pagenation .page-numbers.prev {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/icon_arrow-prev.png");
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  background-color: transparent;
}
.pagenation .page-numbers.prev:hover {
  opacity: 0.7;
  background-image: url("../images/icon_arrow-prev.png");
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  background-color: transparent;
}
.pagenation .page-numbers:hover {
  opacity: 0.8;
  background: var(--point-color);
}

@media print {
  header {
    display: none;
  }
  .content {
    padding-left: 0;
  }
}
/*---------------------------------------/
  工事中表記
/---------------------------------------*/
.content-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.content-soon p {
  text-align: center;
}

/*---------------------------------------/
  アニメーション
/---------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */