@charset "UTF-8";

@media print, screen and (min-width: 768px) {
  .g-hover {
    transition: ease opacity 0.3s;
  }
  .g-hover:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .g-show-pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .g-show-sp {
    display: none !important;
  }
}

.g-color-green {
  color: #249582;
}

.g-inlinelink {
  color: #1077ff;
  text-decoration: underline;
  word-break: break-all;
  cursor: pointer;
}

.g-inlinelink:hover {
  text-decoration: none;
}

.g-header-container {
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .g-header {
    display: none;
  }
}

.g-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 1300px;
  width: calc(100% - 30px);
  height: 106px;
  margin: 0 auto;
  padding: 25px 0;
  letter-spacing: normal;
}

@media screen and (min-width: 768px) and (max-width: 1500px) {
  .g-header__inner {
    padding-right: 80px;
  }
}

.g-header__logo img {
  width: 130px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-header__logo img {
    width: 80px;
  }
}

.g-header__logo--double {
  display: flex;
  align-items: center;
  gap: 0 50px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-header__logo--double {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .g-header__logo--double img {
    width: 80px;
  }
}

.g-header__nav {
  align-self: flex-end;
}

.g-header__navlist {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 500;
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-header__navlist {
    font-size: 15px;
    gap: 12px;
  }
}

.g-header__navlist > li {
  position: relative;
}

.g-header__navlist a {
  color: inherit;
}

.g-header__navlist__toggle {
  border: none;
  padding: 0;
  background: none;
  -webkit-appearance: none;
          appearance: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

.g-header__navlist__toggle:hover {
  opacity: 0.7;
}

.g-header__navlist__toggle:after {
  position: relative;
  z-index: 2;
  top: -3px;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  border-top: 2px solid #fd801e;
  border-right: 2px solid #fd801e;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}

.g-header__navlist__toggle.is-dropdown-open:after {
  top: 0;
  transform: rotate(-45deg);
}

.g-header__childnav {
  display: none;
  display: block;
  position: absolute;
  z-index: 100;
  top: calc(100% + 25px);
  left: 0;
  background-color: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 500px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 2px 2px 2px rgba(4, 0, 0, .2);
}

.g-header__childnav__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.g-header__childnav__grid:nth-child(2):after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: calc(50% - 1px);
  display: block;
  content: "";
  height: 100%;
  width: 2px;
  background-color: #fff;
}

.g-header__childnav__label {
  margin: 0 0 10px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 500;
  background-color: #c3e1db;
}

.g-header__blocklink {
  flex-shrink: 0;
  position: relative;
  display: block;
  border: 1px solid #010101;
  width: 226px;
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-header__blocklink {
    width: 186px;
    font-size: 12px;
  }
}

.g-header__blocklink:before {
  position: relative;
  z-index: 2;
  top: -1px;
  margin-right: 5px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #fd801e;
  border-right: 2px solid #fd801e;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}

.g-header-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  margin: 0;
  display: block;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  width: 60px;
  aspect-ratio: 1 / 1;
  background-color: rgba(211, 211, 211, .5);
  cursor: pointer;
  transition: ease opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .g-header-switch {
    top: 12px;
    right: 12px;
    width: 40px;
    opacity: 1 !important;
    pointer-events: all !important;
  }
}

.g-header-switch > i {
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  margin-left: -13px;
  background-color: #211815;
  transition: all ease .3s;
}

.g-header-switch > i:nth-of-type(1) {
  top: 18px;
}

@media screen and (max-width: 767px) {
  .g-header-switch > i:nth-of-type(1) {
    top: 12px;
  }
}

.is-gnav-open .g-header-switch > i:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .is-gnav-open .g-header-switch > i:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
}

.g-header-switch > i:nth-of-type(2) {
  top: 28px;
}

@media screen and (max-width: 767px) {
  .g-header-switch > i:nth-of-type(2) {
    top: 20px;
  }
}

.is-gnav-open .g-header-switch > i:nth-of-type(2) {
  opacity: 0;
}

.g-header-switch > i:nth-of-type(3) {
  top: 38px;
}

@media screen and (max-width: 767px) {
  .g-header-switch > i:nth-of-type(3) {
    top: 28px;
  }
}

.is-gnav-open .g-header-switch > i:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .is-gnav-open .g-header-switch > i:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

.g-gnav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  padding: 40px 0 0;
  height: 100%;
  width: 100%;
  max-width: 750px;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(105%);
  transition: ease transform 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 767px) {
  .g-gnav {
    padding: 0;
    height: 100%;
    max-width: 100%;
  }
}

.is-gnav-open .g-gnav {
  transform: translateX(0%);
}

.g-gnav-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

@media print, screen and (min-width: 768px) {
  .g-gnav-header {
    padding: 15px 30px;
  }
}

.g-gnav-header__logo {
  display: flex;
  align-items: flex-end;
  gap: 0 15px;
}

.g-gnav-header__logo img {
  width: 84px;
}

.g-gnav-header__logo--double {
  gap: 0 30px;
}

.g-gnav-header__logo__label {
  font-size: 10px;
}

.g-gnav__inner {
  padding: 0 15px 100px;
  overflow-y: auto;
}

@media print, screen and (min-width: 768px) {
  .g-gnav__inner {
    padding: 0 30px;
  }
}

.g-gnav-list__item {
  border-top: 1px solid #010101;
}

.g-gnav-list__service__contents {
  overflow: hidden;
  height: 0;
}

.g-gnav-list__service__contents--block {
  padding-inline: 35px;
}

.g-gnav-list__service__switch {
  position: relative;
  display: block;
  border: none;
  background: none;
  margin: 0;
  width: 100%;
  padding: 15px;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.g-gnav-list__service__switch--small {
  font-size: 17px;
}

.g-gnav-list__service__switch:after {
  position: relative;
  top: -5px;
  z-index: 2;
  margin-left: 10px;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  transform: rotate(135deg);
  border-top: 2px solid #fd801e;
  border-right: 2px solid #fd801e;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}

.g-gnav-list__service__switch.is-gnav-acc-open:after {
  top: 0;
  transform: rotate(-45deg);
}

.g-gnav-list__service__section {
  padding: 0 15px 15px;
}

.g-gnav-list__service__section dt {
  margin: 0 0 10px;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 500;
  background-color: #c3e1db;
}

.g-gnav-list__item__link {
  display: block;
  padding: 15px;
  font-size: 19px;
  font-weight: 700;
  color: inherit;
}

.g-gnav-list__item__link--small {
  font-size: 17px;
}

.g-gnav-list__iconlink {
  position: relative;
  font-size: 17px;
  display: grid;
  gap: 15px;
  font-weight: bold;
}

.g-gnav-list__iconlink li > a {
  position: relative;
  color: inherit;
}

.g-gnav-list__iconlink li > a:after {
  position: relative;
  z-index: 2;
  top: -3px;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #fd801e;
  border-right: 2px solid #fd801e;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}

.g-gnav-list__iconlink li > a.is-large,
.g-gnav-list__iconlink li > span.is-large {
  font-size: 22px;
}

.g-gnav-list__iconlink .g-gnav-list__iconlink {
  margin-top: 15px;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .g-bnr-slider .slick-slide {
    padding: 0 1px;
  }
}

.g-bnr-slider .slick-dots {
  z-index: 2;
  top: 100%;
  left: 0%;
  width: 100%;
  display: flex !important;
  justify-content: center;
  gap: 0 8px;
  margin-top: 10px;
}

@media print, screen and (min-width: 768px) {
  .g-bnr-slider .slick-dots {
    display: none;
  }
}

.g-bnr-slider .slick-dots li button {
  border: none;
  padding: 0;
  width: 8px;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background-color: #eeeeee;
}

.g-bnr-slider .slick-dots li.slick-active button {
  background-color: #1b826c;
}

.g-footer__block {
  margin: 0 auto;
  max-width: 1100px;
  width: calc(100% - 60px);
}

@media screen and (max-width: 767px) {
  .g-footer__block {
    width: auto;
    padding: 0 20px;
  }
}

/* aside */
.g-footer-aside {
  padding: 40px 0;
  background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
  .g-footer-aside {
    padding: 30px 0;
  }
}

.g-footer-aside__title {
  margin: 0 0 1em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .g-footer-aside__title {
    font-size: 15px;
  }
}

.g-footer-aside__text {
  margin-top: 1em;
  font-weight: 500;
  line-height: 1.75;
  font-size: 16px;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .g-footer-aside__text {
    font-size: 10px;
  }
}

.g-footer-aside__notelist {
  position: relative;
  display: grid;
  gap: 0.3em;
  border-top: 1px solid #000;
  margin-top: 30px;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .g-footer-aside__notelist {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.g-footer-aside__notelist > li {
  position: relative;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .g-footer-aside__notelist > li {
    font-size: 10px;
  }
}

.g-footer-aside__notelist > li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "※";
}

/* footer-cv
----------------------------------------------*/
.g-footer-cv {
  padding: 100px 0 60px;
}

@media screen and (max-width: 767px) {
  .g-footer-cv {
    padding: 55px 0;
  }
}

.g-footer-cv-layout {
  display: flex;
  justify-content: space-between;
  gap: 4.54%;
}

.g-footer-cv-layout--center {
  justify-content: space-around;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-footer-cv-layout {
    gap: 40px 4.54%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .g-footer-cv-layout {
    gap: 40px;
    display: grid;
    justify-content: stretch;
  }
}

.g-footer-cv-layout__form {
  flex-grow: 1;
}

@media print, screen and (min-width: 768px) {
  .g-footer-cv-layout__form--single {
    flex-grow: 0;
    width: 352px;
  }
}

.g-footer-cv-layout__button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.84%;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-footer-cv-layout__button {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .g-footer-cv-layout__button {
    grid-template-columns: 100%;
    gap: 28px;
  }
}

.g-footer-cv-layout__form--single .g-footer-cv-layout__button {
  grid-template-columns: 100%;
}

.g-footer-cv__button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid #000;
  padding: 10px;
  color: inherit;
  min-height: 115px;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .g-footer-cv__button {
    flex-direction: row;
    gap: 8px;
    font-size: 17px;
    padding: 0;
    min-height: 60px;
  }
}

.g-footer-cv__button:before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
}

.g-footer-cv__button.is-mail:before {
  width: 28px;
  aspect-ratio: 28/22;
  background: url(/stera/common/img/icon_mail.svg) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .g-footer-cv__button.is-mail:before {
    width: 20px;
  }
}

.g-footer-cv__button.is-store:before {
  width: 27px;
  aspect-ratio: 32/40;
  background: url(/stera/common/img/icon_building.svg) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .g-footer-cv__button.is-store:before {
    width: 16px;
  }
}

.g-footer-cv__button:after {
  position: absolute;
  z-index: 2;
  top: 50%-8px;
  right: 24px;
  width: 8px;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  display: block;
}

@media print, screen and (min-width: 768px) {
  .g-footer-cv__button {
    transition: ease opacity 0.3s;
  }
  .g-footer-cv__button:hover {
    opacity: 0.6;
  }
}

.g-footer-cv-layout__tel {
  flex-shrink: 0;
}

.g-footer-cv-tel {
  text-align: center;
}

.g-footer-cv-tel__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .g-footer-cv-tel__title {
    font-size: 21px;
  }
}

.g-footer-cv-tel__title:before {
  content: "";
  display: block;
  width: 24px;
  height: 32px;
  background: url(/stera/common/img/icon_tel.svg) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .g-footer-cv-tel__title:before {
    width: 20px;
    height: 26px;
  }
}

.g-footer-cv-tel__link {
  margin-top: 10px;
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: inherit;
}

@media print, screen and (min-width: 768px) {
  .g-footer-cv-tel__link {
    transition: ease opacity 0.3s;
  }
  .g-footer-cv-tel__link:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .g-footer-cv-tel__link {
    margin-top: 10px;
    font-size: 27px;
  }
}

.g-footer-cv-tel__time {
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .g-footer-cv-tel__time {
    margin-top: 5px;
    font-size: 10px;
  }
}

.g-footer-cv-privacy {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .g-footer-cv-privacy {
    margin-top: 25px;
    font-size: 12px;
  }
}

.g-footer-inlinelink {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

.g-footer-inlinelink:hover {
  text-decoration: none;
}

/* nav
----------------------------------------------*/
.g-footer-nav {
  padding: 55px 0 80px;
  color: #4d4d4d;
}

@media screen and (max-width: 767px) {
  .g-footer-nav {
    padding: 30px 0;
  }
}

.g-footer-nav img {
  max-width: 100%;
}

.g-footer-nav--gray {
  background-color: #f0f0f0;
}

.g-footer-nav__inner {
  margin: 0 auto;
  max-width: 1300px;
  width: calc(100% - 60px);
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-footer-nav__inner {
    gap: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .g-footer-nav__inner {
    gap: 0;
    width: auto;
    max-width: 100%;
    padding: 0 20px;
    flex-direction: column-reverse;
  }
}

.g-footer-nav__left {
  max-width: 28%;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__left {
    max-width: 100%;
  }
}

.g-footer-nav__logo {
  display: grid;
  grid-template-columns: auto;
  gap: 40px 0;
  max-width: 130px;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__logo {
    display: none;
  }
}

.g-footer-nav__copyright {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__copyright {
    margin-top: 30px;
    text-align: center;
  }
}

.g-footer-nav__copyright__logo {
  max-width: 230px;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__copyright__logo {
    margin: 0 auto;
  }
}

.g-footer-nav__copyright__logo img {
  mix-blend-mode: multiply;
}

.g-footer-nav__copyright__text {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__copyright__text {
    margin-top: 16px;
    font-size: 10px;
  }
}

.g-footer-nav__right {
  max-width: 640px;
  width: 100%;
}

.g-footer-nav__gnav {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav {
    display: grid;
    width: auto;
    grid-template-columns: repeat(2, auto);
    gap: 40px 0;
  }
}

.g-footer-nav__gnav__label {
  margin: 0 0 25px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
  color: #808080;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav__label {
    margin: 0 0 20px;
    font-size: 4.8vw;
  }
}

.g-footer-nav__gnav__list {
  position: relative;
  display: grid;
  gap: 10px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav__list {
    font-size: 3.73333vw;
  }
}

.g-footer-nav__gnav__list .g-footer-nav__gnav__list {
  margin-top: 15px;
  padding-left: 1em;
}

.g-footer-nav__gnav__list > li {
  margin-bottom: 10px;
  font-weight: 700;
  color: #4d4d4d;
}

.g-footer-nav__gnav__list > li:last-child {
  margin-bottom: 0;
}

.g-footer-nav__gnav__list > li > a {
  position: relative;
  cursor: pointer;
  color: inherit;
}

.g-footer-nav__gnav__list > li > a:after {
  position: relative;
  z-index: 2;
  top: -2px;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #fd801e;
  border-right: 2px solid #fd801e;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}

.g-footer-nav__gnav__list--noarw > li > a:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav__item {
    font-size: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav__item--wide--sp {
    grid-column: span 2;
  }
}

.g-footer-nav__gnav__item--small {
  position: absolute;
  z-index: 2;
  top: 170px;
  right: 0;
  min-width: 142px;
  font-size: 14px;
  display: grid;
  gap: 15px 0;
}

@media screen and (max-width: 767px) {
  .g-footer-nav__gnav__item--small {
    min-width: 0;
    font-size: 3.2vw;
    position: static;
  }
}

.g-footer-nav__gnav__item--small a {
  cursor: pointer;
  font-weight: 500;
  color: inherit;
}

.g-policy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  font-feature-settings: "palt";
  letter-spacing: normal;
}

.g-policy-modal__overray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .8);
}

.g-policy-modal__contents_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.g-policy-modal__contents_wrap::-webkit-scrollbar {
  display: none;
}

.g-policy-modal__contents_inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.g-policy-modal__contents_wrap .g-policy-modal__contents_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.g-policy-modal__contents {
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  width: 1010px;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__contents {
    padding-top: 5.33333vw;
    padding-bottom: 5.33333vw;
    width: 92vw;
  }
}

.g-policy-modal__inner {
  position: relative;
  display: block;
  padding: 98px 80px 62px;
  background-color: #eee;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__inner {
    padding: 12.93333vw 6.66667vw 9.86667vw;
  }
}

.g-policy-modal__close {
  top: 30px;
  right: 30px;
  width: 30px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__close {
    top: 4vw;
    right: 4vw;
    width: 4vw;
    padding-bottom: 4vw;
  }
}

.g-policy-modal__close {
  position: absolute;
  height: 0;
  background: url(/stera/common/img/modal_ic01.svg) 50% 50% no-repeat;
  background-size: contain;
  z-index: 2;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: transform .5s;
}

.g-policy-modal__detail {
  position: relative;
  background-color: #eee;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__detail {
    font-size: 2.66667vw;
  }
}

.g-policy-modal__textbox {
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__textbox {
    margin-bottom: 8vw;
  }
}

.g-policy-modal__textbox--last {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__textbox--last {
    margin-bottom: 0;
  }
}

.g-policy-modal__title {
  font-weight: 700;
  color: #211815;
  line-height: 1.5;
  font-size: 2rem;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .g-policy-modal__title {
    margin-bottom: 3.2vw;
    font-size: 3.73333vw;
  }
}

.g-policy-modal__text_wrap {
  margin-top: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.g-policy-modal__text_wrap + .g-policy-modal__text_wrap {
  margin-top: 0;
}

.g-policy-modal__paragraph {
  margin-top: 1em;
  line-height: 1.5;
  font-size: 14px;
}

.g-policy-modal__notelist {
  margin-top: 0.5em;
}

.g-policy-modal__notelist > li {
  position: relative;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.66667;
}

.g-policy-modal__notelist > li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "※";
}

@media print, screen and (min-width: 768px) {
  .g-serviceslider {
    margin: 40px -10px 0;
  }
  .g-serviceslider .slick-arrow {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .g-serviceslider {
    margin: 20px -15px 0;
  }
  .g-serviceslider .slick-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 59px;
    text-indent: -9999px;
    overflow: hidden;
    border: none;
    background: none;
    padding: 0;
  }
  .g-serviceslider .slick-arrow.slick-prev {
    left: 15px;
    transform: rotate(180deg) translateY(50%);
  }
  .g-serviceslider .slick-arrow.slick-next {
    right: 15px;
  }
  .g-serviceslider .slick-arrow:after {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: -12%;
    transform: translateY(-50%) rotate(45deg);
    width: 26px;
    height: 26px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: "";
    display: block;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="4" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, .2));
    animation: g_sdb 2s infinite;
  }
}

.g-serviceslider .slick-track {
  display: flex;
}

.g-serviceslider .slick-dots {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0%;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0 8px;
  margin-top: 10px;
}

@media print, screen and (min-width: 768px) {
  .g-serviceslider .slick-dots {
    display: none;
  }
}

.g-serviceslider .slick-dots li button {
  border: none;
  padding: 0;
  width: 8px;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background-color: #eeeeee;
}

.g-serviceslider .slick-dots li.slick-active button {
  background-color: #dbdbdb;
}

.g-serviceslider__item {
  display: flex !important;
  padding: 5px 10px;
  height: auto !important;
  float: none !important;
  max-width: 370px;
}

.g-serviceslider:not(.slick-initialized) .g-serviceslider__item:nth-child(n+2) {
  display: none !important;
}

.g-serviceslider__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 25px 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  background-color: #fff;
}

.g-serviceslider-button {
  margin-top: 15px;
}

.g-serviceslider-button__link {
  position: relative;
  display: block;
  border: 1px solid #211815;
  letter-spacing: 0.1em;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  color: #211815;
  text-align: center;
  letter-spacing: normal;
}

@media print, screen and (min-width: 768px) {
  .g-serviceslider-button__link {
    transition: ease opacity 0.3s;
  }
  .g-serviceslider-button__link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .g-serviceslider-button__link {
    padding: 12px;
    font-size: 17px;
  }
}

.g-serviceslider-button__link:after {
  position: absolute;
  z-index: 5;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 10px;
  display: block;
  content: "";
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .g-serviceslider-button__link:after {
    right: 20px;
    width: 8px;
    height: 8px;
  }
}

.g-case-slider {
  margin: 0 -60px;
  padding: 0 60px;
}

@media screen and (max-width: 1200px) {
  .g-case-slider {
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .g-case-slider {
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .g-case-slider {
    margin: 0 -15px;
    padding: 0;
    width: auto;
  }
}

.g-case-slider .slick-arrow {
  position: absolute;
  z-index: 5;
  top: 210px;
  width: 38px;
  height: 59px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  background: none;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .g-case-slider .slick-arrow {
    top: 16vw;
    width: 33px;
    height: 59px;
  }
}

.g-case-slider .slick-arrow.slick-prev {
  left: 15px;
  transform: rotate(180deg);
}

.g-case-slider .slick-arrow.slick-next {
  right: 15px;
}

.g-case-slider .slick-arrow:after {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -12%;
  transform: translateY(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  content: "";
  display: block;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="4" dy="4" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.2)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, .2));
  animation: g_sdb 2s infinite;
}

@media screen and (max-width: 767px) {
  .g-case-slider .slick-arrow:after {
    border-top-width: 2px;
    border-right-width: 2px;
    width: 26px;
    height: 26px;
  }
}

.g-case-slider__item {
  padding: 0 15px 1px;
  max-width: 370px;
}

.g-case-slider:not(.slick-initialized) .g-case-slider__item:nth-child(n+2) {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .g-case-slider__item {
    padding: 0 8px;
  }
}

.g-case-slider__image {
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .g-case-slider__image {
    margin: 0 0 15px;
  }
}

.g-case-slider__image img {
  aspect-ratio: 345 / 230;
  object-fit: cover;
}

.g-case-slider__category {
  margin: 0 0 5px;
}

@media screen and (max-width: 767px) {
  .g-case-slider__category {
    margin: 0 0 8px;
  }
}

.g-case-slider__category span {
  padding: 2px 15px;
  background-color: #00a796;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7222;
}

@media screen and (max-width: 767px) {
  .g-case-slider__category span {
    font-size: 12px;
    line-height: 1.75;
  }
}

.g-case-slider__copy {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.381;
}

@media screen and (max-width: 767px) {
  .g-case-slider__copy {
    font-size: 18px;
  }
}

.g-case-slider__position {
  margin-top: 1em;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .g-case-slider__position {
    margin-top: 10px;
    font-size: 12px;
  }
}

.p-case-slider__aside {
  margin-top: 1em;
  color: #4d4644;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .p-case-slider__aside {
    font-size: 12px;
  }
}

.g-case-toggle {
  margin-top: 15px;
}

.g-case-toggle__switch {
  border: 1px solid #c4c2c1;
  padding: 8px;
  text-align: center;
  display: block;
  line-height: 1.1;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.7273;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__switch {
    font-size: 13px;
    line-height: 1.7692;
  }
}

.g-case-toggle__switch i {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 10px;
  height: 10px;
  width: 10px;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__switch i {
    margin-right: 10px;
    height: 9px;
    width: 9px;
  }
}

.g-case-toggle__switch i:before, .g-case-toggle__switch i:after {
  position: absolute;
  z-index: 5;
  top: calc(50% - 1px);
  right: 0;
  z-index: 2;
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #000;
  transition: ease transform 0.3s;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__switch i:before, .g-case-toggle__switch i:after {
    height: 1px;
  }
}

.g-case-toggle__switch i:before {
  transform: rotate(-90deg);
}

.is-open .g-case-toggle__switch i:before {
  transform: rotate(0deg);
}

.g-case-toggle__detail {
  display: none;
  padding: 15px 15px;
  background-color: #e9e9e9;
}

.g-case-toggle__detail > :first-child,
.g-case-toggle__detail > section:first-child > :first-child {
  margin-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__detail {
    padding: 15px 15px;
  }
  .g-case-toggle__detail--bg--sp {
    padding: 15px !important;
    background-color: #e9e9e9 !important;
  }
}

.g-case-toggle__text {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__text {
    font-size: 13px;
    line-height: 1.9231;
  }
}

.g-case-toggle__text em {
  font-weight: bold;
  background-image: linear-gradient(to top, #99d0be 5px, rgba(255, 255, 255, 0) 5px);
}

.g-case-toggle__title {
  margin: 30px 0 10px;
  border-left: 3px solid #6bba99;
  padding-left: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3043;
}

@media screen and (max-width: 767px) {
  .g-case-toggle__title {
    margin: 20px 0 10px;
    font-size: 15px;
    line-height: 1.5;
  }
}

@keyframes g_sdb {
  0%,
  20%,
  40%,
  100% {
    left: -12%;
  }
  10%,
  30% {
    left: 0%;
  }
}
