@charset "UTF-8";
:root {
  --color-font-base: #000;
  --color-font-sub: #686868;
  --color-base: #38393F;
  --color-base02: #F5F5F5;
  --color-main: #003662;
  --color-accent01: #06F;
  --color-accent02: #13527F;
  --color-white: #fff;
  --f-size-60: 6.0rem;
  --f-size-50: 5.0rem;
  --f-size-40: 4.0rem;
  --f-size-38: 3.8rem;
  --f-size-36: 3.6rem;
  --f-size-32: 3.2rem;
  --f-size-24: 2.4rem;
  --f-size-22: 2.2rem;
  --f-size-20: 2rem;
  --f-size-16: 1.6rem;
  --f-size-18: 1.8rem;
  --f-size-14: 1.4rem;
  --f-size-13: 1.3rem;
  --f-size-12: 1.2rem;
  --f-size-10: 1.0rem;
  --f-weight-300: 300;
  --f-weight-400: 400;
  --f-weight-500: 500;
  --f-weight-600: 600;
  --f-weight-700: 700;
}

@-webkit-keyframes barslide {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes barslide {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes sk-scaleout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sk-scaleout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes displayImg {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes displayImg {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes mv-fadeaut {
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes mv-fadeaut {
  100% {
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes txtfadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes txtfadeIn {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes body-anfixed {
  100% {
    position: inherit;
  }
}
@keyframes body-anfixed {
  100% {
    position: inherit;
  }
}
@-webkit-keyframes bounce {
  0% {
    bottom: -6px;
  }
  50% {
    bottom: 73px;
  }
  100% {
    bottom: -6px;
  }
}
@keyframes bounce {
  0% {
    bottom: -6px;
  }
  50% {
    bottom: 73px;
  }
  100% {
    bottom: -6px;
  }
}
@-webkit-keyframes bounce02 {
  0% {
    bottom: -6px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: -6px;
  }
}
@keyframes bounce02 {
  0% {
    bottom: -6px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: -6px;
  }
}
@keyframes barslide {
  0% {
    height: 0px;
  }
  100% {
    height: 80px;
  }
}
@-webkit-keyframes barslide02 {
  0% {
    height: 0px;
  }
  100% {
    height: 60px;
  }
}
@keyframes barslide02 {
  0% {
    height: 0px;
  }
  100% {
    height: 60px;
  }
}
@-webkit-keyframes headerhov {
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes headerhov {
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.header {
  width: 100%;
  background-color: #fff;
  padding-left: 24px;
  padding-right: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  z-index: 9000;
  top: 0;
}
.header-logo {
  max-width: 526px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media print, screen and (min-width: 768px) {
  .header-logo {
    width: 38.226%;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 68.4895vw;
  }
}
.header-logo img {
  width: 100%;
  height: auto;
}
.header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header-links {
    width: 50%;
    max-width: 677px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .header-links {
    display: none;
  }
}
.header-links-item {
  font-weight: 700;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
.header-links-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent01);
  position: absolute;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
@media print, screen and (min-width: 768px) {
  .header-links-item:hover::before {
    -webkit-animation: headerhov ease-in-out 0.3s forwards;
            animation: headerhov ease-in-out 0.3s forwards;
  }
}
.header-links .header-humb {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: 1px solid #000;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
}
.header-links .header-humb span {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background-color: #000;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.header-links .header-humb span:nth-child(1) {
  top: 16px;
}
.header-links .header-humb span:nth-child(2) {
  top: 22px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.header-links .header-humb span:nth-child(3) {
  bottom: 16px;
}
.header-toContact {
  position: absolute;
  right: 0;
  bottom: -208px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .header-toContact {
    display: none;
  }
}
.header-toContact a {
  line-height: 0;
}
.header-sphumb {
  width: 22px;
  height: 19px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .header-sphumb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-sphumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .header-sphumb span {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header-sphumb span:nth-child(1) {
    top: 0%;
  }
  .header-sphumb span:nth-child(2) {
    top: 50%;
  }
  .header-sphumb span:nth-child(3) {
    top: 100%;
  }
}
.header-splinks {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 50%;
  display: none;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.header-splinks nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 110px;
  width: calc(100% - 100px);
  margin-right: auto;
  margin-left: auto;
}
.header-splinks nav a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-splinks nav a:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.header-splinks .header-sptoContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.header.is-Open .header-humb span:nth-child(1) {
  -webkit-transform: translateX(50%) rotate(-45deg);
          transform: translateX(50%) rotate(-45deg);
  top: 50%;
}
.header.is-Open .header-humb span:nth-child(2) {
  display: none;
}
.header.is-Open .header-humb span:nth-child(3) {
  -webkit-transform: translateX(50%) rotate(45deg);
          transform: translateX(50%) rotate(45deg);
  top: 50%;
}
.header.is-Open .header-sphumb span:nth-child(1) {
  -webkit-transform: translateX(50%) rotate(-45deg);
          transform: translateX(50%) rotate(-45deg);
  top: 50%;
}
.header.is-Open .header-sphumb span:nth-child(2) {
  display: none;
}
.header.is-Open .header-sphumb span:nth-child(3) {
  -webkit-transform: translateX(50%) rotate(45deg);
          transform: translateX(50%) rotate(45deg);
  top: 50%;
}
.header.is-Open .header-toContact {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .header.is-Open .header-toContact {
    display: none;
  }
}
.header.is-Open .header-splinks {
  display: block;
  -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .header.is-Open .header-splinks {
    display: none;
  }
}
.header-splinks {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 50%;
  display: none;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.header-splinks nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 110px;
  width: calc(100% - 100px);
  margin-right: auto;
  margin-left: auto;
}
.header-splinks nav a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-splinks nav a:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.header-splinks .header-sptoContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.header-splinks.is-Open {
  display: block;
  -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  .header-splinks.is-Open {
    display: none;
  }
}
.footer {
  width: 100%;
}
.footer-links {
  color: var(--color-white);
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(/recruit/assets/img/common/contact-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.footer-links-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .footer-links-inner {
    width: calc(100% - 160px);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 80px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer-links-inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer-links {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.footer-links-ttl-sub {
  font-size: var(--f-size-20);
  line-height: 1.5;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.footer-links-ttl h2 {
  font-size: var(--f-size-36);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer-links-ttl h2 {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer-links .link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .footer-links .link-list {
    display: block;
  }
}
.footer-links .link-list a {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  color: var(--color-white);
}
@media print, screen and (min-width: 768px) {
  .footer-links .link-list a {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .footer-links .link-list a:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer-links .link-list a::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  -webkit-mask-image: url("/recruit/assets/img/common/btn-icon01.svg");
          mask-image: url("/recruit/assets/img/common/btn-icon01.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: var(--color-white);
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.footer-links .link-list a .icon {
  margin-bottom: 10px;
}
.footer-links .link-list a .en {
  line-height: 1.5;
}
.footer-links .link-list a .label {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .footer-links .link-list a .label {
    font-size: 3rem;
  }
}
.footer-links .link-list .link-list-item01 {
  background-color: var(--color-accent01);
}
.footer-links .link-list .link-list-item02 {
  background-color: var(--color-accent02);
}
.footer-bottom {
  padding-top: 80px;
  padding-bottom: 30px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-bottom-logo {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer-bottom-logo {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .footer-bottom-logo img {
    width: 100%;
    height: auto;
  }
}
.footer-bottom .toCorporate a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 13px;
  padding-right: 13px;
  border-radius: 100px;
  border: 1px solid var(--color-font-base);
  margin-bottom: 80px;
  gap: 10px;
  position: relative;
  font-size: 11px;
  line-height: 2.7;
  font-weight: 700;
}
.footer-bottom .toCorporate a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("/recruit/assets/img/common/material01.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer-bottom .toCorporate a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("/recruit/assets/img/common/material02.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer-bottom .copy {
  font-size: var(--f-size-12);
}

.l-container {
  position: relative;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), linear-gradient(164deg, #FFF100 0.7%, #E4007F 25.52%, #E60012 50.35%, #920783 75.17%, #0052A5 100%);
}

.l-flcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.l-flcontainer.-side-l {
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer.-side-l {
    padding-right: 120px;
  }
}
.l-flcontainer.-side-r {
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer.-side-r {
    padding-left: 120px;
  }
}
.l-flcontainer.js-fadein .l-flcontainer-content,
.l-flcontainer.js-fadein .l-flcontainer-image {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.l-flcontainer.fadeIn .l-flcontainer-image {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.l-flcontainer.fadeIn .l-flcontainer-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.l-flcontainer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.l-flcontainer-content p {
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .l-flcontainer-content {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer-content {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .l-flcontainer-image {
    width: 100%;
  }
}
.l-flcontainer-image img {
  width: 100%;
  height: auto;
}

.c-cnt-head {
  font-size: var(--f-size-32);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-cnt-head {
    font-size: 24px;
  }
}
.c-cnt-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-accent01);
  position: absolute;
  left: -58px;
  top: 0.5lh;
}

.l-pagettl {
  padding-top: 140px;
  padding-bottom: 65px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-pagettl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.l-pagettl-sub {
  font-size: var(--f-size-20);
  letter-spacing: 0.8px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-font-sub);
  min-height: 1lh;
}
.l-pagettl h1 {
  font-size: var(--f-size-38);
  font-weight: 300;
  line-height: 150%;
}

.l-mv {
  width: 100%;
  line-height: 0;
}
.l-mv img {
  width: 100%;
  height: auto;
}

.c-section {
  width: calc(100% - 240px);
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-section {
    width: calc(100% - 100px);
  }
}
.c-section-head {
  font-size: var(--f-size-32);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-section-head {
    font-size: 24px;
  }
}
.c-section-head::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-accent01);
  position: absolute;
  left: -58px;
  top: 0.5lh;
}
@media screen and (max-width: 767px) {
  .c-section-head::before {
    width: 24px;
    left: -38px;
  }
}
.c-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-section-content p {
  font-weight: 300;
  line-height: 1.8;
}

@media print, screen and (min-width: 768px) {
  .toTop {
    display: block;
    width: myrem(60);
    position: fixed;
    bottom: 5.5%;
    right: 4.8%;
    z-index: 5;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .toTop {
    display: none;
  }
}

.cnt-link.-withIcon a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.cnt-link.-withIcon a .label {
  font-size: var(--f-size-18);
  line-height: 1.6;
}
.cnt-link a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media print, screen and (min-width: 768px) {
  .cnt-link a:hover {
    opacity: 0.4;
  }
}
.c-comment {
  font-size: var(--f-size-12);
  font-weight: var(--f-weight-600);
  color: var(--color-base);
  text-align: end;
  line-height: 2;
}

.c-price-toptxt {
  font-size: var(--f-size-20);
  font-weight: var(--f-weight-600);
  color: var(--color-base);
  line-height: 2;
}

.c-price-bottomtxt {
  font-size: var(--f-size-16);
  font-weight: var(--f-weight-600);
  color: var(--color-base);
  line-height: 2;
}

.u-fs20 {
  font-size: var(--f-size-20);
}

.u-fs50 {
  font-size: var(--f-size-50);
}

.u-fs60 {
  font-size: var(--f-size-60);
}

.u-center {
  text-align: center;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  width: 100%;
  height: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: var(--f-weight-300);
  color: var(--color-font-base);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  img[src$=".svg"] {
    width: 100%;
  }
}
a {
  text-decoration: none;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */