@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");

/*********************************
 *
 * COMMON
 *
 *********************************/
body {
  color: #030303;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.2vw, 18px);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  body {
    max-width: 750px;
    font-size: min(3vw, 16px);
    -webkit-text-size-adjust: 100%;
  }

  body .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  body a {
    transition: 0.3s;
  }

  body a:hover {
    opacity: 0.8;
  }

  body .sp {
    display: none !important;
  }
}

body a {
  text-decoration: none;
}

body img {
  width: 100%;
  height: auto;
}

/* font */
.red {
  color: #a22351;
}

.yellow {
  color: #fff701;
}

.orange {
  color: #ff8a00;
}

.pink {
  color: #ff2e5f;
}

.min {
  font-family: "Noto Serif JP", serif;
}

strong {
  font-weight: 900;
}

p.l_1em {
  padding: 0 0 0 1em !important;
  text-indent: -1em;
  line-height: 1.7;
}

.yellow_line {
  position: relative;
  display: inline-block;
  z-index: +1;
}

.yellow_line::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 0.6em;
  left: auto;
  bottom: -0.1em;
  background: #fff701;
  z-index: -1;
}

.mT4rem {
  margin-top: 4rem !important;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

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

.fadeUpTrigger {
  opacity: 0;
}

/*********************************
 *
 * HEADER
 *
 *********************************/
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
}

header .h_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

header .h_logo {
  display: flex;
  align-items: center;
  padding: 2px 30px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  header .h_logo {
    padding: 2px 0 2px 8px;
  }
}

header .h_logo img {
  width: 84px;
}

@media screen and (max-width: 767px) {
  header .h_logo img {
    width: 84px;
  }
}

header .h_logo span {
  margin-left: 16px;
  padding: 0.7em 0 0.7em 16px;
  border-left: 1px solid #030303;
  font-size: 85%;
}

@media screen and (max-width: 767px) {
  header .h_logo span {
    margin-left: 8px;
    padding: 1em 0 1em 8px;
    font-size: 80%;
  }
}

header ul {
  display: flex;
  align-items: center;
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  header ul {
    width: 42%;
    font-size: 80%;
  }
}

header ul a {
  display: block;
  color: #000;
}

header ul li {
  width: 250px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  header ul li {
    width: 33.3%;
    line-height: 1.4;
  }
}

header ul li.tel {
  position: relative;
  padding: 1.17em 0;
  background: #101010 url("../images/icon_tel.svg") left 20px center no-repeat;
  background-size: auto 1.5em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 120%;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  header ul li.tel {
    padding: 0;
    background: none;
    font-size: 100%;
  }
}

@media screen and (max-width: 767px) {
  header ul li.tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.2rem;
    background: #101010;
    text-align: center;
  }

  header ul li.tel a img {
    display: block;
    width: 42%;
    height: auto;
  }
}

header ul li.request a {
  position: relative;
  padding: 1.5em 0;
  background: #fff701 url("../images/icon_request.svg") left 20px center no-repeat;
  background-size: auto 1.8em;
  color: #030303;
  text-align: center;
}

header ul li.request a::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 1em;
  background: url("../images/arw_black.png") center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  header ul li.request a {
    padding: 1em 0;
    height: 4.2rem;
    background-image: none;
  }

  header ul li.request a::before {
    display: none;
  }

  header ul li.request a img {
    width: 2em;
    margin-bottom: 5px;
  }
}

header ul li.reserve a {
  position: relative;
  padding: 1.5em 0;
  background: #ff8a00;
  background-size: auto 2em;
  color: #fff;
  text-align: center;
}

header ul li.reserve a::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 1em;
  background: url("../images/arw_white.png") center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  header ul li.reserve a {
    padding: 2em 0 0 0;
    height: 4.2rem;
  }

  header ul li.reserve a::before {
    display: none;
  }
}

/*********************************
 *
 * MV
 *
 *********************************/
#mv {
  background: #f4f4ec url("../images/mv_img.jpg") right center no-repeat;
  background-size: calc(100% - 214px) auto;
}

@media screen and (max-width: 767px) {
  #mv {
    background: #f4f4ec url("../images/mv_img-sp.jpg") right top no-repeat;
    background-size: calc(100% - 135px) auto;
  }
}

#mv .mv_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 48.5vw;
  max-height: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner {
    width: 100%;
    height: 120vw;
    padding: 0;
  }
}

#mv .mv_inner h1 {
  width: 214px;
  padding: 2.5em 0 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner h1 {
    width: 135px;
  }
}

#mv .mv_inner h1 img {
  width: 112px;
  height: auto;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner h1 img {
    width: 80px;
  }
}

#mv .mv_inner .icon {
  width: 176px;
  margin: 30px 30px 0 0;
}

#mv .mv_inner .box {
  position: absolute;
  left: 60px;
  bottom: 30px;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner .box {
    left: 15px;
  }
}

#mv .mv_inner .box .btn a {
  position: relative;
  display: inline-block;
  padding: 0.8em 3em 0.8em 2em;
  background: #ff8a00;
  color: #fff;
}

#mv .mv_inner .box .btn a::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 1em;
  background: url("../images/arw_white.png") center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

#mv .mv_inner .box .note {
  margin-top: 10px;
  padding: 0.8em 2em;
  background: #fff;
}

#mv .mv_inner .campaign {
  position: absolute;
  top: 30px;
  left: 243px;
  background: #C5070B;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner .campaign {
    top: 0;
    left: 135px;
    width: calc(100% - 135px);
  }
}

#mv .mv_inner .campaign h2 {
  padding: 0.4em 0;
  border-bottom: 1px solid #F7AFAF;
  color: #fff;
  font-size: 140%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner .campaign h2 {
    padding: 0.4em 0;
    font-size: 125%;
  }
}

#mv .mv_inner .campaign p {
  padding: 0.6em 2em;
  color: #fff;
  font-size: 105%;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #mv .mv_inner .campaign p {
    padding: 0.7em 0.5em;
    font-size: 100%;
    line-height: 1.5;
  }
}

/*********************************
 *
 * point
 *
 *********************************/
#point .point_inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 3px auto 0 auto;
}

@media screen and (max-width: 767px) {
  #point .point_inner {
    margin: 0 auto;
  }
}

#point .point_inner div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 24px) / 6);
  height: 4.2em;
  margin-left: 4px;
  background: url("../images/icon_leftup.png") left top no-repeat;
  border: 1px solid #999;
  font-size: 115%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #point .point_inner div {
    width: calc((100% - 8px) / 3);
    height: 3.6em;
    margin-top: 2px;
    margin-left: 2px;
    line-height: 1.2;
  }
}

/*********************************
 *
 * MAIN
 *
 *********************************/
main p {
  padding-top: 1em;
}

@media screen and (max-width: 767px) {
  main p {
    padding-top: 1.5em;
  }
}

/*********************************
 * media
 *********************************/
#media {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #media {
    padding: 4rem 0 0 0;
  }
}

#media .movie-item {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #media .movie-item iframe {
    width: 100%;
    height: auto;
  }
}

#media .media_bnr {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
}


@media screen and (max-width: 767px) {
  #media .media_bnr {
    position: relative;
    width: calc(100% - 60px);
  }
}

#media .media_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #media .media_inner {
    position: relative;
    width: calc(100% - 60px);
  }
}

#media .icon {
  position: absolute;
  width: 22%;
  top: -10%;
  left: -5%;
}

#media h2 {
  padding: 0.5em 0;
  border-bottom: 1px solid #999;
  font-size: 180%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #media h2 {
    padding: 0.8em 0;
    font-size: 145%;
  }
}

#media ul {
  padding: 1.5em 1em;
  display: flex;
  flex-wrap: wrap;
  font-size: 115%;
  line-height: 2;
}

#media ul li {
  position: relative;
  padding: 0 1em;
}

@media screen and (max-width: 767px) {
  #media ul li {
    width: 100%;
    margin: 0.2em 0;
    line-height: 1.6;
  }
}

#media ul li::before {
  position: absolute;
  display: inline-block;
  content: "●";
  color: #ff8a00;
  left: 0;
}

/*********************************
 * point1
 *********************************/
#point1 {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #point1 {
    padding: 5rem 0 0 0;
  }
}

#point1 .point1_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #point1 .point1_inner {
    position: relative;
    width: calc(100% - 60px);
  }
}

#point1 .h2_catch {
  position: relative;
  margin-left: -10%;
  padding: 0 0 2em 0;
  font-size: 105%;
  font-weight: 600;
}

#point1 .h2_catch::before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 4px;
  background: #ff8a00;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #point1 .h2_catch {
    margin-left: -30px;
    padding-left: 10px;
  }

  #point1 .h2_catch::before {
    width: 80px;
    height: 5px;
    left: 0;
  }
}

#point1 .ttl_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#point1 .ttl_box .box {
  width: 50%;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #point1 .ttl_box .box {
    width: 100%;
    font-size: 125%;
    text-align: center;
  }
}

#point1 h2 {
  margin-left: -10%;
  padding: 0.5em 0;
  font-size: 210%;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  #point1 h2 {
    margin-left: -20px;
    font-size: 200%;
  }
}

#point1 dl {
  margin-top: 3.5em;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #point1 dl {
    border-radius: 5px;
  }
}

#point1 dl dt {
  padding: 0.5em 0;
  border-bottom: 1px solid #999;
  font-size: 180%;
  text-align: center;
}

#point1 dl dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#point1 dl dd .img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #point1 dl dd .img {
    width: 100%;
  }
}

#point1 dl dd p {
  width: 50%;
  padding: 0 3em;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #point1 dl dd p {
    width: 100%;
    padding: 1.5em;
    font-size: 120%;
  }
}

/*********************************
 * point2
 *********************************/
#point2 {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #point2 {
    padding: 5rem 0 0 0;
  }
}

#point2 .point2_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #point2 .point2_inner {
    width: calc(100% - 60px);
  }
}

#point2 .h2_catch {
  position: relative;
  margin-left: -10%;
  padding: 0 0 2em 0;
  font-size: 105%;
  font-weight: 600;
}

#point2 .h2_catch::before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 4px;
  background: #ff8a00;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #point2 .h2_catch {
    margin-left: -30px;
    padding-left: 10px;
  }

  #point2 .h2_catch::before {
    width: 80px;
    height: 5px;
    left: 0;
  }
}

#point2 .ttl_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#point2 .ttl_box .box {
  width: 50%;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #point2 .ttl_box .box {
    width: 100%;
    font-size: 125%;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #point2 .ttl_box dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

#point2 .ttl_box dl dt {
  padding: 0.3em 0 0 0;
  color: #989898;
  font-size: 130%;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #point2 .ttl_box dl dt {
    display: block;
    font-size: 120%;
    width: 100px;
    padding: 0.6em 0;
    border-bottom: 1px solid #ddd;
  }
}

#point2 .ttl_box dl dt img {
  width: 40px;
  height: auto;
}

#point2 .ttl_box dl dd {
  padding: 0 0 1em 1.5em;
  border-bottom: 1px solid #999;
  font-size: 115%;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #point2 .ttl_box dl dd {
    display: block;
    padding: 0.6em 0;
    width: calc(100% - 100px);
    border-bottom: 1px solid #ddd;
    text-align: left;
    line-height: 1.5;
  }
}

#point2 h2 {
  margin-left: -10%;
  padding: 0.5em 0;
  font-size: 210%;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  #point2 h2 {
    margin-left: -20px;
    font-size: 200%;
  }
}

#point2 h3 {
  position: relative;
  margin-top: 6rem;
  font-size: 180%;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #point2 h3 {
    margin-top: 5rem;
  }
}

#point2 h3::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #999;
  top: 60%;
}

#point2 h3 span.bg {
  position: relative;
  padding: 0 1em;
  background: #fff;
  z-index: +1;
}

@media screen and (max-width: 767px) {
  #point2 h3 span.bg {
    display: inline-block;
  }
}

#point2 h3 span.bg span {
  font-size: 140%;
}

#point2 .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  #point2 .list {
    padding-top: 2rem;
  }
}

#point2 .list dl {
  width: 23.5%;
  margin-top: 1.2rem;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #point2 .list dl {
    width: 48%;
    margin-top: 0.8rem;
  }
}

#point2 .list dl dt {
  padding: 1.5rem 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #point2 .list dl dt {
    padding: 0.5rem 0;
  }
}

#point2 .list dl dt img {
  width: 85%;
  max-width: 180px;
}

#point2 .list dl dd {
  padding: 1em 0;
  background: #f4f4ec;
  font-size: 120%;
  text-align: center;
}

#point2 .note {
  position: relative;
  width: 76%;
  margin: 4rem auto 1rem auto;
  padding: 1.8em 0;
  background: #ededed;
  font-size: 110%;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #point2 .note {
    width: auto;
    margin: 3rem auto 1rem auto;
    font-size: 130%;
  }
}

#point2 .note::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -20px;
  left: 50%;
  border-top: 20px solid #ededed;
  border-right: 44px solid transparent;
  border-left: 44px solid transparent;
  transform: translateX(-50%);
}

#point2 .ap_txt {
  font-size: 220%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #point2 .ap_txt {
    font-size: 240%;
  }
}

/*********************************
 * reserve_ap
 *********************************/
.reserve_ap {
  position: relative;
  overflow: hidden;
  margin: 7rem 0 0 0;
  padding: 6px;
  background: #ff8a00;
  color: #fff;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .reserve_ap {
    margin: 5rem 0 0 0;
  }
}

.reserve_ap .reserve_ap_inner {
  padding: 1.8rem 0 2.8rem 0;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .reserve_ap .reserve_ap_inner {
    padding: 0.6rem 0 2rem 0;
  }
}

.reserve_ap .catch {
  font-size: 140%;
}

.reserve_ap .catch span {
  padding: 0.3em 1em;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .reserve_ap .catch span {
    display: inline-block;
  }
}

.reserve_ap h2 {
  margin-top: 1em;
  font-size: 210%;
}

@media screen and (max-width: 767px) {
  .reserve_ap h2 {
    font-size: 200%;
  }
}

.reserve_ap h3 {
  position: relative;
  margin-top: 6rem;
  font-size: 180%;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .reserve_ap h3 {
    font-size: 135%;
  }
}

.reserve_ap dl {
  display: flex;
  align-items: center;
  width: 55%;
  max-width: 700px;
  margin: 1.5rem auto 0 auto;
}

@media screen and (max-width: 767px) {
  .reserve_ap dl {
    width: 96%;
  }
}

.reserve_ap dl dt {
  width: 92px;
}

.reserve_ap dl dd {
  width: calc(100% - 92px);
  padding-left: 30px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .reserve_ap dl dd {
    width: calc(100% - 102px);
    padding-: 0 0 0 20px;
  }
}

.reserve_ap dl dd .note {
  padding: 0;
  font-size: 130%;
  text-align: center;
}

.reserve_ap dl dd .btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.9em 2em;
  background: #fff;
  background-size: auto 0.7em;
  color: #ff8a00;
  font-size: 135%;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .reserve_ap dl dd .btn a {
    min-width: 100%;
    padding: 0.9em 0;
  }
}

.reserve_ap dl dd .btn a::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 1em;
  background: url("../images/arw_orange.png") center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.reserve_ap.type2 {
  margin-top: 4.5rem;
}

@media screen and (max-width: 767px) {
  .reserve_ap.type2 {
    width: 100vw;
    margin-left: -30px;
  }
}

.reserve_ap.type2 .reserve_ap_inner {
  padding: 0 0 2.8rem 0;
}

@media screen and (max-width: 767px) {
  .reserve_ap.type2 .reserve_ap_inner {
    padding: 0 0 2rem 0;
  }
}

.reserve_ap.type2 dl {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .reserve_ap.type2 dl {
    width: 96%;
  }
}

/*********************************
 * area
 *********************************/
#area {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #area {
    padding: 2rem 0 0 0;
  }
}

#area .area_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #area .area_inner {
    position: relative;
    width: calc(100% - 60px);
  }
}

#area .h2_catch {
  position: relative;
  margin-left: -10%;
  padding: 0 0 2em 0;
  font-size: 105%;
  font-weight: 600;
}

#area .h2_catch::before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 4px;
  background: #ff8a00;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #area .h2_catch {
    margin-left: -30px;
    padding-left: 10px;
  }

  #area .h2_catch::before {
    width: 80px;
    height: 5px;
    left: 0;
  }
}

#area .ttl_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#area .ttl_box .box {
  width: 50%;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #area .ttl_box .box {
    width: 100%;
    font-size: 125%;
  }
}

#area h2 {
  margin-left: -10%;
  padding: 0.5em 0;
  font-size: 210%;
}

@media screen and (max-width: 767px) {
  #area h2 {
    margin-left: -20px;
    font-size: 200%;
  }
}

#area h2 span {
  display: inline-block;
  margin: 0.4em 0;
  font-size: 70%;
  line-height: 1.6;
}

#area h3 {
  position: relative;
  margin-top: 8rem;
  font-size: 180%;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #area h3 {
    margin-top: 5rem;
    font-size: 150%;
  }
}

#area h3::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #999;
  top: 60%;
}

#area h3 span.bg {
  position: relative;
  padding: 0 1em;
  background: #fff;
  z-index: +1;
}

@media screen and (max-width: 767px) {
  #area h3 span.bg {
    display: inline-block;
    line-height: 1.5;
  }
}

#area h3 span.bg span {
  font-size: 140%;
}

#area ul.area_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 115%;
}

@media screen and (max-width: 767px) {
  #area ul.area_list {
    margin-top: 2rem;
    font-size: 130%;
  }
}

#area ul.area_list li {
  width: 33%;
  margin-top: 0.25em;
  padding: 0.5em 0;
  border: 1px solid #999;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #area ul.area_list li {
    width: 49%;
    margin-top: 0.4em;
  }
}

#area .ap_txt {
  margin-top: 1rem;
  font-size: 210%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #area .ap_txt {
    margin-top: 0;
    font-size: 220%;
  }
}

#area .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 115%;
}

#area .list dl {
  width: 32%;
  margin-top: 2.2em;
  border: 1px solid #999;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #area .list dl {
    width: 49%;
  }
}

#area .list dl dt {
  position: relative;
  padding: 1.3em 0 1em 0;
  background: #f4f4ec;
  font-family: "Noto Serif JP", serif;
  font-size: 150%;
  text-align: center;
}

#area .list dl dt .num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  top: 0;
  left: 50%;
  background: #ff8c00;
  border-radius: 50%;
  color: #fff;
  font-size: 120%;
  line-height: 1;
  transform: translate(-50%, -50%);
}

#area .list dl dt .num span {
  line-height: 1;
}

#area .list dl dd {
  padding: 1.5em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #area .list dl dd {
    padding: 1em;
  }
}

#area .list .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32%;
  margin-top: 2.2em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #area .list .img {
    width: 100%;
  }
}

#area .list .img img {
  width: 80%;
  max-width: 230px;
  height: auto;
}

@media screen and (max-width: 767px) {
  #area .list .img img {
    width: 49%;
  }
}

/*********************************
 * plan
 *********************************/
#plan {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #plan {
    padding: 6rem 0 0 0;
  }
}

#plan .plan_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #plan .plan_inner {
    position: relative;
    width: calc(100% - 60px);
  }
}

#plan .h2_catch {
  position: relative;
  margin-left: -10%;
  padding: 0 0 2em 0;
  font-size: 105%;
  font-weight: 600;
}

#plan .h2_catch::before {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 4px;
  background: #ff8a00;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  #plan .h2_catch {
    margin-left: -30px;
    padding-left: 10px;
  }

  #plan .h2_catch::before {
    width: 80px;
    height: 5px;
    left: 0;
  }
}

#plan .ttl_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#plan .ttl_box .box {
  width: 50%;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #plan .ttl_box .box {
    width: 100%;
    font-size: 125%;
    text-align: center;
  }
}

#plan .ttl_box dl dt {
  padding: 0.3em 0 0 0;
  color: #989898;
  font-size: 130%;
  font-weight: 600;
}

#plan .ttl_box dl dt img {
  width: 40px;
  height: auto;
}

#plan .ttl_box dl dd {
  padding: 0 0 1em 1.5em;
  border-bottom: 1px solid #999;
  font-size: 115%;
  line-height: 1;
}

#plan h2 {
  margin-left: -10%;
  padding: 0.5em 0;
  font-size: 210%;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  #plan h2 {
    margin-left: -20px;
    font-size: 200%;
  }
}

#plan dl.lead {
  margin-top: 2.5rem;
}

#plan dl.lead dt {
  padding: 0.8em 0;
  border: 1px solid #999;
  font-size: 110%;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #plan dl.lead dt {
    font-size: 130%;
  }
}

#plan dl.lead dd {
  padding: 1.2em 0;
  border-bottom: 1px solid #999;
  font-size: 130%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #plan dl.lead dd {
    padding: 0.8em 0;
    font-size: 140%;
  }
}

#plan dl.lead dd span {
  font-weight: 600;
  font-size: 140%;
}

#plan dl.lead dd strong {
  font-weight: 600;
  font-size: 140%;
}

#plan .note {
  margin-top: 1rem;
  font-size: 120%;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #plan .note {
    margin-top: 0;
    font-size: 140%;
  }
}

#plan .plan_ttl {
  margin-top: 2rem;
  font-size: 120%;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #plan .plan_ttl {
    font-size: 140%;
    text-align: center;
  }
}

#plan .plan_ttl span {
  margin-right: 0.5em;
  padding: 0.3em 0.5em;
  border: 1px solid #ff8b00;
  font-size: 90%;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  #plan .plan_ttl span {
    display: inline-block;
    margin: 0 0 0.5em 0;
  }
}

#plan .plan_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

#plan .plan_box .img {
  position: relative;
  width: 48%;
}

@media screen and (max-width: 767px) {
  #plan .plan_box .img {
    width: 80%;
    margin: 0 auto;
  }
}

#plan .plan_box .img span {
  position: absolute;
  padding: 0.7em 1.5em;
  background: #ff2e5f;
  color: #fff;
  line-height: 1;
}

#plan .plan_box .box {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #plan .plan_box .box {
    width: 100%;
    margin-top: 1.5rem;
  }
}

#plan .plan_box .box dl dt {
  padding: 0.4em 0;
  border: 1px solid #999;
  font-size: 110%;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #plan .plan_box .box dl dt {
    font-size: 130%;
  }
}

#plan .plan_box .box dl dd {
  padding: 1.5em 0;
  border-bottom: 1px solid #999;
  text-align: center;
}

#plan .plan_box .box dl dd ul {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 1em auto 0 auto;
  color: #fff;
  font-size: 105%;
  line-height: 1;
}

#plan .plan_box .box dl dd ul li {
  width: 32.5%;
  margin-right: 1.25%;
  padding: 0.4em 0;
  background: #030303;
  border-radius: 2em;
}

#plan .plan_box .box dl dd ul li:nth-child(3n) {
  margin-right: 0;
}

#plan .plan_box .box h3 {
  font-size: 120%;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #plan .plan_box .box h3 {
    font-size: 130%;
    letter-spacing: -0.05em;
  }
}

#plan .plan_box .box h3 span {
  font-size: 150%;
}

#plan .price_box {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

#plan .price_box .ippan {
  width: 49%;
  margin-top: 1.8rem;
}

#plan .price_box .ippan p.ttl {
  padding: 0.6em 0;
  border: 1px solid #999;
  font-weight: 600;
}

#plan .price_box .ippan p.price {
  margin: 1em 0 0 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 160%;
  font-weight: 600;
  line-height: 1;
}

#plan .price_box .ippan p.price span {
  font-size: 160%;
}

#plan .price_box .special {
  width: 49%;
  margin-top: 1.8rem;
}

#plan .price_box .special p.ttl {
  padding: 0.6em 0;
  border: 1px solid #fc8b01;
  color: #fc8b01;
  font-weight: 600;
}

#plan .price_box .special p.price {
  margin: 0.3em 0 0 0;
  padding: 0;
  color: #fc8b01;
  font-family: "Noto Serif JP", serif;
  font-size: 180%;
  font-weight: 600;
  line-height: 1;
}

#plan .price_box .special p.price span {
  font-size: 220%;
}

#plan .price_box .special p.price .pink {
  font-size: 70%;
}

#plan .atn {
  width: 70%;
  max-width: 500px;
  margin: 1.5rem auto 0 auto;
  padding: 0.7em 0;
  background: #ff2e5f;
  color: #fff;
  text-align: center;
}

#plan table {
  width: 100%;
  margin-top: 1.5rem;
  border: 1px solid #999;
}

#plan table th {
  width: 50%;
  padding: 0.8em 1.3em;
  background: #f6f6f6;
  border-bottom: 1px solid #999;
  font-weight: 600;
}

#plan table td {
  width: 50%;
  padding: 0.8em 1.3em;
  border-bottom: 1px solid #999;
  text-align: right;
}

#plan .cmt {
  width: 76%;
  margin: 4.5rem auto 1rem auto;
  padding: 1.6em 0;
  background: #ededed;
  font-size: 120%;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #plan .cmt {
    width: 100%;
    font-size: 130%;
  }
}

/*********************************
 * voice
 *********************************/
#voice {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 0 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #voice {
    padding: 4rem 0 0 0;
  }
}

#voice .voice_inner {
  width: 75%;
  max-width: 1002px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #voice .voice_inner {
    position: relative;
    width: calc(100% - 60px);
  }
}

#voice h3 {
  position: relative;
  font-size: 210%;
  padding-bottom: 0.8em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #voice h3 {
    font-size: 220%;
  }
}

#voice h3::before {
  position: absolute;
  display: block;
  content: "";
  width: 70px;
  height: 3px;
  background: #030303;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#voice p {
  margin-top: 1rem;
  font-size: 120%;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #voice p {
    font-size: 140%;
  }
}

#voice .star {
  width: 50%;
  max-width: 300px;
  margin: 1rem auto 0 auto;
}

@media screen and (max-width: 767px) {
  #voice .star {
    width: 60%;
    margin: 0.8rem auto 0 auto;
  }
}

#voice .img {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  #voice .img {
    margin-top: 2rem;
  }
}

/*********************************
 * about
 *********************************/
#about {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

#about .about_img {
  padding: 5rem 0;
  background: url("../images/about_img01.jpg") left top no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  #about .about_img {
    padding: 3rem 0;
    background: url("../images/about_img01.jpg") center top no-repeat;
    background-size: cover;
  }
}

#about .about_img .about_img_inner {
  margin: 0 auto;
  padding: 0 10% 0 50px;
}

@media screen and (max-width: 767px) {
  #about .about_img .about_img_inner {
    padding: 0 30px;
  }
}

#about .about_img .about_img_inner h2 {
  width: 50px;
}

@media screen and (max-width: 767px) {
  #about .about_img .about_img_inner h2 {
    width: 40px;
  }
}

#about .about_img .about_img_inner p {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 120%;
  line-height: 2.5;
  text-align: right;
}

#about .about_inner {
  width: 75%;
  max-width: 1002px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #about .about_inner {
    width: 85%;
  }
}

#about ul.list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -3rem;
}

@media screen and (max-width: 767px) {
  #about ul.list {
    margin-top: 0;
  }
}

#about ul.list li {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 32%;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #about ul.list li {
    width: 100%;
    margin-top: 2rem;
  }
}

#about ul.list dl dt {
  padding: 1em 0;
  background: #f4f4ec;
  font-family: "Noto Serif JP", serif;
  font-size: 180%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #about ul.list dl dt {
    font-size: 200%;
  }
}

#about ul.list dl dd {
  padding: 2em 1.5em;
  font-size: 110%;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  #about ul.list dl dd {
    padding: 1em;
    font-size: 130%;
  }
}

#about ul.list .img {
  width: 100%;
  margin-top: auto;
}

#about .media {
  margin-top: 8rem;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #about .media {
    margin-top: 5rem;
  }
}

#about .media h2 {
  padding: 0.5em 0;
  border-bottom: 1px solid #999;
  font-size: 180%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #about .media h2 {
    font-size: 160%;
    line-height: 1.7;
  }
}

#about .media ul {
  padding: 1.5em 1em;
  display: flex;
  flex-wrap: wrap;
  font-size: 115%;
  line-height: 2;
}

#about .media ul li {
  position: relative;
  padding: 0 1em;
}

@media screen and (max-width: 767px) {
  #about .media ul li {
    width: 100%;
    margin: 0.2em 0;
    line-height: 1.6;
  }
}

#about .media ul li::before {
  position: absolute;
  display: inline-block;
  content: "●";
  color: #ff8a00;
  left: 0;
}

#about .jyumokusou {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  #about .jyumokusou {
    margin-top: 5rem;
  }
}

#about .jyumokusou .img {
  width: 38%;
  max-width: 378px;
}

@media screen and (max-width: 767px) {
  #about .jyumokusou .img {
    width: 60%;
    margin: 0 auto;
  }
}

#about .jyumokusou .box {
  width: 58%;
}

@media screen and (max-width: 767px) {
  #about .jyumokusou .box {
    width: 100%;
  }
}

#about .jyumokusou h3 {
  font-size: 180%;
}

@media screen and (max-width: 767px) {
  #about .jyumokusou h3 {
    margin-top: 2rem;
    text-align: center;
  }
}

#about .jyumokusou p {
  margin-top: 0.5rem;
  font-size: 110%;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #about .jyumokusou p {
    font-size: 120%;
  }
}

#about .access {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  #about .access {
    margin-top: 5rem;
  }
}

#about .access h3 {
  font-size: 210%;
  text-align: center;
}

#about .access dl.name {
  display: flex;
  margin-top: 1rem;
  border-top: 1px solid #999;
}

#about .access dl.name dt {
  padding: 2rem 3rem 0 0;
  border-right: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #about .access dl.name dt {
    padding: 1rem 1rem 0 0;
    line-height: 1.5;
  }
}

#about .access dl.name dt span {
  font-size: 220%;
}

@media screen and (max-width: 767px) {
  #about .access dl.name dt span {
    font-size: 160%;
  }
}

#about .access dl.name dd {
  padding: 2rem 0 0 3rem;
  font-size: 120%;
  line-height: 1.8;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #about .access dl.name dd {
    padding: 1rem 0 0 1rem;
    font-size: 110%;
  }
}

#about .access ul {
  width: 92.5%;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  #about .access ul {
    margin-top: 2rem;
  }
}

#about .access ul li {
  width: 108%;
  margin-top: 1rem;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid #999;
}

@media screen and (max-width: 767px) {
  #about .access ul li {
    margin-top: 0.8em;
    padding: 1rem 1rem 1.5rem 1rem;
  }
}

#about .access ul dl dt {
  display: flex;
  align-items: center;
  font-size: 150%;
  font-weight: 600;
}

#about .access ul dl dt img {
  width: 51px;
  margin-right: 9px;
}

#about .access ul dl dd {
  padding: 0.5em 1em 0 60px;
  font-size: 120%;
}

#about .yoimairi-text {
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "MS Mincho",
    serif;
  font-weight: bold;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #2b2b2b;
  background: linear-gradient(to right, rgba(255, 248, 220, 0.6), rgba(255, 255, 255, 0.9));
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #about .access ul dl dd {
    padding: 0 1em 0 60px;
  }

  #about .yoimairi-text {
    font-size: 1em;
  }
}

#about .map {
  margin: 5rem 0 0 0;
}

#about .map iframe {
  width: 100%;
  vertical-align: bottom;
}

/*********************************
 * support
 *********************************/
#support {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: #f4f4ec;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #support {
    padding: 3rem 0;
  }
}

.support_inner {
  width: 80%;
  max-width: 1104px;
  margin: 0 auto;
  padding: 3rem 2em;
  background: #fff;
  border: 10px solid #e1dfd3;
}

#support .support_tokuten {
  width: 80%;
  margin: 3em auto;
}

@media screen and (max-width: 767px) {
  #support .support_inner {
    position: relative;
    width: calc(100% - 60px);
    padding: 0;
    border: 0;
    background: none;
  }
}

#support .catch {
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

#support .catch span {
  display: inline-block;
  width: 50%;
  padding: 0.5em 0;
  background: #ff8a00;
}

@media screen and (max-width: 767px) {
  #support .catch span {
    width: auto;
    padding: 0.5em 2em;
  }
}

#support h2 {
  padding: 0.7em 0 0.3em 0;
  border-bottom: 1px solid #999;
  font-size: 200%;
  text-align: center;
}

#support dl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

#support dl dt {
  width: 20%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #support dl dt {
    width: 100%;
    text-align: center;
  }
}

#support dl dt img {
  width: 60%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #support dl dt img {
    width: 30%;
  }
}

#support dl dd {
  width: 65%;
  font-size: 120%;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #support dl dd {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 130%;
  }
}

#support dl dd .mini {
  font-size: 80%;
}

@media screen and (max-width: 767px) {
  #support dl dd .mini {
    display: inline-block;
    margin-top: 0.5em;
    line-height: 1.4;
  }
}

#support .ttl {
  position: relative;
  width: 50%;
  margin: 4rem auto 0 auto;
  padding: 0.7em 0;
  background: #fff;
  border: 5px solid #ddd;
  border-radius: 2em;
  font-size: 130%;
  line-height: 1;
  text-align: center;
  overflow-x: +1;
}

@media screen and (max-width: 767px) {
  #support .ttl {
    margin: 3rem auto 0 auto;
    width: 80%;
    border: 3px solid #ddd;
  }
}

#support .img {
  width: 70%;
  max-width: 750px;
  margin: -2rem auto 0 auto;
}

@media screen and (max-width: 767px) {
  #support .img {
    width: 100%;
    margin: -1.5rem auto 0 auto;
  }
}

#support .voice_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

#support .voice_box dl {
  width: 49%;
  border: 1px solid #999;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  #support .voice_box dl {
    width: 100%;
    background: #fff;
  }
}

#support .voice_box dl dt {
  width: 90px;
  padding: 1rem 0;
  text-align: center;
}

#support .voice_box dl dt img {
  width: 50px;
}

#support .voice_box dl dd {
  width: calc(100% - 100px);
  padding: 1rem 1rem 1rem 0;
  font-size: 100%;
  line-height: 1.8;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #support .voice_box dl dd {
    font-size: 110%;
  }
}

#support .voice_box dl.customer dt {
  width: 110px;
}

#support .voice_box dl.customer dt img {
  width: 76px;
}

#support .voice_box dl.customer dd {
  width: calc(100% - 120px);
}

@media screen and (max-width: 767px) {
  #support .voice_box dl.customer dd {
    font-size: 110%;
  }
}

#support .cmt {
  width: 76%;
  margin: 4.5rem auto 1rem auto;
  padding: 1.6em 0;
  background: #ededed;
  font-size: 120%;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #support .cmt {
    width: 100%;
    margin: 2.5rem auto 1rem auto;
  }
}

/*********************************
 * reserve
 *********************************/
#reserve {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 2rem 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #reserve {
    padding: 4rem 0;
  }
}

#reserve h2 {
  padding-bottom: 1em;
  border-bottom: 1px solid #999;
  font-size: 200%;
  text-align: center;
}

#reserve .reserve_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #reserve .reserve_inner {
    width: 85%;
  }
}

#reserve .lead {
  margin-top: 1rem;
  font-size: 110%;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #reserve .lead {
    font-size: 120%;
  }
}

#reserve .form {
  width: 75%;
}

@media screen and (max-width: 767px) {
  #reserve .form {
    width: 100%;
    margin-top: 2rem;
  }
}

#reserve .form__list-item {
  font-size: 150%;
  border: 0;
}

#reserve .note {
  padding: 0;
  font-size: 80%;
  text-align: left;
}

#reserve .icon-required {
  margin-right: 0.5em;
  padding: 0.5em 1em;
  border-radius: 5px;
  background: #f75b5c;
  font-size: 70%;
  font-weight: 600;
}

#reserve .icon-optional {
  margin-right: 0.5em;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: 70%;
  font-weight: 600;
}

#reserve .form input,
#reserve .form textarea {
  background: #fff;
}

#reserve .form label.date .calendar::before {
  font-size: 1.2em;
  top: 0.25em;
  left: .3em;
  z-index: 10;
}

#reserve .form__privacy {
  font-size: 130%;
  line-height: 1.8;
}

#reserve .form__privacy a {
  color: #030303;
  border-bottom: 1px solid #030303;
}

@media screen and (max-width: 767px) {
  #reserve .form__privacy-item01 {
    text-align: center;
  }
}

#reserve .form label.radio,
#reserve .form label.checkbox {
  font-size: 120% !important;
  font-weight: 700 !important;
}

#reserve .form label input[type='radio'],
#reserve .form label input[type='checkbox'] {
  top: 0.1em;
}

#reserve .form__button {
  max-width: 550px;
}

@media screen and (max-width: 767px) {
  #reserve .form__button {
    width: 100%;
  }
}

#reserve .form__button button[type='submit'] {
  width: 100%;
  padding: 0.9em 0;
  background: #030303 url("../images/arw_white.png") right 20px center no-repeat;
  background-size: auto 0.8em;
  border-radius: 0;
  font-weight: 500;
}

#reserve .form__button button[type='button'] {
  position: relative;
  width: 100%;
  padding: 0.9em 0;
  font-weight: 500;
  background-color: #030303;
  border-radius: 0;
}

#reserve .form__button button[type='button']::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.85em;
  height: 0.85em;
  background: url("../images/arw_white.png") center center no-repeat;
  background-size: contain;
  transform: scale(-1, 1);
  left: 20px;
  top: 1em;
}

#reserve .confirm__text {
  margin-top: 2rem;
  font-size: 120%;
}

#reserve .form__list-item .error {
  padding-top: 0;
  font-size: 80%;
}

/*********************************
 * reqest
 *********************************/
#reqest {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: #f4f4ec;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #reqest {
    padding: 2.5rem 0;
  }
}

#reqest .reqest_inner {
  width: 75%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #reqest .reqest_inner {
    width: 100%;
  }
}

#reqest .btn {
  width: 550px;
  margin: 0 auto;
  font-size: 170%;
}

@media screen and (max-width: 767px) {
  #reqest .btn {
    width: calc(100% - 60px);
    font-size: 170%;
  }
}

#reqest .btn a {
  position: relative;
  display: block;
  padding: 0.9em 0;
  background: #fff701 url("../images/icon_request.svg") left 20px center no-repeat;
  background-size: auto 1.8em;
  color: #030303;
  text-align: center;
}

#reqest .btn a::before {
  position: absolute;
  display: block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  top: 50%;
  right: 20px;
  background: url("../images/arw_black.png") center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

/*********************************
 *
 * FOOTER
 *
 *********************************/
footer {
  width: 100%;
  padding: 5rem 0 4rem 0;
  background: #ff8a00;
  color: #fff;
  font-weight: 400;
  text-align: center;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 2rem 0 3rem 0;
  }
}

footer #pagetop {
  position: fixed;
  width: 33px;
  bottom: 50px;
  right: 50px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  footer #pagetop {
    bottom: 10px;
    right: 10px;
  }
}

footer .name {
  font-size: 115%;
  line-height: 1.8;
}

footer .name span {
  font-size: 190%;
}

footer .btn {
  margin-top: 1.5rem;
}

footer .btn a {
  display: inline-block;
  padding: 0.6em 3em;
  border: 1px solid #fff;
  border-radius: 2em;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

footer .copy {
  margin-top: 4rem;
}