@charset "UTF-8";


/* =============================================================

Base

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

html {
  font-size: 62.5%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/*body {*/
  /*font-family: var(--base-font-family);*/
  /*font-size: 1.6rem;*/
  /*line-height: 1.75;*/
  /*letter-spacing: 0.03em;*/
  /*width: 100%;*/
  /*color: var(--base-color);*/
  /*background: #fff;*/
  /*margin: 0;*/
  /*-webkit-text-size-adjust: 100%;*/
  /*word-break: keep-all;*/
  /*overflow-wrap: anywhere;*/
/*}*/

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

svg {
  width: 100%;
  display: block;
}
svg path:not([fill]) {
  fill: currentColor;
}

a {
  color: currentColor;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a.js-tel {
  text-decoration: none;
}
a.js-tel._active {
  text-decoration: underline;
}

button {
  cursor: pointer;
}

sup {
  vertical-align: super;
  font-size: 70%;
}

sub {
  vertical-align: sub;
  font-size: 70%;
}



/* =============================================================

Loader

* ============================================================= */
.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
  background: #f4f4f4;
  transition: opacity 0.5s ease-out 0.5s;
}

.l-loader:before {
  content: "";
  display: block;
  width: 296px;
  max-width: 70%;
  aspect-ratio: 296/45;
  background: url(../img/logo.png) 50% 50%/contain no-repeat;
}

body.is-loaded .l-loader {
  opacity: 0;
  pointer-events: none;
}

/* =============================================================

Main

* ============================================================= */
/* l-main
=============================== */
.l-main {
  flex-grow: 1;
  position: relative;
  margin-top: var(--header-height);
}

.l-main__inner {
  width: calc(100% - var(--inner-space) * 2);
  max-width: var(--outer-width-px);
  margin: 0 auto;
}

.l-main__head {
  position: relative;
  margin: 0 auto;
  padding: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  z-index: 0;
  clip-path: inset(0);
}
.l-main__head::before {
  position: fixed;
  content: "";
  height: 100%;
  width: var(--frame-width-px);
  background-image: conic-gradient(#fff 0deg 90deg, #cda455 90deg 180deg, #fff 180deg 270deg, #cda455 270deg 360deg);
  background-size: calc(var(--2x) * 24) calc(var(--2x) * 24);
  z-index: -1;
}

.l-main__body {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .l-main__body {
    width: 100vw;
  }
}

/* btn
=============================== */
.c-btn {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}