/*
Theme Name: miramoru
Description: miramoruサイト用カスタムテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: miramoru
*/

@charset "utf-8";

/*********************************************
全体共通
*********************************************/
#wpadminbar {
  position: fixed!important; /* WPログインツールバーがズレる対処 */
}

:root {
  --color-green: #248879;
  --color-pale-green: #EFFBF9;
}

html{
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4.7vw;
  line-height: 1.75em;
  letter-spacing: 0.01em;
  text-align: justify;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  color: #343434;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden!important;
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
img {
  width: 100%;
  height: auto;
  line-height: 0;
}
a {
  color: inherit!important;
  pointer-events: painted!important;
  -webkit-tap-highlight-color: transparent;
}
section {
  padding-bottom: 16vw;
}
.sp-only {
  display: block!important;
}
.pc-only {
  display: none!important;
}
.anchor-target {
  scroll-margin-top: 20vw!important;
}

.container {
  padding-top: 80px!important;
  padding: 0 4vw;
  overflow: hidden;
}
body.home .container {
  padding: 4vw 4vw 0;
  overflow: hidden;
}

main {
  padding: 4vw 4vw;
  margin: 0 -4vw;
}

/*********************************************
共通装飾
*********************************************/
.title {
  text-align: center;
}
.linar-grad_green {
  position: relative;
  display: inline-block;
  line-height: 1.5em;
}
.linar-grad_green::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px; /* 下線の太さ：要調整 */
  background: linear-gradient(to right, #e8f9d6, #d4f0e8);
  z-index: -1;
}

/* ctaボタン */
.btn-wrap {
  display: flex;
  margin: 0 2vw;
}
#wellbio-top .sec_fv .btn-wrap {
  bottom: 16vw;
  position: relative;
}
.btn-a-wrap {
  width: calc(100% / 2);
}
.btn-common {
  position: relative;
  background: linear-gradient(to right, #F89629, #F47B01);
  border: 0.15em solid #fff;
  border-radius: 0.5em;
  height: 19vw;
  filter: drop-shadow(0em 0.5em 1em rgba(243, 123, 1, 0.2));
  margin: 0 0.9vw;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.3em;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.btn-common.green {
  background: var(--color-green);
  filter: drop-shadow(0em 0.5em 1em rgba(36, 154, 134, 0.2));
}
#facility-list .btn-common {
  font-size: 4.35vw;
}
.btn-a-wrap_full .btn-common {
  height: 21vw!important;
  font-size: 5.7vw !important;
  margin: 0 auto;
  width: 100%;
}
.btn-common .txt {
  position: absolute;
  left: 3.5vw;
}
.btn-a-wrap_full .btn-common .txt {
  left: 8vw;
}
.btn-common .arrow {
  background: linear-gradient(to bottom, #fff, #EBEBEB);
  border-radius: 50%;
  width: 7vw;
  height: 7vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  right: 5.5%;
  position: absolute;
}
.btn-a-wrap_full .btn-common .arrow {
  width: 7.5vw;
  height: 7.5vw;
}
.btn-common .arrow::before {
  content: '';
  width: 0.4em;
  height: 0.4em;
  border-top: solid 0.15em #F47B01;
  border-right: solid 0.15em #F47B01;
  position: absolute;
  left: 0.4em;
  transform: rotate(45deg);
}
.btn-a-wrap_full .btn-common .arrow::before {
  left: 0.31em;
  width: 0.35em;
  height: 0.35em;
}
#facility-list .btn-common .arrow::before
.btn.green {
  background: var(--color-green);
  filter: drop-shadow(0em 0.5em 1em rgba(36, 154, 134, 0.2));
}
.btn.green .txt {
  left: 6vw;
}
.btn.green .arrow::before {
  border-top: solid 0.15em var(--color-green);
  border-right: solid 0.15em var(--color-green);
}

/* arrowボタン */
.arrow-btn {
  background: var(--color-green);
  border-radius: 50%;
  width: 1.3em;
  height: 1.3em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  right: 2%;
  bottom: 7%;
  position: absolute;
}
.arrow-btn::before {
  content: '';
  width: 0.35em;
  height: 0.35em;
  border-top: solid 0.1em #fff;
  border-right: solid 0.1em #fff;
  position: absolute;
  left: 0.35em;
  transform: rotate(45deg);
}

/* ページネーション */
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10vw;
}
.pagination .page-numbers {
  width: 2em;
  height: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers.current {
  font-weight: 700;
  padding-top: 0.14em;
}
.pagination .page-numbers.current::after {
  content: "";
  border-bottom: 2px solid #000;
  width: 1em;
}
.pagination .page-numbers.prev {
  margin-right: 1.2em;
}
.pagination .page-numbers.next {
  margin-left: 1.2em;
}
.pagination .btn-icon {
  width: 0.75em!important;
}
.pagination .page-numbers.prev .btn-icon {
  transform: scaleX(-1);
}
.pagination .btn_common#btn_round .btn-inner {
  width: 2.2em;
  height: 2.2em;
}

/*コラムCTA共通*/
.column-link {
  justify-self: center;
  width: 50%;
}
.column-link-img {
  width: 100% !important;
  margin: 0 !important;
}
@media (max-width: 1200px) {
  .column-link {
    width: 100%;
  }
}
/*********************************************
ヘッダー
*********************************************/
.header-inner.sp-only {
  height: -webkit-fill-available;
}
.header-logoandicon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: -webkit-fill-available;
  position: relative;
}
.header-logo {
  width: 56vw;
  position: absolute;
}
.header-logo .site-title {
  line-height: 0;
}
.header-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.header-inner .icon.btn-a-wrap_full .btn-common {
  height: 8.7vw !important;
  font-size: 3vw !important;
  width: 27vw;
  margin: 0;
}
.header-inner .icon.btn-a-wrap_full .btn-common .txt {
  left: 0.8em;
}
.header-inner .icon.btn-a-wrap_full .btn-common .arrow {
  width: 1.2em;
  height: 1.2em;
}
.header-inner .icon.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 3vw;
  width: fit-content;
}
.header-icon .icon .icon-content {
  width: 45%;
  line-height: 0;
}
.header-icon .icon.contact {
  margin-right: 2.3vw;
}
.header-icon .icon.contact .icon-content {
  margin-top: -3%;
}
.header-icon .icon .icon-content.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 7vw;
}
.hamburger-line {
  position: absolute;
  width: 100%;
  height: 0.05em;
  background: #879694;
  transition: all 0.3s ease-out;
}
.hamburger-line:nth-of-type(1) {
  margin-bottom: 6vw;
  transition: 1s ease-out;
}
.hamburger-line:nth-of-type(2) {
  transition: 1s ease-out;
}
.hamburger-line:nth-of-type(3) {
  margin-top: 6vw;
  transition: 1s ease-out;
}
/* バツ印に変わるハンバーガーボタン */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2.1vw, 2.1vw);
  transition: 1s ease-out;
}
.hamburger.active .hamburger-line:nth-child(2) {
  transition: 0.5s ease-out;
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2.1vw, -2.1vw);
  transition: 1s ease-out;
}
/* メニューの中身 */
.header-menulist {
  position: fixed;
  top: 0;
  right: 0;
  padding: 0 4vw;
  padding-top: 20vw;
  width: calc(100% - 8vw);
  height: 100dvh;
  z-index: -1;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.header-menulist::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  width: 100vw;
  height: 100dvh;
}
.header-menulist.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s ease-out;
  overflow-y: unset !important;
}
.header-menulist.open a {
  pointer-events: painted!important;
}
.header-menulist ul {
  font-size: 5vw;
  margin: 0 -4vw;
  position: relative;
}
.header-menulist .content-menu li {
  padding: 4vw 8vw;
}
.header-menulist .content-menu.to-page {
  color: var(--color-green);
  margin-bottom: 6vw;
}
.header-menulist .content-menu.to-page li {
  background: var(--color-pale-green);
  margin-bottom: 0.15em;
}
.header-menulist .content-menu li .arrow {
  width: 0.6em;
  height: 0.6em;
  border-top: solid 0.12em var(--color-green);
  border-right: solid 0.12em var(--color-green);
  position: absolute;
  right: 9vw;
  transform: rotate(45deg);
}
.header-menulist .content-menu.to-shop li .arrow {
  border-top: solid 0.12em #32302F;
  border-right: solid 0.12em #32302F;
}
.header-menulist .content-menu .li-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.header-menulist .btn-a-wrap_full {
  padding: 0 2.2vw;
  margin-bottom: 7vw;
}
.header-menulist .btn-a-wrap_full .btn-common {
  width: -webkit-fill-available;
}
.header-menulist .content-menu.to-shop .li-inner {
  position: relative;
  padding-left: 8vw;
  width: 100%;
}
.header-menulist .content-menu.to-shop .li-inner::before {
  content: "";
  position: absolute;
  left: 1vw;
  top: 4.5vw;
  width: 2.3em;
  height: 1.3em;
  transform: translateY(-50%);
  background-image: url(images/icon_map_header.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/*********************************************
トップページ
*********************************************/
#wellbio-top section {
  text-align: center;
}
/******** fv ********/
#sec_fv {
  margin: -4vw;
  padding-bottom: 2vw;
}
#sec_fv .fv-wrap {
  width: 100%;
  height: 101vw;
  background-image: url(images/wellbio-top_fv.jpg);
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
  background-clip: border-box;
  background-origin: border-box;
  background-position-x: center;
  background-position-y: center;
}
#sec_fv .fv-txt {
  padding: 10vw 4vw;
}
#sec_fv .maintitle {
  color: var(--color-green);
  font-size: 7.25vw;
  line-height: 1.4em;
  margin-bottom: 0.5em;
}
#sec_fv .subtitle {
  text-align: justify;
  font-weight: 700;
  font-size: 5vw;
}
#sec_fv .subtitle .bg-white {
  background: #fff;
  padding: 0 0.2em;
}
#sec_fv .subtitle .orange {
  color: #DE6720;
}
/******** 施設探しのお悩み ********/
#sec_problem .title {
  font-size: 5.6vw;
  margin-bottom: 6vw;
}
#sec_problem .problem-card {
  background: var(--color-pale-green);
  margin: 0 -4vw;
  padding: 7vw 8vw 5vw;
  margin-bottom: 10vw;
  border-radius: 2.6em;
}
#sec_problem .card {
  background: #fff;
  filter: drop-shadow(0em 0.5em 1em rgb(36, 154, 134, 0.1));
  margin-bottom: 0.6em;
  border-radius: 1em;
}
#sec_problem .card .txt-wrap{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 3vw 7vw;
}
#sec_problem .card .txt-wrap .icon {
  width: 18vw;
  margin-right: 3vw;
  line-height: 0;
}
#sec_problem .card .txt-wrap .txt {
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1.3em;
}
#sec_problem .card .txt-wrap .txt span {
  color: #249A86;
}
#sec_problem .solution .title span {
  color: #DE6720;
}
#sec_problem .solution .title span.linar-grad_green {
  color: unset;
}
#sec_problem .solution .img {
  margin-bottom: 8vw;
}
/******** 3つの安心サポート ********/
#sec_support {
  background: #F8F8F9;
  margin: 0 -4vw 16vw;
  padding: 9vw 4vw 5vw;
}
#sec_support .title {
  font-size: 7vw;
  line-height: 1.3em;
  margin-bottom: 6vw;
}
#sec_support .support-wrap .item {
  margin-bottom: 5vw;
}
#sec_support .support-wrap .index {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--color-green);
  font-size: 5.1vw;
  z-index: 0;
  position: relative;
  margin-bottom: 3vw;
}
#sec_support .support-wrap .number {
  background: var(--color-green);
  color: #fff;
  border-radius: 50rem;
  font-size: 5vw;
  line-height: 1.2em;
  width: 6.5vw;
  aspect-ratio: 1 / 1;
  margin-right: 1.2vw;
}
#sec_support .support-wrap .note {
  font-size: 4.3vw;
  line-height: 1.45em;
}
#sec_support .support-wrap .note span {
  font-weight: 700;
  color: #DE6720;
}

/******** 選べる相談窓口 ********/
#sec_consult .title {
  font-size: 7.5vw;
  margin-bottom: 4vw;
}
#sec_consult .consult {
  background: #F2F2F2;
  width: 100%;
  position: relative;
  padding: 6vw 0;
  border-radius: 1em;
  margin-bottom: 9vw;
}
#sec_consult .consult .item-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 83%;
  margin: 0 auto;
  margin-bottom: 3vw;
}
#sec_consult .consult .item {
  width: calc((100% - 0.8em) / 2);
  margin: 0 0.4em;
}
#sec_consult .consult .item .icon {
  background: #fff;
  border: 0.2em solid var(--color-green);
  border-radius: 1em;
  padding: 4vw;
  height: 19vw;
  width: -webkit-fill-available;
  margin-bottom: 1vw;
}
#sec_consult .consult .item.shop .icon {
  border: 0.2em solid #DE6720;
}
#sec_consult .consult .item .icon .img {
  width: 23vw;
  margin: 0 auto;
}
#sec_consult .consult .item.shop .icon .img {
  padding-top: 2.7vw;
  width: 19vw;
}
#sec_consult .consult .item .index {
  font-weight: 700;
  font-size: 5.5vw;
}
#sec_consult .consult .txt {    
  font-size: 4.5vw;
  line-height: 1.4em;
}
/******** おすすめ記事 ********/
#sec_pickup-howto {
  background: var(--color-pale-green);
  margin: 0 -4vw;
  margin-bottom: 16vw;
  padding: 7vw 4vw;
}
#sec_pickup-howto .title {
  font-size: 5.6vw;
  line-height: 1.5em;
  margin-bottom: 8vw;
}
#sec_pickup-howto .item-wrap_pickup-howto {
margin-bottom: 6vw;
}
.item_pickup-howto {
  margin-bottom: 3vw;
  position: relative;
  width: 100%;
}
.item_pickup-howto a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.item_pickup-howto .item-left.img {
  width: 40%;
  min-width: 40%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}
.item_pickup-howto .item-left.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.item_pickup-howto .item-right {
  background: #fff;
  padding: 2vw 3vw;
}
.item_pickup-howto .article-index {
  font-size: 2.5vw;
  text-align: justify;
  color: var(--color-green);
}
.item_pickup-howto .article-index span{
  border: 0.15em solid var(--color-green);
  border-radius: 50rem;
  padding: 0.05em 1em 0.12em 1.15em;
}
.item_pickup-howto .article-title {
  font-size: 4vw;
  text-align: justify;
  line-height: 1.35em;
  height: 4.8em;
}

#sec_pickup-howto .btn-a-wrap_full .btn-common .arrow {
  width: 7vw;
  height: 7vw;
}
#sec_pickup-howto .btn-a-wrap_full .btn-common {
  width: 62%;
  height: 14vw!important;
  font-size: 4.65vw!important;
}
#sec_pickup-howto .btn-a-wrap_full .btn-common .arrow::before {
  left: 0.4em;
}
/*********************************************
介護施設を探す（市区町村ボタン／共通テンプレ）
*********************************************/
#searchbtn-block {
  padding-bottom: 8vw;
}
#searchbtn-block .title {
  font-size: 6vw;
  margin-bottom: 4vw;
}
#searchbtn-block .btn-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 14vw;
}
#searchbtn-block .btn.search-city {
  background: var(--color-green);
  color: #fff;
  width: calc((100% - 20vw - 0.8em) / 2);
  margin: 1vw;
  padding: 2.4vw 3vw 2.4vw 5vw;
  font-size: 5vw;
  border-radius: 0.4em;
  border: 0.2em solid #fff;
  filter: drop-shadow(0em 0.5em 1em rgba(0, 0, 0, 0.1));
}
#searchbtn-block .btn.search-city .txt-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#searchbtn-block .btn.search-city .arrow {
  position: relative;
  background: linear-gradient(to bottom, #fff, #EBEBEB);
  border-radius: 50%;
  width: 6.5vw;
  height: 6.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#searchbtn-block .btn.search-city .arrow::before {
  content: '';
  width: 0.35em;
  height: 0.35em;
  border-top: solid 0.15em var(--color-green);
  border-right: solid 0.15em var(--color-green);
  position: absolute;
  left: 0.35em;
  transform: rotate(45deg);
}
#searchbtn-block .messeage {
  text-align: center;
}
#searchbtn-block .messeage .index {
  font-size: 5.2vw;
  margin-bottom: 3vw;
  color: var(--color-green);
}
#searchbtn-block .note {
  font-size: 3.8vw;
  line-height: 1.9em;
}
/*********************************************
記事投稿ページ（howto記事・取材記事共通）
*********************************************/
#sec_article-common {
  padding-top: 0!important;
  padding-bottom: 20vw!important;
}
.post-article main {
  padding-top: 0!important;
}
.container.post-article .img_article-common {
  margin: 0 -4vw;
}
.container.post-article .img_article-common img {
  margin-bottom: 2vw!important;
}
.title_article-common {
  font-size: 6.5vw;
  line-height: 1.35em;
  margin-bottom: 2vw;
  padding: 0 0.15em;
}
.update_article-common {
  text-align: right;
  color: #7D7D7D;
  font-size: 3.4vw;
  letter-spacing: 0.09em;
  margin-bottom: 5vw;
}
.lead_article-common {
  margin-bottom: 10vw;
}
.post-txt_article-common {
  counter-reset: sec;/* 番号カウンターを初期化 */
  margin-bottom: 7vw;
}
.post-txt_article-common > h2 { /* 各 h2 に番号を付与 */
  counter-increment: sec;
  position: relative;
}
.post-txt_article-common > h2::before {
  content: counter(sec) ". "; /* 通常の h2：1. 2. 3. と付ける */
}
.post-txt_article-common > h2:last-of-type {
  counter-increment: none; /* カウントを止める */
}
.post-txt_article-common > h2:last-of-type::before { /* 最後の h2 は「まとめ｜」に置き換え */
  content: "まとめ｜";
}
/******** 記事テキスト共通装飾 ********/
.container.post-article .cta-txt {
  margin-top: 8vw !important;
  text-align: center;
  color: #0376C3;
  font-weight: 600;
  font-size: 5.4vw;
  line-height: 1.3em;
  margin-bottom: -0.9em;
  position: relative;
  z-index: 1;
}
.container.post-article .cta {
  margin-bottom: 7vw !important;
}
.container.post-article img {
  margin-bottom: 4vw!important;
}
.container.post-article .full {
  margin: 0 -4vw;
  width: calc(100% + 8vw);
}
.container.post-article strong {
  font-weight: 700!important;
  background-color: #FDFF81;
  line-height: 1.8em;
}
.howto_lead p,
.container.post-article p {
  margin-bottom: 1em;
}
.post-txt_article-common h2,
.post-txt_article-common h3,
.post-txt_article-common h4,
.post-txt_article-common h5,
.post-txt_article-common h6 {
  color: var(--color-green);
  line-height: 1.35em;
  margin-top: 10vw !important;
  margin-bottom: 3vw !important;
}
.post-txt_article-common h2 {
  font-size: 6vw;
  background: var(--color-pale-green);
  border-top: 1px solid var(--color-green);
  margin: 0 -4vw;
}
.post-txt_article-common h3 {
  border-top: 1px solid var(--color-green);
  border-bottom: 1px solid var(--color-green);
  padding: 0.55em 0.4em 0.5em 0.4em;
  font-size: 5.3vw;
}
.post-txt_article-common h4 {
  font-size: 5.2vw;
  display: inline-flex;
  padding: 0 0.4em 0 0.2em;
  margin-top: 0.2em !important;
}
.post-txt_article-common h4::before {
  content: '';
  padding-left: 0.65em;
  margin: 0.1em 0;
  border-left: solid 0.25em var(--color-green);
}
/******** もくじ ********/
.toc_article-common {
  margin-bottom: 20vw!important;
  border: 1px solid #D0D0D0;
  background: #fff;
  padding: 8vw 5.2vw 9vw;
}
.toc_article-common .toc-title {
  color: var(--color-green);
  font-size: 4.8vw;
  letter-spacing: 0.15em;
  position: relative;
  font-weight: 600;
  padding-left: 1.6em;
}
.toc_article-common .toc-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background: url('images/icon_howto-toc.png') no-repeat center center;
  background-size: contain;
}
.toc_article-common ul {
  list-style: none;
  font-size: 4.5vw;
  line-height: 1.35em;
  padding-left: 0.45em;
}
.toc_article-common ul li {
  margin-bottom: 0.6em;
}
.toc_article-common .toc-num {
  color: var(--color-green);
  font-weight: bold;
}
.toc_article-common ul li a {
  display: inline; 
}
/******** FAQ ********/
.article-common_faq {
  background: var(--color-pale-green);
  padding: 9vw 6vw 5vw 5.5vw;
  border-radius: 1em;
  margin-bottom: 6vw;
}
.article-common_faq:first-of-type {
  margin-top: 12vw;
}
.article-common_faq:last-of-type {
  margin-bottom: 24vw;
}
.article-common_faq .q {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 0.85em;
  color: var(--color-green);
  font-weight: 600;
}
.article-common_faq .q::before {
  content: "Q";
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  background-color: var(--color-green);
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  margin-right: 0.65em;
  flex-shrink: 0;
  font-size: 5.7vw;
  line-height: 1.8em;
}
.article-common_faq .a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.6;
}
.article-common_faq .a::before {
  content: "A";
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  color: var(--color-green);
  background-color: #fff;
  border: 1px solid var(--color-green);
  width: 1.9em;
  height: 1.9em;
  border-radius: 50%;
  margin-right: 0.65em;
  flex-shrink: 0;
  font-size: 5.7vw;
  line-height: 1.75em;
  font-weight: 800;
}
.article-common_faq p {
  margin-bottom: 0.7em;
}
/*********************************************
フッター
*********************************************/
footer {
  width: 100%;
}
.footer-logo {
  padding-top: 2vw;
}
.footer-logoandmenu {
  background: #F2F2F2;
  display: flex;
  padding: 9vw 8.5vw 7vw;
}
.footer-logo .txt {
  text-align: center;
  font-size: 3vw;
  line-height: 2.4vw;
}
.footer-menu {
  margin-left: 7vw;
}
.footer-menu ul {
  width: 100%;
  font-size: 3vw;
  line-height: 5.4vw;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.footer-bottom {
  background: var(--color-green);
  font-size: 2.7vw;
  color: #fff;
  text-align: center;
}
/*********************************************
レスポンシブ
*********************************************/
@media(min-width:600px) {
}
@media(min-width:760px) { /* ipad mini */
}
@media(min-width:1200px) {
  .pc-only {
    display: block!important;
  }
  .sp-only {
    display: none!important;
  }
  body {
    font-size: 1.3rem;
    line-height: 1.9em;
  }
  .anchor-target {
    scroll-margin-top: 5vw!important;
  }
  .container {
    padding: 0 1rem;
  }
  body.home .container {
    padding: 80px 1rem 1rem;
  }
  main {
    min-width: calc(1200px - 2rem);
    padding: 2rem 1rem 10rem;
    margin: 0 -1rem;
  }
  section {
    padding-top: 1rem;
    padding-bottom: 6rem;
  }
  .contents-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
  /******** 共通装飾 ********/
  /* 見出しタイトル */
  .title {
    margin-left: 0;
    margin-bottom: 4rem;
  }
  .title_en {
    font-size: 3.4rem;
    margin-bottom: 0.5rem;
  }
  .title_ja,
  .title_ja h1,
  .title_ja h2 {
    font-size: 1rem;
  }

  /* ページネーション */
  .pagination {
  margin-bottom: 1rem;
  }

  /* ctaボタン */
  .btn-wrap {
    margin: 0;
    transform: scale(0.94);
  }
  #wellbio-top .sec_fv .btn-wrap {
    position: relative;
    bottom: 13rem;
    width: calc(1200px - 2rem);
    margin: 0 auto;
    transform: scale(0.7);
  }
  @media(min-width:1920px) {
    #wellbio-top .sec_fv .btn-wrap {
      transform: scale(0.9);
    }
  }
  .btn-common {
    font-size: 3rem;
    line-height: 1.2;
    border: 7px solid #fff;
    height: 12rem;
    margin: 0 0.55rem;
    border-radius: 1.2rem!important;
  }
  .btn-common .txt {
    left: 3.2rem!important;
  }
  .btn-common .arrow {
    width: 5.5rem;
    height: 5.5rem;
  }
  .btn-common .arrow::before {
    left: 1.6rem;
  }
  .btn.green .txt {
    left: 4.8rem;
  }
  .btn-a-wrap_full .btn-common {
    height: 8rem !important;
    font-size: 2rem !important;
    width: 40rem;
  }
  .btn-a-wrap_full .btn-common .arrow {
    width: 3rem;
    height: 3rem;
  }
  .btn-a-wrap_full .btn-common .arrow::before {
    left: 0.4em;
  }
  /******** ヘッダー ********/
  .header-inner.pc-only .content-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header-inner.pc-only .header-menuandbtn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .header-inner.pc-only .header-menuandbtn ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-right: 0.8rem;
  }
  .header-inner.pc-only .header-menuandbtn ul li {
    font-size: 1.1rem;
    margin-right: 2.4rem;
    color: var(--color-green);
  }
  .header-inner.pc-only .header-menuandbtn ul li.to-shop {
    color: unset;
  }
  .header-logo {
    width: 15rem;
    padding-top: 0.4rem;
    position: relative;
  }
  .header-inner.pc-only .header-menuandbtn ul li.to-shop .li-inner {
    position: relative;
    padding-left: 1.35em;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .header-inner.pc-only .header-menuandbtn ul li.to-shop .li-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.2em;
    width: 2.3em;
    height: 1.3em;
    transform: translateY(-50%);
    background-image: url(images/icon_map_header.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header-inner.pc-only .btn-a-wrap_full .btn-common {
    font-size: 1.1rem!important;
    height: 57px!important;
    width: 16rem!important;
    border: 0.2em solid #fff;
    border-radius: 0.7em;
    filter: drop-shadow(0em 0.5em 1em rgba(243, 123, 1, 0.05));
  }
  .header-inner.pc-only .btn-a-wrap_full .btn-common .txt {
    left: 1.5em !important;
  }
  .header-inner.pc-only .btn-a-wrap_full .btn-common .arrow {
    width: 1.5em;
    height: 1.5em;
  }
  .header-inner.pc-only .btn-a-wrap_full .btn-a-wrap_full .btn-common .arrow::before {
      left: 0.35em;
  }
  /******** サイドバー ********/
  .sidebar {
    width: 29%;
    min-width: 29%;
    margin-left: 6rem;
  }
  /*********************************************
  トップページ
  *********************************************/
  /******** fv ********/
  #sec_fv {
    margin: -2rem -1rem 0;
    padding: 0;
  }
  #sec_fv .fv-wrap {
  width: 100%;
  height: 40vw;
  background-image: url(images/wellbio-top_fv_pc.jpg);
  background-size: cover;
  background-position-y: -5rem;
  }
  #sec_fv .fv-txt {
    padding: 3vw 0 0;
  }
  #sec_fv .maintitle {
    font-size: 4.2vw;
    margin-bottom: 0.25em;
  }
  #sec_fv .subtitle {   
    font-size: 1.8vw;
    line-height: 1.7em;
    text-align: center;
  }
  #sec_fv .subtitle .bg-white {
    padding: 0 0.2em;
  }
  /******** 施設探しのお悩み ********/
  #sec_problem {
    margin-bottom: 4rem;
  }
  #sec_problem .problem {
    margin-bottom: 8rem;
  }
  #sec_problem .title {
    font-size: 2.3rem;
    margin-bottom: 3rem;
  }
  #sec_problem .problem-card {
    padding: 3.5rem 2rem;
    width: calc(1200px - 2rem);
    margin: 0 auto;
    box-sizing: border-box;
  }
  #sec_problem .problem-card .card-wrap {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }
  #sec_problem .card {
    margin: 1rem;
    width: calc((100% - 6rem) / 3);
  }
  #sec_problem .card .txt-wrap{
    padding: 1rem;
  }
  #sec_problem .card .txt-wrap .icon {
    width: 5rem;
    margin-right: 1rem;
  }
  #sec_problem .card .txt-wrap .txt {
    font-size: 1.3rem;
  }
  #sec_problem .solution .title {
    font-size: 2rem;
    line-height: 1.5em;
  }
  #sec_problem .solution {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    width: calc(1200px - 2rem);
    margin: 0 auto;
    box-sizing: border-box;
  }
  #sec_problem .solution .img {
    margin-bottom: 0;
    margin-right: 3rem;
    box-sizing: border-box;
    width: 40%;
  }
  /******** 3つの安心サポート ********/
  #sec_support {
    margin: -1rem;
    padding: 5rem calc((100% - (1200px - 2rem)) / 2);
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
  #sec_support .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  #sec_support .support-wrap {
    display: flex;
  }
  #sec_support .support-wrap .item {        
    background: #fff;
    width: calc((100% - 6rem) / 3);
    box-sizing: border-box;
    margin: 1rem;
    padding: 2rem 1rem;
    border-radius: 1em;
  }
  #sec_support .support-wrap .index {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  #sec_support .support-wrap .number {
    font-size: 1.3rem;
    width: 1.75rem;
    margin-right: 0.4rem;
  }
  #sec_support .support-wrap .note {
    font-size: 0.9rem;
  }

  /******** 選べる相談窓口 ********/
  #sec_consult .title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  #sec_consult .consult {
    background: transparent;
    padding: 2rem 0;
    border-radius: 1em;
    margin-bottom: 4rem;
  }
  #sec_consult .consult .item-wrap {
    width: 42rem;
    margin-bottom: 2rem;
  }
  #sec_consult .consult .item {
    width: calc((100% - 0.8em) / 2);
    margin: 0 1em;
  }
  #sec_consult .consult .item .icon {
    padding: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    border: 0.3em solid var(--color-green);
  }
  #sec_consult .consult .item.shop .icon {
    border: 0.3em solid #DE6720;
  }
  #sec_consult .consult .item .icon .img {
    width: 10.5rem;
    margin-top: -1.3rem;
  }
  #sec_consult .consult .item.shop .icon .img {
    padding-top: 0;
    width: 9.1rem;
    margin-top: -0.4rem;
  }
  #sec_consult .consult .item .index {
    font-size: 2rem;
  }
  #sec_consult .consult .txt {    
    font-size: 1.3rem;
  }
  /******** おすすめ記事 ********/
  #sec_pickup-howto {
    margin: 0 -1rem;
    padding: 6rem 1rem 5.5rem;
    position: relative;
  }
  #sec_pickup-howto .illust {
    position: absolute;
    width: 15rem;
    right: 10vw;
    top: -8rem;
  }
  #sec_pickup-howto .title {
    font-size: 2.3rem;
    margin-bottom: 3rem;
  }
  #sec_pickup-howto .item-wrap_pickup-howto {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 1.4rem;
  }
  .item_pickup-howto {
    margin: 0 1rem;
  }
  .item_pickup-howto .item-left.img {
    width: 40%;
    min-width: 40%;
    aspect-ratio: 5 / 4;
    overflow: hidden;
  }
  .item_pickup-howto .item-right {
    padding: 1.4rem;
  }
  .item_pickup-howto .article-index {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .item_pickup-howto .article-title {
    font-size: 1.3rem;
  }
  #sec_pickup-howto .btn-a-wrap_full {
    transform: scale(0.75);
  }
  #sec_pickup-howto .btn-a-wrap_full .btn-common .arrow {
    width: 3rem;
    height: 3rem;
  }
  #sec_pickup-howto .btn-a-wrap_full .btn-common {
    width: 32rem!important;
    height: 8rem!important;
    font-size: 2rem!important;
  }
  #sec_pickup-howto .btn-a-wrap_full .btn-common .arrow::before {
    left: 0.4em;
  }
  /*********************************************
  介護施設を探す（市区町村ボタン／共通テンプレ）（PC）
  *********************************************/
  #searchbtn-block {  
    padding-bottom: 0;
    padding-bottom: 6rem;
  }
  #page-terms #searchbtn-block,
  #page-contact #searchbtn-block {
    display: none;
  }
  #searchbtn-block .contents-wrap {
    background: #fff;
    padding: 4.1rem 0;
    border-radius: 1em;
    filter: drop-shadow(0em 0.5em 1em rgba(0, 0, 0, 0.05));
  }
  #searchbtn-block .title {
    font-size: 2.1rem;
    margin-bottom: 1.15rem;
  }
  #searchbtn-block .btn-wrap {
    margin-bottom: 2rem;
    padding: 0 9rem;
    justify-content: center;
  }
  #searchbtn-block .btn.search-city {
    width: calc((100% - 9rem - (3rem * 3)) / 3);
    margin: 0.5rem;
    padding: 1rem 1.2rem 1rem 2.4rem;
    font-size: 2rem;
  }
  #searchbtn-block .btn.search-city .arrow {
    width: 2.3rem;
    height: 2.4rem;
  }
  #searchbtn-block .btn.search-city .arrow::before {
    width: 0.6rem;
    height: 0.6rem;
    left: 0.65rem;
  }
  #searchbtn-block .messeage .index {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  #searchbtn-block .note {
    font-size: 1.3rem;
  }
  /*********************************************
  記事投稿ページ（howto記事・取材記事共通）（PC）
  *********************************************/
  /*** 記事ページ共通 ***/
  .container.post-article .cta-txt {
    margin-top: 3.2rem !important;
    font-size: 2.4rem;
    margin-bottom: -1.5rem;
  }
  .container.post-article .cta {
    margin-bottom: 1.4rem !important;
  }
  .container.post-article img {
    margin-bottom: 2rem!important;
  }
  .container.post-article .full {
    margin: 0;
    width: 100%;
  }
  .container.post-article strong {
    font-weight: 700!important;
    background-color: #FDFF81;
    line-height: 1.8em;
  }
  .post-txt_article-common h2, h3, h4, h5, h6 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important;
  }
  .post-txt_article-common h2 {
    font-size: 2.2rem;
    margin: 0;
    margin-top: 4rem!important;
  }
  .post-txt_article-common h3 {
    font-size: 2rem;
    margin-top: 2.8rem !important;
  }
  .post-txt_article-common h4 {
    font-size: 1.85rem;
  }
  /********  ********/
  .container.post-article,
  .container.artcicle-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 7rem !important;
  }
  .sec_article-common {
    padding-bottom: 14rem!important;
  }
  .container.post-article main, 
  .container.artcicle-list main {
    width: 100%;
    min-width: auto;
    margin: 0;
    padding: 0;
  }
  .container.post-article .img_article-common {
    margin: 0;
  }
  .container.post-article .img_article-common img {
    margin-bottom: 0.5rem!important;
  }
  .title_article-common {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .update_article-common {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .lead_article-common {
    margin-bottom: 3.4rem;
  }
  .post-txt_article-common {
    margin-bottom: 3.4rem;
  }
  /******** もくじ ********/
  .toc_article-common {
    margin-bottom: 7rem!important;
    padding: 2.4rem 3.5rem;
  }
  .toc_article-common .toc-title {
    font-size: 1.3rem;
  }
  .toc_article-common ul {
    font-size: 1.3rem;
  }
  /******** FAQ ********/
  .article-common_faq {
    padding: 3rem 3.5rem 2rem 3.2rem;
    margin-bottom: 1.4rem;
  }
  .article-common_faq:first-of-type {
    margin-top: 2rem;
  }
  .article-common_faq:last-of-type {
    margin-bottom: 5.2rem;
  }
  .article-common_faq .q::before {
    font-size: 1.3rem;
  }
  .article-common_faq .a {
    font-size: 1.3rem;
    line-height: 1.6em;
  }
  .article-common_faq .a::before {
    font-size: 1.3rem;
    line-height: 1.8em;
  }
  /*********************************************
  フッター（PC）
  *********************************************/
  .footer-logo .txt {
    font-size: 0.95rem;
    line-height: 0;
  }
  .footer-bottom {
    font-size: 1rem;
    line-height: 3rem;
  }
  .footer-logoandmenu {
    padding: 3.8rem 1rem 2.1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-direction: column;
  }
  .footer-logo {
    padding-top: 0;
    width: 20rem;
    margin-bottom: 0.2rem;
  }
  .footer-menu {
    margin-left: 0;
  }
  .footer-menu ul {
    font-size: 1.1rem;
    line-height: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footer-logoandmenu li {
    margin: 0 1em;
  }
}


/*********************************************
index.php（404 NotFound）
*********************************************/
.error404 main {
  padding-top: 20vw;
}
.error404 .title-wrap {
  margin-bottom: 9vw;
}
.error404 main .note {
  text-align: center;
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 40vw;
}
@media(min-width:1200px) {
  .error404 main {
    padding-top: 14rem;
  }
  .error404 .title-wrap {
    width: 700px;
    margin: 0 auto;
    margin-bottom: 6rem;
  }
  .error404 main .note {
    width: 700px;
    margin-bottom: 4rem;
  }
}

/*********************************************
ヘッダーリニューアル
*********************************************/

/* =============================
   PC共通
============================= */

.sompo_logo_area {
  height: 82px;
  display: flex;
  justify-content: center;
  border-bottom: solid 1px #cc0022;
  z-index: 6000;
  position: relative;
}

.sompo_logo_area_detail {
  display: flex;
  max-width: 1000px;
  min-width: 1000px;
  justify-content: space-between;
}

.head_sompo_logo {
  width: 170px;
}

.head_hd_logo {
  width: 226px;
}

/* ヘッダー本体 */
.concierge_navi_area {
  height: 80px;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
  background: #fff;
  display: flex;
  align-items: center;
  position: relative;   /* ← fixedをやめる */
  width: 100%;
  z-index: 5000;
}

/* 固定時だけfixed */
.concierge_navi_area.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.fix_btn.is-show {
  top: 118px;
}

.concierge_navi_area_detail {
  min-width: 1000px;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.concierge_navi_area_detail h1 a img {
  display: block;
}

.head_concierge_logo {
  width: 376px;
}

/* PCナビ */
.concierge_navi_area_menu {
  display: flex;
  gap: 16px;
}

.concierge_navi_area_menu li {
  border-right: 1px solid #000;
  padding-right: 16px;
}

.concierge_navi_area_menu li:nth-child(1) {
  border-left: 1px solid #000;
  padding-left: 16px;
}

.concierge_navi_area_menu li a {
  color: #434343;
  font-size: 16px;
  line-height: normal;
}

.concierge_navi_area_menu_sp {
  display: none;
}

.sompo_logo_area_detail a {
  display: flex;
}

/* =============================
   ハンバーガー（なめらか版）
============================= */

.btn-trigger {
  position: relative;
  width: 36px;
  height: 30px;
  cursor: pointer;
  display: none;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #879694;
  border-radius: 3px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* 3本線の位置 */
.btn-trigger span:nth-child(1) {
  top: 0;
}

.btn-trigger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.btn-trigger span:nth-child(3) {
  bottom: 0;
}

/* ===== 開いたとき（×になる）===== */

#hamburger_sp.active span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

#hamburger_sp.active span:nth-child(2) {
  opacity: 0;
}

#hamburger_sp.active span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.pad_br {
  display: none;
}

/* =====================================================
   SP（1000px以下）
===================================================== */

@media (max-width: 1000px) {
  .sompo_logo_area_detail {
    min-width: auto;
    padding: 0 20px;
    width: 100%;
  }

  .concierge_navi_area_detail {
    width: 100%;
    min-width: auto;
    padding: 0 20px;
  }

  .footer_sub_menu_area {
    width: 100% !important;
  }

  .footer_red_area .l-site-data {
    width: auto !important;
  }

  .pad_br {
    display: block;
  }
}

/* =====================================================
   SP（768px以下）
   ※ SPメニューはヘッダー外にある前提
===================================================== */

@media (max-width: 768px) {
  .concierge_navi_area_menu li a p {
    line-height: 1.4;
  }

  .btn-trigger {
    display: inline-block !important;
  }

  /* PC用メニュー非表示 */
  .concierge_navi_area_menu {
    display: none !important;
  }

  .concierge_navi_area_menu_sp {
    position: fixed;
    top: 0;
    right: 0;
    width: 84%;
    height: 100vh;
    background: #fff;
    padding: 104px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 4000; /* ヘッダーより下 */
  }

  .concierge_navi_area_menu_sp.is-open {
    transform: translateX(0);
    padding: 190px 20px 20px;
  }

  .concierge_navi_area_menu_sp.is-open.sompo_logo_area_none {
    padding: 104px 20px 20px;
  }

  .concierge_navi_area_menu_sp ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .concierge_navi_area_menu_sp li {
    border: none;
    padding: 0;
    font-size: 18px;
  }

  .concierge_navi_area_menu_sp li p {
    color: #434343;
  }

  .concierge_navi_area_menu_sp li {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .concierge_navi_area_menu_sp li a {
    padding: 0px 10px;
    height: 40px;
    display: inline-block;
  }

  .concierge_navi_area_menu_sp li.hamburger_img_btn {
    border-bottom: none;
  }

  .concierge_navi_area_menu_sp li.hamburger_img_btn a {
    height: auto;
    width: 100%;
    max-width: 400px;
    padding: 0;
  }

  /* ===== オーバーレイ ===== */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 3000; /* メニューより下 */
  }
}

/* =====================================================
   SP（480px以下）
   ※ SPメニューはヘッダー外にある前提
===================================================== */

@media (max-width: 480px) {

  /* 上部ロゴ非表示 */
  .sompo_logo_area {
    background: #fff;
    height: 65px;
  }

  .sompo_logo_area_detail {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .head_sompo_logo {
    width: 113px;
  }

  .head_hd_logo {
    width: 180px;
  }

  header#site_new_header {
    position: fixed;
    width: 100%;
    z-index: 6000;
  }

  /* ヘッダー */
  .concierge_navi_area {
    top: 0;
    height: auto;
    padding: 14px 16px;
    z-index: 5000;
    width: -webkit-fill-available;
  }

  .concierge_navi_area_detail {
    min-width: auto !important;
    flex: 1;
    padding: 0;
  }

  .concierge_navi_area_detail h1 a img {
    display: block;
  }

  .head_concierge_logo {
    width: 246px;
  }

  .btn-trigger {
    display: inline-block !important;
  }

  .concierge_navi_area_menu_sp.is-open {
    padding: 160px 20px 20px;
  }

  .concierge_navi_area_menu_sp.is-open.sompo_logo_area_none {
    padding: 100px 20px 20px;
  }

  /* ===== スマホ専用メニュー（ヘッダー外） ===== */

  .menu-overlay.is-show {
    opacity: 1;
    visibility: visible;
  }

  .sompo_logo_area.is-hide {
    transform: translateY(-100%);
    opacity: 0;
    display: none;
  }
}

/* ===== メニュー開閉時スクロール固定 ===== */

body.menu-open {
  overflow: hidden;
}

/*********************************************
フッターリニューアル
*********************************************/
.footer_menu_area {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.footer_menu_area_inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer_menu_area_inner li:nth-child(2) {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding-left: 40px;
  padding-right: 40px;
}

.footer_menu_area_inner li a {
  font-size: 20px;
  color: #00826E !important;
  font-weight: bold;
}

.footer_sub_menu_area {
  width: 990px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  box-sizing: border-box;
}

.footer_sub_menu_area li {
  position: relative;
  list-style: none;
  line-height: 12px;
  margin: 0;
  padding: 0;
}

.footer_sub_menu_area li::before {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.footer_sub_menu_area li:last-child::after {
  content: '';
  display: block;
  height: 1em;
  border-left: 1px solid #cdcdcd;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.footer_sub_menu_area li a {
  display: block;
  color: #666666;
  padding: 0 12px;
  font-size: 12px;
}

.footer_red_area {
  background: #cc0022;
  width: 100%;
  height: auto;
}

.footer_red_area .l-site-data {
  margin: 0 auto;
  position: relative;
  width: 990px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 10px 20px;
}

.footer_red_area .l-footer-logo_pc {
  margin: 0;
  line-height: 12px;
  display: block;
}

.footer_red_area .l-copy_pc {
  color: #ffffff;
  font-size: 10px;
  line-height: 13px;
  text-align: right;
  padding: 0;
  margin: 0;
  font-family: 'Helvetica', 'Arial';
  display: block;
}

.footer_red_area .l-copy_sp {
  color: #ffffff;
  font-size: 10px;
  line-height: 13px;
  text-align: right;
  padding: 0;
  margin: 0;
  font-family: 'Helvetica', 'Arial';
  display: none;
}

@media (max-width: 630px) {
  .footer_menu_area {
    padding: 40px 20px;
  }

  .footer_menu_area_inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer_menu_area_inner li:nth-child(2) {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer_menu_area_inner li {
    border-bottom: 1px solid #333;
    width: 100%;
    padding-bottom: 16px;
  }
}

@media (max-width: 480px) {

  .footer_sub_menu_area li::before {
    content: none;
  }

  .footer_sub_menu_area {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }

  .footer_sub_menu_area li a {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    padding: 9px 4px 9px 20px;
  }

  .footer_menu_area_inner li a {
    font-size: 16px;
  }

  .footer_red_area .l-site-data {
    width: auto;
    flex-direction: column;
    gap: 6px;
  }

  .footer_red_area {
    height: auto;
  }

  .footer_red_area .l-copy_pc {
    display: none;
  }

  .footer_red_area .l-copy_sp {
    display: block;
  }

  .footer_red_area .l-footer-logo_pc {
    display: none;
  }
}