@charset "UTF-8";
/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * Keyframes
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* ******************************
 *
 * Font Activate
 *
 * ****************************** */
@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ******************************
 *
 * Variables
 *
 * ****************************** */
.newRoot {
  --color-main: 98 184 80;
  --color-main2: 83 147 146;
  --color-main3: 175 208 197;
  --color-accent: 230 223 111;
  --color-white: 255 255 255;
  --color-wh: 255 255 255;
  --color-wh2: 252 255 233;
  --color-bk: 56 56 56;
  --color-text: 134 116 99;
  --color-text-link: 70 75 91;
  --font-main: "montserrat", "ryo-gothic-plusn", sans-serif;
  --font-unique: "Quentin", serif;
}

/* ******************************
 *
 * BASE SETTINGS
 * ※Don't erase this code!
 *
 * ****************************** */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

::selection {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

html {
  font-family: var(--font-main);
  font-weight: 600;
  scrollbar-width: none;
  scroll-behavior: auto;
  font-family: "ShipporiMincho", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}
html::-webkit-scrollbar {
  display: none;
}

html.isMenuOpen,
body.isMenuOpen {
  overflow: hidden;
}

.gMain {
  font-family: var(--font-main);
  font-weight: 600;
}
@media screen and (min-width: 320px) {
  .gMain {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gMain {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .gMain {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  .gMain {
    font-size: 0.5208335vw;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.img {
  overflow: hidden;
}
.imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
}
.imgWrapper img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

.gHeader {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  font-family: var(--font-main);
  font-weight: 600;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gHeader {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gHeader {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .gHeader {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  .gHeader {
    font-size: 0.5208335vw;
  }
}
.gHeader::before {
  content: "";
  display: block;
  position: absolute;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-box-shadow: 0 0 32px -16px rgba(var(--color-bk)/0.32);
          box-shadow: 0 0 32px -16px rgba(var(--color-bk)/0.32);
  border: solid 1px rgba(var(--color-bk)/0.08);
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media screen and (min-width: 320px) {
  .gHeader::before {
    inset: 4px auto auto 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background: rgba(var(--color-wh)/0);
    border-radius: 24px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader::before {
    inset: 16px auto auto 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    background: rgba(var(--color-wh)/0.92);
    border-radius: 24px;
  }
}
.gHeader__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gHeader__inner {
    padding: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__inner {
    padding: 24px 32px 24px 2.5vw;
  }
}
.gHeader__logo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 320px) {
  .gHeader__logo {
    width: 12em;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__logo {
    width: 24em;
  }
}
.gHeader__logoInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.gHeader__logo img {
  width: 100%;
  height: auto;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.gHeader__logo img.commonLogo {
  -webkit-filter: unset;
          filter: unset;
}
@media screen and (min-width: 320px) {
  .gHeader__logo img.commonLogo {
    width: 72%;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__logo img.commonLogo {
    width: 64%;
  }
}
@media screen and (min-width: 320px) {
  .gHeader__nav, .gHeader__ctr {
    width: auto;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__nav, .gHeader__ctr {
    width: calc(50% - 12em);
  }
}
.gHeader__nav {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 320px) {
  .gHeader__nav {
    position: fixed;
    inset: auto auto 0 0;
    width: 100%;
    padding: 4px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__nav {
    position: relative;
    inset: auto;
    width: calc(50% - 12em);
    padding: 0;
  }
}
.gHeader__navInner {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (min-width: 320px) {
  .gHeader__navInner {
    display: grid;
    gap: 0;
    background: rgb(var(--color-wh));
    border-radius: 16px;
    -webkit-box-shadow: 0 0 16px -4px rgba(var(--color-bk)/0.32);
            box-shadow: 0 0 16px -4px rgba(var(--color-bk)/0.32);
  }
}
@media screen and (min-width: 600px) {
  .gHeader__navInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.gHeader__navLink {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .gHeader__navLink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 6em;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__navLink {
    display: inline-block;
    width: auto;
    height: auto;
  }
}
.gHeader__navIcon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .gHeader__navIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__navIcon {
    display: none;
  }
}
.gHeader__navIcon svg {
  width: 2.6em;
  height: 2.6em;
  fill: rgb(var(--color-main));
}
.gHeader__navText {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}
@media screen and (min-width: 320px) {
  .gHeader__navText {
    font-size: 0.9em;
    color: rgb(var(--color-bk));
  }
}
@media screen and (min-width: 600px) {
  .gHeader__navText {
    font-size: 1.8em;
    color: rgb(var(--color-wh));
  }
}
.gHeader__ctr {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .gHeader__ctr {
    gap: 8px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctr {
    gap: 16px;
  }
}
.gHeader__ctrMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(var(--color-main)/0.88);
  backdrop-filter: blur(24px) saturate(140%) brightness(0.72);
  color: rgb(var(--color-wh));
  border: solid 1px rgba(var(--color-wh)/0.32);
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMain {
    padding: 6px;
    border-radius: 16px;
    gap: 6px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMain {
    padding: 8px 8px 8px 12px;
    border-radius: 24px;
    gap: 8px;
  }
}
.gHeader__ctrMainText {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMainText {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMainText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.gHeader__ctrMainText span {
  line-height: 1;
}
.gHeader__ctrMainText span:first-child {
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMainText span:first-child {
    font-size: 2.4em;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMainText span:first-child {
    font-size: 2.4em;
  }
}
.gHeader__ctrMainText span:last-child {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMainText span:last-child {
    font-size: 2em;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMainText span:last-child {
    font-size: 2em;
  }
}
.gHeader__ctrMainLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMainLinks {
    gap: 6px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMainLinks {
    gap: 8px;
  }
}
.gHeader__ctrMainLink {
  background: rgb(var(--color-wh));
}
@media screen and (min-width: 320px) {
  .gHeader__ctrMainLink {
    gap: 8px;
    width: 4.2em;
    height: 4.2em;
    border-radius: 12px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrMainLink {
    gap: 8px;
    width: 7.2em;
    height: 7.2em;
    border-radius: 16px;
  }
}
.gHeader__ctrMainLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.gHeader__ctrMainLink svg {
  display: block;
  width: 48%;
  height: 48%;
  fill: rgb(var(--color-main));
}
.gHeader__ctrTrigger {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(var(--color-wh));
  -webkit-box-shadow: 0 0 16px -4px rgba(var(--color-bk)/0.16);
          box-shadow: 0 0 16px -4px rgba(var(--color-bk)/0.16);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrTrigger {
    width: calc(4.2em + 16px);
    height: calc(4.2em + 16px);
    border-radius: 16px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrTrigger {
    width: calc(7.2em + 16px);
    height: calc(7.2em + 16px);
    border-radius: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .gHeader__ctrTrigger:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.gHeader__ctrTriggerBorders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrTriggerBorders {
    width: 24%;
    height: 24%;
    -webkit-transform: translateY(-4%);
            transform: translateY(-4%);
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrTriggerBorders {
    width: 24%;
    height: 24%;
    -webkit-transform: translateY(-4%);
            transform: translateY(-4%);
  }
}
.gHeader__ctrTriggerBorders span {
  display: block;
  width: 100%;
  height: 3px;
  background: rgb(var(--color-main));
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
  will-change: transform;
}
.gHeader__ctrTriggerText {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  text-align: center;
  color: rgb(var(--color-main));
}
@media screen and (min-width: 320px) {
  .gHeader__ctrTriggerText {
    font-size: 0.8em;
    padding-bottom: 6px;
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrTriggerText {
    font-size: 1.2em;
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 320px) {
  .gHeader__ctrTrigger.isActive .gHeader__ctrTriggerBorders span:nth-child(1) {
    -webkit-transform: translateY(calc(0.504em + 1.92px - 2.15px)) rotate(405deg);
            transform: translateY(calc(0.504em + 1.92px - 2.15px)) rotate(405deg);
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrTrigger.isActive .gHeader__ctrTriggerBorders span:nth-child(1) {
    -webkit-transform: translateY(calc(0.864em + 1.92px - 1.5px)) rotate(405deg);
            transform: translateY(calc(0.864em + 1.92px - 1.5px)) rotate(405deg);
  }
}
.gHeader__ctrTrigger.isActive .gHeader__ctrTriggerBorders span:nth-child(2) {
  display: none;
}
@media screen and (min-width: 320px) {
  .gHeader__ctrTrigger.isActive .gHeader__ctrTriggerBorders span:nth-child(3) {
    -webkit-transform: translateY(calc(-0.504em + 1.92px - 2.5px)) rotate(-405deg);
            transform: translateY(calc(-0.504em + 1.92px - 2.5px)) rotate(-405deg);
  }
}
@media screen and (min-width: 600px) {
  .gHeader__ctrTrigger.isActive .gHeader__ctrTriggerBorders span:nth-child(3) {
    -webkit-transform: translateY(calc(-0.864em + 1.92px - 2.5px)) rotate(-405deg);
            transform: translateY(calc(-0.864em + 1.92px - 2.5px)) rotate(-405deg);
  }
}
.gHeader[data-scrolled=true]::before, .gHeader.isSingle::before {
  opacity: 1;
}
@media screen and (min-width: 320px) {
  .gHeader[data-scrolled=true] .gHeader__navText, .gHeader.isSingle .gHeader__navText {
    color: rgb(var(--color-bk));
  }
}
@media screen and (min-width: 600px) {
  .gHeader[data-scrolled=true] .gHeader__navText, .gHeader.isSingle .gHeader__navText {
    color: rgb(var(--color-main2));
  }
}
@media screen and (min-width: 600px) {
  .gHeader[data-scrolled=true] .gHeader__logo img.commonLogo, .gHeader.isSingle .gHeader__logo img.commonLogo {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}

#header, .fixed-navigation {
  display: none !important;
}

.gHeader__logo, .gHeader__nav, .gHeader__ctrMain {
  -webkit-transition: opacity 400ms ease, visibility 400ms ease;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.isMenuOpen .gHeader[data-scrolled=true]::before {
  opacity: 0;
}
.isMenuOpen .gHeader__logo, .isMenuOpen .gHeader__nav, .isMenuOpen .gHeader__ctrMain {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.megamenu {
  font-family: var(--font-main);
  font-weight: 600;
  color: rgb(var(--color-bk));
  position: fixed;
  z-index: -1;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
@media screen and (min-width: 320px) {
  .megamenu {
    padding: 1.25vw;
  }
}
@media screen and (min-width: 600px) {
  .megamenu {
    padding: 0.5vw;
  }
}
@media screen and (min-width: 320px) {
  .megamenu {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .megamenu {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .megamenu {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  .megamenu {
    font-size: 0.5208335vw;
  }
}
.megamenu.isActive {
  z-index: 99;
  visibility: visible;
  pointer-events: auto;
}
.megamenu.isActive .megamenu__inner::before {
  opacity: 1;
}
.megamenu.isActive .megamenu__sitemap, .megamenu.isActive .megamenu__info {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease, -webkit-transform 400ms ease;
}
.megamenu.isActive .megamenu__info {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
.megamenu.isActive .megamenu__sitemap {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
.megamenu__wrapper {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .megamenu__wrapper {
    overflow: scroll;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__wrapper {
    overflow: hidden;
  }
}
.megamenu__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .megamenu__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 16em 2.5vw 32px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    height: 100%;
    padding: 10em 5vw 0 7.5vw;
  }
}
.megamenu__inner::before {
  content: "";
  display: block;
  background: rgba(var(--color-wh)/0.88);
  backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  will-change: opacity;
}
@media screen and (min-width: 320px) {
  .megamenu__inner::before {
    position: fixed;
    inset: 4px 0 0 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 16px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__inner::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
  }
}
.megamenu__sitemap, .megamenu__info {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, -webkit-transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease;
  transition: opacity 400ms ease, transform 400ms ease, -webkit-transform 400ms ease;
  will-change: opacity, transform;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemap {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemap {
    width: 68%;
  }
}
.megamenu__sitemapInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapInner {
    padding: 0 1em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapInner {
    padding: 0;
  }
}
.megamenu__sitemapTop {
  display: grid;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapTop {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 16px 0 0;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapTop {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 10em 0 0;
  }
}
.megamenu__sitemapHead {
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapHead {
    font-size: 2.8em;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapHead {
    font-size: 2.4em;
    font-weight: 400;
    display: block;
  }
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapHead a {
    pointer-events: none;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapHead a {
    pointer-events: auto;
  }
}
.megamenu__sitemapHeadicon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1em;
  height: 1em;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapHeadicon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapHeadicon {
    display: none;
  }
}
.megamenu__sitemapHeadicon svg {
  display: block;
  width: 80%;
  height: 80%;
  stroke-width: 3px;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.megamenu__sitemapHead.open .megamenu__sitemapHeadicon svg {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.megamenu__sitemapHeadsub {
  opacity: 0.56;
  margin-bottom: 8px;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapHeadsub {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapHeadsub {
    font-size: 1.6em;
  }
}
.megamenu__sitemapList {
  position: relative;
  margin-top: 16px;
  border-left: dashed 2px rgba(var(--color-bk)/0.32);
  overflow: hidden;
  -webkit-transition: max-height 400ms ease;
  transition: max-height 400ms ease;
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapList {
    padding: 0 0 0 16px;
    max-height: 0px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapList {
    padding: 0 0 0 32px;
    max-height: unset;
  }
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapList.open {
    max-height: 100vh;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapList.open {
    max-height: unset;
  }
}
@media screen and (min-width: 320px) {
  .megamenu__sitemapListitem {
    font-size: 1.3em;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__sitemapListitem {
    font-size: 1.6em;
    margin-bottom: 8px;
  }
}
.megamenu__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .megamenu__info {
    width: 100%;
    padding: 32px 2.5vw 6.4em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__info {
    width: 25%;
    padding: 0;
  }
}
.megamenu__infoFigure {
  margin: 8px 0 16px;
}
.megamenu__infoFigure .imgWrapper {
  padding-bottom: 55.56%;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .megamenu__infoLogo {
    width: 24%;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoLogo {
    width: 30%;
    margin-bottom: 48px;
  }
}
.megamenu__infoTel dt {
  margin-bottom: 2px;
}
@media screen and (min-width: 320px) {
  .megamenu__infoTel dt {
    font-size: 1.6em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoTel dt {
    font-size: 2em;
  }
}
.megamenu__infoTel dd {
  color: rgb(var(--color-main));
}
.megamenu__infoTel dd a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: underline;
}
.megamenu__infoTel dd a:hover {
  text-decoration: none;
}
.megamenu__infoTel dd span:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 320px) {
  .megamenu__infoTel dd span:first-child {
    font-size: 3em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoTel dd span:first-child {
    font-size: 4em;
  }
}
.megamenu__infoTel dd span:first-child svg {
  display: block;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media screen and (min-width: 320px) {
  .megamenu__infoTel dd span:first-child svg {
    width: 1em;
    height: 1em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoTel dd span:first-child svg {
    width: 1em;
    height: 1em;
  }
}
.megamenu__infoTel dd span:last-child {
  letter-spacing: 0.04em;
}
@media screen and (min-width: 320px) {
  .megamenu__infoTel dd span:last-child {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoTel dd span:last-child {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 320px) {
  .megamenu__infoContact {
    padding-top: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoContact {
    padding-top: 16px;
    margin-bottom: 24px;
  }
}
.megamenu__infoTitle {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .megamenu__infoTitle {
    font-size: 2em;
    margin: 24px 0 16px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoTitle {
    font-size: 2.4em;
    margin: 0 0 16px;
  }
}
.megamenu__infoAddress {
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) {
  .megamenu__infoAddress {
    font-size: 1.3em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoAddress {
    font-size: 1.6em;
  }
}
.megamenu__infoAddress a {
  text-decoration: underline;
}
.megamenu__infoAddress a:hover {
  text-decoration: none;
}
.megamenu__infoSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .megamenu__infoSns {
    gap: 12px;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoSns {
    gap: 12px;
  }
}
.megamenu__infoSns svg {
  display: block;
  fill: rgb(var(--color-bk));
}
@media screen and (min-width: 320px) {
  .megamenu__infoSns svg {
    width: 2.6em;
    height: 2.6em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoSns svg {
    width: 2.6em;
    height: 2.6em;
  }
}
@media screen and (min-width: 320px) {
  .megamenu__infoSns svg.wide {
    width: 7em;
    height: 2.6em;
  }
}
@media screen and (min-width: 600px) {
  .megamenu__infoSns svg.wide {
    width: 7em;
    height: 2.6em;
  }
}
.megamenu__infoSns a {
  display: inline-block;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.megamenu__infoSns a:hover {
  opacity: 0.6;
}

.commonCard__inner {
  position: relative;
}
.commonCard__inner:hover .commonCard__thumbImg {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.commonCard__inner:hover .commonCard__title {
  text-decoration: underline;
}
.commonCard__thumbWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .commonCard__thumbWrapper {
    border-radius: 0 32px 0 0;
  }
}
@media screen and (min-width: 600px) {
  .commonCard__thumbWrapper {
    border-radius: 0 64px 0 0;
  }
}
.commonCard__thumbImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.commonCard__cat {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .commonCard__cat {
    -webkit-transform: translateY(-50%) translateX(-0.8em);
            transform: translateY(-50%) translateX(-0.8em);
  }
}
@media screen and (min-width: 600px) {
  .commonCard__cat {
    -webkit-transform: translateY(-50%) translateX(-1.3em);
            transform: translateY(-50%) translateX(-1.3em);
  }
}
.commonCard__catRibbon img {
  display: block;
  height: auto;
}
@media screen and (min-width: 320px) {
  .commonCard__catRibbon img {
    width: 10.4em;
  }
}
@media screen and (min-width: 600px) {
  .commonCard__catRibbon img {
    width: 16.4em;
  }
}
.commonCard__catLabel {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .commonCard__catLabel {
    font-size: 1em;
    padding-bottom: 0.7em;
  }
}
@media screen and (min-width: 600px) {
  .commonCard__catLabel {
    font-size: 1.5em;
    padding-bottom: 0.7em;
  }
}
.commonCard__info {
  width: 100%;
  background: rgb(var(--color-wh));
  color: rgb(var(--color-bk));
}
@media screen and (min-width: 320px) {
  .commonCard__info {
    height: 12.8em;
    border-radius: 0 0 0 32px;
    padding: 16px 16px 0;
  }
}
@media screen and (min-width: 600px) {
  .commonCard__info {
    height: 18.8em;
    border-radius: 0 0 0 64px;
    padding: 24px 24px 0;
  }
}
@media screen and (min-width: 320px) {
  .commonCard__title {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 600px) {
  .commonCard__title {
    font-size: 2em;
  }
}

@-webkit-keyframes arrowgo {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
  }
  46% {
    opacity: 0;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
  }
  54% {
    opacity: 0;
    -webkit-transform: translateX(-10vw);
            transform: translateX(-10vw);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(-10vw);
            transform: translateX(-10vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
}

@keyframes arrowgo {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
  }
  46% {
    opacity: 0;
    -webkit-transform: translateX(10vw);
            transform: translateX(10vw);
  }
  54% {
    opacity: 0;
    -webkit-transform: translateX(-10vw);
            transform: translateX(-10vw);
  }
  55% {
    opacity: 1;
    -webkit-transform: translateX(-10vw);
            transform: translateX(-10vw);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0vw);
            transform: translateX(0vw);
  }
}
.commonBtn {
  display: block;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
@media screen and (min-width: 320px) {
  .commonBtn {
    min-width: 180px;
  }
}
@media screen and (min-width: 600px) {
  .commonBtn {
    min-width: 240px;
  }
}
.commonBtn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(var(--color-main));
  color: rgb(var(--color-wh));
  border-radius: 999vw;
}
@media screen and (min-width: 320px) {
  .commonBtn__inner {
    padding: 4px 4px 4px 16px;
  }
}
@media screen and (min-width: 600px) {
  .commonBtn__inner {
    padding: 8px 8px 8px 24px;
  }
}
@media screen and (min-width: 320px) {
  .commonBtn__text {
    font-size: 1.4em;
  }
}
@media screen and (min-width: 600px) {
  .commonBtn__text {
    font-size: 2em;
  }
}
.commonBtn__text span {
  position: relative;
  display: inline-block;
}
.commonBtn__text span::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(var(--color-wh));
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 460ms ease;
  transition: -webkit-transform 460ms ease;
  transition: transform 460ms ease;
  transition: transform 460ms ease, -webkit-transform 460ms ease;
}
.commonBtn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: rgb(var(--color-accent));
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .commonBtn__icon {
    width: 4em;
    height: 4em;
  }
}
@media screen and (min-width: 600px) {
  .commonBtn__icon {
    width: 6.4em;
    height: 6.4em;
  }
}
.commonBtn__icon svg {
  display: block;
  width: 56%;
  height: 56%;
  fill: rgb(var(--color-main));
}
.commonBtn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.commonBtn:hover .commonBtn__text span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}
.commonBtn:hover .commonBtn__icon svg {
  -webkit-animation: arrowgo 600ms ease;
          animation: arrowgo 600ms ease;
}

.lum-lightbox-inner img {
  -o-object-fit: contain;
     object-fit: contain;
}

.section.works .searchandfilter div > ul > li {
  position: relative;
}

.swell-block-button__link {
  color: white !important;
  -webkit-transition: background-color 300ms ease !important;
  transition: background-color 300ms ease !important;
}
.swell-block-button__link span {
  position: relative;
  display: inline-block;
}
.swell-block-button__link span::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  display: block;
  width: 100%;
  height: 1px;
  background: black;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.swell-block-button__link:hover {
  color: black !important;
  background: white !important;
}
.swell-block-button__link:hover span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.swell-block-button.-size-s .swell-block-button__link {
  color: black !important;
}

.advisor .swell-block-button__link {
  margin: 0 !important;
  background: #50A184 !important;
  border-color: #50A184 !important;
}

div[data-partsid="866"] .sitemap {
  position: relative;
  z-index: 1;
  background: #afd0c4;
}
div[data-partsid="866"] .l-container {
  background: inherit;
}

#footer {
  position: relative;
  z-index: 1;
}
#footer .l-container {
  background: inherit;
}

.gFooter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: rgb(var(--color-wh));
  background: rgb(var(--color-main2));
}
@media screen and (min-width: 320px) {
  .gFooter {
    margin-top: -8em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter {
    margin-top: -8em;
  }
}
.gFooter a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.gFooter__inner {
  position: relative;
  z-index: 1;
}
.gFooter__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.64;
  overflow: hidden;
}
.gFooter__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--color-main2), 0.72)), to(rgba(var(--color-main), 0.88)));
  background: linear-gradient(180deg, rgba(var(--color-main2), 0.72) 0%, rgba(var(--color-main), 0.88) 100%);
}
.gFooter__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-filter: saturate(0.9) contrast(0.95);
          filter: saturate(0.9) contrast(0.95);
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.gFooter .megamenu__sitemap {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}
.gFooter .megamenu__sitemapList {
  border-color: rgb(var(--color-wh));
}
.gFooter__main {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 320px) {
  .gFooter__main {
    padding: 8em 10vw 56em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__main {
    padding: 8em 10vw 56em;
  }
}
.gFooter__info {
  display: grid;
}
@media screen and (min-width: 320px) {
  .gFooter__info {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5em;
    margin-top: 64px;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__info {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 144px;
  }
}
.gFooter__block {
  position: relative;
}
.gFooter__logo {
  margin: 0 0 1.5em;
  line-height: 1;
}
.gFooter__logo a {
  display: inline-block;
}
.gFooter__logo img {
  display: block;
  height: auto;
}
@media screen and (min-width: 320px) {
  .gFooter__logo img {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__logo img {
    width: 80%;
    margin: 0;
  }
}
.gFooter__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 24px;
}
@media screen and (min-width: 320px) {
  .gFooter__sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.gFooter__sns li {
  list-style: none;
}
@media screen and (min-width: 320px) {
  .gFooter__sns svg {
    width: 3.2em;
    height: 3.2em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__sns svg {
    width: 4em;
    height: 4em;
  }
}
@media screen and (min-width: 320px) {
  .gFooter__sns svg.wide {
    width: 4.8em;
    height: 4.8em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__sns svg.wide {
    width: 7.2em;
    height: 7.2em;
  }
}
.gFooter__blockTitle {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgb(var(--color-wh));
  padding-bottom: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 320px) {
  .gFooter__blockTitle {
    font-size: 1.4em;
    text-align: center;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__blockTitle {
    font-size: 1.8em;
    text-align: left;
  }
}
.gFooter__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .gFooter__contact {
    margin-bottom: 8px;
    gap: 8px;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contact {
    margin-bottom: 8px;
    gap: 12px;
  }
}
.gFooter__contactIcon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px rgb(var(--color-wh));
  text-align: center;
}
@media screen and (min-width: 320px) {
  .gFooter__contactIcon {
    width: 5.6em;
    height: 5.6em;
    border-radius: 6px;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contactIcon {
    width: 6.4em;
    height: 6.4em;
    border-radius: 8px;
  }
}
.gFooter__contactIcon span {
  display: block;
}
.gFooter__contactIcon span:first-child {
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .gFooter__contactIcon span:first-child {
    width: 2em;
    height: 2em;
    -webkit-transform: translateY(-0.6em);
            transform: translateY(-0.6em);
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contactIcon span:first-child {
    width: 2.4em;
    height: 2.4em;
    -webkit-transform: translateY(-0.6em);
            transform: translateY(-0.6em);
  }
}
.gFooter__contactIcon span:first-child svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: rgb(var(--color-wh));
}
.gFooter__contactIcon span:last-child {
  position: absolute;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12em;
  background: rgb(var(--color-wh));
  color: rgb(var(--color-main));
}
@media screen and (min-width: 320px) {
  .gFooter__contactIcon span:last-child {
    font-size: 110%;
    inset: auto auto 2px 2px;
    width: calc(100% - 4px);
    border-radius: 4px;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contactIcon span:last-child {
    font-size: 120%;
    inset: auto auto 4px 4px;
    width: calc(100% - 8px);
    border-radius: 4px;
  }
}
.gFooter__contactText {
  font-weight: 700;
  line-height: 1.8;
  word-break: break-word;
}
@media screen and (min-width: 320px) {
  .gFooter__contactText {
    font-size: 1.6em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contactText {
    font-size: 2.4em;
  }
}
@media screen and (min-width: 320px) {
  .gFooter__contactText.isTel {
    font-size: 2em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__contactText.isTel {
    font-size: 3.2em;
  }
}
.gFooter__blockSub {
  margin-bottom: 24px;
}
.gFooter__blockSub:last-child {
  border-bottom: 1px solid rgba(var(--color-wh), 0.15);
}
.gFooter__blockSubTitle {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .gFooter__blockSubTitle {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__blockSubTitle {
    font-size: 2.4em;
  }
}
.gFooter__blockSubContent {
  margin: 0;
  line-height: 1.64;
  color: rgba(var(--color-wh), 0.92);
  font-weight: 400;
}
@media screen and (min-width: 320px) {
  .gFooter__blockSubContent {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 600px) {
  .gFooter__blockSubContent {
    font-size: 1.8em;
  }
}
.gFooter__blockSubContent a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  word-break: break-all;
}
@media (hover: hover) {
  .gFooter__blockSubContent a:hover {
    opacity: 0.75;
  }
}

.section.outline .section-content::before {
  background-image: none !important;
}/*# sourceMappingURL=style.css.map */