@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #251e1c;
  background-color: #fff;
  font-size: 1rem;
}

@media (max-width: 743px) {
  html {
    font-size: 3.7333333333vw;
  }
}
/* reset */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

strong {
  font-weight: 600;
}

em {
  font-style: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

/* =========================================
  Page Header（共通）
========================================= */
.page-header {
  position: relative;
  padding-block: 4.5rem;
  margin-bottom: 3rem;
}
.page-header::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.page-header::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  bottom: 0;
  height: 2px;
  width: min(40vw, 26rem);
  background: #019201;
}

/* =========================================
  Header
========================================= */
.site-header {
  position: relative;
  background: #fff;
  padding: 1rem 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.site-title {
  margin: 0;
  position: relative;
  z-index: 120;
}
.site-title a {
  display: block;
}
.site-title img {
  height: 2.3rem;
  width: auto;
}

.global-nav {
  padding-top: 0.5rem;
  /* ==========================
     Contact ボタン
  ========================== */
}
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.global-nav li {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  /* 縦線 */
  /* 最後は線なし */
}
.global-nav li::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9rem;
  background: #ccc;
}
.global-nav li:last-child::after {
  display: none;
}
.global-nav .nav-contact a {
  padding: 0.3rem 2rem;
  border: 1px solid #2d201c;
  background: #fff;
  border-radius: 100rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.global-nav .nav-contact a:hover {
  background: #f5f5f5;
  opacity: 1;
}

/* ハンバーガー */
.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 120;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 0.357rem;
  width: 1.786rem;
  height: 2px;
  background: #2d201c;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.menu-toggle span:nth-child(1) {
  top: 0.643rem;
}
.menu-toggle span:nth-child(2) {
  top: 1.143rem;
}
.menu-toggle span:nth-child(3) {
  top: 1.643rem;
}

/* ==========================
   SP
========================== */
@media (max-width: 743px) {
  .site-header {
    padding: 1rem 0;
  }
  .site-header .container {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .site-title img {
    height: 2.143rem;
  }
  .menu-toggle {
    display: block;
  }
  .global-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 110;
  }
  .global-nav ul {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 5rem 2rem 2rem;
    list-style: none;
  }
  .global-nav li {
    font-size: 1.143rem;
    line-height: 1.5;
  }
  .global-nav li::after {
    content: "";
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0.9rem;
    background: #ccc;
  }
  .global-nav a {
    color: #2d201c;
  }
  .site-header.is-open .global-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header.is-open .menu-toggle span:nth-child(1) {
    top: 1.143rem;
    transform: rotate(45deg);
  }
  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .menu-toggle span:nth-child(3) {
    top: 1.143rem;
    transform: rotate(-45deg);
  }
}
.site-footer {
  padding: 3rem 0;
  background-color: #000;
  color: #fff;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  opacity: 0.7;
}
.site-footer .footer-logo img {
  max-width: 20rem;
  height: auto;
}
.site-footer .footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-service {
  flex: 3;
}
.site-footer .footer-service > a {
  display: block;
  font-weight: 700;
  line-height: 1.6;
}
.site-footer .footer-service .footer-nav__sub {
  margin-top: 0.5rem;
}
.site-footer .footer-service .footer-nav__sub li {
  margin-top: 0.3rem;
}
.site-footer .footer-service .footer-nav__sub li a {
  display: block;
  line-height: 1.6;
  opacity: 0.8;
}
.site-footer .footer-service .footer-nav__sub li:hover {
  opacity: 0.7;
}
.site-footer .footer-menu {
  flex: 2;
}
.site-footer .footer-menu li + li {
  margin-top: 0.5rem;
}
.site-footer .footer-menu a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-footer .footer-copyright {
  margin-top: 2rem;
  text-align: right;
  font-size: 0.8rem;
  opacity: 0.7;
}

.go-top {
  position: fixed;
  right: 1.5rem;
  bottom: 6.875rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.625rem);
  transition: 0.3s;
  z-index: 1000;
  border-radius: 0.625rem;
}
.go-top::before {
  margin-top: 0.625rem;
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(-45deg);
}
.go-top:hover {
  background: #d6c400;
}
.go-top:hover::before {
  border-color: #fff;
}

@media (max-width: 743px) {
  .site-footer {
    padding: 2.857rem 0 0.714rem;
  }
  .site-footer .footer-logo img {
    width: 20rem;
    max-width: 100%;
  }
  .site-footer .footer-nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2.286rem;
  }
  .site-footer .footer-service,
  .site-footer .footer-menu {
    flex: none;
    width: 100%;
  }
  .site-footer .footer-service > a {
    font-size: 1.286rem;
    line-height: 1.6;
  }
  .site-footer .footer-service .footer-nav__sub {
    margin-top: 0.857rem;
  }
  .site-footer .footer-service .footer-nav__sub li {
    margin-top: 0.571rem;
  }
  .site-footer .footer-service .footer-nav__sub a {
    font-size: 1rem;
    line-height: 1.7;
  }
  .site-footer .footer-menu li + li {
    margin-top: 0.714rem;
  }
  .site-footer .footer-menu a {
    font-size: 1.071rem;
    line-height: 1.6;
  }
  .site-footer .footer-copyright {
    margin-top: 1.714rem;
    text-align: center;
    font-size: 0.714rem;
    line-height: 1.6;
  }
  .go-top {
    right: 1.786rem;
    bottom: 3.571rem;
    width: 3.571rem;
    height: 3.571rem;
    border-radius: 0.714rem;
  }
  .go-top::before {
    margin-top: 0.714rem;
    width: 1.286rem;
    height: 1.286rem;
  }
}
/* =========================================
  Service Page
========================================= */
.page-service {
  color: #2d201c;
  line-height: 1.8;
}
.page-service img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.page-service .section-title {
  margin: 0 0 1rem;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.page-service .section-lead {
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 0.95rem;
}

.service-heading {
  text-align: center;
}
.service-heading__en {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.service-heading__en--yellow {
  color: #f1e33f;
}
.service-heading__en--purple {
  color: #7a5aa8;
}
.service-heading__ja {
  margin: 0.8rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

/* =========================================
  Hero
========================================= */
.service-hero {
  background: #f1e33f;
  padding: 2rem 0 5rem;
}
.service-hero__box {
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1.2rem;
}
.service-hero__title {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.service-hero__text {
  font-size: 1rem;
}
.service-hero__text p + p {
  margin-top: 1rem;
}
.service-hero__image {
  text-align: right;
}
.service-hero__image img {
  max-width: 240px;
}

@media (max-width: 743px) {
  .service-hero__text {
    margin-bottom: 1rem;
  }
}
/* =========================================
  Work Flow
========================================= */
.service-flow {
  padding: 5rem 0;
  background: #f8f8f2;
}
.service-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-flow__item {
  position: relative;
  padding-top: 3.8rem;
}
.service-flow__num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #e5d62a;
}
.service-flow__title {
  position: relative;
  width: calc(100% - 1.5rem);
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  background: #e5d62a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.service-flow__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: 0;
  height: 0;
  border-top: 1.8rem solid transparent;
  border-bottom: 1.8rem solid transparent;
  border-left: 1.5rem solid #e5d62a;
}
.service-flow__text {
  margin: 0;
}

@media (max-width: 991px) {
  .service-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 743px) {
  .service-flow__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* =========================================
  Merit
========================================= */
.service-merit {
  padding: 5rem 0;
  text-align: center;
}
.service-merit__image {
  display: block;
  max-width: 13.75rem !important;
  margin: 0 auto 2rem;
}
.service-merit__list {
  max-width: 47.5rem;
  margin: 2.5rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  counter-reset: merit-num;
}
.service-merit__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.2rem 0;
  margin: 1.2rem 0;
  border: 1px solid #c9c2bb;
  border-radius: 0.625rem;
  counter-increment: merit-num;
}
.service-merit__title {
  font-size: 2rem;
}
.service-merit__subtitle {
  position: relative;
  margin: 0;
  padding-left: 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7a5aa8;
}
.service-merit__subtitle::before {
  content: counter(merit-num);
  position: absolute;
  top: 0.15rem;
  left: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #7a5aa8;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.35rem;
  text-align: center;
}
.service-merit__text {
  margin: 0;
}

@media (max-width: 743px) {
  .service-merit__title {
    font-size: 1.5rem;
  }
  .service-merit__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .service-merit__text {
    padding-left: 1rem;
  }
}
/* =========================================
  PA
========================================= */
.service-pa {
  padding: 5rem 0;
  background: #f8f8f2;
}
.service-pa__image {
  display: block;
  max-width: 9.375rem !important;
  margin: 0 auto 1rem;
}
.service-pa__lead {
  margin: 2.5rem auto 0;
}
.service-pa__lead p + p {
  margin-top: 1rem;
}
.service-pa__cards {
  margin-top: 3rem;
}

.service-card {
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
}
.service-card + .service-card {
  margin-top: 1.5rem;
}
.service-card__title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
.service-card__text {
  margin: 0;
  font-size: 1rem;
}
.service-card__image {
  text-align: center;
}
.service-card__image img {
  max-width: 13.75rem;
}

@media (max-width: 743px) {
  .service-card__text {
    margin-bottom: 1rem;
  }
}
/* =========================================
  FA
========================================= */
.service-fa {
  padding: 5rem 0;
  margin-bottom: 10rem;
}
.service-fa__image {
  display: block;
  max-width: 100%;
  margin: 0 auto 1rem;
  max-width: 9.375rem !important;
}
.service-fa__lead {
  max-width: 61.25rem;
  margin: 3rem auto 0;
  font-size: 1rem;
}
.service-fa__chart {
  max-width: 51.25rem;
  margin: 3rem auto 0;
  text-align: center;
}
.service-fa__chart img {
  margin-top: 1rem;
}
.service-fa__body {
  margin-top: 3rem;
}
.service-fa__title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
.service-fa__source {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.8;
}
.service-fa__text {
  font-size: 1rem;
}
.service-fa__text p + p {
  margin-top: 1rem;
}
.service-fa__subimage {
  text-align: right;
}
.service-fa__subimage img {
  max-width: 100%;
}

@media (max-width: 743px) {
  .service-fa__text {
    margin-bottom: 1rem;
  }
}
/* =========================================
  Company Page
========================================= */
.page-company {
  color: #2d201c;
  line-height: 1.8;
}
.page-company .section-title {
  margin: 4rem 0 5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6rem;
}
.page-company .section-title span {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.page-company .section-title--left {
  text-align: left;
}

/* =========================================
  Message
========================================= */
.company-message {
  padding: 0 0 5rem;
}
.company-message__image {
  padding: 4rem 0;
  background: #f8f8f2;
}
.company-message__image img {
  display: block;
  width: 90%;
  max-width: 30rem;
  height: auto;
  margin: 0 auto;
}
.company-message__text {
  text-align: left;
}
.company-message__text p + p {
  margin-top: 1rem;
}
.company-message__name {
  margin-top: 2rem;
  text-align: right;
  line-height: 1.7;
}

/* =========================================
  Profile
========================================= */
.company-profile {
  padding: 5rem 0;
  background: #f8f8f2;
}
.company-profile__image {
  display: block;
  width: 100%;
  max-width: 17.5rem;
  height: auto;
  margin: 0 auto 3rem;
}

.company-card {
  height: 100%;
}

.info-list,
.history-list {
  margin: 0;
}

.info-list {
  display: grid;
  grid-template-columns: 12rem 1fr;
  row-gap: 0.8rem;
  column-gap: 1.5rem;
}
.info-list dt,
.info-list dd {
  margin: 0;
}
.info-list dt {
  font-weight: 700;
}

.history-list {
  display: grid;
  grid-template-columns: 12rem 1fr;
  row-gap: 1rem;
  column-gap: 1.5rem;
  padding-left: 2rem;
  border-left: 1px solid #8f8a83;
}
.history-list dt,
.history-list dd {
  margin: 0;
}
.history-list dt {
  font-weight: 700;
}

@media (max-width: 991px) {
  .info-list {
    display: grid;
    grid-template-columns: 12rem 1fr;
    row-gap: 1rem;
    column-gap: 1.5rem;
    padding-left: 2rem;
    border-left: 1px solid #8f8a83;
  }
  .info-list dt,
  .info-list dd {
    margin: 0;
  }
  .info-list dt {
    font-weight: 700;
  }
}
/* =========================================
  Network
========================================= */
.company-network {
  padding: 5rem 0;
}
.company-network__image {
  text-align: center;
}
.company-network__image img {
  max-width: 100%;
  height: auto;
}

.network-list {
  margin-top: 2rem;
}

.network-item + .network-item {
  margin-top: 1.5rem;
}

.network-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}
.network-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* =========================================
  Access
========================================= */
.company-access {
  padding: 0 0 5rem;
}
.company-access__map {
  margin-top: 2rem;
  height: 20rem;
  background: #ccc;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
  Clients
========================================= */
.company-clients {
  padding: 8rem 0 12rem;
  background: #f8f8f2;
  text-align: center;
}
.company-clients__image {
  display: block;
  width: 100%;
  max-width: 23.75rem;
  height: auto;
  margin: 0 auto 2rem;
}

.clients-list {
  max-width: 36rem;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  column-count: 2;
  column-gap: 2rem;
}
.clients-list li {
  position: relative;
  margin-bottom: 0.2rem;
  padding-left: 1rem;
  break-inside: avoid;
}
.clients-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #d6c400;
  transform: translateY(-50%);
}
.clients-list li.end::before {
  background: #f8f8f2;
}

/* =========================================
  Responsive
========================================= */
@media (max-width: 743px) {
  .page-company .section-title {
    margin: 0 0 3rem;
    font-size: 2.286rem;
    line-height: 1.2;
  }
  .page-company .section-title span {
    display: block;
    margin: 0.3rem 0 0;
    font-size: 1.143rem;
  }
  .company-message {
    padding: 3rem 0 4rem;
  }
  .company-message__box {
    padding: 2rem 0;
  }
  .info-list,
  .history-list {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
    margin-bottom: 4rem;
  }
  .info-list dt,
  .history-list dt {
    margin-top: 0.714rem;
  }
  .clients-list {
    max-width: 100%;
    column-count: 1;
    font-size: 0.929rem;
  }
  .company-profile,
  .company-network,
  .company-clients {
    padding: 5.714rem 0;
  }
  .company-access {
    padding: 0 0 4rem;
  }
  .company-access__map {
    margin-top: 1.5rem;
    height: 18rem;
  }
}
.service-kv {
  position: relative;
  height: 100vh;
}
.service-kv__bg {
  position: absolute;
  inset: 0;
}
.service-kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-kv__main {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.service-kv__title {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 50%;
  text-align: center;
}
.service-kv__title span {
  display: inline-block;
  width: 100%;
  font-size: 3vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.35rem;
}
.service-kv__item {
  position: absolute;
  height: auto;
}
.service-kv__item--1 {
  top: 35%;
  left: 10%;
  width: 10%;
}
.service-kv__item--2 {
  top: 10%;
  left: 25%;
  width: 12%;
}
.service-kv__item--3 {
  top: 25%;
  right: 10%;
  width: 14%;
}

@media (max-width: 743px) {
  .service-kv {
    aspect-ratio: 375/430;
    height: auto;
  }
  .service-kv__title {
    bottom: 4%;
    width: 82%;
  }
  .service-kv__title span {
    font-size: 4vw;
    letter-spacing: 0.14rem;
  }
  .service-kv__item--1 {
    top: 42%;
    left: 6%;
    width: 16%;
  }
  .service-kv__item--2 {
    top: 20%;
    left: 18%;
    width: 18%;
  }
  .service-kv__item--3 {
    top: 18%;
    right: 6%;
    width: 20%;
  }
}
/* =========================================
  Policy Page
========================================= */
.page-policy {
  color: #2d201c;
  line-height: 1.8;
}
.page-policy .section-title {
  margin: 4rem 0 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
.page-policy .section-title span {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.page-policy .section-title--left {
  text-align: left;
}

/* =========================================
  Policy
========================================= */
.policy {
  padding: 0 0 5rem;
  /* -------------------------
    list
  ------------------------- */
  /* 第1階層 */
  /* 第2階層（入れ子） */
  /* li の中に入る補足文 */
}
.policy__image {
  padding: 4rem 0;
  background: #f8f8f2;
}
.policy__image img {
  display: block;
  width: 90%;
  max-width: 30rem;
  height: auto;
  margin: 0 auto;
}
.policy__box {
  max-width: 52rem;
  margin: 0 auto;
  padding-top: 1rem;
}
.policy__text {
  text-align: left;
}
.policy__section {
  padding: 0 0 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #d8d2cb;
}
.policy__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.policy__heading {
  margin: 0 0 1rem;
  padding-left: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #2d201c;
}
.policy__intro, .policy__paragraph {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: #2d201c;
}
.policy__intro:last-child, .policy__paragraph:last-child {
  margin-bottom: 0;
}
.policy__list {
  margin: 0;
  padding-left: 2rem;
  list-style: decimal;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: #2d201c;
}
.policy__list li {
  margin-bottom: 0.75rem;
}
.policy__list li:last-child {
  margin-bottom: 0;
}
.policy__list--number {
  padding-left: 1rem;
  list-style: decimal;
}
.policy__list--sub {
  margin-top: 0.5rem;
  padding-left: 1rem;
  list-style: decimal;
}
.policy__list li > .policy__paragraph {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.policy a {
  color: #2d201c;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.2s;
}
.policy a:hover {
  opacity: 0.7;
}

/* =========================================
  Policy Page SP
========================================= */
@media (max-width: 743px) {
  .page-policy .section-title {
    margin: 3rem 0 2.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .policy {
    padding: 0 0 4rem;
  }
  .policy__image {
    padding: 3rem 0;
  }
  .policy__image-item {
    width: calc(100% - 3rem);
    max-width: 22rem;
  }
  .policy__box {
    max-width: 100%;
  }
  .policy__section {
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
  }
  .policy__heading {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
  }
  .policy__intro, .policy__paragraph {
    font-size: 1rem;
    line-height: 1.9;
  }
  .policy__list {
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.9;
  }
  .policy__list li {
    margin-bottom: 0.6rem;
  }
  .policy__list--number {
    padding-left: 1rem;
  }
  .policy__list--sub {
    margin-top: 0.6rem;
    padding-left: 1rem;
  }
}
/* =========================================
  Contact Page
========================================= */
.page-contact {
  color: #2d201c;
  line-height: 1.8;
}
.page-contact .section-title {
  margin: 4rem 0 3rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* =========================================
  Contact
========================================= */
.contact {
  padding: 0 0 5rem;
}
.contact__image {
  padding: 4rem 0;
  background: #f8f8f2;
}
.contact__image img {
  display: block;
  width: 90%;
  max-width: 30rem;
  height: auto;
  margin: 0 auto;
}
.contact__box {
  max-width: 61.25rem;
  margin: 0 auto;
  padding-top: 1rem;
}
.contact__intro {
  max-width: 61.25rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.contact__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
.contact__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: #f8f8f2;
  border-radius: 0.25rem;
}
.contact__tel, .contact__time {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
.contact__info-label {
  display: inline-block;
  margin-right: 0.5rem;
  font-weight: 600;
}
.contact__tel a {
  color: #2d201c;
  text-decoration: none;
}
.contact__tel a:hover {
  opacity: 0.7;
}

/* =========================================
  Contact Form
========================================= */
.contact-form {
  max-width: 61.25rem;
  margin: 0 auto;
}
.contact-form__row {
  display: flex;
  align-items: stretch;
  padding: 1.4rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.contact-form__row:first-child {
  border-top: 1px solid #e6e6e6;
}
.contact-form__head {
  width: 16rem;
  min-width: 16rem;
  padding-right: 1.25rem;
}
.contact-form__head label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
.contact-form__body {
  flex: 1;
  min-width: 0;
}
.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 1.25rem;
  padding: 0 0.5rem;
  background: #c40016;
  color: #fff;
  border-radius: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 0.125rem;
}
.contact-form__note {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
  border-radius: 0.125rem;
  font-size: 1rem;
  color: #2d201c;
  outline: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  height: 2.75rem;
  padding: 0 0.75rem;
}
.contact-form textarea {
  min-height: 10rem;
  padding: 0.75rem;
  resize: vertical;
}
.contact-form input[type=text]:hover,
.contact-form input[type=email]:hover,
.contact-form input[type=tel]:hover,
.contact-form textarea:hover {
  background: #ededed;
  border-color: #bfc7ce;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #5aa7d8;
  box-shadow: 0 0 0 0.1875rem rgba(90, 167, 216, 0.18);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3b3;
}
.contact-form__buttons {
  padding-top: 2rem;
  text-align: center;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  height: 4rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 0.25rem;
  background: #3a86b8;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.08s ease;
}
.contact-form__submit:hover {
  opacity: 0.9;
}
.contact-form__submit:active {
  transform: translateY(1px);
}

.contact-form-error {
  max-width: 61.25rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid #c40016;
  background: rgba(196, 0, 22, 0.06);
  color: #c40016;
}

.contact-form-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-thanks {
  text-align: center;
  line-height: 2;
  margin-bottom: 2rem;
}

/* =========================================
  Contact SP
========================================= */
@media (max-width: 743px) {
  .page-contact .section-title {
    margin: 3rem 0 2.5rem;
    font-size: 1.6rem;
  }
  .contact {
    padding: 0 0 4rem;
  }
  .contact__intro {
    margin-bottom: 2.5rem;
  }
  .contact__lead {
    text-align: left;
  }
  .contact__info {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }
  .contact-form__row {
    display: block;
    padding: 1rem 0;
  }
  .contact-form__head {
    width: 100%;
    min-width: 0;
    padding-right: 0;
    margin-bottom: 0.75rem;
  }
  .contact-form__head label {
    font-size: 1rem;
  }
  .contact-form__note {
    font-size: 0.9rem;
  }
  .contact-form__submit {
    width: 100%;
    min-width: 0;
    height: 3.75rem;
    font-size: 1rem;
  }
}

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