@charset "utf-8";

/** ***************************************************************************
 * 全体
 * ************************************************************************* */

html {
  container-type: size;
}

body {
  padding-bottom: 52px;
  color: rgb(var(--color-basic));
  font: 14px / 1.6 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
  z-index: 0;
}

a:not([href]) {
  color: inherit;
}

:where(a[href]) {
  color: rgb(var(--accentcolor-3));
  font-weight: 500;
}

:where(a[href]:hover) {
  text-decoration: none;
}

@media screen and (min-width:768px) {

  body {
    padding-bottom: unset;
    font-size: 16px;
    font-weight: 300;
  }

}

/**
 * レイアウト用
 */

div.body {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/** ***************************************************************************
 * ヘッダー
 * ************************************************************************* */

#header {
  width: 100%;
  padding: 10px 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}

#header::before {
  content: '';
  width: 100%;
  height: 100px;
  background-color: rgb(var(--accentcolor-1));
  mask: url("../_image/_common/visual-mask.svg") 60% 0 / 110% 100% no-repeat;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -22px;
}

#header div.body {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width:951px) {

  #header {
    transition:
      padding 0.3s ease-in-out 0.0s,
      font-size 0.3s ease-in-out 0.0s;
    padding: 20px 0;
    font-size: inherit;
  }

  body.scroll-active
  #header {
    transition:
      padding 0.4s ease-in-out 0.0s,
      font-size 0.4s ease-in-out 0.0s;
    padding: 10px 0;
    font-size: 0.867em;
  }

  #header::before {
    height: 300px;
    mask-size: 100% 100%;
    mask-position: 0 0;
    bottom: -65px;
  }

  #header div.body {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
  }

}

/**
 * ロゴ
 */

#header .logo {
  width: 150px;
}

#header .logo a {
  text-decoration: none;
  display: block;
}

@media screen and (min-width:951px) {

  #header .logo {
    width: 260px;
    transition: width 0.3s ease-in-out 0.0s;
  }

  body.scroll-active
  #header .logo {
    transition: width 0.4s ease-in-out 0.0s;
    width: 230px;
  }

}

/**
 * ヘッダー
 */

#header div.header {
  margin-left: auto;
  margin-right: 15px;
}

@media screen and (min-width:951px) {

  #header div.header {
    margin: unset;
  }

}

/**
 * ヘッダーナビ
 */

#header nav.nav ul.list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

#header nav.nav ul.list li a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width:951px) {

  #header nav.nav ul.list {
    font-size: 0.9375em;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  #header nav.nav ul.list li ~ li {
    margin-left: 20px;
  }

}

/* 所在地 */

#header nav.nav ul.list li.address {
  font-size: 0.714em;
  order: 2;
}

@media screen and (min-width:951px) {

  #header nav.nav ul.list li.address {
    font-size: unset;
    order: unset;
  }

}

/* 電話番号 */

#header nav.nav ul.list li.tel {
  padding-left: 1.125em;
  font-size: 1.143em;
  font-weight: 700;
  position: relative;
  z-index: 0;
}

#header nav.nav ul.list li.tel::before {
  content: '';
  width: 1em;
  height: 1em;
  background: url("../_image/_common/icon-tel-1.png") 0 0 / 100% 100% no-repeat;
  filter: brightness(0) invert(0);
  position: absolute;
  z-index: 1;
  top: 0.375em;
  left: 0;
}

@media screen and (min-width:951px) {

  #header nav.nav ul.list li.tel {
    font-size: 1.4em;
  }

}

/* 見学会のお知らせ */

#header nav.nav ul.list li.button {
  display: none;
}

@media screen and (min-width:951px) {

  #header nav.nav ul.list li.button {
    display: inline-block;
  }

  #header nav.nav ul.list li.button a {
    padding: 0.375em 1.5em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgb(var(--accentcolor-3));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      color 0.3s ease-in-out 0.0s,
      background-color 0.3s ease-in-out 0.0s;
    color: #fff;
    background-color: rgb(var(--accentcolor-3));
  }

  #header nav.nav ul.list li.button a:hover {
    color: rgb(var(--accentcolor-3));
    background-color: rgba(255, 255, 255, 0.8);
  }

}

/** ***************************************************************************
 * ヘッダー（特設ページ）
 * ************************************************************************* */

body.layout-2
#header::before {
  transition:
    visibility 0.3s ease-in-out 0.0s,
    opacity 0.3s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.layout-2.scroll-active
#header::before {
  visibility: visible;
  opacity: 1;
}

/** ***************************************************************************
 * グローバルナビ
 * ************************************************************************* */

#global-nav a {
  color: inherit;
}

/* SP表示 */

@media screen and (max-width:950px) {

  #global-nav {
    width: 100vw;
    height: 100dvh;
    pointer-events: none;
    overflow: hidden;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    transition:
      visibility 0.3s ease-in-out 0.0s,
      opacity 0.3s ease-in-out 0.0s;
    visibility: hidden;
    opacity: 0;
  }

  body.global-nav-active
  #global-nav {
    pointer-events: unset;
    transition:
      visibility 0.3s ease-in-out 0.0s,
      opacity 0.3s ease-in-out 0.0s;
    visibility: visible;
    opacity: 1;
  }

  #global-nav::after {
    content: '';
    max-width: none;
    border-radius: 50%;
    background-color: rgb(var(--accentcolor-3));
    backdrop-filter: blur(4px);
    position: absolute;
    z-index: -1;
    top: -50vh;
    right: -50vh;
    transition:
      width 0.0s ease-in-out 0.5s,
      height 0.0s ease-in-out 0.5s,
      background-color 0.0s ease-in-out 0.5s,
      visibility 0.0s ease-in-out 0.5s,
      opacity 0.0s ease-in-out 0.5s;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
  }

  body.global-nav-active
  #global-nav::after {
    transition:
      width 1.0s ease-in-out 0.0s,
      height 1.0s ease-in-out 0.0s,
      background-color 0.7s ease-in-out 0.3s,
      visibility 0.5s ease-in-out 0.0s,
      opacity 0.5s ease-in-out 0.0s;
    width: 200vh;
    height: 200vh;
    background-color: rgb(var(--accentcolor-1));
    visibility: visible;
    opacity: 1;
  }

  #global-nav div.contents {
    height: 100%;
    padding: 20px 20px 50px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    visibility: hidden;
    opacity: 0;
    right: 10vw;
  }

  body.global-nav-active
  #global-nav div.contents {
    transition:
      visibility 0.5s ease-in-out 0.7s,
      opacity 0.5s ease-in-out 0.7s,
      right 0.5s ease-in-out 0.7s;
    visibility: visible;
    opacity: 1;
    right: 0;
  }

  #global-nav div.contents > * {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

}

/* PC表示 */

@media screen and (min-width:951px) {

  #global-nav {
    margin-top: 15px;
    padding: 0 1.5em;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.8);
  }

}

/**
 * ヘッダー（SP表示）
 */

@media screen and (max-width:950px) {

  #global-nav .header {
    margin-bottom: 20px;
  }

  /* ロゴ */

  #global-nav .header div.logo {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #global-nav .header div.logo img {
    width: 180px;
  }

  /* TEL */

  #global-nav .header div.tel {
    text-align: center;
  }

  #global-nav .header div.tel a {
    padding-left: 1.125em;
    font-size: 1.375em;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 0;
  }

  #global-nav .header div.tel a::after {
    content: '';
    width: 1em;
    height: 1em;
    background: url("../_image/_common/icon-tel-1.png") 0 0 / 100% 100% no-repeat;
    filter: brightness(0) invert(0);
    position: absolute;
    z-index: 1;
    top: 0.375em;
    left: 0;
  }

}

/**
 * ヘッダー（PC表示）
 */

@media screen and (min-width:951px) {

  #global-nav .header {
    display: none;
  }

}

/**
 * リスト（SP表示）
 */

@media screen and (max-width:950px) {

  #global-nav ul.list {
    font-weight: 400;
  }

  #global-nav ul.list li a {
    text-decoration: none;
    display: block;
  }

  /**
   * メインリスト
   */

  /* 第1階層 */

  #global-nav ul.nav {
    font-size: 1.143em;
  }

  #global-nav ul.nav > li {
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px dashed rgb(var(--accentcolor-3));
  }

  #global-nav ul.nav > li > a {
    padding: 0.75em;
    font-weight: 500;
    transition:
      color 0.3s ease-in-out 0.0s,
      background-color 0.3s ease-in-out 0.0s;
    color: inherit;
    background-color: transparent;
  }

  #global-nav ul.nav > li.current > a,
  #global-nav ul.nav > li.submenu-active > a {
    color: rgb(var(--accentcolor-3));
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.5);
  }

  /* 第2階層 */

  #global-nav ul.nav ul.sub {
    overflow: hidden;
    transition:
      max-height 0.3s ease-out 0.0s,
      padding 0.5s ease-out 0.0s,
      visibility 0.3s ease-out 0.0s,
      opacity 0.3s ease-out 0.0s;
    max-height: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
  }

  #global-nav ul.nav li.current ul.sub,
  #global-nav ul.nav li.submenu-active ul.sub {
    transition:
      max-height 1.0s ease-in 0.0s,
      padding 0.3s ease-out 0.0s,
      visibility 0.3s ease-in 0.0s,
      opacity 0.3s ease-in 0.0s;
    max-height: 200vh;
    padding: 0.875em 0;
    visibility: visible;
    opacity: 1;
  }

  #global-nav ul.nav ul.sub li a {
    padding: 0.375em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #global-nav ul.nav ul.sub li.current a::before {
    content: '';
    width: 0.875em;
    height: 0.875em;
    margin-right: 0.5em;
    border-radius: 3px;
    background-color: rgb(var(--accentcolor-3));
  }

  /**
   * グループサイト
   */

  #global-nav ul.group {
    margin-top: 2em;
    font-size: 1.071em;
  }

  #global-nav ul.group li:not(.button) a {
    padding: 0.25em 0.5em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #global-nav ul.group li:not(.button) a::before {
    content: '';
    width: 0.75em;
    height: 0.75em;
    margin-right: 0.5em;
    border-radius: 3px;
    background-color: rgb(var(--accentcolor-3));
  }

  /* ボタン */

  #global-nav ul.group li.button {
    margin-bottom: 1.5em;
  }

  #global-nav ul.group li.button a {
    padding: 0.75em 1.5em;
    color: #fff;
    font-size: 1.125em;
    font-weight: 600;
    text-align: center;
    border-radius: 9999px;
    background-color: rgb(var(--accentcolor-3));
  }

  /**
   * 個人情報保護 / 厚生労働大臣が定める提示事項等
   */

  #global-nav ul.aside {
    margin-top: 1em;
    font-size: 1.071em;
  }

  #global-nav ul.aside li a {
    padding: 0.25em;
  }

}

/**
 * リスト（PC表示）
 */

@media screen and (min-width:951px) {

  #global-nav div.contents {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #global-nav ul.nav {
    font-size: 0.9375em;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /**
   * メインリスト
   */

  /* 第1階層 */

  #global-nav ul.nav > li {
    position: relative;
    z-index: 0;
  }

  #global-nav ul.nav > li.home {
    display: none;
  }

  #global-nav ul.nav > li > a {
    padding: 0.25em 0.875em 0.375em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease-in-out 0.0s;
    color: inherit;
  }

  #global-nav ul.nav > li:hover > a {
    color: rgb(var(--accentcolor-3));
  }

  #global-nav ul.nav > li.current > a {
    color: rgb(var(--accentcolor-3));
    font-weight: 500;
  }

  /* 第2階層 */

  #global-nav ul.sub {
    max-width: none;
    min-width: 100%;
    padding-top: 10px;
    white-space: nowrap;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 100%;
    transition:
      color 0.3s ease-in-out 0.0s,
      visibility 0.3s ease-in-out 0.0s,
      opacity 0.3s ease-in-out 0.0s;
    color: inherit;
    visibility: hidden;
    opacity: 0;
  }

  #global-nav li:hover ul.sub {
    visibility: visible;
    opacity: 1;
  }

  body.scroll-active
  #global-nav ul.sub {
    color: #333;
  }

  #global-nav ul.sub li {
    border: 1px solid rgba(var(--accentcolor-3), 0.4);
    overflow: hidden;
    transition:
      background-color 0.3s ease-in-out 0.0s,
      backdrop-filter 0.8s ease-in-out 0.0s;
    background-color: #fff;
  }

  #global-nav ul.sub li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  #global-nav ul.sub li:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  #global-nav ul.sub li ~ li {
    margin-top: -1px;
    border-top: 1px solid rgb(var(--accentcolor-1));
  }

  #global-nav ul.sub li a {
    padding: 0.5em 1em;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease-in-out 0.0s;
    background-color: transparent;
  }

  #global-nav ul.sub li a:hover {
    background-color: rgba(var(--accentcolor-1), 0.5);
  }

  /**
   * グループサイト
   */

  #global-nav ul.group {
    display: none;
  }

  /**
   * 個人情報保護 / 厚生労働大臣が定める提示事項等
   */

  #global-nav ul.aside {
    display: none;
  }

}

/** ***************************************************************************
 * ハンバーガー
 * ************************************************************************* */

#header div.drawer {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgb(var(--accentcolor-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

@media screen and (min-width:951px) {

  #header div.drawer {
    display: none;
  }

}

/**
 * ライン
 */

#header div.drawer div.line {
  width: 50%;
  height: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

#header div.drawer i {
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out 0.0s;
  transform: rotate(0) translate(0);
}

/* 上 */

body.global-nav-active
#header div.drawer i:nth-child(1) {
  transform: rotate(315deg) translate(-4px, 4px);
}

/* 中 */

body.global-nav-active
#header div.drawer i:nth-child(2) {
  transform: translateX(50vw);
}

/* 下 */

body.global-nav-active
#header div.drawer i:nth-child(3) {
  transform: rotate(-315deg) translate(-3px, -3px);
}

/** ***************************************************************************
 * ビジュアル
 * ************************************************************************* */

body.layout-lower
#visual {
  background-color: rgb(var(--accentcolor-1));
  mask: url("../_image/_common/visual-mask.svg") 60% 0 / 110% 100% no-repeat;
}

body.layout-lower
#visual div.body {
  height: 100px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width:951px) {

  body.layout-lower
  #visual {
    mask-position: 0 0;
    mask-size: 100% 100%;
  }

  body.layout-lower
  #visual div.body {
    height: 300px;
    padding-bottom: 80px;
  }

}

/**
 * タイトル
 */

body.layout-lower
#visual .title {
  font-family: 'Kiwi Maru', serif;
  font-size: 1.375em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

body.layout-lower
#visual .title::after {
  content: attr(data-en);
  color: rgb(var(--accentcolor-3));
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.643em;
  font-weight: 700;
}

@media screen and (min-width:951px) {

  body.layout-lower
  #visual .title {
    font-size: 1.75em;
  }

}

/** ***************************************************************************
 * メイン
 * ************************************************************************* */

#main {
  text-align: justify;
  text-justify: inter-character;
  overflow: hidden;
}

body.layout-lower
:where(#main) {
  padding-top: 50px;
  padding-bottom: 80px;
}

body.layout-lower
:where(#main div.body) {
  max-width: 840px;
}

@media screen and (min-width:768px) {

  #main {
    font-size: 17px;
  }

  body.layout-lower
  :where(#main) {
    padding-top: 100px;
    padding-bottom: 160px;
  }

  body.layout-lower
  :where(#main div.body) {
    max-width: 1040px;
  }

}

/**
 * セクショニング
 */

body.layout-lower
:where(#main .section ~ .section) {
  margin-top: 80px;
}

body.layout-lower
:where(#main .column ~ .column) {
  margin-top: 40px;
}

body.layout-lower
:where(#main .block ~ .block) {
  margin-top: 20px;
}

@media screen and (min-width:768px) {

  body.layout-lower
  :where(#main .section ~ .section) {
    margin-top: 160px;
  }

  body.layout-lower
  :where(#main .column ~ .column) {
    margin-top: 80px;
  }

  body.layout-lower
  :where(#main .block ~ .block) {
    margin-top: 40px;
  }

}

/** ***************************************************************************
 * フッター
 * ************************************************************************* */

#footer {
  background-color: rgb(var(--accentcolor-3));
}

#footer div.body {
  max-width: 900px;
}

@media screen and (min-width:768px) {

  #footer {
    padding-bottom: 20px;
  }

}

/** ---------------------------------------------------------------------------
 * 共用コンテンツ
 */

#footer div.common {
  padding: 50px 0 80px;
  position: relative;
  z-index: 0;
}

#footer div.common::after {
  content: '';
  width: var(--innerWidth);
  max-width: none;
  height: 100%;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: rgb(var(--accentcolor-1));
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--innerCenter);
}

@media screen and (min-width:768px) {

  #footer div.common {
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  #footer div.common > * {
    width: 100%;
  }

  #footer div.common::after {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
  }

}

/**
 * アドレス
 */

#footer div.common div.address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width:768px) {

  #footer div.common div.address {
    width: 300px;
    flex-shrink: 0;
  }

}

/* ロゴ */

#footer div.common div.address .logo {
  width: 100%;
  text-align: center;
}

#footer div.common div.address .logo a {
  text-decoration: none;
  display: inline-block;
}

#footer div.common div.address .logo img {
  width: 254px;
}

@media screen and (min-width:768px) {

  #footer div.common div.address .logo img {
    width: unset;
  }

}

/* 所在地 */

#footer div.common div.address div.text {
  width: 100%;
  margin-bottom: 15px;
  font-size: 1.286em;
  font-weight: 400;
  text-align: center;
}

/* 電話番号 */

#footer div.common div.address div.tel {
  padding-left: 1.75em;
  position: relative;
  z-index: 0;
}

#footer div.common div.address div.tel a {
  color: inherit;
  line-height: 1;
  font-size: 1.714em;
  font-weight: 700;
  text-decoration: none;
}

#footer div.common div.address div.tel::before {
	content: '';
	width: 1.5em;
	height: 1.5em;
	background: url("../_image/_common/icon-tel-1.png") 0 0 / 100% 100% no-repeat;
	position: absolute;
	z-index: 1;
	top: 0.375em;
	left: 0;
}

/* SNS */

#footer div.common div.address div.sns {
  margin-left: 15px;
}

/**
 * グーグルマップ
 */

#footer div.common div.map {
  margin-top: 30px;
  padding-bottom: 70%;
  position: relative;
  z-index: 0;
}

#footer div.common div.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

@media screen and (min-width:768px) {

  #footer div.common div.map {
    width: calc(100% - 300px - 5%);
    margin-top: unset;
    margin-left: 5%;
    padding-bottom: 340px;
  }

}

/**
 * 受付時間
 */

#footer div.common div.reception {
  margin-top: 30px;
}

@media screen and (min-width:768px) {

  #footer div.common div.reception {
    margin-top: 40px;
  }

}

/* テーブル */

#footer div.common div.reception table.data {
  font-size: 0.929em;
  border-collapse: collapse;
}

#footer div.common div.reception table.data th {
  font-weight: 400;
  border-bottom: 1px solid rgb(var(--accentcolor-6));
}

#footer div.common div.reception table.data td {
  color: rgb(var(--accentcolor-3));
  border-bottom: 1px solid rgb(var(--accentcolor-6));
}

@media screen and (min-width:768px) {

  #footer div.common div.reception table.data {
    font-size: 1.125em;
  }

}

/* ボタン */

#footer div.common div.reception div.button {
  margin-top: 30px;
  text-align: center;
}

#footer div.common div.reception div.button a {
  min-width: 300px;
}

@media screen and (min-width:768px) {

  #footer div.common div.reception div.button {
    margin-top: 40px;
  }

}

/* 注釈 */

#footer div.common div.reception div.memo {
  margin-top: 40px;
}

@media screen and (min-width:768px) {

  #footer div.common div.reception div.memo {
    width: fit-content;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }

}

/** ---------------------------------------------------------------------------
 * フッターコンテンツ
 */

#footer div.footer {
  padding-top: 60px;
  color: #fff;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

@media screen and (min-width:768px) {

  #footer div.footer {
    padding-top: 100px;
  }

}

/**
 * ナビ
 */

@media screen and (min-width:768px) {

  #footer div.footer nav.nav div.contents {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

}

/* ヘッダー */

#footer div.footer nav.nav header.header {
  display: none;
}

/* ナビ */

#footer div.footer nav.nav ul.list a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

#footer div.footer nav.nav ul.list > li > a {
  padding: 0.375em;
  font-size: 1.143em;
  font-weight: 600;
  border-bottom: 2px dotted;
  transition: border-color 0.3s ease-in-out 0.0s;
  border-color: transparent;
}

#footer div.footer nav.nav ul.sub {
  padding-left: 1.375em;
}

#footer div.footer nav.nav ul.sub li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer div.footer nav.nav ul.sub li::before {
  content: '';
  width: 0.375em;
  height: 0.75em;
  margin-right: 0.5em;
  background: url("../_image/_common/icon-arrow-1.png") 0 0 / 100% 100% no-repeat;
  filter: brightness(0) invert(1);
}

#footer div.footer nav.nav ul.sub li a {
  padding: 0.25em;
}

@media screen and (min-width:768px) {

  #footer div.footer nav.nav ul.list > li ~ li {
    margin-top: 0.5em;
  }

  #footer div.footer nav.nav ul.list a {
    border-bottom: 2px dotted;
    transition: border-color 0.3s ease-in-out 0.0s;
    border-color: transparent;
  }

  #footer div.footer nav.nav ul.list a[href]:hover {
    border-color: #fff;
  }

  #footer div.footer nav.nav ul.list > li > a {
    padding: 0.125em;
  }

  #footer div.footer nav.nav ul.sub {
    padding-left: 0.75em;
  }

  #footer div.footer nav.nav ul.sub li ~ li {
    margin-top: 0.125em;
  }

  #footer div.footer nav.nav ul.sub li a {
    padding: 0.125em;
  }

}

/* 個人情報保護 / 厚生労働大臣が定める提示事項等 */

#footer div.footer nav.nav ul.aside {
  display: none;
}

/**
 * 固定ナビ
 */

#footer div.footer div.fixed-nav {
  width: 100%;
  color: #fff;
  background: rgb(var(--accentcolor-3));
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
}

#footer div.footer div.fixed-nav ul.list {
  font-size: 1.071em;
  font-weight: 600;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

#footer div.footer div.fixed-nav ul.list li {
  border-top: 1px solid #fff;
  flex-grow: 1;
}

#footer div.footer div.fixed-nav ul.list li:not(:first-child) {
  border-left: 1px solid #fff;
}

#footer div.footer div.fixed-nav ul.list li a {
  height: 100%;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer div.footer div.fixed-nav ul.list li img {
  margin-right: 10px;
}

@media screen and (min-width:768px) {

  #footer div.footer div.fixed-nav {
    display: none;
  }

}

/**
 * 個人情報保護 / 厚生労働大臣が定める提示事項等
 */

#footer div.footer div.aside-nav {
  margin-top: 40px;
}

#footer div.footer div.aside-nav ul.list {
  font-size: 0.875em;
}

#footer div.footer div.aside-nav ul.list li {
  text-align: center;
}

#footer div.footer div.aside-nav ul.list a {
  padding: 0.375em;
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

@media screen and (min-width:768px) {

  #footer div.footer div.aside-nav {
    margin-top: 80px;
  }

  #footer div.footer div.aside-nav ul.list {
    font-size: unset;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  #footer div.footer div.aside-nav ul.list a {
    padding: 0.375em 1em;
  }

}

/**
 * ページトップ
 */

#footer div.footer div.pagetop {
  width: 60px;
  position: fixed;
  z-index: 2;
  right: 15px;
  bottom: 65px;
  transition:
    visibility 0.5s ease-in-out 0.0s,
    opacity 0.5s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.scroll-active
#footer div.footer div.pagetop {
  visibility: visible;
  opacity: 1;
}

#footer div.footer.displayed div.pagetop {
  width: 90px;
  position: absolute;
  right: calc(50% - 45px);
  bottom: calc(100% - 54px);
}

@media screen and (min-width:768px) {

  #footer div.footer div.pagetop {
    width: 108px;
    right: 20px;
    bottom: 20px;
  }

  #footer div.footer.displayed div.pagetop {
    right: 0;
  }

}

/**
 * コピーライト
 */

#footer div.footer div.copyright {
  margin-top: 20px;
  padding: 20px 0;
  font-size: 0.875em;
  text-align: center;
}

@media screen and (min-width:768px) {

  #footer div.footer div.copyright {
    margin-top: unset;
  }

}
