@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css?ver=6.6.1');

.header *,
.humberger-menu *,
.footer-wrapper *,
.footer *,
.copyright *,
.navigation * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header,
.humberger-menu,
.footer-wrapper,
.footer,
.copyright,
.navigation {
  font-family: var(--family-noto);
  font-size: unset;
  font-weight: unset;
  line-height: normal;
  box-sizing: border-box;
}
.navigation[aria-modal]::before {
  display: none;
}

:where(img) {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

:where(ul, ol) {
  list-style: none;
}

:root {
  --main-width: 1200px;
  --navigation-width: 850px;
  --content-spacing: clamp(
    1.25rem,
    24vw,
    max(calc(50vw - var(--main-width) / 2), 12px)
  );
  --navigation-spacing: clamp(
    1.25rem,
    24vw,
    max(calc(50vw - var(--navigation-width) / 2), 12px)
  );
  --new-color: #dfc243;
  --gradation-color: linear-gradient(to bottom, #bbe5fb 30%, #87cafb 100%);
  --required-color: #d83a3a;
  --bg-color: #f5f2ed;
  --bg-gray-color: #bbb;
  --text-sub-color: #8c8c8c;
  --text-gray-color: #999;
  --family-noto: 'Noto Sans JP', sans-serif;
  --family-mplus: 'M PLUS Rounded 1c', sans-serif;
  --family-bebas: 'Bebas Neue', cursive, sans-serif;
  --weight-bold: 700;
  --weight-regular: 400;
  --line-height-sm: 1;
  --line-height-md: 1.5;
  --line-height-lg: 1.8;
  --line-height-xl: 2;
  --text-xxs: 0.625rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-xxl: 1.875rem;
  --text-xxxl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-price: 1.25rem;
  --p-sm: 0.25rem;
  --p-md: 0.625rem;
  --p-lg: 1.25rem;
  --p-xl: 2rem;
  --p-xxl: 2.5rem;
  --p-xxxl: 3.5rem;
  --gap-sm: 0.25rem;
  --gap-md: 0.625rem;
  --gap-lg: 1.25rem;
  --gap-xl: 2rem;
  --gap-xxl: 2.5rem;
  --gap-xxxl: 3.5rem;
  --gap-xxxxl: 4.5rem;
  --z-index-overlay: 200;
  --z-index-section: 10;
  --swiper-pagination-color: #888;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-horizontal-gap: 8px;

  --base-color: #fff;
  --contents-bg-color: #fff;
  --text-contrast-color: #fff;
  --main-color: #233179;
  --sub-color: #b2aa3c;
  --text-color: #1d1d1d;
  --text-point-color: #31739a;
  --price-color: #ec2931;
  --link-color: #333333;
  --header-color: #fff;
  --footer-color: #233179;
  --navigation-bg-color: #233179;
  --navigation-text-color: #fff;
  --navigation-border-color: #ffffff;
  --breadcrumb-bg-color: #ffffff;
  --breadcrumb-text-color: #333;
  --breadcrumb-link-color: #333333;
  --breadcrumb-sep-color: #333333;
  --border-color: #e6e6e6;
  --deco1-color: #f8f6f3;
  --deco2-color: #fff;
  --deco3-color: #fff;
  --deco4-color: #fff;
  --deco5-color: #fff;
  --family-poppins: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background: var(--sub-color);
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) var(--sub-color);
  }
}

body {
  background-color: #f8f6f3;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  scroll-padding-top: 70px;
}

/*-------------------------
  header 親テーマ
  wp-formatline-theme global.css
-------------------------*/
.header {
  width: 100%;
  height: 60px;
  padding: var(--p-md) var(--content-spacing);
  z-index: 100;
  background-color: rgb(from var(--header-color) r g b/0.8);
  border-bottom: 3px solid var(--main-color);
  display: flex;
  align-items: center;
  position: relative;
}
.header .inner {
  display: flex;
  justify-content: space-between;
}
.header .inner .link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  text-decoration: none;
  color: var(--text-color);
  line-height: 1.6;
}
.header .inner .link:hover {
  color: var(--main-color);
}
.header .inner .link.logo {
  max-height: 60px;
  max-width: 200px;
  padding: 0;
}
.header .list {
  display: none;
}
.header .information {
  display: none;
}

/*-------------------------
  header 親テーマ
  wp-formatline-theme global.css
  (min-width: 890px)
-------------------------*/
.header {
  display: block;
  height: auto;
}
.header .inner {
  align-items: center;
}
.header .inner .link {
  font-size: var(--text-xl);
}
.header .information {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: var(--p-sm);
  padding-right: var(--p-xxxl);
}
.header .information .block {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}
.header .information .block-tel {
  gap: var(--gap-md);
}
.header .information .text {
  font-size: var(--text-sm);
}
.header .information .tel {
  color: var(--text-color);
  font-size: var(--text-xl);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}
.header .information .tel::before {
  font: var(--fa-font-solid);
  content: '\f095';
  display: inline-block;
  font-size: var(--text-lg);
  color: var(--text-color);
  padding-top: var(--p-sm);
}
.header .information .tel:hover {
  color: var(--main-color);
}
.header .information .tel:hover:before {
  color: var(--main-color);
}
.header .information .block-text {
  font-size: var(--text-xs);
}
:is(.header .information) .block-text + .block-text-title {
  margin-left: var(--gap-md);
}
.header .sep {
  display: block;
  width: 1px;
  height: 30px;
  background-color: var(--text-color);
  flex-shrink: 0;
}
.header .list {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-block: var(--p-md);
}
.header .list .item {
  width: 100%;
  height: 60px;
}
.header .list .item:last-child .link {
  border-right: 1px solid var(--text-color);
}
.header .list .item.toggle:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px 8px 0 0;
  transition: 0.2s;
  cursor: default;
}
.header .list .item.toggle:hover .text {
  color: var(--main-color);
  font-weight: var(--weight-bold);
}
.header .list .item.group {
  grid-column: span 3;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-md);
}
.header .list .item .text {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: var(--text-sm);
  padding-block: var(--p-lg);
}
.header .list .item .menu {
  position: absolute;
  top: calc(100% - var(--p-md));
  left: 0;
  display: grid;
  box-sizing: border-box;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 var(--p-xxl);
  grid-template-columns: 150px 1fr;
  border-radius: 8px;
  opacity: 0;
  z-index: 10;
  transition: 0.5s;
}
.header .list .item .menu .heading {
  display: none;
  font-size: var(--text-lg);
  color: var(--text-color);
  font-weight: var(--weight-bold);
}
.header .list .item .menu .inner {
  display: none;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  row-gap: var(--gap-lg);
  padding-block: 0;
}
.header .list .item .menu .inner .block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--p-lg);
  width: 100%;
}
:is(.header .list .item .menu .inner .block) + .tag {
  margin-top: var(--p-xl);
}
.header .list .item:hover .menu {
  height: auto;
  padding-block: var(--p-xxl);
  opacity: 1;
  transition: 0.5s;
}
.header .list .item:hover .menu .heading {
  display: block;
}
.header .list .item:hover .menu .inner {
  display: grid;
}
.header .tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-contrast-color);
  background-color: var(--main-color);
  border-radius: 50px;
  padding: 4px var(--p-md);
  margin-bottom: var(--p-md);
}
.header .link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: var(--text-sm);
  padding-block: var(--p-lg);
}
.header .link:hover {
  color: var(--main-color);
  font-weight: var(--weight-bold);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}
.header .block-link {
  display: block;
  text-align: left;
  position: relative;
  text-decoration: none;
  font-size: var(--text-lg);
  color: var(--text-color);
  padding: var(--p-lg) var(--p-md);
  border-bottom: 1px solid var(--border-color);
  font-weight: var(--weight-bold);
  transition: 0.2s;
}
.header .block-link::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: var(--p-md);
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--text-color);
  border-right: 2px solid var(--text-color);
  transform: rotate(45deg);
}
.header .block-link:hover {
  color: var(--text-contrast-color);
  background-color: var(--main-color);
  transition: 0.2s;
}
.header .block-link:hover::after {
  border-color: var(--text-contrast-color);
}

/*-------------------------
  header 子テーマ
  formatline global.css
-------------------------*/

.header {
  height: 70px;
  background: #fff;
  border-bottom: unset;
  z-index: 100;
  .inner {
    .logo {
      display: block;
      &.image {
        max-height: 44px;
        max-width: 238px;
      }
      &.text {
        display: block;
        width: 270px;
        height: 50px;
        background: url(../img/logo_bk.png) no-repeat center / contain;
        span {
          display: none;
        }
        &:hover {
          opacity: 0.8;
        }
      }
    }
    .list {
      display: none;
    }
    .btn {
      &.form {
        display: none;
      }
    }
  }
}

@media (min-width: 768px) {
  .header {
    height: 78px;
    .inner {
      align-items: center;
      gap: var(--gap-md);
      width: 100%;
      padding-right: var(--p-xxxl);
      .logo {
        &.image {
          max-height: 60px;
          max-width: 270px;
          padding: 0 0 8px;
        }
      }
      .btn {
        &.form {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: var(--gap-md);
          width: auto;
          height: 50px;
          padding: var(--p-md) var(--p-lg);
          background: linear-gradient(130deg, #fff 50%, var(--main-color) 50.1%)
            no-repeat 100% 0 / 220% 100%;
          border: 1px solid var(--main-color);
          border-radius: 10px;
          color: var(--text-contrast-color);
          font-size: var(--text-md);
          font-weight: var(--weight-bold);
          text-decoration: none;
          line-height: 1.2;
          transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
          &::before {
            content: '';
            display: block;
            width: 25px;
            height: 26px;
            background: #fff;
            -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24"><path d="M17.5 3H21.5C21.7652 3 22.0196 3.10536 22.2071 3.29289C22.3946 3.48043 22.5 3.73478 22.5 4V20C22.5 20.2652 22.3946 20.5196 22.2071 20.7071C22.0196 20.8946 21.7652 21 21.5 21H3.5C3.23478 21 2.98043 20.8946 2.79289 20.7071C2.60536 20.5196 2.5 20.2652 2.5 20V4C2.5 3.73478 2.60536 3.48043 2.79289 3.29289C2.98043 3.10536 3.23478 3 3.5 3H7.5V1H9.5V3H15.5V1H17.5V3ZM20.5 11H4.5V19H20.5V11ZM15.5 5H9.5V7H7.5V5H4.5V9H20.5V5H17.5V7H15.5V5ZM6.5 13H8.5V15H6.5V13ZM11.5 13H13.5V15H11.5V13ZM16.5 13H18.5V15H16.5V13Z" /></svg>')
              no-repeat center bottom / contain;
            transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
          }
          &:hover {
            color: var(--main-color);
            background-position: 0 0;
            transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            &::before {
              background: var(--main-color);
              transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            }
          }
        }
      }
    }
  }
}

@media (min-width: 1280px) {
  .header {
    .inner {
      .sep {
        display: none;
      }
      .list {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding-block: 8px 0;
        .item {
          width: auto;
          height: auto;
          .link {
            padding: unset;
            border-radius: unset;
            color: var(--text-color);
            font-size: var(--text-md);
            font-weight: var(--weight-bold);
            line-height: var(--line-height-lg);
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            /* text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); */
            &:hover {
              background: none;
              border-bottom-color: var(--text-color);
            }
          }
          &:last-child {
            .link {
              border-right: none;
            }
          }
        }
      }
    }
    &.scrolled {
      .inner {
        .list {
          .item {
            .link {
              color: var(--text-color);
              &:hover {
                border-bottom-color: var(--text-color);
              }
            }
          }
        }
      }
    }
  }
}

/*-------------------------
  header 子テーマ
  formatline global.css
  (min-width: 890px)
-------------------------*/

/*-------------------------
  header 詳細追加分
-------------------------*/

/*-------------------------
  hamburger 親テーマ
  formatline global.css
-------------------------*/
.hamburger-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  top: 10px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  background-color: initial;
  right: var(--content-spacing);
  z-index: 1000;
  cursor: pointer;
}
.hamburger-menu .item {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 1px;
  transition: background-color 0.2s ease-in;
}
.hamburger-menu:hover {
  opacity: 0.7;
}
.hamburger-menu {
  top: 20px;
}
.menu-open :where(.hamburger-menu) {
  background-color: unset;
}
.menu-open :where(.hamburger-menu) .item {
  background-color: var(--main-color);
}
.menu-open :where(.hamburger-menu) .item-top {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  rotate: 45deg;
  translate: -50% -50%;
}
.menu-open :where(.hamburger-menu) .item-center {
  opacity: 0;
}
.menu-open :where(.hamburger-menu) .item-bottom {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  rotate: -45deg;
  translate: -50% -50%;
}

/*-------------------------
  hamburger 子テーマ
  formatline global.css
-------------------------*/
.hamburger-menu {
  gap: 6px;
  top: 20px;
  padding: 0;

  .item {
    background-color: var(--main-color);
    height: 3px;
    width: 25px;
    transition: 0.3s;
  }
  &.scrolled {
    .item {
      background-color: var(--main-color);
    }
  }
  &.close {
    .item {
      background-color: var(--sub-color);
    }
  }
}

@media (min-width: 768px) {
  .hamburger-menu {
    top: 18px;
  }
}

.menu-open {
  :where(.hamburger-menu) {
    background-color: unset;

    .item {
      background-color: var(--sub-color);
    }
    .item-top {
      position: absolute;
      left: 50%;
      top: 50%;
      transform-origin: center center;
      rotate: 45deg;
      translate: -50% -50%;
    }

    .item-center {
      opacity: 0;
    }

    .item-bottom {
      position: absolute;
      left: 50%;
      top: 50%;
      transform-origin: center center;
      rotate: -45deg;
      translate: -50% -50%;
    }
  }
}

/*-------------------------
  footer 親テーマ
  wp-formatline-theme global.css
-------------------------*/
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: var(--p-xxl);
  align-items: center;
  background-color: var(--footer-color);
}
.footer .information {
  padding-inline: var(--content-spacing);
  padding-bottom: var(--p-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .information .link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: var(--text-color);
  text-align: left;
  text-decoration: none;
  margin-bottom: var(--p-md);
}
.footer .information .link:hover {
  color: var(--main-color);
}
.footer .information .address {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  font-size: var(--text-sm);
}
.footer .information .tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--p-sm);
  font-size: var(--text-xl);
  line-height: var(--line-height-md);
  text-decoration: none;
  position: relative;
  color: var(--text-color);
}
.footer .information .tel::before {
  font: var(--fa-font-solid);
  content: '\f095';
  display: inline-block;
  padding-top: var(--p-md);
  font-size: var(--text-lg);
}
.footer .information .tel:hover {
  color: var(--main-color);
}
.footer .information .tel:hover::before {
  color: var(--main-color);
}
.footer .information .text {
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
}
.footer .list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #e6e6da;
}
.footer .list .item {
  border-bottom: 1px solid #e6e6da;
}
.footer .list .item:nth-child(odd) {
  border-right: 1px solid #e6e6da;
}
.footer .list .item .link {
  width: 100%;
  padding-block: var(--p-md);
  font-size: var(--text-sm);
  text-align: center;
  color: var(--text-color);
  text-decoration: none;
  display: block;
}
.footer .list .item .link:hover {
  color: var(--main-color);
  font-weight: var(--weight-bold);
}
.footer {
  display: grid;
  align-items: flex-start;
  grid-template-columns: max-content 1fr;
  padding: var(--p-xl) var(--content-spacing) 0 var(--content-spacing);
}
.footer .information {
  padding-left: 0;
  padding-right: 0;
  display: block;
}
.footer .information .link {
  width: auto;
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
}
.footer .information .logo {
  width: 474px;
  height: 48px;
}
.footer .information .text {
  flex-direction: row;
  gap: 0 15px;
}
.footer .list {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 var(--gap-lg);
  margin-top: 6px;
  border-top: none;
}
.footer .list .item {
  border: none;
}
.footer .list .item:nth-child(odd) {
  border: none;
}

/*-------------------------
  footer copyright 親テーマ
  wp-formatline-theme global.css
-------------------------*/
.footer .copyright {
  grid-column: span 2;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-gray-color);
  padding-block: var(--p-md);
}
.footer .copyright .link {
  text-decoration: none;
  color: var(--text-gray-color);
}

/*-------------------------
  footer 子テーマ
  formatline global.css
-------------------------*/

/*-------------------------
  footer copyright 子テーマ
  formatline global.css
-------------------------*/

.footer-wrapper {
  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-lg);
    width: auto;
    padding-block: var(--p-xxxl);
    padding-inline: var(--content-spacing);
    .head {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--gap-lg);
      color: var(--text-contrast-color);
      .title {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        font-weight: var(--weight-bold);
        line-height: var(--line-height-lg);
        .english {
          display: block;
          font-family: var(--family-poppins);
          font-size: var(--text-xxl);
          font-weight: 700;
        }
      }
    }
    .link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--gap-md);
      position: relative;
      width: 100%;
      height: 80px;
      padding: var(--p-md) var(--p-xl);
      background: linear-gradient(130deg, var(--main-color) 50%, #fff 50.1%)
        no-repeat 100% 0 / 210% 100%;
      border-radius: 50px;
      color: var(--text-color, #1d1d1d);
      font-family: 'Noto Sans JP';
      font-weight: var(--weight-bold);
      text-decoration: none;
      transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      .text {
        display: flex;
        flex-wrap: wrap;
      }
      &::after {
        /* content: '\f138';
        color: var(--sub-color);
        font: var(--fa-font-solid);
        font-size: var(--text-xxxl); */
        content: '\f054';
        display: flex;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        border-radius: 36px;
        background: var(--sub-color);
        color: var(--text-contrast-color);
        font: var(--fa-font-solid);
        font-size: var(--text-sm);
        box-sizing: border-box;
      }
      &:hover {
        color: var(--text-contrast-color);
        background-position: 0 0;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      }
    }
  }
}
.footer-wrapper {
  .contact {
    flex-direction: row;
    gap: var(--gap-xxl);
    background: url(../img/common-contact-bg.png) no-repeat center / cover;
    .head {
      min-width: max-content;
      align-items: flex-start;
      gap: var(--gap-xxl);
      .title {
        align-items: flex-start;
        gap: 16px;
        font-size: var(--text-lg);
        line-height: var(--line-height-sm);
        .english {
          font-size: var(--text-xxxl);
        }
      }
      .description {
        font-size: 16px;
      }
    }
    .link {
      max-width: 810px;
      height: 100px;
      padding-inline: min(80px, 6vw);
      .text {
        font-size: var(--text-lg);
      }
    }
  }
}

.footer {
  .information {
    width: 100%;
    padding-bottom: var(--p-lg);
    align-items: flex-start;
    .logo {
      padding-bottom: var(--p-md);
      .image {
        display: block;
        max-width: 292px;
        max-height: 54px;
      }
      .text {
        display: inline-block;
        font-size: 1.25rem;
        font-weight: var(--weight-bold);
        color: var(--text-contrast-color);
        text-align: left;
        text-decoration: none;
        margin-bottom: var(--p-md);
        &:hover {
          color: var(--sub-color);
        }
      }
    }
    .license {
      display: flex;
      flex-direction: column;
      padding-bottom: var(--p-lg);
      color: var(--text-contrast-color);
      font-size: var(--text-sm);
      line-height: var(--line-height-lg);
    }
    .address {
      padding-bottom: 16px;
      color: var(--text-contrast-color);
    }
    .tel {
      padding-bottom: var(--p-sm);
      color: var(--text-contrast-color);
      font-family: var(--family-poppins);
      font-size: var(--text-xxl);
      font-weight: 600;
      letter-spacing: 2px;
      line-height: var(--line-height-sm);
      &::before {
        padding-top: unset;
      }
      &:hover {
        color: var(--sub-color);
        &::before {
          color: var(--sub-color);
        }
      }
    }
    .text {
      color: var(--text-contrast-color);
    }
  }
  .list {
    padding-bottom: var(--p-xl);
    .item {
      .link {
        color: var(--text-contrast-color);
        line-height: var(--line-height-lg);
        &:hover {
          color: var(--sub-color);
        }
        span {
          display: none;
        }
      }
    }
  }
  .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: var(--content-spacing);
    padding-bottom: var(--p-md);
    .pagetop {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--gap-sm);
      color: var(--text-contrast-color);
      font-family: var(--family-poppins);
      font-weight: 600;
      font-size: var(--text-sm);
      text-decoration: none;
      &::before {
        content: '\f062';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        background-color: var(--contents-bg-color);
        border-radius: 100%;
        color: var(--main-color);
        font: var(--fa-font-solid);
        font-size: var(--text-xl);
      }
      &:hover {
        color: var(--sub-color);
        &::before {
          background-color: var(--sub-color);
        }
      }
    }
    .sns {
      align-items: center;
      .svg-icon {
        &:hover {
          fill: var(--sub-color);
        }
      }
    }
  }
  .copyright {
    color: var(--text-contrast-color);
    .link {
      color: var(--text-contrast-color);
    }
  }
  .bottom {
    width: 100%;
    padding: var(--p-sm) var(--content-spacing);
    background-color: var(--base-color);
    position: fixed;
    bottom: 0;
    z-index: 30;
    .btn {
      &.form {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--gap-md);
        width: 100%;
        height: 50px;
        padding: var(--p-md) var(--p-lg);
        background: var(--main-color);
        border-radius: 10px;
        color: var(--text-contrast-color);
        font-size: var(--text-md);
        font-weight: var(--weight-bold);
        text-decoration: none;
        line-height: 1.2;
        transition: 0.3s;
        &::before {
          content: '';
          display: block;
          width: 24px;
          height: 24px;
          background: url(../image/common-ico-contact.svg) no-repeat center /
            contain;
        }
        &:hover {
          color: var(--sub-color);
        }
      }
    }
  }
}

.footer {
  position: relative;
  grid-template-columns: 48% 1fr;
  grid-template-areas:
    'contact contact'
    'information list'
    'information inner'
    'copyright copyright';
  gap: var(--gap-md) var(--gap-xxl);
  .contact {
    grid-area: contact;
  }
  .information {
    grid-area: information;
    .logo {
      height: auto;
      .image {
        max-width: 400px;
        max-height: 70px;
      }
      .text {
        font-size: var(--text-xl);
        font-weight: var(--weight-bold);
      }
    }
  }
  .list {
    grid-area: list;
    justify-content: flex-start;
    margin-left: auto;
    padding-block: var(--p-md) 0;
    .item {
      .link {
        padding-block: var(--p-sm);
        font-size: var(--text-md);
        span {
          display: inline;
        }
      }
    }
  }
  .inner {
    grid-area: inner;
    padding: 0;
  }
  .copyright {
    grid-area: copyright;
    padding-block: 16px 24px;
    text-align: left;
  }
  .bottom {
    display: none;
  }
}

.footer {
  .information {
    .license {
      flex-direction: row;
      span {
        + span {
          &::before {
            content: '/';
            display: inline-block;
            padding-inline: var(--p-sm);
          }
        }
      }
    }
  }
}

.sns {
  display: flex;
  gap: var(--gap-md);
}

/*-------------------------
  navigation keyframes
-------------------------*/
@keyframes open {
  from {
    display: block;
    opacity: 0;
  }

  to {
    opacity: 1;
    z-index: var(--z-index-overlay);
  }
}

@keyframes close {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

/*-------------------------
  navigation 親テーマ
  wp-formatline-theme global.css
-------------------------*/
.navigation {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  overflow-y: scroll;
  background: rgb(from var(--navigation-bg-color) r g b/0.9);
  animation: 200ms linear 0s 1 normal forwards running;
  padding: 20px 0;
  z-index: 1000;
}
.navigation .contents {
  padding: 40px var(--content-spacing);
}
.navigation .contents .divider {
  border-color: var(--navigation-border-color);
  border-width: 1px;
  border-style: solid;
}
.navigation .contents .block {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
  padding-block: 24px;
}
.navigation .contents .block .heading {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--navigation-text-color);
}
.navigation .contents .block .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-lg);
}
.navigation .contents .block .list .heading {
  width: -moz-max-content;
  width: max-content;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--text-contrast-color);
  background-color: var(--main-color);
  border-radius: 50px;
  padding: 1px var(--p-lg) 2px;
}
.navigation .contents .block .list .list-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.navigation .link {
  position: relative;
  display: inline-block;
  color: var(--navigation-text-color);
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  text-decoration: none;
  padding-left: var(--p-lg);
}
.navigation .link::before {
  position: absolute;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: solid 1px var(--main-color);
  border-width: 2px 2px 0 0;
  position: absolute;
  left: 0;
  top: 46%;
  transform: translateY(-50%) rotate(45deg);
}
.navigation .link:hover {
  text-decoration: underline;
}
.navigation .group {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.navigation .contents {
  padding: 60px var(--navigation-spacing);
}
.navigation .contents .block {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
}
.navigation .contents .block .heading {
  font-size: var(--text-lg);
}
.navigation .contents .block .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.navigation[aria-hidden='true'] {
  animation-name: close;
}
.navigation[aria-hidden='false'] {
  animation-name: open;
}

/*-------------------------
  navigation 子テーマ
-------------------------*/
.navigation {
  background: rgba(21, 29, 75, 86%);
  .contents {
    .block {
      .list {
        @media (min-width: 768px) {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    }
  }
  .link {
    &::before {
      border-color: var(--sub-color);
    }
  }
}
