@charset "UTF-8";

*,
*::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;
}

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

.u-sp {
  display: none;
}

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;
}

.slide-left {
  opacity: 1;
  -webkit-animation: slide-left ease 1.3s;
  animation: slide-left ease 1.3s;
}

@-webkit-keyframes slide-left {
  0% {
    opacity: 0;
    left: -200px;
  }

  100% {
    left: -145px;
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    left: -200px;
  }

  100% {
    left: -145px;
  }
}

.slide-right {
  opacity: 1;
  -webkit-animation: slide-right ease 1.3s;
  animation: slide-right ease 1.3s;
}

@-webkit-keyframes slide-right {
  0% {
    opacity: 0;
    right: -200px;
  }

  100% {
    right: -138px;
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    right: -200px;
  }

  100% {
    right: -138px;
  }
}

.slide-center {
  opacity: 1;
  -webkit-animation: slide-center ease-in-out 1.8s;
  animation: slide-center ease-in-out 1.8s;
}

@-webkit-keyframes slide-center {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95) translate(-50%, -50%);
    transform: scale(0.95) translate(-50%, -50%);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}

@keyframes slide-center {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95) translate(-50%, -50%);
    transform: scale(0.95) translate(-50%, -50%);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
  }
}

.mv-slideUp {
  -webkit-animation: mv-slideUp 1.3s 0.8s forwards;
  animation: mv-slideUp 1.3s 0.8s forwards;
  top: 48.5%;
  right: 9%;
  left: inherit;
  width: 26%;
}

@-webkit-keyframes mv-slideUp {
  0% {
    opacity: 0;
    bottom: -2%;
  }

  60% {
    bottom: 5%;
  }

  80% {
    bottom: 1%;
  }

  100% {
    opacity: 1;
    bottom: 2%;
  }
}

@keyframes mv-slideUp {
  0% {
    opacity: 0;
    bottom: -2%;
  }

  60% {
    bottom: 5%;
  }

  80% {
    bottom: 1%;
  }

  100% {
    opacity: 1;
    bottom: 2%;
  }
}

.fuwafuwa {
  -webkit-animation: fuwafuwa 1s infinite ease-in-out 0.8s alternate;
  animation: fuwafuwa 1s infinite ease-in-out 0.8s alternate;
  background: url(../img/ico-apple.svg) no-repeat center center/60px auto;
  display: inline-block;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  margin-top: 15px;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
    transform: translate(0, 0) rotate(-2deg);
  }

  50% {
    -webkit-transform: translate(0, -2px) rotate(0deg);
    transform: translate(0, -2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
    transform: translate(0, 0) rotate(2deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
    transform: translate(0, 0) rotate(-2deg);
  }

  50% {
    -webkit-transform: translate(0, -2px) rotate(0deg);
    transform: translate(0, -2px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
    transform: translate(0, 0) rotate(2deg);
  }
}

/* footer */

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

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

.page-footer a {
  font-size: 18px;
  display: inline-block;
  padding: 30px 0;
  font-weight: bold;
  color: #855f15;
}

.page-footer .arrow-left {
  position: relative;
  display: inline-block;
}

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

.copy {
  background-color: #333;
  color: #fff;
  padding: 9px 0;
  font-size: 14px;
}

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

#confirm dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 23px 0;
  border-radius: 6px;
}

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

#confirm dt {
  width: 30%;
  text-align: right;
  color: #855f15;
}

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

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

.form h1 {
  color: #333333;
  font-size: 24px;
  margin: 30px 0;
  letter-spacing: 0.06em;
}

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

.form select,
.form input {
  font-size: 24px;
  font-weight: bold;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px 30px 4px 20px;
  text-align: center;
  width: 100%;
  color: #333333;
  -webkit-box-shadow: 0px 0px 11px 1px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 11px 1px rgba(255, 255, 255, 0.5);
}

.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 p {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  padding-right: 10px;
  color: #333333;
}

.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-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;
}

.menu-list {
  position: relative;
  background-color: #f7f7f7;
}

.menu-list h2 {
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.menu-list li a {
  max-width: 260px;
  margin: 0 auto;
  background-color: #855f15;
  border-radius: 31px;
  font-size: 14px;
  display: block;
  padding: 17px 0;
  font-weight: bold;
  color: #fff;
}

.l-page__title {
  background-color: #855f15;
  padding: 16px 0;
  margin-bottom: 50px;
}

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

.l-page__inner {
  text-align: left;
  padding: 0 20px;
}

.l-page__inner h2 {
  font-size: 18px;
  margin: 30px 0 20px;
  font-weight: 600;
  border-left: 4px solid #855f15;
  padding: 0.4em 0.4em 0.4em 0.8em;
  letter-spacing: 0.03em;
  line-height: 1.4;
  background-color: #f7f7f7;
}

.l-page__inner p {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 0.8em;
}

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

.mv__wrapper {
  position: relative;
  overflow: hidden;
}

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

.select h2 {
  margin-bottom: 38px;
}

.select h2 img {
  width: 100%;
  margin: 0 auto 20px;
}

.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: 47%;
  margin-bottom: 30px;
}

.select__items img {
  -webkit-animation: juwel-anim 1.4s ease infinite alternate;
  animation: juwel-anim 2s ease infinite alternate;
}

.select__items p {
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
}

.select__items p span {
  font-size: 14px;
}

.mv-anim {
  position: absolute;
  bottom: -2%;
  left: 2%;
  width: 30.6666666667%;
  opacity: 0;
}

.mv-anim__item01 {
  -webkit-animation: slideUp 1.5s 1s forwards;
  animation: slideUp 1.5s 1s forwards;
  top: 68.5%;
  right: 1%;
  left: inherit;
  width: 16%;
}

.voice {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(39%, rgb(0, 0, 0)), to(#ca9a3a));
  background: -webkit-linear-gradient(top, rgb(0, 0, 0) 39%, #ca9a3a 100%);
  background: linear-gradient(180deg, rgb(0, 0, 0) 39%, #ca9a3a 100%);
  padding: 30px 0 60px;
}

.voice h2 {
  margin: 0 auto;
}

.voice__wrapper {
  padding-top: 60px;
}

.voice__wrapper__container {
  margin: 8px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(169, 76, 21, 0.9);
  box-shadow: 1px 1px 5px 1px rgba(169, 76, 21, 0.9);
  background-color: #f5eedf;
  position: relative;
  border: 4px double #f6e287;
  padding: 2em 0.6em;
  border-radius: 13px;
}

.voice__wrapper__container:first-of-type {
  margin-bottom: 60px;
}

.voice__wrapper__container__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.voice__wrapper__container__img {
  display: block;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 12px 4px rgba(80, 55, 55, 0.35);
  box-shadow: 0px 0px 12px 4px rgba(80, 55, 55, 0.35);
  border: 4px ridge #d9b800;
  position: relative;
  border-radius: 24px;
}

.voice__wrapper__container__img img {
  border-radius: 21px;
}

.voice__wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1.8em;
  color: #cc3333;
}

.voice__wrapper__desc {
  font-size: 16px;
  padding-top: 2em;
  text-align: center;
  font-weight: 700;
}

.voice__wrapper__reccomend {
  font-size: 23px;
  padding: 1em;
  font-weight: 700;
  color: #cc3333;
}

.voice__wrapper__reccomend span {
  color: #cc3333;
  font-weight: 700;
}

.voice__wrapper__text {
  text-align: left;
  font-size: 18px;
}

.voice__wrapper__attention {
  color: #ffffff;
  margin-top: 20px;
}

.voice .btn {
  margin-top: 40px;
}

.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 */