@charset "UTF-8";

/* setting
------------------------------ */

:root {
  /* color */
  --base-color: #333;
  --base-color-rgb: 51, 51, 51;
  --point-color: #0B318F;
  --point-color-rgb: 11, 49, 143;
  --bg-color: #F7F9FC;
  --line-color: rgba(var(--point-color-rgb), 0.2);
  --gradation-color: linear-gradient(90deg, #1041BA, #0B318F);
  --hover-color: #1041BA;
  /* transition */
  --base-transition: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

/* animation
------------------------------ */

@-webkit-keyframes infinity-scroll-txt-pc {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(1678px);
    transform: translateX(1678px);
  }
}

@keyframes infinity-scroll-txt-pc {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(1678px);
    transform: translateX(1678px);
  }
}

@-webkit-keyframes infinity-scroll-txt-sp {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(1196px);
    transform: translateX(1196px);
  }
}

@keyframes infinity-scroll-txt-sp {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(1196px);
    transform: translateX(1196px);
  }
}

@-webkit-keyframes marquee {
  0% {
    translate: 0;
  }

  100% {
    translate: calc(-100% - 40px);
  }
}

@keyframes marquee {
  0% {
    translate: 0;
  }

  100% {
    translate: calc(-100% - 40px);
  }
}

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

*:focus-visible {
  outline: 2px solid var(--point-color);
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  counter-reset: number 0;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 730px);
  min-height: calc(100dvh - 730px);
}

section {
  position: relative;
  padding: 120px 0;
}

main {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

.inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner__inside {
  max-width: 1040px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  cursor: pointer;
}

input,
button,
select {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span {
  font-weight: inherit;
}

strong {
  font-weight: 700;
}

.ib {
  display: inline-block;
}

.en {
  font-family: "Outfit", sans-serif;
}

.bg {
  background-color: var(--bg-color);
}

.caution {
  color: var(--point-color);
}

.txt {
  line-height: 2;
  letter-spacing: 0;
}

/* title
------------------------------ */

.c-title01 {
  margin-bottom: 50px;
}

.c-title01 .en {
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1;
}

.c-title01 .jp {
  position: relative;
  margin-top: 8px;
  padding-left: 25px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.c-title01 .jp::before {
  -webkit-mask: url(/img/common/icon-kira.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: var(--point-color);
  content: "";
  mask: url(/img/common/icon-kira.svg) no-repeat center center/contain;
}

.c-title01__white .en {
  color: #fff;
}

.c-title01__white .jp {
  color: #fff;
}

.c-title01__white .jp::before {
  background-color: #fff;
}

.top .c-title01 .en {
  font-size: 7.5rem;
}

.c-title02 {
  margin-bottom: 20px;
  padding-left: 25px;
  border-left: solid 4px var(--point-color);
  color: var(--point-color);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}

/* btn
------------------------------ */

.c-btn01 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  height: 60px;
  padding: 20px;
  gap: 10px;
  border: solid 1px var(--point-color);
  border-radius: 100px;
}

.c-btn01__txt {
  overflow: hidden;
}

.c-btn01__txt .inn {
  -webkit-transition: var(--base-transition);
  -webkit-transform: translateY(0);
  display: block;
  transform: translateY(0);
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  text-shadow: var(--point-color) 0 20px;
  transition: var(--base-transition);
}

.c-btn01__arrow {
  -ms-flex-negative: 0;
  -webkit-transition: var(--base-transition);
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--point-color);
  transition: var(--base-transition);
}

.c-btn01__arrow::after {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #fff;
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

.c-btn01__white {
  border: solid 1px #fff;
}

.c-btn01__white .inn {
  color: #fff;
  text-shadow: #fff 0 20px;
}

.c-btn01__white .c-btn01__arrow {
  background-color: #fff;
}

.c-btn01__white .c-btn01__arrow::after {
  background-color: var(--point-color);
}

/* 背景テキスト
------------------------------ */

.c-bg {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-animation: infinity-scroll-txt-pc 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: infinity-scroll-txt-pc 30s linear infinite;
}

.c-bg img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1678px;
  max-width: inherit;
}

/* underMv
------------------------------ */

.c-underMv {
  height: 330px;
  max-height: 350px;
  padding: 0;
  background: var(--gradation-color);
}

.c-underMv .inner {
  height: 100%;
}

.c-underMv .breadcrumbs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  gap: 15px;
}

.c-underMv .breadcrumbs li {
  position: relative;
}

.c-underMv .breadcrumbs li + li {
  position: relative;
  padding-left: 20px;
}

.c-underMv .breadcrumbs li + li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  content: "";
  opacity: 0.5;
}

.c-underMv .breadcrumbs li:not(:last-of-type) {
  opacity: 0.5;
}

.c-underMv .breadcrumbs a {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.c-underMv__title {
  margin-top: 70px;
  color: #fff;
  font-weight: 700;
  font-size: 4.5rem;
}

.c-underMv__txt {
  -webkit-background-clip: text;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-text-fill-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.15)), to(rgba(255, 255, 255, 0.05)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  background-clip: text;
  font-weight: 500;
  font-size: 18rem;
  line-height: 0.7;
  white-space: nowrap;
}

/* table
------------------------------ */

.c-table01 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.c-table01 table {
  width: 100%;
}

.c-table01 table th,
.c-table01 table td {
  padding: 20px 10px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  vertical-align: middle;
}

.c-table01 table th {
  width: 270px;
  font-weight: 700;
  text-align: left;
}

.c-table01 li {
  position: relative;
  padding-left: 1.6rem;
}

.c-table01 li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.c-table01 a {
  display: inline-block;
  color: var(--point-color);
  text-decoration: underline;
}

/* c-contact
------------------------------ */

.c-contact {
  padding: 80px 0;
  background-color: var(--point-color);
  color: #fff;
}

.c-contact .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-contact .c-title01 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 0;
}

.c-contact .c-title01 span {
  color: #fff;
}

.c-contact .txt {
  text-align: center !important;
}

.c-contact .c-btn01 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 210px;
  margin-top: 0;
  border: solid 1px #fff;
  background-color: #fff;
  color: var(--point-color);
}

.header {
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.header__logo {
  position: relative;
  width: 320px;
}

.header__logo .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 30px;
}

.header__btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--point-color);
}

.header__btn_inn {
  position: relative;
  width: 30px;
  height: 20px;
}

.header__btn_line {
  -webkit-transition: var(--base-transition);
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition);
}

.header__btn_line:first-of-type {
  top: 0;
}

.header__btn_line:nth-of-type(2) {
  top: 10px;
  opacity: 1;
}

.header__btn_line:last-of-type {
  bottom: 0;
}

.header__btn.active .header__btn_line:first-of-type {
  -webkit-transform: rotate(45deg);
  top: 9px;
  transform: rotate(45deg);
}

.header__btn.active .header__btn_line:nth-of-type(2) {
  opacity: 0;
}

.header__btn.active .header__btn_line:last-of-type {
  -webkit-transform: rotate(-45deg);
  bottom: 10px;
  transform: rotate(-45deg);
}

.header__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav_list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav_item a {
  padding: 2px 0;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.4rem;
}

.header__nav_item a .inn {
  -webkit-transform: translateY(0);
  -webkit-transition: var(--base-transition);
  display: block;
  transform: translateY(0);
  text-shadow: var(--hover-color) 0 25px;
  transition: var(--base-transition);
}

.header__tel {
  position: relative;
  padding-left: 22px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 2.2rem;
}

.header__tel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 17px;
  height: 17px;
  margin: auto;
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.header__contact {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  border-radius: 100px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.header__contact::before {
  -webkit-mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #fff;
  content: "";
  mask: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
}

.header__contact span:not(.inn) {
  overflow: hidden;
}

.header__contact .inn {
  -webkit-transform: translateY(0);
  -webkit-transition: var(--base-transition);
  display: block;
  transform: translateY(0);
  line-height: 1;
  text-shadow: #fff 0 25px;
  transition: var(--base-transition);
}

.map {
  width: 100%;
  height: 400px;
  background-color: #aab2cf;
}

.map iframe {
  -o-object-fit: cover;
  -webkit-filter: grayscale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  filter: grayscale(1);
}

.footer {
  padding-top: 80px;
  background-color: #E9EDF5;
}

.footer__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 80px;
  gap: 20px;
}

.footer__logo {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100%;
  max-width: 320px;
}

.footer__address {
  grid-row: 2/3;
  grid-column: 1/2;
  font-size: 1.4rem;
}

.footer__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-row: 2/3;
  grid-column: 2/3;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.footer__nav_item {
  position: relative;
  line-height: 1;
}

.footer__nav_item a {
  position: relative;
  color: var(--point-color);
  font-weight: 500;
  font-size: 1.4rem;
}

.footer__copyright {
  position: relative;
  padding: 15px 0;
  border-top: solid 1px var(--line-color);
  font-size: 1rem;
  text-align: right;
}

.footer__copyright span {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mailform__lead {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.mailform .form_area {
  max-width: 1000px;
  margin: 30px auto 0;
}

.mailform .form_wrap table {
  width: 100%;
}

.mailform .form_wrap th,
.mailform .form_wrap td {
  padding: 20px 10px;
  border-top: solid 1px var(--line-color);
  border-bottom: solid 1px var(--line-color);
  vertical-align: middle;
}

.mailform .form_wrap th {
  width: 180px;
  font-weight: 700;
  text-align: left;
}

.mailform .form_wrap .radio_wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 40px;
}

.mailform .form_wrap label {
  cursor: pointer;
}

.mailform .form_wrap input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.mailform .form_wrap input[type=radio]:checked + span::after {
  opacity: 1;
}

.mailform .form_wrap input[type=radio] + span {
  position: relative;
  padding-left: 22px;
}

.mailform .form_wrap input[type=radio] + span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 17px;
  height: 17px;
  margin: auto;
  border: solid 1px var(--line-color);
  border-radius: 50%;
  background-color: #fff;
  content: "";
}

.mailform .form_wrap input[type=radio] + span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 11px;
  height: 11px;
  margin: auto;
  border-radius: 50%;
  background-color: var(--point-color);
  content: "";
  opacity: 0;
}

.mailform .form_wrap input[type=text],
.mailform .form_wrap input[type=email],
.mailform .form_wrap textarea,
.mailform .form_wrap select {
  width: 100%;
  padding: 15px 20px;
  border: solid 1px #A6A8B0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
}

.mailform .form_wrap input[type=text]::-webkit-input-placeholder,
.mailform .form_wrap input[type=email]::-webkit-input-placeholder,
.mailform .form_wrap textarea::-webkit-input-placeholder,
.mailform .form_wrap select::-webkit-input-placeholder {
  color: #ccc;
}

.mailform .form_wrap input[type=text]::-moz-placeholder,
.mailform .form_wrap input[type=email]::-moz-placeholder,
.mailform .form_wrap textarea::-moz-placeholder,
.mailform .form_wrap select::-moz-placeholder {
  color: #ccc;
}

.mailform .form_wrap input[type=text]:-ms-input-placeholder,
.mailform .form_wrap input[type=email]:-ms-input-placeholder,
.mailform .form_wrap textarea:-ms-input-placeholder,
.mailform .form_wrap select:-ms-input-placeholder {
  color: #ccc;
}

.mailform .form_wrap input[type=text]::-ms-input-placeholder,
.mailform .form_wrap input[type=email]::-ms-input-placeholder,
.mailform .form_wrap textarea::-ms-input-placeholder,
.mailform .form_wrap select::-ms-input-placeholder {
  color: #ccc;
}

.mailform .form_wrap input[type=text]::placeholder,
.mailform .form_wrap input[type=email]::placeholder,
.mailform .form_wrap textarea::placeholder,
.mailform .form_wrap select::placeholder {
  color: #ccc;
}

.mailform .form_wrap textarea {
  height: 120px;
}

.mailform .form_wrap .addressbox_top {
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  gap: 5px 20px;
}

.mailform .form_wrap .address_num,
.mailform .form_wrap .address_place {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mailform .form_wrap .address_num input,
.mailform .form_wrap .address_num select,
.mailform .form_wrap .address_place input,
.mailform .form_wrap .address_place select {
  width: 170px;
}

.mailform .form_wrap .address_place_txt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mailform .form_wrap .address_select {
  position: relative;
}

.mailform .form_wrap .address_select::before {
  -webkit-clip-path: polygon(50% 75%, 0 0, 100% 0);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: var(--base-color);
  content: "";
  clip-path: polygon(50% 75%, 0 0, 100% 0);
  pointer-events: none;
}

.mailform .form_wrap .is-error {
  color: red;
  font-size: 1.2rem;
}

.mailform .privacy {
  margin-top: 30px;
}

.mailform .privacy__wrap {
  height: 230px;
  padding: 20px 15px 20px;
  overflow-y: scroll;
  border: solid 1px #A6A8B0;
  background-color: #fff;
}

.mailform .privacy__wrap::-webkit-scrollbar {
  width: 5px;
  background-color: var(--bg-color);
}

.mailform .privacy__wrap::-webkit-scrollbar-thumb {
  background-color: var(--line-color);
}

.mailform .privacy .ttl {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.mailform .privacy .ttl + .txt {
  line-height: 1.5;
}

.mailform .privacy .sub-ttl {
  margin: 14px 0 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.mailform .privacy .sub-ttl + .txt {
  padding-left: 1rem;
}

.mailform .privacy .txt {
  font-size: 1.3rem;
  line-height: 1.38;
}

.mailform .privacy .privacyAgree {
  margin-top: 20px;
  text-align: center;
}

.mailform .privacy .privacyAgree input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mailform .privacy .privacyAgree input:checked + label .inn::after {
  opacity: 1;
}

.mailform .privacy .privacyAgree label {
  cursor: pointer;
}

.mailform .privacy .privacyAgree .inn {
  position: relative;
  padding-left: 20px;
}

.mailform .privacy .privacyAgree .inn::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border: solid 1px var(--base-color);
  content: "";
}

.mailform .privacy .privacyAgree .inn::after {
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 9px;
  left: 2px;
  width: 10px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: solid 2px var(--point-color);
  border-left: solid 2px var(--point-color);
  content: "";
  opacity: 0;
}

.mailform .btn-area {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px 20px;
}

.mailform .btn-area input,
.mailform .btn-area a,
.mailform .btn-area button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: var(--base-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 60px;
  background-color: var(--point-color);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: var(--base-transition);
}

.mailform .btn-area input#reset,
.mailform .btn-area input.return-btn,
.mailform .btn-area a#reset,
.mailform .btn-area a.return-btn,
.mailform .btn-area button#reset,
.mailform .btn-area button.return-btn {
  background-color: var(--line-color);
  color: var(--base-color);
}

.calling {
  background-color: var(--bg-color);
}

.calling .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: 210px 1fr 280px;
  align-items: center;
  gap: 20px;
}

.calling a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 6px 20px;
  gap: 5px;
  border: solid 2px var(--point-color);
}

.calling a::before {
  width: 17px;
  height: 17px;
  background: url(/img/common/icon-tel.svg) no-repeat center center/contain;
  content: "";
}

.calling a .en {
  color: var(--point-color);
  font-weight: 600;
  font-size: 2.4rem;
}

/* template
------------------------------ */

.template__title {
  margin-bottom: 30px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 2.8rem;
}

.template .c-btn01 {
  margin: 50px auto 0;
}

/* col2
------------------------------ */

.col2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 70px;
  gap: 20px 70px;
  border-top: solid 1px var(--line-color);
}

.col2 + .col2 {
  margin-top: 70px;
}

.col2__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-row: 1/2;
  grid-column: 1/2;
  align-items: center;
  align-self: end;
  gap: 10px;
  font-weight: 700;
  font-size: 3.2rem;
}

.col2__title .en {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: var(--point-color);
  font-size: 2rem;
}

.col2 .txt {
  grid-row: 2/3;
  grid-column: 1/2;
  align-self: start;
}

.col2__img {
  position: relative;
  grid-row: 1/3;
  grid-column: 2/3;
}

.col2__img::before {
  position: absolute;
  top: -50px;
  right: 0;
  content: "0" counter(number);
  color: var(--point-color);
  font-weight: 500;
  font-size: 8.9rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  counter-increment: number 1;
  opacity: 0.1;
}

.col2:nth-of-type(odd) .col2__title,
.col2:nth-of-type(odd) .txt {
  grid-column: 2/3;
}

.col2:nth-of-type(odd) .col2__img {
  grid-column: 1/2;
}

/* works
------------------------------ */

.works {
  background-color: var(--bg-color);
}

.works__table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.works table {
  width: 100%;
}

.works thead th {
  padding: 20px 10px;
  border: solid 1px #fff;
  background-color: var(--line-color);
  font-weight: 700;
  text-align: center;
}

.works thead th:nth-of-type(1),
.works thead th:nth-of-type(3) {
  width: 270px;
}

.works tbody td {
  padding: 20px 10px;
  border: solid 1px var(--line-color);
  background-color: #fff;
}

/* access
------------------------------ */

.access {
  background-color: var(--bg-color);
}

.access__map {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
}

.access__map iframe {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.access__caution {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  font-weight: 500;
  font-size: 1.4rem;
}

/* recruit
------------------------------ */

.recruit__marquee {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 10px 0;
  overflow: hidden;
  gap: 40px;
  border-bottom: solid 1px var(--point-color);
  white-space: nowrap;
}

.recruit__marquee p {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-animation: marquee 10s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee 10s linear infinite;
}

.recruit__marquee span {
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.recruit__lead {
  padding: 100px 0 120px;
}

.recruit__lead .inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: grid;
  grid-template-columns: 495px auto;
  align-items: start;
  justify-content: center;
  gap: 0 100px;
}

.recruit__lead_wrap {
  grid-row: 1/2;
  grid-column: 2/3;
}

.recruit__lead_title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 1;
}

.recruit__lead_title .inn {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px 15px;
  border-radius: 5px;
  background-color: var(--point-color);
  letter-spacing: 0;
}

.recruit__lead_txt {
  color: var(--point-color);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
}

.recruit__lead_list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 38px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.recruit__lead_list li {
  position: relative;
  padding-left: 36px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 2rem;
}

.recruit__lead_list li + li {
  margin-top: 10px;
}

.recruit__lead_list li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  background: url(/img/common/icon-check.svg) no-repeat center center/contain;
  content: "";
}

.recruit__lead_img {
  grid-row: 1/2;
  grid-column: 1/2;
}

.recruit__about {
  background-color: var(--bg-color);
}

.recruit__about_wrap {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 388px;
  padding: 30px;
  gap: 0 70px;
  border-radius: 10px;
  background-color: #fff;
}

.recruit__about_wrap + .recruit__about_wrap {
  margin-top: 30px;
}

.recruit__about .c-title02 {
  grid-row: 1/2;
  grid-column: 1/2;
}

.recruit__about_img {
  grid-row: 1/3;
  grid-column: 2/3;
}

.top .mv {
  position: relative;
  height: calc(100dvh - 100px);
  min-height: 680px;
  padding: 0 0 70px;
}

.top .mv .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}

.top .mv__copy {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  color: var(--point-color);
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1.5;
}

.top .mv__copy span {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  display: inline-block;
  padding: 10px 20px 15px;
  border-radius: 5px;
  background-color: #fff;
  line-height: 1;
}

.top .mv__txt {
  margin-top: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
}

.top .mv__img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top .mv__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top .lead {
  padding: 80px 0 0;
}

.top .lead__txt {
  color: var(--point-color);
  font-weight: 700;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.top .company {
  padding: 80px 0 10px;
}

.top .company__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.top .company__txt {
  width: 50%;
  padding-left: 90px;
}

.top .company .c-btn01 {
  margin-top: 50px;
}

.top .business {
  background-color: var(--point-color);
}

.top .business__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.top .business .c-title01 {
  margin-bottom: 0;
}

.top .business__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 12px;
}

.top .business__item_txt {
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}

.top .business__item .en {
  padding-right: 10px;
  font-weight: 500;
  opacity: 0.5;
}

.top .recruit {
  padding: 0;
  background-color: var(--point-color);
}

.top .recruit__wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  margin-top: -252px;
  padding: 70px;
  border-radius: 10px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .footer__nav_item + .footer__nav_item {
    padding-left: 20px;
  }

  .footer__nav_item + .footer__nav_item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--line-color);
    content: "";
  }

  .mailform .form_wrap {
    padding: 50px;
    border-radius: 10px;
    background-color: var(--bg-color);
  }

  .calling .c-title01 {
    margin-bottom: 0;
  }

  .calling .txt {
    text-align: center;
  }

  .template__title {
    text-align: center;
  }

  .template__title + .txt {
    text-align: center;
  }

  .top .company__img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: calc(50% - 50vw);
  }

  .top .business__list {
    margin-right: calc(50% - 50vw);
  }

  .top .recruit .recruit__txt {
    grid-row: 1/3;
    grid-column: 2/3;
  }

  .top .recruit .c-btn01 {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 1200px) {
  .header {
    height: 80px;
  }

  .header__logo {
    width: 220px;
  }

  .header__inner {
    padding: 0 20px;
  }

  .recruit__lead .inner {
    grid-template-columns: 400px auto;
    gap: 0 40px;
  }
}

@media (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }

  .body-wrapper {
    min-height: calc(100vh - 1025px);
    min-height: calc(100dvh - 1025px);
  }

  main {
    margin-top: 60px;
  }

  .c-title01 {
    margin-bottom: 30px;
  }

  .c-title01 .en {
    font-size: 3.8rem !important;
  }

  .c-title01 .jp {
    font-size: 1.2rem !important;
  }

  .c-title02 {
    padding-left: 15px;
    font-size: 2rem;
  }

  .c-underMv__txt {
    font-size: 12rem;
  }

  .header {
    height: 60px;
  }

  .header__inner {
    padding: 0 0 0 20px;
  }

  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-transition: var(--base-transition);
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 50px 20px 100px;
    background-color: var(--bg-color);
    opacity: 0;
    pointer-events: none;
    transition: var(--base-transition);
  }

  .header__nav.active {
    opacity: 1;
    pointer-events: all;
  }

  .header__nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    border-top: solid 1px var(--line-color);
  }

  .header__nav_item {
    width: 100%;
    border-bottom: solid 1px var(--line-color);
  }

  .header__nav_item a {
    position: relative;
    padding: 16px 0;
    color: var(--point-color);
    font-weight: 500;
  }

  .header__nav_item a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
    content: "";
  }

  .header__nav_item a .inn {
    text-shadow: none;
  }

  .map {
    height: 375px;
  }

  .footer__contents {
    display: block;
    padding-bottom: 50px;
  }

  .footer__nav {
    justify-content: center;
    margin: 30px 0 0;
  }

  .footer__logo {
    max-width: 295px;
    margin: 0 auto;
  }

  .footer__address {
    text-align: center;
  }

  .footer__copyright {
    text-align: center;
  }

  .mailform .privacy .privacyAgree .inn::before {
    top: 4px;
  }

  .mailform .privacy .privacyAgree .inn::after {
    top: 7px;
  }

  .calling .inner {
    grid-template-columns: 160px 1fr 280px;
  }

  .col2 {
    gap: 20px 50px;
  }

  .col2__title {
    font-size: 2.2rem;
  }

  .works thead th:nth-of-type(1),
  .works thead th:nth-of-type(3) {
    width: 200px;
  }

  .recruit__lead .inner {
    grid-template-columns: 300px auto;
  }

  .recruit__lead_title {
    font-size: 3.2rem;
  }

  .recruit__lead_list {
    width: 100%;
    margin-top: 30px;
    padding: 30px 20px;
  }

  .recruit__lead_list li {
    padding-left: 28px;
    font-size: 1.4rem;
  }

  .recruit__lead_list li::before {
    width: 20px;
    height: 20px;
  }

  .recruit__about_wrap {
    grid-template-columns: auto 260px;
    gap: 0 30px;
  }

  .top .mv {
    height: calc(100vh - 60px);
  }

  .top .mv__img img {
    object-position: 60%;
  }

  .top .company__txt {
    padding-left: 30px;
  }

  .top .recruit__wrapper {
    margin-top: -150px;
    padding: 50px;
  }

  .top .business__item_txt {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  section {
    padding: 80px 0;
  }

  .c-bg {
    -webkit-animation: infinity-scroll-txt-sp 30s linear infinite;
    animation: infinity-scroll-txt-sp 30s linear infinite;
  }

  .c-bg img {
    width: 1196px;
  }

  .c-underMv {
    max-height: 248px;
  }

  .c-underMv .breadcrumbs {
    padding: 14px 0;
  }

  .c-underMv .breadcrumbs a {
    font-size: 1.2rem;
  }

  .c-underMv__title {
    margin-top: 40px;
    font-size: 3.2rem;
  }

  .c-underMv__txt {
    font-size: 7.8rem;
  }

  .c-table01 {
    border-top: solid 1px var(--line-color);
  }

  .c-table01 table th,
  .c-table01 table td {
    display: block;
    width: 100%;
    font-size: 1.6rem;
  }

  .c-table01 table th {
    padding: 20px 10px 0;
    border: none;
  }

  .c-table01 table td {
    padding: 0 10px 20px;
    border-top: none;
  }

  .c-table01 li {
    padding-left: 1.4rem;
  }

  .c-contact {
    text-align: center;
  }

  .c-contact .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .c-contact .c-btn01 {
    width: 250px;
  }

  .header__logo {
    width: 235px;
  }

  .header__tel {
    margin-top: 40px;
    padding-left: 27px;
    font-size: 3.2rem;
  }

  .header__tel::before {
    width: 22px;
    height: 22px;
  }

  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    grid-row: 3/4;
    grid-column: 1/2;
    flex-direction: column;
    gap: 0;
  }

  .footer__nav_item {
    width: 100%;
    border-top: solid 1px var(--line-color);
  }

  .footer__nav_item:last-of-type {
    border-bottom: solid 1px var(--line-color);
  }

  .footer__nav_item a {
    padding: 20px 20px 20px 0;
  }

  .footer__nav_item a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: url(/img/common/icon-arrow.svg) no-repeat center center/contain;
    content: "";
  }

  .mailform .form_wrap table {
    border-bottom: solid 1px var(--line-color);
  }

  .mailform .form_wrap th,
  .mailform .form_wrap td {
    display: block;
    width: 100% !important;
    padding: 13px 20px;
  }

  .mailform .form_wrap th {
    background-color: var(--bg-color);
    text-align: center;
  }

  .mailform .form_wrap td {
    border: none;
  }

  .mailform .form_wrap .addressbox_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
  }

  .mailform .form_wrap .address_num input,
  .mailform .form_wrap .address_num select,
  .mailform .form_wrap .address_place input,
  .mailform .form_wrap .address_place select {
    width: 100%;
  }

  .mailform .form_wrap .address_place {
    width: 100%;
  }

  .mailform .form_wrap .address_select {
    width: 100%;
  }

  .mailform .privacy {
    margin: 30px 10px 0;
  }

  .mailform .privacy__wrap {
    padding: 10px 20px 10px 15px;
  }

  .mailform .privacy .ttl {
    margin-bottom: 5px;
    font-size: 1.3rem;
  }

  .mailform .privacy .sub-ttl {
    margin: 15px 0 5px;
    font-size: 1.2rem;
  }

  .mailform .privacy .txt {
    font-size: 1.2rem;
  }

  .mailform .btn-area {
    margin-top: 20px;
  }

  .calling .inner {
    display: block;
  }

  .calling a {
    margin: 30px auto 0;
  }

  .template__title {
    font-size: 2rem;
  }

  .template .c-btn01 {
    margin: 30px auto 0;
  }

  .col2 {
    display: block;
    padding-top: 40px;
  }

  .col2 + .col2 {
    margin-top: 50px;
  }

  .col2__title {
    margin-bottom: 10px;
  }

  .col2__img {
    margin-top: 10px;
    padding-top: 45px;
  }

  .col2__img::before {
    top: 0;
  }

  .works table {
    width: 700px;
  }

  .access__map {
    height: 335px;
  }

  .access__caution {
    font-size: 1.2rem;
  }

  .recruit__lead {
    padding: 80px 0 0;
  }

  .recruit__lead .inner {
    display: block;
  }

  .recruit__lead_title .inn {
    padding: 7px 12px 12px;
  }

  .recruit__lead_txt {
    font-size: 1.8rem;
  }

  .recruit__lead_img {
    z-index: -1;
    position: relative;
    width: 100vw;
    margin: -52px calc(50% - 50vw) 0;
  }

  .recruit__about_wrap {
    display: block;
    padding: 30px 20px;
  }

  .recruit__about_img {
    margin-top: 20px;
  }

  .top .mv {
    height: 610px;
    padding: 60px 0 0;
  }

  .top .mv .inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .top .mv__copy {
    gap: 10px;
    font-size: 4.5rem;
  }

  .top .mv__copy span {
    padding: 5px 10px 10px;
  }

  .top .mv__txt {
    margin-top: 16px;
    font-size: 1.8rem;
  }

  .top .mv__img img {
    object-position: center;
  }

  .top .lead__txt {
    font-size: 2.4rem;
    letter-spacing: 0;
    text-align: left;
  }

  .top .company {
    padding: 50px 0 90px;
  }

  .top .company__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }

  .top .company__txt {
    width: 100%;
    padding-left: 0;
  }

  .top .company .c-btn01 {
    margin-top: 30px;
  }

  .top .business__head {
    margin-bottom: 30px;
  }

  .top .business__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .top .business__item_txt {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .top .business__item .en {
    display: block;
  }

  .top .business .c-btn01 {
    margin: 30px auto 0;
  }

  .top .recruit {
    padding: 0 0 10px;
  }

  .top .recruit__wrapper {
    display: block;
    margin-top: -80px;
    padding: 30px 20px;
  }

  .top .recruit .c-btn01 {
    margin: 30px auto 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover .c-btn01__txt .inn {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .c-btn01:hover .c-btn01__arrow {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }

  .c-underMv .breadcrumbs a:hover {
    text-decoration: underline;
  }

  .c-table01 a:hover {
    text-decoration: none;
  }

  .c-contact .c-btn01:hover {
    background-color: var(--point-color);
    color: #fff;
  }

  .header__nav_item a:hover .inn {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  .header__contact:hover {
    background-color: var(--hover-color);
  }

  .header__contact:hover .inn {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  .footer__nav_item a:hover {
    opacity: 0.4;
  }

  .mailform .btn-area input:hover,
  .mailform .btn-area a:hover,
  .mailform .btn-area button:hover {
    opacity: 0.8;
  }
}
/*# sourceMappingURL=style.css.map */
