@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header {
  background: var(--col-main-light);
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  top: 0;
  border-bottom: 10px solid var(--col-text);
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: fit-content;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-inner {
  position: relative;
  width: 100%;
  min-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px 20px 18px;
}

/*-------------------
header-nav
--------------------*/
.header-nav {
  width: fit-content;
  margin: 0 0 0 auto;
}
.header-nav-item {
  position: relative;
  border-right: 3px dotted rgb(var(--col-text-rgb), 0.3);
}
.header-nav-item:last-child {
  border: none;
}
.header-nav-link {
  box-sizing: border-box;
  padding: 0 12px;
  font-weight: 700;
}
.header-nav-link:hover {
  opacity: 0.7;
}

/*ドロップダウンメニュー*/
.header-nav-list .dropdown-menu__list {
  position: absolute;
  visibility: hidden;
  display: none;
  transform-origin: top;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  background: var(--col-text);
  box-sizing: border-box;
  padding: 10px 15px;
  min-width: 160px;
  margin: 0 auto;
  left: -15px;
  right: 0;
  margin-top: 0px;
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgb(var(--col-text-rgb), 0.3);
}

.header-nav-list .dropdown-menu__item {
  position: relative;
  line-height: 1.2;
  box-sizing: border-box;
  border-bottom: 2px solid rgba(var(--col-wh-rgb), 0.3);
  letter-spacing: 0;
  font-weight: 600;
  color: var(--col-wh) !important;
  font-size: 1.5rem;
}
.header-nav-list .dropdown-menu__item::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 7px;
  height: 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.header-nav-list .dropdown-menu__item:last-child {
  border: none;
}

.header-nav-list .dropdown-menu__item a {
    padding: 12px;
    display: block;
}
.header-nav-list .dropdown-menu__item:hover a {
  opacity: 0.7;
}

.header-nav-list .dropdown-menu__link {
  display: block;
}

.header-nav-item:hover > .dropdown-menu__list {
  visibility: visible;
  opacity: 1;
  display: block;
  transition: all 0.3s ease;
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
  opacity: 0.7;
}


.drawer-link.current {
  color: var(--col-main);
}

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
#pagetop {
  position: fixed;
  right: 2.5%;
  bottom: 5%;
  z-index: 100;
}

.footer {
  position: relative;
  border-top: 10px solid var(--col-text);
  background: var(--col-main-hilight);
  padding: 80px 0 0;
  /*プルダウン*/
}
.footer-logo-wrap{
  gap: 40px;
  margin-bottom: 30px;
}
.footer-logo {
  display: block;
  width: fit-content;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-l {
  width: 510px;
}
.footer-nav {
  gap: 50px;
    font-weight: 800;
}
.footer-nav-list {
  box-sizing: border-box;
  padding: 0 0 0 30px;
  border-left: 3px dotted rgb(var(--col-text-rgb), 0.3);
}
.footer-nav-item {
  margin-bottom: 12px;
  display: block;
  position: relative;
}
.footer-nav-item:last-child {
  margin-bottom: 0;
}
#footer-nav a {
  display: block;
  position: relative;
}
.footer-nav-link:hover{
  opacity: 0.7;
}
.footer .footer-nav-item:nth-child(3) .footer-nav-link {
  margin-bottom: 15px;
}
.footer .footer-nav-item .dropdown-menu__list {
  margin-top: 10px;
  display: block;
}
.footer .footer-nav-item .dropdown-menu__item {
  padding: 0 0 0 25px;
  box-sizing: border-box;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.5rem;
  position: relative;
}
.footer .footer-nav-item .dropdown-menu__item::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 5px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  margin: auto;
  left: 10px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.footer .footer-nav-item .dropdown-menu__item:last-child {
  margin-bottom: 0;
}
.footer #copyright {
  padding: 15px 0;
  background: var(--col-main-light);
  margin-top: 60px;
}
.footer #copyright small {
  color: var(--col-text);
  font-size: 12px;
}
.footer #copyright small a {
  color: var(--col-text);
}
.footer #copyright small a:hover {
  opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ ent ▽ ---------------*/
.entrance-contents {
  background: url(../img/entrance/ent-deco-tr.png) no-repeat top right, var(--col-main-hilight);
  box-sizing: border-box;
  padding: 190px 0 0;
  position: relative;
}
.entrance-contents::before {
  position: absolute;
  content: "";
  background: url(../img/entrance/ent-deco-br.png) no-repeat left bottom;
  width: 279px;
  height: 420px;
  bottom: -45px;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}
.entrance-header {
  position: relative;
}
.entrance-header-logo {
  margin: 0 auto;
  display: block;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.entrance-footer {
  margin: 0 auto;
  background: var(--col-main-hilight);
  text-align: center;
}
.entrance-copyright {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
}
.entrance-text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 50px;
}
.entrance-inner {
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}
.entrance-wrap {
  margin: 0 auto;
  width: fit-content;
  text-align: center;
  gap: 0;
  position: relative;
}
.entrance-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/entrance/ent-illust.png) no-repeat;
  width: 451px;
  height: 286px;
  left: -200px;
  margin: auto;
  top: -260px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 5;
}
.entrance-main-link {
  display: block;
}
.entrance-sub-link-wrap {
  width: 625px;
}
.entrance-sub-link {
  display: block;
  margin-bottom: 30px;
}

/*--------------- △ ent △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
/*--------------- ▼ main-visual ▼ ---------------*/
.mv {
  margin-top: 100px;
  position: relative;
  height: clamp(680px, 52vw, 762px);
  width: 100%;
  border-bottom: 10px solid var(--col-text);
  background: url(../img/mv/mv-bg-deco-tr.png) no-repeat top right, url(../img/mv/mv-bg-deco-bl.png) no-repeat bottom left, url(../img/mv/mv-bg-deco-br.png) no-repeat bottom right, url(../img/mv/mv-bg.jpg) no-repeat center center/cover;
  box-sizing: border-box;
}
.mv-catch {
  margin: 0 auto 20px;
  width: clamp(750px, 44vw, 855px);
  height: fit-content;
  position: relative;
  top: 30px;
}
.mv-catch::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust01.png) no-repeat;
  width: 326px;
  height: 500px;
  left: -270px;
  top: 60px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}
.mv-img {
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: fit-content;
}
.mv-btn-wrap {
  position: relative;
  margin: 0 auto;
}
.mv-btn-box {
  position: relative;
  box-sizing: border-box;
  padding: 40px 60px 70px;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  background: url(../img/mv/mv-btn-frame.png) no-repeat center center/contain;
  width: 506px;
  z-index: 2;
}
.mv-btn-box:nth-child(2) {
  top: -54px;
  z-index: 1;
}
.mv-btn-box .btn {
  width: 320px;
  height: 80px;
  margin: 0 auto;
}
.mv-btn-box .catch {
  margin: 0 auto 5px;
  display: block;
  font-size: 1.4rem;
}

/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
.top-section {
  box-sizing: border-box;
  padding: 100px 0;
  position: relative;
  width: 100%;
}

/*--------------------
top-worries
---------------------*/
.top-worries {
  background: var(--col-main-hilight);
  max-width: 1920px;
  margin: 0 auto;
  z-index: 2;
  padding: 100px 0 80px;
}
.top-worries::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg01.png) no-repeat center bottom/1920px;
  width: 100%;
  height: 1116px;
  bottom: 0;
  background-size: 1920px;
  left: 0;
  margin: auto;
  right: 0;
  transition: all 0.3s ease;
}
.top-worries-list {
  min-height: 740px;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.top-worries-list::after {
  position: absolute;
  content: "";
  background: url(../img/common/illust02.png) no-repeat;
  width: 168px;
  height: 268px;
  margin: auto;
  right: 20px;
  top: -200px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-worries-list::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw01.png) no-repeat;
  width: 124px;
  height: 136px;
  left: 0;
  margin: auto;
  right: 0;
  bottom: -190px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 3;
}
.top-worries-item {
  position: absolute;
}
.top-worries-item:nth-child(1) {
  top: 60px;
  left: 40px;
}
.top-worries-item:nth-child(2) {
  top: 0;
  right: 170px;
  z-index: 2;
}
.top-worries-item:nth-child(3) {
  top: 400px;
  left: 150px;
  z-index: 2;
}
.top-worries-item:nth-child(4) {
  top: 295px;
  right: 50px;
}

/*--------------------
top-solution
---------------------*/
#top-solution {
  position: relative;
}
#top-solution::before {
  position: absolute;
  content: "";
  background: url(../img/common/cut02.png) no-repeat center bottom;
  width: 100%;
  height: 75px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}

.top-solution {
  padding: 340px 0 100px;
  height: 1088px;
}
.top-solution::before {
  position: absolute;
  content: "";
  background: url(../img/common/cut01.png) no-repeat top center;
  width: 100%;
  height: 77px;
  top: 0;
  left: 0;
  margin: auto;
  background-size: 1920px;
  right: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-solution::after {
  position: absolute;
  content: "";
  background: url(../img/common/bg02.png) no-repeat center top;
  width: 100%;
  height: 1015px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
.top-solution-ttl {
  position: absolute;
  transform: translateY(-105%);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.top-solution-ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust03.png) no-repeat;
  width: 222px;
  height: 338px;
  left: -125px;
  margin: auto;
  top: -97px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-solution-container {
  box-sizing: border-box;
  padding: 200px 50px 50px;
  position: relative;
  z-index: 1;
}
.top-solution-container::before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--col-wh);
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 0;
}
.top-solution-container::after {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-solution-container .container-inner {
  z-index: 1;
  position: relative;
}
.top-solution-container .container-inner::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco02-br.png) no-repeat bottom right;
  width: 336px;
  height: 358px;
  bottom: -28px;
  right: -28px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-solution-container .container-inner::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco02-tl.png) no-repeat bottom right;
  width: 333px;
  height: 391px;
  top: -195px;
  left: -28px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-solution-container .container-text {
  margin: 0 auto 30px;
}
.top-solution-container .container-line-btn {
  width: 320px;
  height: 80px;
  margin: 0 auto;
}

/*--------------------
top-guide
---------------------*/
.top-guide {
  background: var(--col-sub02);
}
.top-guide::after {
  position: absolute;
  content: "";
  background: url(../img/common/cut03.png) no-repeat bottom center;
  width: 100%;
  height: 75px;
  bottom: -3px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
.top-guide-ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust04.png) no-repeat;
  width: 315px;
  height: 502px;
  bottom: 0;
  margin: auto;
  right: -60px;
  top: 350px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-guide-list {
  counter-reset: number 0;
}
.top-guide-item {
  position: relative;
  margin: 0 auto 10px;
  z-index: 1;
  box-sizing: border-box;
  padding: 80px 100px;
}
.top-guide-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-guide-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}
.top-guide-item:last-child .item-inner::before {
  content: none;
}
.top-guide-item:nth-child(odd)::before {
  clip-path: polygon(0 0, 100% 13%, 100% 94%, 0% 100%);
  background: var(--col-wh);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.top-guide-item:nth-child(odd)::after {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 13%, 100% 94%, 0% 100%);
  background: var(--col-text);
}
.top-guide-item:nth-child(even)::before {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 90%);
  background: var(--col-wh);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.top-guide-item:nth-child(even)::after {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 90%);
  width: 100%;
  height: 100%;
  background: var(--col-text);
}
.top-guide-item:last-child::before{
clip-path: polygon(0 7%, 100% 0%, 100% 90%, 0 100%);
    background: var(--col-wh);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}
.top-guide-item:last-child::after {
clip-path: polygon(0 7%, 100% 0%, 100% 90%, 0 100%);
  width: 100%;
  height: 100%;
  background: var(--col-text);
}

.top-guide-item:nth-child(1) .step {
  color: var(--col-sub02);
}
.top-guide-item:nth-child(1) .ttl-catch {
  top: -130px;
  left: -80px;
}
.top-guide-item:nth-child(2) .step {
  color: var(--col-sub03);
}
.top-guide-item:nth-child(2) .ttl-catch {
  top: -100px;
  right: 50px;
}
.top-guide-item:nth-child(3) .step {
  color: var(--col-sub04);
}
.top-guide-item:nth-child(3) .ttl-catch {
  top: -100px;
  left: 40px;
}
.top-guide-item:nth-child(4) .step {
  color: var(--col-main);
}
.top-guide-item:nth-child(4) .ttl-catch {
  top: -90px;
  right: 110px;
}
.top-guide-item:nth-child(4) .ttl-catch02 {
  position: absolute;
  top: -100px;
  left: -140px;
  color: var(--col-wh);
  background: url(../img/common/guide-catch-deco.png) no-repeat center center/contain;
  width: 216px;
  height: 170px;
  box-sizing: border-box;
  padding: 32px 12px 10px;
  font-size: 2rem;
}
.top-guide-item:nth-child(4) .ttl-catch02 .large {
  font-size: 3.4rem;
}
.top-guide-item:nth-child(4) .ttl-catch02 .text {
  display: block;
  transform: rotate(-8deg);
  font-family: var(--font-ttl-ja) !important;
  font-weight: 600;
}
.top-guide-item:nth-child(4) .ttl-catch02 .num {
  font-weight: 300;
}
.top-guide-item:nth-child(4) .item-ttl::before {
  position: absolute;
  content: "";
  background: url(../img/top/guide-catch04-c.png) no-repeat;
  width: 177px;
  height: 169px;
  bottom: 0;
  margin: auto;
  right: -200px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-guide-item .item-inner {
  position: relative;
}
.top-guide-item .item-inner::before {
  position: absolute;
  content: "";
  background: var(--col-text);
  width: 30px;
  height: 18px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: -96px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-guide-item .item-ttl {
  width: fit-content;
  text-align: center;
  margin: 0 auto 30px;
}
.top-guide-item .item-ttl .step {
  font-size: 3rem;
  font-family: var(--font-ttl-en);
  display: block;
  position: relative;
  letter-spacing: 0;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 50px 0 0;
}
.top-guide-item .item-ttl .step::before {
  position: absolute;
  content: "0" counter(number);
  counter-increment: number 1;
  bottom: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-guide-item .item-ttl .ttl-catch {
  position: absolute;
}
.top-guide-item .item-text {
  margin: 0 auto 20px;
}
.top-guide-item .item-btn {
  width: 580px;
  height: 80px;
  margin: 0 auto;
}
.top-guide-item .item-link-wrap {
  margin: 0 auto;
  text-align: center;
}
.top-guide-item .item-link-wrap .catch {
  margin: 0 auto 6px;
  display: block;
}
.top-guide-item .item-contact {
  gap: 30px;
}
.top-guide-item .item-contact .item-contact-btn {
  width: 320px;
}
.top-guide-item .item-contact .item-contact-btn a {
  width: 100%;
  min-height: 80px;
  border: 6px solid var(--col-text);
  font-size: 2rem;
}

/*--------------------
top-reason
---------------------*/
#top-reason {
  position: relative;
}
#top-reason::before {
  position: absolute;
  content: "";
  background: url(../img/common/cut04.png) no-repeat center bottom;
  width: 100%;
  height: 75px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 3;
}

.top-reason {
  padding: 100px 0 175px;
  background: var(--col-main-hilight);
}
.top-reason::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg05-top.png) no-repeat center top;
  width: 100%;
  height: 580px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 0;
}
.top-reason::after {
  position: absolute;
  content: "";
  background: url(../img/common/bg05-bot.png) no-repeat center bottom;
  width: 100%;
  height: 580px;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-reason-text {
  margin: 0 auto 100px;
}
.top-reason-container {
  position: relative;
  box-sizing: border-box;
  padding: 160px 100px 70px;
  margin: 0 auto 50px;
  z-index: 2;
}
.top-reason-container::before {
  position: absolute;
  content: "";
  background: var(--col-sub04);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: -1;
}
.top-reason-container::after {
  position: absolute;
  content: "";
  background: var(--col-text);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  width: 100%;
  height: 100%;
  z-index: -2;
}
.top-reason-container .container-ttl {
  position: absolute;
  transform: translateY(-20%);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: fit-content;
  background: var(--col-main-dark);
  box-sizing: border-box;
  padding: 20px 50px;
  border: 10px solid var(--col-text);
}
.top-reason-container .container-ttl::before{
  content: "";
  position: absolute;
  background: url(../img/top/reason-deco.png)no-repeat top left;
  width: 237px;
  height: 193px;
  left: -390px;
  top: -40px;
  margin: auto;
  z-index: 2;
}
.top-reason-container .container-list {
  gap: 30px;
  counter-reset: number 0;
}
.top-reason-container .container-item {
  box-sizing: border-box;
  padding: 50px 25px 25px;
  width: 340px;
  min-height: 340px;
  border: 10px solid var(--col-text);
}
.top-reason-container .container-item:nth-child(1) {
  background: url(../img/common/deco03-a-tl.png) no-repeat top left, url(../img/common/deco03-a-br.png) no-repeat bottom right, var(--col-wh);
}
.top-reason-container .container-item:nth-child(1) .num {
  background: url(../img/common/num-deco01.png) no-repeat center center/contain;
}
.top-reason-container .container-item:nth-child(2) {
  background: url(../img/common/deco03-b-tl.png) no-repeat top left, url(../img/common/deco03-b-br.png) no-repeat bottom right, var(--col-wh);
}
.top-reason-container .container-item:nth-child(2) .num {
  background: url(../img/common/num-deco02.png) no-repeat center center/contain;
}
.top-reason-container .container-item:nth-child(3) {
  background: url(../img/common/deco03-c-tl.png) no-repeat top left, url(../img/common/deco03-c-br.png) no-repeat bottom right, var(--col-wh);
}
.top-reason-container .container-item:nth-child(3) .num {
  background: url(../img/common/num-deco03.png) no-repeat center center/contain;
}
.top-reason-container .container-item .item-ttl {
  font-size: 3rem;
  text-align: center;
  margin: 0 auto 20px;
  font-weight: 800;
}
.top-reason-container .container-item .item-ttl .num {
  position: absolute;
  font-family: var(--font-ttl-en);
  display: block;
  box-sizing: border-box;
  padding: 20px 35px;
  top: -90px;
  left: 0;
  right: 0;
  margin: auto;
}
.top-reason-btn {
  margin: 0 auto;
  width: 580px;
  min-height: 80px;
}

/*--------------------
top-voice
---------------------*/
/*共通*/
.com-voice-list {
  gap: 30px;
}
.com-voice-list .item-link {
  display: block;
  width: 340px;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 30px 20px;
  border: 10px solid var(--col-text);
  position: relative;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.com-voice-list .item-link:hover{
  opacity: 0.7;
  bottom: -10px;
  right: -5px;
}
.com-voice-list .item .item-img {
  aspect-ratio: 1/1;
  width: 280px;
  height: 280px;
  margin: 0 auto 7px;
}
.com-voice-list .item .item-ttl {
  font-weight: 800;
  border-bottom: 1px dotted var(--col-text);
  box-sizing: border-box;
  padding: 0 0 10px 0;
  font-size: 2rem;
}

.top-voice {
  padding: 180px 0;
  background: var(--col-main-light);
}
.top-voice::after {
  position: absolute;
  content: "";
  background: url(../img/common/cut05.png) no-repeat center bottom;
  width: 100%;
  height: 75px;
  bottom: -7px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
.top-voice::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg03.png) no-repeat center bottom;
  width: 100%;
  height: 820px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
.top-voice-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: -180px;
  margin: auto;
}
.top-voice-list {
  margin: 0 auto 50px;
  position: relative;
}
.top-voice-list::before {
  position: absolute;
  content: "";
  background: url(../img/top/voice-deco.png) no-repeat;
  width: 257px;
  height: 216px;
  margin: auto;
  right: -50px;
  top: -180px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-voice-btn {
  margin: 0 auto;
  width: 580px;
  min-height: 80px;
}

.top-voice .no-post{
  position: relative;
  background: var(--col-wh);
  margin: 0 auto;
  display: block;
  width: fit-content;
  z-index: 5;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgb(var(--col-text-rgb), 0.5);
}


.top-voice .inbox::before {
  position: absolute;
  content: "";
  background: url(../img/top/case-deco.png)no-repeat bottom right;
  width: 257px;
  height: 216px;
  bottom: -410px;
  right: -50px;
  background-size: contain;
}
/*--------------------
top-products
---------------------*/

/*共通*/
.com-products-list {
  gap: 30px;
}
.com-products-list .item {
  width: calc((100% - 60px) / 3);
  height: 425px;
  margin: 0 !important;
}
.com-products-list .item .item-link{
  box-sizing: border-box;
  padding: 30px 20px;
  background: var(--col-wh);
  border: 10px solid var(--col-text);
  position: relative;
  display: block;
  bottom: 0;
  right: 0;
  height: 100%;
}
.com-products-list .item-link:hover{
  opacity: 0.7;
  bottom: -10px;
  right: -10px;
}
.com-products-list .item .item-img {
  aspect-ratio: 1/1;
  width: 280px;
  height: 280px;
  margin: 0 auto 12px;
}
.com-products-list .item .item-ttl {
  font-weight: 8800;
  border-bottom: 1px dotted var(--col-text);
  box-sizing: border-box;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
}
.com-products-list .item .item-price {
  text-align: right;
  font-weight: 800;
  display: block;
}

.top-sec-wrap01 {
  background: var(--col-main-hilight);
  padding: 0 0 175px;
  position: relative;
}

.top-products {
  margin: 0 auto 100px;
  position: relative;
  min-height: 970px;
}
.top-products::before {
  position: absolute;
  content: "";
  background: var(--col-sub02);
  border: 10px solid var(--col-text);
  width: 1280px;
  height: 650px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 310px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-products-wrap {
  position: relative;
}

.top-products-ttl {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}


.top-products-container {
  box-sizing: border-box;
  min-height: 540px;
  position: relative;
  top: 210px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 0 50px !important;
}
.top-products-container .container-list {
  margin: 0 auto 50px;
  left: 0;
  right: 0;
  max-width: 1080px;
  transition-timing-function: linear;
}
.top-products .com-products-list .item {
  width: calc((100% - 60px) / 3)!important;
  margin: 0 !important;
  min-height: 535px;
}
.top-products-btn {
  margin: 0 auto;
  width: 580px;
  height: 70px;
}

.top-products .no-post{
  position: absolute;
  top: 550px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*--------------------
top-news
---------------------*/
.top-news-container {
  position: relative;
  box-sizing: border-box;
  padding: 60px 80px 60px 300px;
  min-height: 400px;
}
.top-news-container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0%, 94% 0%, 100% 100%, 0% 100%);
  background: var(--col-wh);
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  z-index: -1;
}
.top-news-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  clip-path: polygon(10% 0%, 94% 0%, 100% 100%, 0% 100%);
  background: var(--col-text);
  width: 100%;
  height: 100%;
  z-index: -2;
}
.top-news .news-list {
  width: 600px;
  margin: 0 0 0 auto;
}
.top-news-l {
  position: absolute;
  left: -100px;
  top: -50px;
}
.top-news-btn {
  width: 320px;
  height: 80px;
  left: 100px;
  top: 30px;
}
.top-news-btn:hover {
  top: 38px;
  left: 108px;
}

/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
  position: relative;
  padding: 100px 0;
  box-sizing: border-box;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 100px;
  background: url(../img/sv/sv-bl.png) no-repeat bottom left, url(../img/sv/sv-tr.png) no-repeat top right, url(../img/sv/sv-bg.jpg) no-repeat center center/cover;
  overflow: hidden;
  border-bottom: 10px solid var(--col-text);
}
.sv-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 100%;
}
.sv-ttl {
  height: fit-content;
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  bottom: 0;
  height: fit-content;
  z-index: 5;
}
.sv-ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust01.png) no-repeat;
  width: 270px;
  height: 370px;
  bottom: -230px;
  left: -240px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}
.sv-ttl::after {
	position: absolute;
	content: '';
	background: url(../img/sv/sv-ttl-deco.png) no-repeat right bottom;
	width: 160px;
	height: 140px;
	background-size: contain;
	right: -200px;
	bottom: -10px;
  transform: scale(-1,1);
}
.sv-img {
  position: absolute;
  bottom: -25px;
  right: 0;


}
.sv-img .img{
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0% 100%);
  height: 257px;
}
.sv-img::before {
  position: absolute;
  content: "";
  clip-path: polygon(0 24%, 100% 0, 100% 100%, 0% 100%);
  background: var(--col-text);
  width: 442px;
  height:277px;
  left: -9px;
  margin: auto;
  top: -9px;
  background-size: contain;
  transition: all 0.3s ease;
}
.sv-img .img {
  aspect-ratio: 420/232;
  width: 420px;
  height: 232px;
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0% 100%);
  box-sizing: border-box;
}
.sv-img .img-wrap {
  position: relative;
}
.sv-img .img-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/sv/sv-deo01.png) no-repeat;
  width: 60px;
  height: 58px;
  margin: auto;
  left: 40px;
  top: -30px;
  background-size: contain;
  transition: all 0.3s ease;
}
.sv-img .img-wrap::after {
  position: absolute;
  content: "";
  background: url(../img/sv/sv-deo02.png) no-repeat;
  width: 71px;
  height: 61px;
  bottom: 30px;
  margin: auto;
  right: -70px;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▼ 下層共通タイトル ▼ ---------------*/
/*--------------- ▲ 下層共通タイトル ▲ ---------------*/
/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 1;
  min-width: 1280px;
}
#bread-clumb ul {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
#bread-clumb li {
  position: relative;
  color: var(--col-text);
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}
#bread-clumb li:last-child {
  margin-right: 0;
}
#bread-clumb li:last-child:after {
  display: none;
}
#bread-clumb li a {
  color: var(--col-text);
  border-bottom: 1px solid;
  display: block;
}
#bread-clumb li a:hover {
  opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ sub02_chart ▼ ---------------*/
/*chartフォルダ格納*/
/*--------------- ▲ sub02_chart ▲ ---------------*/
/*--------------- ▼ sub03_products ▼ ---------------*/
/*-----------------------
products
-------------------------*/
#products {
  background: var(--col-main-hilight);
}
#products .products-balloon {
  max-width: 950px;
  margin: 0 auto;
}
#products .products-list .item {
  height: auto;
  box-shadow: 6px 8px 0 rgb(var(--col-text-rgb), 0.3);
}
#products .products-list .item-ttl {
  font-size: 2rem;
  font-weight: 800;
}
#products .products-list .item-img {
  margin: 0 auto 12px;
}
#products .products-list .item-tag {
  margin-bottom: 10px;
}
#products .tag-select-box{
  margin: 0 auto 30px 0;
}

#products .item .item-price{
  font-size: 3rem;
}
/*-----------------------
products-post
-------------------------*/


.products-post {
  background: var(--col-main-hilight);
}
.products-post-container {
  background: var(--col-wh);
  border: 10px solid var(--col-text);
  box-sizing: border-box;
  padding: 60px;
}
.products-post-container .container-wrap {
  gap: 30px;
}
.products-post-container .container-l {
  width: 480px;
}
.products-post-container .container-img {
  aspect-ratio: 1/1;
  width: 450px;
  height: 450px;
}
.products-post-container .container-tag {
  margin-bottom: 12px;
}
.products-post-container .container-price {
  font-size: 3.4rem;
  font-weight: 800;
  text-align: right;
  display: block;
  margin: 0 0 20px auto;
}

/*--------------- ▲ sub03_products ▲ ---------------*/
/*--------------- ▼ sub04_eco_water_heater ▼ ---------------*/
/*-----------------------
eco_water_heater
-------------------------*/
.eco_water_heater {
  position: relative;
}
.eco_water_heater-lead {
  padding: 100px 0 175px;
  background: var(--col-main-hilight);
}
.eco_water_heater-lead::before {
  position: absolute;
  content: "";
  background: url(../img/common/bg05-bot.png) no-repeat center bottom;
  width: 100%;
  height: 580px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 1;
}
.eco_water_heater-lead:after {
  position: absolute;
  content: "";
  background: url(../img/common/cut04.png) no-repeat bottom;
  width: 100%;
  height: 75px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  z-index: 2;
}
.eco_water_heater-lead-container {
  position: relative;
}
.eco_water_heater-lead-container .container-box-wrap {
  gap: 30px;
}
.eco_water_heater-lead-container .container-ttl {
  text-align: center;
  margin: 0 auto 40px;
}
.eco_water_heater-lead-container .container-box {
  background: var(--col-sub03);
  box-sizing: border-box;
  padding: 60px;
  border: 10px solid var(--col-text);
}
.eco_water_heater-lead-container .container-img {
  aspect-ratio: 450/400;
  width: 450px;
  height: 400px;
  border: 10px solid var(--col-text);
}
.eco_water_heater-lead-container .container-text {
  width: 480px;
}
.eco_water_heater-lead-container .container-note {
  margin-top: 25px;
}
.eco_water_heater-lead-container .container-note-ttl {
  margin-bottom: 15px;
}

/*-----------------------
eco_water_heater-point
-------------------------*/
.eco_water_heater-point {
  background: var(--col-main-light);
  padding: 100px 0 175px;
}
.eco_water_heater-point::before {
  position: absolute;
  content: "";
  background: url(../img/common/cut07.png) no-repeat;
  width: 100%;
  height: 75px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
.eco_water_heater-point-price {
  margin: 40px auto 0;
  text-align: center;
}
.eco_water_heater-point-text {
  margin: 0 auto 80px;
}
.eco_water_heater-point-main-container {
  position: relative;
  background: url(../img/common/deco05-br.png) no-repeat bottom right, var(--col-wh);
  box-sizing: border-box;
  padding: 60px;
  border: 10px solid var(--col-text);
  margin-bottom: 80px;
}
.eco_water_heater-point-main-container .main-container-ttl {
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
.eco_water_heater-point-main-container .main-container-img {
  aspect-ratio: 260/230;
  width: 260px;
  height: 230px;
}
.eco_water_heater-point-main-container .main-container-text {
  margin-top: 50px;
}
.eco_water_heater-point-sub-container {
  position: relative;
  width: 520px;
  border: 10px solid var(--col-text);
  background: var(--col-sub04);
  box-sizing: border-box;
  padding: 60px 30px 20px;
  text-align: center;
}
.eco_water_heater-point-sub-container-wrap {
  gap: 40px;
}
.eco_water_heater-point-sub-container .sub-container-ttl {
  position: absolute;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
.eco_water_heater-point-sub-container .sub-container-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3.5;
}
.eco_water_heater-point-sub-container .sub-container-text .text {
  position: relative;
  display: block;
}
.eco_water_heater-point-sub-container .sub-container-text .text::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-clause.png) no-repeat;
  width: 25px;
  height: 25px;
  bottom: -15px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.eco_water_heater-point-sub-container .sub-container-text .text:last-of-type::before {
  content: none;
}
.eco_water_heater-point-sub-container .sub-container-text .large {
  font-weight: 800;
}
.eco_water_heater-point-sub-container .sub-container-text .price {
  font-size: 4rem;
  font-weight: 800;
  line-height: 2;
}

/*-----------------------
eco_water_heater-products
-------------------------*/
.eco_water_heater-products {
  background: var(--col-main-hilight);
}
.eco_water_heater-products .inbox {
  position: relative;
}
.eco_water_heater-products .inbox::before {
  position: absolute;
  content: "";
  background: url(../img/common/illust01.png) no-repeat;
  width: 241px;
  height: 369px;
  bottom: 0;
  right: -100px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  transform: scale(-1, 1);
}
.eco_water_heater-products-text {
  margin: 0 auto 50px;
}
.eco_water_heater-products-btn {
  margin: 0 auto;
  width: 580px;
  height: 80px;
}

/*--------------- ▲ sub04_eco_water_heater ▲ ---------------*/
/*--------------- ▼ sub05_flow ▼ ---------------*/
/*-----------------------
flow-links
-------------------------*/
.flow-links {
  background: var(--col-main-hilight);
  padding: 100px 0 0;
}
.flow-links-list {
  gap: 20px;
}
.flow-links-item {
  width: 530px;
}
.flow-links-item .item-btn {
  width: 100%;
  height: 80px;
}

/*-----------------------
flow
-------------------------*/
#flow {
  background: var(--col-main-hilight);
}
#flow .flow {
  background: var(--col-main-hilight);
  padding: 100px 0 175px;
}
#flow .flow::before {
  position: absolute;
  content: "";
  background: url(../img/common/cut04.png) no-repeat;
  width: 100%;
  height: 75px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
  transform: scale(-1, 1);
  z-index: 1;
}
#flow .flow::after {
  position: absolute;
  content: "";
  background: url(../img/common/bg05-bot.png) no-repeat;
  width: 100%;
  height: 580px;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  background-size: 1920px;
  transition: all 0.3s ease;
}
#flow .flow-list {
  counter-reset: number 0;
  position: relative;
}
#flow .flow-list::before {
  position: absolute;
  content: "";
  border-left: 3px dotted var(--col-text);
  width: 3px;
  height: 100%;
  left: 100px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
#flow .flow-item {
  position: relative;
  background: var(--col-sub02);
  border: 10px solid var(--col-text);
  box-sizing: border-box;
  padding: 60px;
  margin-bottom: 30px;
  z-index: 2;
}
#flow .flow-item:last-child {
  margin-bottom: 0;
}
#flow .flow-item .item-icon {
  position: relative;
  aspect-ratio: 1/1;
  width: 148px;
  height: 148px;
  background: var(--col-sub03);
  border-radius: 50%;
  border: 10px solid var(--col-text);
}
#flow .flow-item .item-text-wrap {
  width: 770px;
}
#flow .flow-item .item-ttl {
  font-size: 3rem;
  font-weight: 800;
  width: fit-content;
  box-sizing: border-box;
  padding: 0 0 0 55px;
  margin-bottom: 15px;
}
#flow .flow-item .item-ttl::before {
  position: absolute;
  content: "0" counter(number) ".";
  counter-increment: number 1;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

#flow .flow-list::after{
  position: absolute;
  content: "";
  background: url(../img/common/illust02.png)no-repeat;
  top:-180px;
  right: 0;
  width: 220px;
  height: 290px;
  background-size: contain;
  
}
/*-----------------------
flow-support
-------------------------*/
.flow-support {
  background: url(../img/common/bg06-bot.png) repeat-x center bottom, var(--col-main-light);
}
.flow-support-ttl {
  margin: 0 auto 70px;
}
.flow-support-item {
  box-sizing: border-box;
  padding: 70px 55px 60px;
    background: 
  url(../img/common/deco06-tl.png)no-repeat top left,
  url(../img/common/deco06-br.png)no-repeat bottom right,
  var(--col-sub04);
  border: 10px solid var(--col-text);
  margin-bottom: 70px;
  
}
.flow-support-item .item-ttl {
  text-align: center;
  margin: 0 auto 30px;
}
.flow-support-item .item-ttl .num {
  font-size: 3rem;
  font-family: var(--font-ttl-en);
  background: url(../img/common/num-deco02.png) no-repeat center center/contain;
  width: 100px;
  height: 84px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
}

/*--------------- ▲ sub05_flow ▲ ---------------*/
/*--------------- ▼ sub06_voice ▼ ---------------*/
/*-----------------------
voice
-------------------------*/
#voice .voice {
  background: var(--col-main-hilight);
}
#voice .voice .item {
  box-shadow: 6px 10px 0 rgb(var(--col-text-rgb), 0.3);
}

/*-----------------------
voice-post
-------------------------*/
#voice-post .voice-post {
  background: var(--col-main-hilight);
}
#voice-post .voice-post-container {
  background: var(--col-main-light);
  border: 10px solid var(--col-text);
  box-sizing: border-box;
  padding: 60px;
}
#voice-post .voice-post-container .container-ttl {
  margin: 0 auto 30px;
}
#voice-post .voice-post-container .container-imgs-wrap {
  margin: 0 auto 40px;
  position: relative;
}
#voice-post .voice-post-container .container-imgs-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw03.png) no-repeat;
  width: 130px;
  height: 59px;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}
#voice-post .voice-post-container .container-img{
  width: 450px;
  position: relative;
}
#voice-post .voice-post-container .container-img .img {
  aspect-ratio: 1/1;
  width: 450px;
  height: 450px;
  position: relative;
}

#voice-post .voice-post-container .container-img.before::before{
  position: absolute;
  content: "";
  background: url(../img/common/text-before.png)no-repeat center top;
  margin: auto;
  top: -12px;
  left: 0;
  right: 0;
  background-size: contain;
  width: 120px;
  height: 37px;
  z-index: 2;
}
#voice-post .voice-post-container .container-img.after::after{
  position: absolute;
  content: "";
  background: url(../img/common/text-after.png)no-repeat center top;
  margin: auto;
  top: -12px;
  left: 0;
  right: 0;
  background-size: contain;
  width: 107px;
  height: 37px;
  z-index: 2;
}
/*-----------------------

-------------------------*/
/*--------------- ▲ sub06_voice ▲ ---------------*/
/*--------------- ▼ sub07_info ▼ ---------------*/
/*-----------------------
info-greetings
-------------------------*/
.info-greetings {
  background: url(../img/common/bg05-bot.png) no-repeat center bottom, var(--col-main-hilight);
  border-bottom: 10px solid var(--col-text);
}
.info-greetings-container {
  background: var(--col-sub03);
  box-sizing: border-box;
  padding: 60px;
  border: 10px solid var(--col-text);
}
.info-greetings-container .container-ttl {
  text-align: center;
  margin: 0 auto 30px;
}
.info-greetings-container .container-img {
  aspect-ratio: 340/300;
  width: 330px;
  height: 290px;
  margin: 0 auto 10px;
}
.info-greetings-container .container-img-wrap .name {
  text-align: center;
  margin: 0 auto;
}
.info-greetings-container .container-text {
  width: 590px;
}

/*-----------------------
info-outline
-------------------------*/
.info-outline {
  background: url(../img/common/bg06-bot.png) no-repeat center bottom, var(--col-main-light);
}
.info-outline-container {
  background: var(--col-sub04);
  border: 10px solid var(--col-text);
  box-sizing: border-box;
  padding: 60px;
  margin: 0 auto 60px;
}
.info-outline-map {
  border: 10px solid var(--col-text);
  position: relative;
  margin-top: -40px;
}
.info-outline-map-container {
  margin: 0 auto 50px;
}
.info-outline-map-ttl {
  margin: 0 auto;
  width: 400px;
  text-align: center;
  z-index: 2;
}

/*----------------------

-------------------------*/
/*--------------- ▲ sub07_info ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  width: 19%;
  margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
  padding: 10px 0;
  display: block;
  color: var(--col-main);
  background: var(--col-base);
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

.news-post .tag-select-box{
  margin: -30px 0 50px auto;
}
/*タグ一覧
-------------------------------*/
.tag-select-box {
  position: relative;
  margin: 0 0 20px auto;
  min-width: 230px;
  z-index: 1;
  width: 50%;
}
.tag-select-box:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--col-wh);
  pointer-events: none;
}
.tag-select-box:before{
  content: "";
  position: absolute;
  background: var(--col-text);
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
  z-index: 0;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 2rem;
  margin-left: auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border: 6px solid var(--col-text);
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: var(--col-text);
  font-weight: 800;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
}
.tag-select-box #tag-select option {
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
  background: var(--col-text);
  border-bottom: 1px solid rgb(var(--col-text-rgb), 0.3);
  color: var(--col-wh);
}
.tag-select-inner{
  position: relative;
}
.tag-select-inner::before{
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width:100%;
  height: 100%;
  right: 0;
  z-index: -2;
}

.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  margin: 10px 10px 0 0;
  min-width: 190px;
  display: inline-block;
  vertical-align: middle;
}
.post-wrp .tag-change li a {
  border: solid 1px var(--col-main);
  color: var(--col-main);
  background: var(--col-base);
  padding: 10px 15px;
  display: block;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

/*詳細
-------------------------------*/
.s-post .news-tag {
  margin-bottom: 20px;
}

.s-post time {
  margin-bottom: 10px;
}

.s-time-tag {
  margin-bottom: 20px;
}

.sb-post-body {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid;
  line-height: 2;
}

/*--------------- ▲ お知らせ ▲ ---------------*/