@charset "utf-8";
:root {
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Outfit", sans-serif;
  /* --font-family-en: "Nunito Sans", sans-serif; */
  /* --main-color: #000;
  --sub-color: #000; */
  --accent-color: #AD5A68;
  --accent-color-light: #ECDCDB;
  --accent-blur: #2C9DC3;
  --main-color-green: #009F8B;
  --nonactive-tabcolor-green: #005059;
  --green-500: #83D0C6;
  --green-200: #D2F4E6;
  --green-100: #E9FAF4;
  --green-50: #F0FAF6;
  --sub-color-red: #DC6A52;
  --sub-color-orange: #E3912A;
  /* --border-color: #F5F5F5; */
  /* --border-color2: #777777; */
  --img-frame-border: #DDDDDD;
  --white: #FFFFFF;
  --bg-main: #FCFCFC;
  --alert: #DD3D3D;
  --bg-calendar: #707070;
  --newtral-700: #8E8E8E;
  --newtral-500: #C8C8C8;
  --newtral-200: #F5F5F5;
  --bg-menu: #e7e7e7;
  /* --bg-cardmenu: #ECDCDB; */
  --header-text: #50443E;
  --main-text: #33221E;
  /* --option-text-color: #999; */
}
/* ------------------------------------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section, nav {
  display: block;
}

ol, ul, li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.7s, background-position 0.7s;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img, svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

html {
  max-width: 100vw;
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: var(--main-text);
  font-size: 1.4rem;
  font-family: var(--font-family-jp);
  font-optical-sizing: auto;
}

.sp-only,
.sp-480 {
  display: none;
}
@media (max-width: 767.999px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

@media (max-width: 480px) {
  .sp-480 {
    display: block;
  }
}

/* ------------------------------------------------------------ */

html.popup-show,
html.popup-show body {
  overflow: hidden;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  height: 100%;
  background-color: var(--bg-main);
  overflow: hidden;
}

#popup-dialog {
  width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 50px 0;
  background: transparent;
  border: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#popup-dialog::-webkit-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#popup-dialog[open] {
  opacity: 1;
}

#popup-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#popup-dialog[open]::backdrop {
  opacity: 1;
}

.popup-box {
  position: relative;
  width: calc(100vw - 60px);
  max-width: 520px;
  /* height: 750px; */
  /* max-height: calc(100vh - 100px); */
  margin: 0 auto;
  padding: 30px 25px 50px;
  background:  var(--white);
  overflow: hidden;
  border-radius: 4px;
}
#popup-close {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 37px;
  height: 47px;
  margin: 0 0 10px auto;
  padding: 0;
  font-size: 1.2rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
#popup-close span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-inline: auto;
}
#popup-close span::before,
#popup-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 30px;
  background: var(--main-text);
}
#popup-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#popup-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup-img {
  margin-bottom: 10px;
}
.popup-text {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.8rem;
}
.popup-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 218px;
  height: 56px;
  margin-inline: auto;
  padding-inline: 70px;
  color: var(--main-color-green);
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid var(--main-color-green);
  border-radius: 100px;
  background: var(--green-50);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.popup-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--main-color-green);
  transition: right 0.7s ease-in-out;
}
@media (any-hover: hover) {
  .popup-btn:hover {
    color: var(--white);
    opacity: 1;
    background-color: var(--main-color-green);
  }
  .popup-btn:hover::before {
    right: -25px;
  }
}

header {
  position: relative;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding-left: 30px;
  background-color: var(--white);
  border-bottom: 1px solid var(--newtral-200);
}
.header-bar .page-title,
.header-bar .site-title {
  width: 110px;
  margin-right: auto;
}

.nav-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding-right: 91px;
}
.header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.header-list > li {
  position: relative;
  height: 28px;
  padding-right: 34px;
  line-height: 28px;
}
.header-list li a {
  display: flex;
  align-items: center;
}
.header-list li img {
  margin-right: 10px;
}
.header-list li:nth-child(2) img {
  margin-right: 7px;
}
/* 言語選択ドロップダウンメニュー */
.header-list li .lang-select {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  padding: 8px 0;
  background-color:  var(--white);
  border: 1px solid var(--newtral-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-list li .lang-select li {
  height: auto;
  padding: 0;
  line-height: 1.5;
}
.header-list li .lang-select li span {
  display: block;
  height: 1.7lh;
  padding: 8px 20px;
  font-size: 1.4rem;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
  text-align: center;
}
@media (any-hover: hover) {
  .header-list li:hover .lang-select {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header-list li .lang-select li span:hover {
    background-color: var(--newtral-200);
    opacity: 1;
  }
}
/* タッチデバイス対応：is-openクラスでドロップダウンを表示 */
.header-list li.is-open .lang-select {
  display: block;
  opacity: 1;
  visibility: visible;
}
#worktime-dialog {
  width: 100vw;
  max-width: 100vw;
  max-height: 100vh;
  margin: 0;
  padding: 50px 0;
  background: transparent;
  border: none;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#worktime-dialog::-webkit-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#worktime-dialog[open] {
  opacity: 1;
}

#worktime-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#worktime-dialog[open]::backdrop {
  opacity: 1;
}

.worktime-box {
  position: relative;
  width: calc(100% - 30px);
  max-width: 650px;
  margin: 0 auto;
  padding: 50px 20px;
  background: var(--bg-main);
  overflow: hidden;
  border-radius: 4px;
}
#worktime-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 37px;
  height: 47px;
  padding: 0;
  font-size: 1.2rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
#worktime-close span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin-inline: auto;
}
#worktime-close span::before,
#worktime-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5px;
  height: 30px;
  background: var(--main-text);
}
#worktime-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#worktime-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.worktime-box .worktime-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  font-size: 1.6rem;
  text-align: center;
}
.worktime-title img {
  width: 36px;
  margin-right: 10px;
}
.worktime-inner {
  width: 517px;
  margin-inline: auto;
}
.worktime-list {
  display: flex;
  width: 600px !important;;
  height: max-content;
  border: 1px solid var(--img-frame-border);
  background-color:  var(--white);
}
.worktime-list + .worktime-list {
  border-top: none;
}
.worktime-list:last-child {
  margin-bottom: 12px;
}
.worktime-list > dt {
  display: grid;
  place-items: center;
  width: 160px;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: var(--green-50);
}
.worktime-list > dd {
  display: flex;
  flex-direction: column;
  width: calc(100% - 160px);
  padding: 12px;
  font-size: 1.3rem;
  font-weight: 500;
  border-left: 1px solid var(--img-frame-border);
}
.worktime-box .note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  font-weight: 400;
}
.worktime-list + div {
  padding-block: 24px;
  font-size: 1.3rem;
  line-height: 2;
}
.worktime-list + div a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--main-color-green);
  text-decoration: underline;
}
.worktime-list + div a img {
  width: 1em;
}
@media (any-hover: hover) {
  .worktime-list + div a:hover {
    text-decoration: none;
  }
}
#js-menubtn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 300;
  display: block;
  width: 60px;
  height: 60px;
  padding-top: 8px;
  background-color: var(--main-color-green);
  cursor: pointer;
}
#js-menubtn .line-box {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 auto 2px;
}
#js-menubtn .line-box span {
  position: absolute;
  inset: auto 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-radius: 1px;
  background-color:  var(--white);
  transition: all 0.4s ease-in-out;
}
#js-menubtn .line-box span:nth-child(1) {
  top: 38%;
}
#js-menubtn .line-box span:nth-child(2) {
  top: 64%;
}
#js-menubtn.active .line-box span:nth-of-type(1) {
  transform: translateY(4px) rotate(-45deg);
}
#js-menubtn.active .line-box span:nth-of-type(2) {
  transform: translateY(-4px) rotate(45deg);
}
#js-menubtn .menu-text {
  display: block;
  color:  var(--white);
  text-align: center;
  font-size: 1.1rem;
}
@media (max-width: 767.999px) {
  #popup-dialog {
    width: auto;
    height: max-content;
    padding: 20px;
  }
  .popup-btn {
    width: 160px;
    height: 40px;
    padding-inline: 35px;
    font-size: 1.3rem;
  }

  .nav-box {
    padding-right: 0;
  }
  .header-list {
    height: auto;
    padding-right: 4px;
  }
  .header-list > li {
    height: 47px;
    margin-right: 12px;
    padding-right: inherit;
    line-height: inherit;
  }
  .header-list li a {
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px;
    height: 45px;
    padding-bottom: 2px;
    font-size: 1.1rem;
  }
  .header-bar {
    height: 60px;
    padding-left: 16px;
  }
  .header-bar .page-title,
  .header-bar .site-title {
    width: 91px;
  }
  .header-bar .page-title a,
  .header-bar .site-title a {
    display: flex;
  }
  .header-bar .header-list li img {
    height: 17px;
    margin-right: inherit;
  }
  #js-menubtn {
    top: auto;
    right: 0;
    bottom: 0;
    width: 66px;
    height: 66px;
    padding-top: 13px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  #js-menubtn.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  #js-menubtn .menu-text {
    font-size: 0.9rem;
  }
  #js-menubtn .line-box {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }
  #js-menubtn .line-box span:nth-child(1) {
    top: 28%;
  }
  #js-menubtn .line-box span:nth-child(2) {
    top: 62%;
  }
  .header-list li .lang-select {
    left: -3px;
  }
  .header-list li .lang-select li {
    min-width: 66px;
  }
  .header-list li .lang-select li span {
    padding: 6px 10px;
    font-size: 1.1rem;
  }
  #worktime-dialog {
    padding: 30px 0;
  }
  .worktime-box {
    padding: 56px 16px 40px;
  }
  #worktime-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  #worktime-close span {
    width: 16px;
    height: 16px;
  }
  #worktime-close span::before,
  #worktime-close span::after {
    width: 1.5px;
    height: 20px;
  }
  .worktime-box .worktime-title {
    gap: 12px;
    margin-bottom: 24px;
    font-size: 1.4rem;
  }
  .worktime-list {
    width: 100% !important;
  }
  .worktime-list > dt {
    width: 124px;
    font-size: 1.2rem;
  }
  .worktime-list > dd {
    width: calc(100% - 124px);
    padding: 8px;
    font-size: 1.2rem;
  }
  .worktime-list + div {
    padding-block: 16px;
    font-size: 1.2rem;
  }
  .worktime-title img {
    width: 28px;
    margin-right: 0;
  }
  .worktime-box .note {
    font-size: 1.1rem;
  }
}
#js-menu-bg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 250;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
#js-menu-bg.active {
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}
#js-navbox-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  display: flex;
  flex-direction: column;
  padding: 151px 92px 52px;
  background-color: var(--bg-main);
  overflow-x: hidden;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
}
#js-navbox-menu.open {
  width: fit-content;
  height: 100vh;
  transform: translateX(0);
}

/* メニューが開いていない時はリンクをフォーカス不可にする */
#js-navbox-menu:not(.open) a {
  pointer-events: none;
}
#js-navbox-menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  width: 516px;
  margin-bottom: 24px;
}
#js-navbox-menu .menu-list li {
  position: relative;
  width: 33.333%;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--img-frame-border);
}
/* #js-navbox-menu .menu-list li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -10px;
  width: 10px;
  height: 1px;
  background-color: var(--img-frame-border);
} */
#js-navbox-menu .menu-list li:nth-child(n + 7) {
  border-bottom: none;
}
#js-navbox-menu .menu-list li:nth-child(n + 7)::after {
  display: none;
}
#js-navbox-menu .menu-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 100%;
  margin-inline: auto;
}
#js-navbox-menu .menu-list li a img {
  margin-bottom: 18px;
}
#js-navbox-menu .card-area a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 512px;
  margin-bottom: 24px;
  padding: 15px 10px;
  font-size: 1.5rem;
  border: 1px solid var(--main-color-green);
  border-radius: 4px;
  background-color: var(--bg-cardmenu);
}
#js-navbox-menu .card-area span {
  color: var(--main-color-green);
  font-size: 1.8rem;
  font-weight: bold;
}
#js-navbox-menu .card-area span span {
  color: var(--main-text);
  font-weight: normal;
}
#js-navbox-menu .text-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 500px;
  margin-bottom: 116px;
}
#js-navbox-menu .text-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  position: relative;
}
#js-navbox-menu .text-list li a img {
  width: 16px;
}
#js-navbox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 220px;
  color: var(--main-color-green);
  line-height: 54px;
  margin-inline: auto;
  font-size: 1.6rem;
  border-radius: 100px;
  border: 1px solid var(--main-color-green);
}
.sp-fixedmenu {
  display: none;
}

@media (max-width: 767.999px) {
  #js-navbox-menu {
    position: fixed;
    width: 340px !important;
    height: calc(100vh - 66px);
    max-width: 100vw;
    padding: 20px;
  }
  #js-navbox-menu .menu-list {
    width: 100%;
  }
  #js-navbox-menu .card-area {
    width: 100%;
  }
  #js-navbox-menu .card-area a {
    width: 100%;
  }
  #js-navbox-menu .card-area div {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
  }
  #js-navbox-menu .card-area div span {
    font-size: 1.3rem;
  }
  #js-navbox-menu .text-list {
    gap: 8px 12px;
    width: auto;
    margin-bottom: 27px;
  }
  #js-navbox-menu .text-list li a {
    font-size: 1.1rem;
  }
  #js-navbox-menu .menu-list a {
    padding-bottom: 0;
    font-size: 1.1rem;
  }
  #js-navbox-menu .menu-list li a img {
    max-width: 30%;
    max-height: 30%;
    margin-bottom: 10px;
  }
  #js-navbox-menu .card-title {
    font-size: 1.5rem;
  }
  #js-navbox-menu .card-bg {
    top: -17px;
    left: 10px;
    width: 80px;
  }
  #js-navbox-menu .card-menu {
    padding-left: 0;
  }
  #js-navbox-menu .card-menu a {
    padding: 8px 10px;
    font-size: 1.3rem;
  }
  #js-navbox-menu .card-menu a img,
  #js-navbox-menu .text-list li a img {
    width: 1em;
  }
  #js-navbox-btn {
    display: none;
  }

  .sp-fixedmenu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 300;
    display: block;
    width: calc(100% - 66px);
    height: 66px;
    background-color:  var(--white);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .sp-fixedmenu.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .sp-fixedmenu ul {
    display: flex;
    width: 100%;
    height: 66px;
  }
  .sp-fixedmenu li {
    width: 25%;
  }
  .sp-fixedmenu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 12px;
    font-size: 0.9rem;
  }
  .sp-fixedmenu li img {
    max-height: 30px;
  }
}

.page-footer {
  display: block;
  position: relative;
  overflow-x: hidden;
  margin-top: auto;
}

/* SNS Follow Bar (Above Footer) */
.section-sns-follow {
  width: 100%;
  background-color: var(--newtral-200);
  padding: 40px 0;
}

.section-sns-follow .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-sns-follow .label {
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #33221E;
  margin: 0;
}

.section-sns-follow .footer-sns-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-sns-follow .footer-sns-list li {
  width: 50px;
  height: 50px;
  transition: opacity 0.3s;
}

.section-sns-follow .footer-sns-list li a {
  display: block;
}

.section-sns-follow .footer-sns-list li img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (any-hover: hover) {
  .section-sns-follow .footer-sns-list li:hover {
    opacity: 0.7;
  }
}

/* Legacy Footer Area (iias) */
.iias-area {
  padding-block: 55px 50px;
  background-color: var(--bg-menu);
}

.iias-inner,
.dhg-inner {
  display: flex;
  align-items: center;
  max-width: 1030px;
  margin-inline: auto;
}

.iias-inner .iias-logo {
  margin-right: 45px;
}

.iias-inner .link-list {
  display: flex;
  margin-left: auto;
  height: 2rem;
}

.iias-inner .link-list li + li {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid var(--border-color3);
}

.dhg-inner {
  justify-content: space-between;
  padding-block: 30px;
}

.dhg-inner .dhg-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 487px;
  height: 33px;
  margin-bottom: 12px;
}

.dhg-inner .dhg-logo img:first-child {
  width: 267px;
}

.dhg-inner .dhg-logo img + img {
  width: 189px;
}

.dhg-inner .dhg-text {
  font-size: 1rem;
}

.dhg-inner .dhg-block:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 65px;
  padding-top: 8px;
}

.dhg-inner .link-list {
  display: flex;
  margin-left: auto;
}

.dhg-inner .link-list li + li {
  height: 1lh;
  margin-left: 30px;
  padding-left: 30px;
  line-height: 1.4;
  border-left: 1px solid var(--border-color3);
}

.dhg-inner .link-list a {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.dhg-inner .link-list img {
  position: relative;
  bottom: 1px;
  width: 14px;
}

/* Footer Reborn (Active Footer) */
.footer-reborn-area {
  padding-block: 55px 30px;
  background-color: var(--bg-menu);
}

.footer-reborn-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 30px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
}

.ft-left-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-reborn-area .iias-logo img {
  width: 140px;
  height: auto;
}

.footer-reborn-area .iias-text {
  font-size: 1.3rem;
  line-height: 1.6;
}

.ft-right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
}

.footer-reborn-area .dhg-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-reborn-area .dhg-logo img:first-child {
  width: 32px;
  height: auto;
}

.footer-reborn-area .dhg-logo img:last-child {
  width: 220px;
  height: auto;
}

.footer-reborn-area .dhg-text {
  font-size: 1rem;
  color: var(--text-color);
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 0;
}

.footer-link-list li {
  padding-inline: 30px;
  border-left: 1px solid var(--border-color3);
  line-height: 1;
}

.footer-link-list li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-link-list a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2rem;
  white-space: nowrap;
}

.footer-link-list img {
  width: 12px;
  height: auto;
  position: relative;
  top: -1px;
}

.separator-pc {
  display: none !important;
}

.dhg-copyright {
  text-align: center;
  font-size: 1rem;
  color: #666;
}

/* Footer Responsive Settings */
@media (max-width: 1250px) {
  .dhg-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .dhg-inner .dhg-block:nth-child(2) {
    padding-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .iias-inner,
  .dhg-inner {
    padding-inline: 30px;
  }
  .iias-inner .iias-logo {
    margin-right: 30px;
  }
  .iias-inner .link-list li + li {
    margin-left: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .ft-left-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ft-right-block {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 767.999px) {
  /* SNS Follow */
  .section-sns-follow {
    padding: 30px 20px;
  }
  .section-sns-follow .inner {
    flex-direction: column;
    gap: 20px;
  }
  .section-sns-follow .label {
    font-size: 1.6rem;
  }
  .section-sns-follow .footer-sns-list li {
    width: 40px;
    height: 40px;
  }

  /* Page Footer General */
  .page-footer {
    padding-bottom: 66px;
  }

  /* Legacy iias Area */
  .iias-area {
    padding: 40px 10px 30px 15px;
  }
  .iias-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .iias-inner .iias-logo {
    width: 100px;
    margin: 0 20px 20px 0;
  }
  .iias-inner .iias-text {
    font-size: 1.2rem;
  }
  .iias-inner .link-list {
    width: 54%;
    margin-left: 0;
  }
  .iias-inner .link-list li {
    height: 1lh;
    line-height: 1.4;
  }
  .iias-inner .link-list li + li {
    margin-left: 10px;
    padding-left: 10px;
  }
  .iias-inner .link-list a {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  /* Legacy DHG Area */
  .dhg-area {
    padding-inline: 15px;
  }
  .dhg-inner {
    flex-direction: column;
    padding-block: 20px;
    align-items: flex-start;
  }
  .dhg-inner .dhg-logo {
    justify-content: flex-start;
    gap: max(5%, 20px);
    margin-bottom: 5px;
    width: max(267px, 100%);
    height: auto;
  }
  .dhg-inner .dhg-logo img:first-child {
    width: max(168px, 55%);
    max-width: 45vw;
  }
  .dhg-inner .dhg-logo img + img {
    width: max(130px, 20%);
    max-width: 30vw;
  }
  .dhg-inner .link-list li + li {
    height: auto;
    margin-left: 10px;
    padding-left: 10px;
  }
  .dhg-inner .link-list a {
    gap: 0.5em;
    font-size: 1.2rem;
  }
  .dhg-inner .link-list img {
    width: 10px;
  }
  .dhg-inner .dhg-block:nth-child(2) {
    height: auto;
    padding-top: 20px;
  }
  .dhg-block .link-list {
    margin-bottom: 20px;
  }

  /* Footer Reborn */
  .footer-reborn-area {
    padding: 40px 15px 80px;
  }
  .footer-top-row {
    margin-bottom: 40px;
    gap: 30px;
  }
  .footer-reborn-area .iias-logo img {
    width: 120px;
  }
  .footer-reborn-area .iias-text {
    font-size: 1.2rem;
  }
  .footer-reborn-area .dhg-logo img:first-child {
    width: 28px;
  }
  .footer-reborn-area .dhg-logo img:last-child {
    width: 180px;
  }
  .footer-link-list {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .footer-link-list li {
    padding: 0;
    border-left: none;
    margin-bottom: 15px;
    width: 100%;
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
    line-height: 1.2;
  }
  .footer-link-list a {
    font-size: 1.3rem;
  }
  .dhg-copyright {
    text-align: left;
    font-size: 0.9rem;
  }
  .footer-link-list li:first-child {
    border-left: 2px solid var(--accent-color);
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .iias-inner .iias-logo {
    padding-top: 0.8em;
  }
  .dhg-inner .link-list li + li {
    margin-left: 5px;
    padding-left: 5px;
  }
}

.section-title,
.page-title {
  display: flex;
  flex-direction: column;
  color: var(--header-text);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.section-title {
  margin-bottom: 58px;
}
.section-title span,
.page-title span {
  position: relative;
  display: block;
  font-size: 5.2rem;
  font-weight: 500;
  font-family: var(--font-family-en);
}
.section-title span::before,
.page-title span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 8px;
  background: url("../img/dots.svg") no-repeat top center;
}
@media (max-width: 767.999px) {
  .section-title,
  .page-title {
    font-size: 1.2rem;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title span,
  .page-title span {
    font-size: 3rem;
  }
  .section-title span::before,
  .page-title span::before {
    width: 30px;
    height: 6px;
    background-size: contain;
  }
}


.more-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 218px;
  height: 56px;
  margin-inline: auto;
  padding-inline: 70px;
  color: var(--main-color-green);
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid var(--main-color-green);
  border-radius: 100px;
  background: var(--white);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.more-btn.en {
  font-family: var(--font-family-en);
  text-transform: uppercase;
}
.more-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--main-color-green);
  transition: right 0.7s ease-in-out;
}
.more-btn.green {
  background: var(--green-50);
}
@media (any-hover: hover) {
  .more-btn:hover {
    color:  var(--white);
    opacity: 1;
    background-color: var(--main-color-green);
  }
  .more-btn:hover::before {
    right: -25px;
  }
}
@media (max-width: 767.999px) {
  .more-btn {
    min-width: 205px;
    height: 48px;
    padding-inline: 35px;
    font-size: 1.3rem;
  }
}

.no-message {
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 767.999px) {
  .no-message {
    font-size: 1.4rem;
  }
}

/*
.close-box {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 17px;
  height: 17px;
  padding: 0;
  border: none;
  border-radius: 0 0 0 8px;
  background: var(--main-text);
  cursor: pointer;
}
.close-box::before, .close-box::after { 
  content: "";
  position: absolute;
  top: 45%;
  left: 55%;
  width: 2px; 
  height: 12px; 
  background:  var(--white);
}
.close-box::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.close-box::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.page-top {
  position: fixed;
  right: 50px;
  bottom: 32px;
  z-index: 100;
  width: 60px;
  cursor: pointer;
}

@media (max-width: 767.999px) {
  .page-top {
    width: 40px;
    bottom: 70px;
  }
}
*/

/* footer-sliderのスタイリング */
.footer-slider {
  position: relative;
  margin-top: 72px;
  padding-bottom: 80px;
}
.footer-slider .splide__track {
  width: calc(100% + 15px);
  height: 340px;
  transform: translateX(-15px);
}
.footer-slider .splide__list {
  overflow: visible;
}
.footer-slider .splide__slide {
  width: 340px !important;
  height: 340px;
  margin-inline: 18px;
  aspect-ratio: 1 / 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-slider .splide__playpause {
  top: 20px;
  right: 20px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 35px auto 0;
  padding: 0;
  border: 1px solid var(--main-text);
  border-radius: 50%;
  background-color:  var(--white);
  color: var(--main-text);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.footer-slider .splide__playpause::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: currentcolor;
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M11 6L3 10.5L3 1.5L11 6Z" fill="white"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.footer-slider .splide__playpause.is-active::before {
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 2L3 10M9 2L9 10" stroke="white" stroke-width="2" /></svg>');
}
@media (max-width: 767.999px) {
  .footer-slider {
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .footer-slider .splide__track {
    height: 210px;
  }
  .footer-slider .splide__slide {
    width: 210px !important;
    height: 210px;
    margin-inline: 8px;
  }
  .footer-slider .splide__playpause {
    top: 15px;
    right: 15px;
    margin: 20px auto 0;
  }
}
@media (max-width: 480px) {
  .footer-slider .splide__playpause {
    width: 25px;
    height: 25px;
    top: 10px;
    right: 10px;
  }
  .footer-slider .splide__playpause::before {
    width: 10px;
    height: 10px;
  }
  .footer-slider .splide__playpause.is-active::before {
    width: 10px;
    height: 10px;
  }
}

/* ポップアップスタイル */
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  background-color:  var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

@media (any-hover: hover) {
  .popup-close:hover {
    background-color: #f0f0f0;
  }
}

.popup-body {
  padding: 30px;
}

.popup-body h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.popup-body p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #666;
}

.breadcrumb-bar {
  width: auto;
  padding: 30px;
  overflow: auto;
}
.breadcrumb-bar::-webkit-scrollbar{
  display: none;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  gap: 10px 40px;
}
.breadcrumb-list li {
  position: relative;
}
.breadcrumb-list li:has( + li)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  width: 8px;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjAyMSIgaGVpZ2h0PSIxMi40NTciIHZpZXdCb3g9IjAgMCA5LjAyMSAxMi40NTciPiA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjI5OCAwLjQwMikiPiA8cGF0aCBkPSJNMTAsOC41NjVsNy44ODMsNS44MTNMMTAsMjAuMjE4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTAgLTguNTY1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMzMyMjFlIiBzdHJva2Utd2lkdGg9IjEiLz4gPC9nPjwvc3ZnPg==") no-repeat center center / 100% 100%;
}
.breadcrumb-list li a {
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.breadcrumb-list li a:hover {
  text-decoration: none;
}
@media (max-width: 767.999px) {
  .breadcrumb-bar {
    padding: 15px 16px;
  }
  .breadcrumb-list {
    gap: 8px 25px;
  }
  .breadcrumb-list li {
    font-size: 1.1rem;
  }
  .breadcrumb-list li:has( + li)::after {
    right: -15px;
    width: 6px;
  }
}

/* 251217_1019▽ ------------------------------------------------------------ */

.top-arrow {
  position: fixed;
  bottom: 0;
  right: 0;
  left: auto;
  display: block;
  padding: 15px 15px 0;
  justify-content: flex-end;
  gap: 0;
  z-index: 180;
  height: 100px;
}

@media (max-width: 767.999px) {
  .top-arrow {
    gap: 0;
    height: 150px;
    padding: 10px 15px 0;
    bottom: 0;
  }
}

.sns-box {
  position: relative;
  top: -74px;
  display: block;
  place-items: center;
  z-index: 100;
  width: 128px;
  height: 84px;
  background:  var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
}

.sns-list li,
.sns-list li img {
  width: 44px;
}

.sns-list::before {
  content: "公式SNS";
  display: block;
  margin-top: 8px;
  flex-basis: 100%;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--main-text);
  text-align: center;
}

@media (max-width: 767.999px) {
  .sns-box {
    width: 107px;
    padding: 0;
    height: 65px;
    top: -50px;
    z-index:200;
  }

  .sns-list {
    flex-direction: row;
    justify-content: center;
    gap: 4px 16px;
  }

  .sns-list li {
    width: 32px;
  }

  .sns-list::before {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

.close-box {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 200;
  display: block;
  width: 19px;
  height: 19px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--main-text);
  cursor: pointer;
}

.close-box::before,
.close-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background:  var(--white);
}

.close-box::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-box::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-top {
  position: relative;
  z-index: 100;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background: var(--main-color-green);
  border-radius: 50%;
  margin: 0 -12px 0 0;
}

.page-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.page-top img {
  display: none;
}

.page-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-left: 2px solid  var(--white);
  border-top: 2px solid  var(--white);
  transform: translate(-50%, -40%) rotate(45deg);
}

@media (max-width: 767.999px) {
  .page-top {
    width: 40px;
    height: 40px;
    right: 10px !important;
    margin: 0 10px 0 0;
  }

  .page-top a::before {
    width: 8px;
    height: 8px;
  }
}

.border-box {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .border-box img:last-child {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
}
@media screen and (max-width: 767.999px) {
  .border-box img:first-child {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
}

.list-page .breadcrumb-bar {
  background-color: var(--green-50);
}
.list-page .section-title {
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 58px;
  background-color: var(--green-50);
}
@media screen and (max-width: 767.999px) {
  .list-page .section-title {
    padding-bottom: 40px;
    padding-top: 58px;
  }
}

.detail-page .category-title {
  width: 1100px;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  padding-block: 96px 64px;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.detail-page .category-title span {
  display: inline-block;
  margin-right: 10px;
  font-size: 2.6rem;
  font-weight: 500;
  font-family: var(--font-family-en);
}
@media screen and (max-width: 767.999px) {
  .detail-page .category-title {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    padding-block: 64px 40px;
  }
}

.outside-link {
  max-width: 1000px;
  padding: 0 30px;
  margin: 56px auto 96px;
  text-align: center;
}
.outside-link .logo {
  width: 242px;
  height: 158px;
  padding: 43px 35px;
  margin-inline: auto;
}
.outside-link .text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 16px;
}
.outside-link a {
  color: var(--main-color-green);
  text-decoration: underline;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.999px) {
  .outside-link {
    padding-inline: 16px;
    margin: 48px auto 80px;
  }
  .outside-link .logo {
    width: 188px;
    height: 132px;
    padding: 36px 22px;
  }
  .outside-link .text {
    font-size: 1.4rem;
  }
  .outside-link a {
    font-size: 1.4rem;
  }
}