@charset "UTF-8";

html {
  font-family: "Noto Serif JP", serif;
  color: #292929;
}

.u-sp {
  display: none;
}

.anim-scale {
  -webkit-animation: anim-scale 2s ease-out;
  animation: anim-scale 2s ease-out;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes anim-scale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes anim-scale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fadeUp {
  opacity: 0;
}

.fadeUp.anim-fadeUp {
  -webkit-animation: anim-fadeUp 0.4s ease-out;
  animation: anim-fadeUp 0.4s ease-out;
  opacity: 1;
}

@-webkit-keyframes anim-fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes anim-fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.neon {
  -webkit-animation: anim-shine 2s infinite;
  animation: anim-shine 2s infinite;
}

@-webkit-keyframes anim-shine {
  0%, 100% {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.2));
    filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.2));
  }

  70% {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.8));
    filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.8));
  }
}

@keyframes anim-shine {
  0%, 100% {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.2));
    filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.2));
  }

  70% {
    -webkit-filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.8));
    filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.8));
  }
}

.test {
  text-align: center;
}

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

/* Remove default type */

ul,
ol {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

/* Remove default margin padding */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* Make images easier to work with */

img {
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove all animations and transitions for people that prefer not to see them */

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.778;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
  pointer-events: none;
}

/* ホバー */

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* footer */

.l-footer {
  position: relative;
  background-color: #f7f7f7;
  padding-top: 60px;
}

.page-footer {
  text-align: center;
}

.page-footer a {
  font-size: 19px;
  display: inline-block;
  padding: 30px 0;
  font-weight: bold;
  color: #3b1802;
  letter-spacing: 0.03em;
  line-height: 1;
}

.page-footer .arrow-left {
  position: relative;
  display: inline-block;
  letter-spacing: 0.06em;
}

.page-footer .arrow-left::before {
  content: "";
  position: absolute;
  top: 40%;
  left: -16px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 3px solid #3b1802;
  border-bottom: 3px solid #3b1802;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.copy {
  background-color: #3b1802;
  color: #fff;
  padding: 24px 0;
  border-top: 1px solid #292929;
  font-size: 13px;
}

.site-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form {
  font-family: "Noto Serif JP", serif;
  background: url(../img/form-bg.jpg) no-repeat center/cover;
  padding: 40px 8px 40px;
}

.form h1 {
  color: #3b1802;
  font-size: 24px;
  margin: 30px 0 10px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.form h2 {
  font-size: 34px;
  padding: 40px 0;
  color: black;
}

.form select,
.form input {
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border: 1px solid #3b1802;
  padding: 4px 30px 4px 20px;
  text-align: center;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

.form .form-btn {
  margin-top: 60px;
}

.form .form-btn img {
  max-width: 90%;
  margin: 0 auto;
}

.form option {
  padding: 20px;
}

.form .select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.form .select-area li {
  width: calc(33.3333333333% - 10px);
}

.form .select-area span {
  position: relative;
  display: block;
}

.form .select-area span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  background: url(../img/downmenu.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
}

.form .select-area p {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  padding-right: 10px;
  color: #292929;
}

.form-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-select {
  position: relative;
}

.form-select::before {
  position: absolute;
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 10px;
  right: 17px;
}

.dropdown-toggle {
  padding: 8px 23px 8px 14px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: white;
  border: 1px solid #a5a5a5;
  border-radius: 4px;
  font-size: 14px;
}

.stats-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.stats-box .stats {
  position: relative;
  text-align: center;
  width: 33.3333333333%;
  font-size: 12px;
  padding-bottom: 20px;
}

.stats-box .stats::before,
.stats-box .stats::after {
  content: "";
  position: absolute;
  display: block;
}

.stats-box .stats::before {
  bottom: 4px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.stats-box .stats::after {
  bottom: 4px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #3b1802;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
  -webkit-transform-origin: left;
  transform-origin: left;
  width: 0;
  z-index: 1;
}

.stats-box .stats:last-child::before,
.stats-box .stats:last-child::after {
  content: none;
}

.stats-box .stats p {
  color: #fff;
  letter-spacing: 0.12em;
  position: relative;
}

.stats-box .stats p::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  z-index: 1;
  background-color: #e9c41b;
  z-index: 2;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#confirm dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 11px 1px rgba(80, 80, 80, 0.5);
  box-shadow: 0px 0px 11px 1px rgba(80, 80, 80, 0.5);
  padding: 23px 0;
  border-radius: 6px;
}

#confirm dt,
#confirm dd {
  display: block;
  padding: 8px;
}

#confirm dt {
  width: 30%;
  text-align: right;
  color: #3b1802;
}

#confirm dd {
  width: 70%;
  text-align: left;
}

#send .form {
  min-height: 600px;
}

#send .send-text {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.l-page__title {
  background-color: #3b1802;
  padding: 0.8em 0;
  margin-bottom: 40px;
}

.l-page__title__text {
  font-size: 23px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.l-page__inner {
  text-align: left;
  padding: 0 12px;
  overflow: hidden;
}

.l-page__inner h2 {
  font-size: 20px;
  margin: 2em 0 1em;
  padding: 0.5em 0.3em 0.5em 1em;
  letter-spacing: 0.06em;
  line-height: 1.4;
  position: relative;
  font-weight: 700;
}

.l-page__inner h2::before,
.l-page__inner h2::after {
  content: "";
  position: absolute;
  display: block;
}

.l-page__inner h2::before {
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  background-color: #f7f7f7;
  z-index: -1;
}

.l-page__inner h2::after {
  top: 50%;
  left: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 4px;
  height: 70%;
  background-color: #e9c41b;
  z-index: -1;
  border-radius: 6px;
}

.l-page__inner p {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 2;
  margin-bottom: 1em;
}

.l-page__inner span {
  margin-top: 20px;
  display: block;
}

.menu-list {
  position: relative;
}

.menu-list li {
  padding-bottom: 40px;
}

.menu-list li a {
  max-width: 260px;
  margin: 0 auto;
  background-color: #e9c41b;
  font-size: 16px;
  padding: 20px 0 16px;
  display: block;
  font-weight: bold;
  color: #292929;
  -webkit-filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.1));
}

.btn {
  width: 97%;
  margin: 0 auto;
}

.mv__wrapper .btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  padding-bottom: 40px;
}

.about {
  padding: 64px 1em;
  background: url(../img/about-bg.jpg) center center/cover;
}

.about h2 img {
  max-width: 100%;
}

.about p {
  text-align: left;
  font-size: 21px;
  margin-bottom: 1em;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.about p span {
  color: #3b1802;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #f2cf39));
  background: -webkit-linear-gradient(transparent 60%, #f2cf39 30%);
  background: linear-gradient(transparent 60%, #f2cf39 30%);
  display: inline;
}

.about .last-word {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
}

.select {
  background: url(../img/select-bg.jpg) no-repeat center top/contain;
  padding: 40px 0;
}

.select h2 {
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.select__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.select__items {
  width: 33.3333333333%;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 8px;
}

.home .menu-list {
  padding-bottom: 60px;
}

.home .menu-list li {
  padding: 0;
}

@media screen and (max-width: 1040px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

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

  .u-sp {
    display: block;
  }

  a:hover {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*# sourceMappingURL=map/style.css.map */