@charset "UTF-8";
/*
 * Modern CSS Reset
 * Based on Josh Comeau's Custom CSS Reset (2024-2025)
 * https://www.joshwcomeau.com/css/custom-css-reset/
 */
/* 1. Use a more-intuitive box-sizing model. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Add accessible line-height and improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 7. Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* 8. Modern text wrapping (progressive enhancement) */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* 9. Remove list styles */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* 10. Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* 11. Better table defaults */
table {
  width: 100%;
  border-collapse: collapse;
}

/* 12. Form element improvements */
button {
  cursor: pointer;
  background: transparent;
  border: none;
}

button:disabled {
  cursor: not-allowed;
}

/* 13. Remove default fieldset styles */
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

/* 14. Improve textarea defaults */
textarea {
  resize: vertical;
}

/* 15. Better focus styles for accessibility */
:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* --------------------------------------------------
 ベース
-------------------------------------------------- */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #353535;
}

a {
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  text-decoration: none;
}

/* --------------------------------------------------
 ヘッダー
-------------------------------------------------- */
.header {
  position: relative;
  background-color: #efefef;
}
.header__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .header__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .header__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.header__inner {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (width <= 1024px) {
  .header__inner {
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (width <= 768px) {
  .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (width <= 480px) {
  .header__inner {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
.header__logo {
  margin: 0;
}
.header__logo-link {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}
@media (width <= 1024px) {
  .header__logo-link {
    font-size: 2rem;
  }
}
@media (width <= 768px) {
  .header__logo-link {
    font-size: 1.625rem;
  }
}
.header__logo-link:hover {
  color: #007bff;
}
.header__menus {
  display: flex;
  flex-flow: row nowrap;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media (width <= 1024px) {
  .header__menus {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 100vh;
    padding: 60px 20px 20px;
    overflow-y: auto;
    background-color: #fff;
    transition: right 0.3s ease;
  }
  .header__menus.is-open {
    right: 0;
  }
}
@media (width <= 768px) {
  .header__menus {
    padding: 50px 20px 20px;
  }
}
@media (width <= 480px) {
  .header__menus {
    padding: 50px 4vw 4vw;
  }
}
.header__navList {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.header__menus-left {
  padding: 0 20px;
}
@media (width <= 1024px) {
  .header__menus-left {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}
.header__menus-left .header__navList {
  gap: 30px;
}
@media (width <= 1024px) {
  .header__menus-left .header__navList {
    flex-direction: column;
    gap: 0;
  }
}
.header__menus-left .header__navList-item {
  font-size: 1.125rem;
  font-weight: 700;
}
@media (width <= 1024px) {
  .header__menus-left .header__navList-item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
  .header__menus-left .header__navList-item:last-child {
    border-bottom: none;
  }
}
.header__menus-left .header__navList-link {
  position: relative;
  display: block;
  padding-right: 0.8em;
  text-decoration: none;
}
@media (width <= 1024px) {
  .header__menus-left .header__navList-link {
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}
.header__menus-left .header__navList-link::after {
  position: absolute;
  top: 50%;
  right: 0.1em;
  width: 0.6em;
  height: 0.6em;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transform: translateY(-35%) rotate(45deg);
}
@media (width <= 1024px) {
  .header__menus-left .header__navList-link::after {
    display: none;
  }
}
.header__menus-left .header__navList-link:hover, .header__menus-left .header__navList-link:focus {
  text-decoration: underline;
}
@media (width <= 1024px) {
  .header__menus-right {
    width: 100%;
  }
}
.header__menus-right .header__navList {
  gap: 20px;
}
@media (width <= 1024px) {
  .header__menus-right .header__navList {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
@media (width <= 480px) {
  .header__menus-right .header__navList {
    gap: 4vw;
  }
}
@media (width <= 1024px) {
  .header__menus-right .header__navList-item {
    white-space: nowrap;
  }
}
.header__hamburger {
  z-index: 1001;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
@media (width <= 1024px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background-color: #333;
  transition: all 0.3s ease;
}
.header__hamburger-line:first-child {
  margin-top: 0;
}
.header__hamburger-line:last-child {
  margin-bottom: 0;
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:first-child {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:last-child {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header__menus-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}
.header__menus-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------------------------
 メインコンテンツ
-------------------------------------------------- */
main {
  min-height: calc(100vh - 120px);
  overflow: hidden;
}

.mainContent {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .mainContent {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .mainContent {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .mainContent {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.mainContent {
  margin-bottom: 100px;
}
.mainContent__section {
  margin-bottom: 50px;
}

/* --------------------------------------------------
 フッター
-------------------------------------------------- */
.footer {
  background-color: #353535;
}
.footer__inner {
  max-width: 1166px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .footer__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .footer__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .footer__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.footer__inner {
  padding-top: 65px;
  padding-bottom: 125px;
}
@media (width <= 768px) {
  .footer__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (width <= 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 768px) {
  .footer__section:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.footer__siteName-link {
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}
@media (width <= 1024px) {
  .footer__siteName-link {
    font-size: 2rem;
  }
}
@media (width <= 768px) {
  .footer__siteName-link {
    font-size: 1.625rem;
  }
}
.footer__snsList {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (width <= 768px) {
  .footer__snsList {
    justify-content: center;
  }
}
.footer__snsList-link {
  display: block;
}
@media (width <= 768px) {
  .footer__snsList-link img {
    width: 30px;
    height: auto;
  }
}
.footer__navList {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  gap: 20px 100px;
  justify-content: end;
}
@media (width <= 768px) {
  .footer__navList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: start;
  }
}
.footer__navList-link {
  font-size: 1.125rem;
  color: #fff;
}
@media (width <= 768px) {
  .footer__navList-link {
    font-size: 1rem;
  }
}
@media (width <= 768px) {
  .footer__bottom {
    text-align: center;
  }
}
.footer__copyright {
  font-size: 1rem;
  color: #fff;
}
@media (width <= 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------
 見出し
-------------------------------------------------- */
.pageTitle {
  margin-bottom: 25px;
  background-color: #f8ea8d;
  border-top: 1px solid #fff;
}
@media (width <= 768px) {
  .pageTitle {
    margin-bottom: 15px;
  }
}
.pageTitle__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .pageTitle__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .pageTitle__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .pageTitle__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.pageTitle__inner {
  padding-top: 70px;
  padding-bottom: 70px;
  border-bottom: 5px solid #353535;
}
@media (width <= 1024px) {
  .pageTitle__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (width <= 768px) {
  .pageTitle__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.pageTitle__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (width <= 1024px) {
  .pageTitle__title {
    font-size: 2.25rem;
  }
}
@media (width <= 768px) {
  .pageTitle__title {
    font-size: 1.5rem;
  }
}

.head2-01, .entryContent h2:not([class]), .contactInfo__title {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (width <= 768px) {
  .head2-01, .entryContent h2:not([class]), .contactInfo__title {
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 1.375rem;
  }
}
.head2-01::before, .entryContent h2:not([class])::before, .contactInfo__title::before, .head2-01::after, .entryContent h2:not([class])::after, .contactInfo__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 5px;
  content: "";
  background-color: #353535;
  transform: translateX(-50%);
}
@media (width <= 768px) {
  .head2-01::before, .entryContent h2:not([class])::before, .contactInfo__title::before, .head2-01::after, .entryContent h2:not([class])::after, .contactInfo__title::after {
    height: 3px;
  }
}
.head2-01::after, .entryContent h2:not([class])::after, .contactInfo__title::after {
  background-color: #f8ea8d;
  transform: translateX(-50%) translateY(-5px);
}
@media (width <= 768px) {
  .head2-01::after, .entryContent h2:not([class])::after, .contactInfo__title::after {
    transform: translateX(-50%) translateY(-3px);
  }
}

.head3-01, .entryContent h3:not([class]) {
  position: relative;
  padding: 5px 20px;
  margin-bottom: 40px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  border-left: 10px solid #353535;
}
.head3-01::before, .entryContent h3:not([class])::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #f8ea8d;
}
@media (width <= 768px) {
  .head3-01, .entryContent h3:not([class]) {
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    border-left-width: 5px;
  }
}

/* --------------------------------------------------
 テキスト
-------------------------------------------------- */
.iconList01, .entryContent ul:not([class]) {
  margin: 30px 0;
}
.iconList01--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.iconList01 li, .entryContent ul:not([class]) li, .iconList01__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 2.2;
}
@media (width <= 768px) {
  .iconList01 li, .entryContent ul:not([class]) li, .iconList01__item {
    font-size: 1rem;
  }
}
.iconList01 li::before, .entryContent ul:not([class]) li::before, .iconList01__item::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: linear-gradient(45deg, #353535 0%, #353535 50%, #f8ea8d 50%, #f8ea8d 100%);
}

.noticeList01 {
  margin: 30px 0;
}
.noticeList01 > li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 2.2;
}
.noticeList01 > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: "※";
}

.numberList01, .entryContent ol:not([class]) {
  margin: 30px 0;
  counter-reset: list-counter;
}
.numberList01 > li, .entryContent ol:not([class]) > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.125rem;
  line-height: 2.2;
  counter-increment: list-counter;
}
@media (width <= 768px) {
  .numberList01 > li, .entryContent ol:not([class]) > li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
}
.numberList01 > li::before, .entryContent ol:not([class]) > li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  color: #353535;
  content: counter(list-counter) ".";
}

.entryDate {
  display: block;
  margin-bottom: 50px;
  font-size: 1.125rem;
  color: #353535;
}
@media (width <= 768px) {
  .entryDate {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

/* --------------------------------------------------
 テーブル
-------------------------------------------------- */
.table01 {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}
.table01 caption {
  padding: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: transparent;
}
.table01 th,
.table01 td {
  padding: 20px;
  font-size: 1.125rem;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
  border: 1px solid #353535;
}
@media (width <= 768px) {
  .table01 th,
  .table01 td {
    padding: 15px;
    font-size: 1rem;
  }
}
.table01 th {
  width: 25%;
  font-weight: 700;
  background-color: #f8ea8d;
}
@media (width <= 768px) {
  .table01 th {
    width: 30%;
  }
}
.table01 td {
  background-color: #fff;
}

.table02 {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}
.table02 caption {
  padding: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: transparent;
}
.table02 th,
.table02 td {
  padding: 20px;
  font-size: 1.125rem;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
  border: 1px solid #353535;
}
@media (width <= 768px) {
  .table02 th,
  .table02 td {
    padding: 15px;
    font-size: 1rem;
  }
}
.table02 thead th {
  font-weight: 700;
  text-align: center;
  background-color: #f8ea8d;
}
.table02 tbody td {
  background-color: #fff;
}

/* --------------------------------------------------
 画像
-------------------------------------------------- */
.imageGrid {
  display: grid;
  margin: 30px 0;
}
.imageGrid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (width <= 768px) {
  .imageGrid--3col {
    gap: 30px;
  }
}
@media (width <= 1024px) {
  .imageGrid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .imageGrid--3col .imageGrid__item:last-child {
    grid-column: 1/-1;
  }
}
@media (width <= 768px) {
  .imageGrid--3col {
    grid-template-columns: 1fr;
  }
  .imageGrid--3col .imageGrid__item:last-child {
    grid-column: auto;
  }
}
.imageGrid--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (width <= 768px) {
  .imageGrid--2col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.imageGrid__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------------------------------------------------
 フォーム
-------------------------------------------------- */
.contactForm {
  max-width: 1300px;
  margin: 0 auto 100px;
}
@media (width <= 768px) {
  .contactForm {
    margin-bottom: 50px;
  }
}
.contactForm__description {
  padding: 0 50px;
  margin-bottom: 50px;
  font-size: 1.25rem;
  line-height: 2.2;
}
@media (width <= 768px) {
  .contactForm__description {
    padding: 0 10px;
    margin-bottom: 20px;
    font-size: 1rem;
  }
}
@media (width <= 480px) {
  .contactForm__description {
    padding: 0 5vw;
  }
}
.contactForm__content {
  background-color: #efefef;
}
.contactForm__errors {
  margin-bottom: 50px;
}
@media (width <= 768px) {
  .contactForm__errors {
    margin-bottom: 20px;
  }
}
.contactForm__errorTitle {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .contactForm__errorTitle {
    margin-bottom: 20px;
    font-size: 1.25rem;
  }
}
.contactForm__errorsList {
  font-size: 1.25rem;
  line-height: 2.2;
}
@media (width <= 768px) {
  .contactForm__errorsList {
    font-size: 1rem;
  }
}
.contactForm__form {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .contactForm__form {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .contactForm__form {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .contactForm__form {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.contactForm__form {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (width <= 768px) {
  .contactForm__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.formField {
  margin-bottom: 30px;
}
.formField__label {
  display: block;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
@media (width <= 768px) {
  .formField__label {
    font-size: 1rem;
  }
}
.formField__required {
  padding: 1px 6px 3px;
  margin-left: 5px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f8ea8d;
  background-color: #353535;
}
@media (width <= 768px) {
  .formField__required {
    font-size: 0.8125rem;
  }
}
.formField__hint {
  margin-top: 10px;
  font-size: 1rem;
}
.formField__error {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #b00505;
}
@media (width <= 768px) {
  .formField__error {
    font-size: 1rem;
  }
}
.formField__input, .formField__textarea {
  width: 100%;
  padding: 20px 15px;
  font-size: 1.125rem;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 7px;
}
@media (width <= 768px) {
  .formField__input, .formField__textarea {
    padding: 10px;
    font-size: 1rem;
  }
}
.formField__textarea {
  min-height: 120px;
  line-height: 1.5;
  resize: vertical;
}
.formField__fileWrapper {
  position: relative;
  display: inline-block;
}
.formField__fileButton {
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  background-color: #f8ea8d;
  border: 1px solid #707070;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}
@media (width <= 768px) {
  .formField__fileButton {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
.formField__fileButton:hover {
  background-color: rgb(245.0495867769, 225.1487603306, 92.9504132231);
}
.formField__fileInput {
  position: absolute;
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
}

.privacyPolicy__content {
  margin-bottom: 20px;
}
.privacyPolicy__checkboxLabel {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 1.125rem;
  cursor: pointer;
}
@media (width <= 768px) {
  .privacyPolicy__checkboxLabel {
    font-size: 1rem;
  }
}
.privacyPolicy__checkbox {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  cursor: pointer;
}
@media (width <= 768px) {
  .privacyPolicy__checkbox {
    width: 20px;
    height: 20px;
  }
}
.privacyPolicy__descriptionTitle {
  margin-bottom: 10px;
  font-size: 1.125rem;
}
@media (width <= 768px) {
  .privacyPolicy__descriptionTitle {
    font-size: 1rem;
  }
}
.privacyPolicy__descriptionText {
  font-size: 0.875rem;
}

.formSubmit {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
@media (width <= 768px) {
  .formSubmit {
    margin-top: 20px;
  }
}
.formSubmit__button {
  min-width: 270px;
}
.formSubmit__button.linkButton--large {
  padding-right: 3rem;
}

.contactInfo {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .contactInfo {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .contactInfo {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .contactInfo {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.contactInfo {
  margin-bottom: 100px;
}
@media (width <= 768px) {
  .contactInfo {
    margin-bottom: 50px;
  }
}
.contactInfo__listTitle {
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .contactInfo__listTitle {
    font-size: 1rem;
  }
}
.contactInfo__listContent {
  margin-bottom: 20px;
  font-size: 1.25rem;
  line-height: 2.2;
}
@media (width <= 768px) {
  .contactInfo__listContent {
    font-size: 1rem;
  }
}

/* --------------------------------------------------
 コンポーネント
-------------------------------------------------- */
.entryContent p:not([class]) {
  margin-bottom: 30px;
  font-size: 1.125rem;
  line-height: 2.2;
}
@media (width <= 768px) {
  .entryContent p:not([class]) {
    margin-bottom: 15px;
    font-size: 1rem;
  }
}
.entryContent p:not([class]):last-child {
  margin-bottom: 0;
}
.entryContent strong {
  font-weight: 700;
  color: #000;
}
.entryContent a:not([class]) {
  color: #0058a9;
  text-decoration: underline;
}
.entryContent a:not([class]):hover, .entryContent a:not([class]):focus {
  text-decoration: none;
}
.entryContent ol.lowerAlpha {
  counter-reset: alpha-counter;
}
.entryContent ol.lowerAlpha > li {
  display: block;
}
.entryContent ol.lowerAlpha > li::before {
  content: "(" counter(alpha-counter, lower-alpha) ") ";
  counter-increment: alpha-counter;
}
.entryContent ol.bracketedNumber {
  counter-reset: bracket-counter;
}
.entryContent ol.bracketedNumber > li {
  display: block;
}
.entryContent ol.bracketedNumber > li::before {
  content: "(" counter(bracket-counter) ") ";
  counter-increment: bracket-counter;
}
.entryContent img {
  max-width: 100%;
  height: auto;
}

.breadcrumbs {
  margin-bottom: 70px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (width <= 768px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .breadcrumbs__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .breadcrumbs__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .breadcrumbs__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.breadcrumbs__listItem {
  display: flex;
  align-items: center;
}
.breadcrumbs__listItem:not(:last-child)::after {
  margin-left: 8px;
  font-size: 0.9375rem;
  content: ">";
}
.breadcrumbs__listLink {
  font-size: 0.9375rem;
  text-decoration: none;
}
@media (width <= 768px) {
  .breadcrumbs__listLink {
    font-size: 0.875rem;
  }
}
.breadcrumbs__listLink[aria-current=page] {
  font-weight: 700;
  color: #000;
}
.breadcrumbs__listLink:not([aria-current]):hover {
  text-decoration: underline;
}

.contact::before, .contact::after {
  position: absolute;
  left: -5vw;
  z-index: -1;
  width: 110vw;
  height: 100px;
  content: "";
  transform: rotate(-3deg);
}
@media (width <= 768px) {
  .contact::before, .contact::after {
    height: 80px;
    transform: rotate(-4deg);
  }
}
@media (width >= 2000px) {
  .contact::before, .contact::after {
    transform: rotate(-2deg);
  }
}
@media (width >= 2800px) {
  .contact::before, .contact::after {
    transform: rotate(-1deg);
  }
}
.contact::before {
  top: -50px;
}
.contact::after {
  bottom: -50px;
}
.contact {
  position: relative;
  padding: 20px 0 100px;
  margin: 100px 0 0;
  background-color: #f8ea8d;
}
@media (width <= 768px) {
  .contact {
    padding: 0 0 40px;
  }
}
.contact::before {
  z-index: -1;
  background-color: #f8ea8d;
}
.contact::after {
  display: none;
}
.contact__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .contact__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .contact__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .contact__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.contact__title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (width <= 768px) {
  .contact__title {
    margin-bottom: 25px;
    font-size: 1.625rem;
  }
}
.contact__message {
  margin-bottom: 55px;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: center;
}
@media (width <= 768px) {
  .contact__message {
    margin-bottom: 40px;
    font-size: 1.125rem;
  }
}
.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
  justify-content: center;
}
@media (width < 768px) {
  .contact__buttons {
    flex-direction: column;
    gap: 15px 20px;
    align-items: center;
  }
}

.linkButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 3.5rem 0.7rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #353535;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.linkButton::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.6em;
  height: 0.6em;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transform: translateY(-50%) rotate(45deg);
}
.linkButton--large {
  padding: 1rem 4.5rem 1rem 2.5rem;
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .linkButton--large {
    padding: 0.7rem 3.5rem 0.7rem 2rem;
    font-size: 1.25rem;
  }
}
.linkButton--large::after {
  right: 2rem;
  width: 0.7em;
  height: 0.7em;
}
@media (width <= 768px) {
  .linkButton--large::after {
    right: 1.5rem;
    width: 0.6em;
    height: 0.6em;
  }
}
.linkButton--black01 {
  color: #fff;
  background-color: #353535;
}
.linkButton--black01:hover, .linkButton--black01:focus {
  color: #353535;
  background-color: #fff;
}
.linkButton--black02 {
  color: #f8ea8d;
  background-color: #353535;
}
.linkButton--black02:hover, .linkButton--black02:focus {
  color: #353535;
  background-color: #fff;
}
.linkButton--white01 {
  color: #353535;
  background-color: #fff;
}
.linkButton--white01:hover, .linkButton--white01:focus {
  color: #fff;
  background-color: #353535;
}
.linkButton--yellow01 {
  color: #353535;
  background-color: #f8ea8d;
}
.linkButton--yellow01:hover, .linkButton--yellow01:focus {
  color: #f8ea8d;
  background-color: #353535;
}

/* --------------------------------------------------
 トップページ
-------------------------------------------------- */
.mainVisual {
  background: url("/assets/images/bg_mv_pc.svg") no-repeat center center/cover;
}
@media (width <= 768px) {
  .mainVisual {
    background: url("/assets/images/bg_mv_sp.svg") no-repeat center center/contain;
  }
}
@media (width <= 480px) {
  .mainVisual {
    background-position: center top 30%;
  }
}
.mainVisual__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .mainVisual__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .mainVisual__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .mainVisual__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.mainVisual__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (width <= 768px) {
  .mainVisual__inner {
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
@media (width <= 768px) {
  .mainVisual__content {
    order: 2;
  }
}
@media (width > 768px) and (width <= 1300px) {
  .mainVisual__image {
    width: 60%;
  }
}
@media (width <= 768px) {
  .mainVisual__image {
    order: 1;
  }
}
@media (width <= 1300px) {
  .mainVisual__image img {
    width: 100%;
    height: auto;
  }
}
.mainVisual__title {
  margin-bottom: 30px;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (width <= 1300px) {
  .mainVisual__title {
    font-size: 2.625rem;
  }
}
@media (width <= 1024px) {
  .mainVisual__title {
    font-size: 2.25rem;
  }
}
@media (width <= 768px) {
  .mainVisual__title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}
.mainVisual__lead {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
@media (width <= 1300px) {
  .mainVisual__lead {
    font-size: 1.25rem;
  }
}
@media (width <= 768px) {
  .mainVisual__lead {
    margin-bottom: 20px;
    font-size: 0.9375rem;
  }
}
.mainVisual__signup {
  text-align: center;
}

.serviceIntro::before, .serviceIntro::after {
  position: absolute;
  left: -5vw;
  z-index: -1;
  width: 110vw;
  height: 100px;
  content: "";
  transform: rotate(-3deg);
}
@media (width <= 768px) {
  .serviceIntro::before, .serviceIntro::after {
    height: 80px;
    transform: rotate(-4deg);
  }
}
@media (width >= 2000px) {
  .serviceIntro::before, .serviceIntro::after {
    transform: rotate(-2deg);
  }
}
@media (width >= 2800px) {
  .serviceIntro::before, .serviceIntro::after {
    transform: rotate(-1deg);
  }
}
.serviceIntro::before {
  top: -50px;
}
.serviceIntro::after {
  bottom: -50px;
}
.serviceIntro {
  position: relative;
  padding: 40px 0 50px;
  margin: 130px 0 180px;
  background-color: #f8ea8d;
}
@media (width <= 1024px) {
  .serviceIntro {
    padding: 20px 0 40px;
    margin: 130px 0 150px;
  }
}
@media (width <= 768px) {
  .serviceIntro {
    padding-top: 10px;
    margin-top: 100px;
  }
}
.serviceIntro::before {
  background-color: #f8ea8d;
}
.serviceIntro::after {
  display: none;
}
.serviceIntro__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .serviceIntro__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .serviceIntro__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .serviceIntro__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.serviceIntro__title {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 10;
  width: 800px;
  padding: 15px 60px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #f8ea8d;
  text-align: center;
  background-color: #353535;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) translateY(-100%);
}
@media (width <= 1024px) {
  .serviceIntro__title {
    width: calc(100% - 40px);
    padding: 15px 20px;
    font-size: 1.75rem;
  }
}
@media (width <= 768px) {
  .serviceIntro__title {
    width: calc(100% - 4vw);
    min-width: 300px;
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}
.serviceIntro__description {
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: center;
}
@media (width <= 1024px) {
  .serviceIntro__description {
    font-size: 1.25rem;
  }
}
@media (width <= 768px) {
  .serviceIntro__description {
    font-size: 1.125rem;
  }
}
.serviceIntro__movie {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0 auto;
}
@media (width <= 768px) {
  .serviceIntro__movie {
    max-width: 100%;
  }
}
.serviceIntro__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.serviceIntro__caution {
  margin-top: 20px;
  font-size: 1.125rem;
  line-height: 1.7;
  text-align: center;
}
@media (width <= 768px) {
  .serviceIntro__caution {
    font-size: 0.9375rem;
  }
}

.fourFeatures {
  position: relative;
  margin-bottom: 200px;
}
@media (width <= 1024px) {
  .fourFeatures {
    margin-bottom: 180px;
  }
}
@media (width <= 768px) {
  .fourFeatures {
    margin-bottom: 150px;
  }
}
.fourFeatures__title {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 10;
  width: 800px;
  padding: 15px 60px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #f8ea8d;
  text-align: center;
  background-color: #353535;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) translateY(-100%);
}
@media (width <= 1024px) {
  .fourFeatures__title {
    width: calc(100% - 40px);
    padding: 15px 20px;
    font-size: 1.75rem;
  }
}
@media (width <= 768px) {
  .fourFeatures__title {
    width: calc(100% - 4vw);
    min-width: 300px;
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}

.featureSection::before, .featureSection::after {
  position: absolute;
  left: -5vw;
  z-index: -1;
  width: 110vw;
  height: 100px;
  content: "";
  transform: rotate(-3deg);
}
@media (width <= 768px) {
  .featureSection::before, .featureSection::after {
    height: 80px;
    transform: rotate(-4deg);
  }
}
@media (width >= 2000px) {
  .featureSection::before, .featureSection::after {
    transform: rotate(-2deg);
  }
}
@media (width >= 2800px) {
  .featureSection::before, .featureSection::after {
    transform: rotate(-1deg);
  }
}
.featureSection::before {
  top: -50px;
}
.featureSection::after {
  bottom: -50px;
}
.featureSection {
  position: relative;
  padding: 50px 0;
  margin: 100px 0;
}
@media (width <= 1024px) {
  .featureSection {
    padding: 20px 0;
    margin: 80px 0;
  }
}
.featureSection--gray {
  background-color: #efefef;
}
.featureSection--gray::before, .featureSection--gray::after {
  z-index: 1;
  background-color: #efefef;
}
.featureSection--white {
  background-color: #fff;
}
.featureSection--04::after {
  display: none;
}
.featureSection__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .featureSection__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .featureSection__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .featureSection__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.featureSection__inner {
  position: relative;
  z-index: 2;
}

.featureCard {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (width <= 768px) {
  .featureCard {
    flex-flow: column wrap;
    gap: 20px;
  }
}
.featureCard__content, .featureCard__image {
  width: 50%;
  padding: 0 25px;
}
@media (width <= 768px) {
  .featureCard__content, .featureCard__image {
    width: 100%;
    padding: 0;
  }
}
.featureCard__image {
  text-align: center;
}
.featureCard__image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.featureCard__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.featureCard__number {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 10px;
  margin-right: 25px;
  font-size: 2.0625rem;
  font-weight: 700;
  color: #f8ea8d;
  background-color: #353535;
}
@media (width <= 1024px) {
  .featureCard__number {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    font-size: 1.75rem;
  }
}
@media (width <= 768px) {
  .featureCard__number {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    font-size: 1.5rem;
  }
}
.featureCard__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (width <= 1024px) {
  .featureCard__title {
    font-size: 1.75rem;
  }
}
@media (width <= 768px) {
  .featureCard__title {
    font-size: 1.375rem;
  }
}
.featureCard__text {
  flex: 1;
}
.featureCard__text p {
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 2;
}
.featureCard__text p:last-child {
  margin-bottom: 0;
}
.featureCard__text .featureCard__note {
  font-size: 0.8125rem;
}

.featureSection--02 .featureCard,
.featureSection--04 .featureCard {
  flex-direction: row-reverse;
}

.news::before, .news::after {
  position: absolute;
  left: -5vw;
  z-index: -1;
  width: 110vw;
  height: 100px;
  content: "";
  transform: rotate(-3deg);
}
@media (width <= 768px) {
  .news::before, .news::after {
    height: 80px;
    transform: rotate(-4deg);
  }
}
@media (width >= 2000px) {
  .news::before, .news::after {
    transform: rotate(-2deg);
  }
}
@media (width >= 2800px) {
  .news::before, .news::after {
    transform: rotate(-1deg);
  }
}
.news::before {
  top: -50px;
}
.news::after {
  bottom: -50px;
}
.news {
  position: relative;
  background-color: #efefef;
}
.news::before, .news::after {
  z-index: 1;
  background-color: #efefef;
}
.news--list {
  max-width: 1300px;
  padding-top: 40px;
  margin: 0 auto;
}
@media (width <= 1024px) {
  .news--list {
    padding-top: 20px;
  }
}
@media (width <= 768px) {
  .news--list {
    padding-bottom: 10px;
  }
}
.news--list::before, .news--list::after {
  display: none;
}
.news__title {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 10;
  width: 800px;
  padding: 15px 60px;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #f8ea8d;
  text-align: center;
  background-color: #353535;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) translateY(-100%);
}
@media (width <= 1024px) {
  .news__title {
    width: calc(100% - 40px);
    padding: 15px 20px;
    font-size: 1.75rem;
  }
}
@media (width <= 768px) {
  .news__title {
    width: calc(100% - 4vw);
    min-width: 300px;
    padding: 10px 20px;
    font-size: 1.5rem;
  }
}
.news__inner {
  max-width: 1166px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .news__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .news__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .news__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.news__inner {
  position: relative;
  z-index: 2;
  padding: 30px 0 10px;
  margin: 0 auto;
}
@media (width <= 1024px) {
  .news__inner {
    padding-top: 20px;
  }
}
@media (width <= 768px) {
  .news__inner {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.news__content {
  padding: 20px 100px 50px;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 16px;
}
@media (width <= 1024px) {
  .news__content {
    padding: 0 20px 20px;
    margin-bottom: 40px;
  }
}
@media (width <= 768px) {
  .news__content {
    margin-bottom: 30px;
  }
}
.news__list-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 25px 60px;
  border-bottom: 2px dotted #353535;
}
@media (width <= 768px) {
  .news__list-item {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}
.news__list-date {
  padding-right: 20px;
}
@media (width <= 768px) {
  .news__list-date {
    width: 100%;
    padding-right: 3px;
    margin-bottom: 5px;
  }
}
.news__list-link {
  font-size: 1.125rem;
  font-weight: 700;
  color: #353535;
}
@media (width <= 768px) {
  .news__list-link {
    font-size: 1rem;
  }
}
.news__more {
  text-align: center;
}

.errorPage {
  display: flex;
  align-items: center;
  min-height: 60vh;
}
.errorPage__inner {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 1300px) {
  .errorPage__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (width <= 768px) {
  .errorPage__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (width <= 480px) {
  .errorPage__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.errorPage__content {
  text-align: center;
}
.errorPage__title {
  margin-bottom: 20px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}
@media (width <= 768px) {
  .errorPage__title {
    font-size: 2.5rem;
  }
}
.errorPage__subtitle {
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .errorPage__subtitle {
    font-size: 1.25rem;
  }
}
.errorPage__message {
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.6;
}
.errorPage__actions {
  display: flex;
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */
