@charset "UTF-8";

@media screen and (max-width: 600px) {
}




/* ======================= */
   /* header */
/* ======================= */

header {
  width: 100%;
  position: fixed;
  background-color: rgb(244 233 228 / 90%);
  display: grid;
  z-index: 100;
  transition: all 0.1s ease-out;
  transition-property: min-height, padding, display;
}
header h1 {
  transition: all 0.1s ease-out;
  transition-property: min-height, padding, display;
}
header.fixed {
  min-height: 100px;
}
header.fixed .inner {
  padding: 1.1em 0 0.7em;
}
header > * {
  position: relative;
}
header > *::before,
header > *::after {
  position: absolute;
  content: "";
}
header > *::before {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_head01.png);
  background-size: auto 100%;
  z-index: -1;
  opacity: 0.15;
}
header > *::after {
  top: 0;
  z-index: 3;
  width: 100%;
  height: 11px;
  background-image: url(../img/bg_head02.png);
  background-size: auto 100%;
}
header .inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  align-items: center;
  height: 100%;
  transition: all 0.1s ease-out;
  transition-property: padding;
}
nav {
  display: flex;
  margin: 0 0 0 auto;
  padding: 0 0 0 2em;
  font-size: 89%;
  justify-content: flex-end;
}
nav a {
  position: relative;
  min-width: 9.375em;
  display: grid;
  text-align: center;
  align-items: center;
  background: #d8b8bf;
  min-height: 3.125em;
  margin: 0.2em;
}
nav a::before,
nav a::after {
  position: absolute;
  content: "";
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
nav a::before {
  width: 1.313em;
  left: 0.4em;
  background-image: url(../img/ico_sakura01.svg);
}
nav a::after {
  width: 1.125em;
  right: 0.4em;
  bottom: -0.5em;
  background-image: url(../img/ico_sakura02.svg);
}

@media screen and (min-width: 801px) {
  header {
    min-height: 150px;
  }
}

@media screen and (max-width: 930px) {
  header .inner {
    flex-direction: column;
    padding: 2em 15px 1em;
  }
  nav {
    margin: auto;
    padding: 0;
  }
  nav a {
    width: 22vw;
    min-width: auto;
  }
  header h1 {
    padding: 0 0 1em;
    text-align: center;
  }
  header.fixed h1 {
    display: none;
  }
  header.fixed {
    min-height: 5em;
  }
  header.fixed .inner {
    padding: 0.65em 15px 0;
  }
}

@media screen and (max-width: 800px) {
  nav a {
    min-height: 2.85em;
  }
}

@media screen and (max-width: 600px) {
  header h1 {
    width: 46vw;
    max-width: 215px;
  }
  header .inner {
    padding: 8vw 3vw 2.9vw;
  }
  header.fixed .inner {
    padding: 2vw 3vw 0;
  }
}

@media screen and (max-width: 480px) {
  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: calc(11px + 0.2vw) 0 0;
  }
  nav a {
    width: 48.4%;
    margin: 0.8%;
  }
  header h1 {
    padding: 0 0 1.6vw;
  }
  header.fixed .inner {
    padding: 2vw 3vw 2vw;
  }
}




.mv {
  position: relative;
  margin: 150px 0 0;
}
.mv > picture {
  z-index: 0;
  display: block;
}
body .slider {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 930px) {
  .mv {
    margin: 10.8em 0 0;
  }
}

@media screen and (max-width: 800px) {
  .mv {
    margin: 10.5em 0 0;
  }
}

@media screen and (max-width: 760px) {
  .mv {
    margin: 11em 0 0;
  }
}

@media screen and (max-width: 600px) {
  .mv {
    margin: calc(7em + 12.6vw) 0 0;
  }
}

@media screen and (max-width: 480px) {
  .mv {
    margin: calc(9.7em + 13.6vw) 0 0;
  }
}




/* ======================= */
   /* page top */
/* ======================= */

#pagetop {
  position: absolute;
  width: 3.8em;
  height: 3.8em;
  cursor: pointer;
  background-color: var(--main-color);
  transition: all 0.3s ease-out;
  transition-property: background-color;
  right: 5em;
  margin: auto;
}
#pagetop:hover {
  filter: brightness(110%);
}
#pagetop span {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
}
#pagetop span::before {
  position: absolute;
  content: "";
  width: 0.8em;
  height: 0.65em;
  top: 38%;
  left: 0;
  right: 0;
  margin: auto;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
  border-bottom: 0.65em solid #fff;
}

@media screen and (max-width: 800px) {
  #pagetop {
    width: 2.8em;
    height: 2.8em;
    right: 2em;
  }
  #pagetop span::before {
    width: 6px;
    height: 6px;
    border-right: 3px solid transparent;
    border-left: 3px solid transparent;
    border-bottom: 6px solid #fff;
  }
}


/* ======================= */
   /* footer */
/* ======================= */

footer {
  margin: auto 0 0;
}
.copyright {
  font-family: arial;
  font-size: 83%;
  text-align: center;
  padding: 5em 0 3.5em;
  letter-spacing: 0.09em;
}
.copyright span {
  font-weight: 600;
}

@media screen and (min-width: 801px) {
}

@media screen and (max-width: 800px) {
  .copyright {
    font-size: 50%;
    padding: 1.5em 0;
    border-top: 1px solid #cccccc;
  }
}

@media screen and (max-width: 480px) {
  .copyright {
    font-size: 67%;
  }
}




/* ============================================ */
/* 内容 */
/* ============================================ */


/* 共通 */
/* ============================================ */

section {
  padding: 3.5em 0;
}


h2,h3,h4,h5 {
  line-height: 1.5;
}
h2 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2em;
  padding: 0 0.5em 0.27em 3.3em;
  font-size: 1.65em;
  color: var(--main-color);
  font-family: var(--font-mincho);
}
h2 span {
  text-align: left;
}
h2::before,
h2::after {
  position: absolute;
  content: "";
}
h2::before {
  position: absolute;
  content: "";
  height: 99%;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 2.4em;
  left: 0;
  bottom: 0;
  background-image: url(../img/img_croud.svg);
}
h2::after {
  width: 160%;
  height: 0.19em;
  bottom: 0;
  left: 0;
  background-color: var(--main-color);
  transform: translateX(1.5em);
}
section:nth-of-type(odd) h2 {
  text-align: right;
  padding: 0 3.3em 0.27em 0.5em;
}
section:nth-of-type(odd) h2::before {
  transform: scale(-1,1);
  left: unset;
  right: 0;
}
section:nth-of-type(odd) h2::after {
  transform: scale(-1,1) translateX(1.5em);
  left: unset;
  right: 0;
}

@media screen and (max-width: 800px) {
  h2 {
    font-size: 1.45em;
    margin: 0 auto 1.5em;
  }
  section {
    padding: 2.5em 0;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 5.1vw;
  }
  body h2 {
    padding-bottom: 0.6em;
  }
  section:nth-of-type(odd) h2 {
    padding: 0 3.3em 0.6em 0.5em;
  }
}



/* バナー */
/* ============================================ */

@media screen and (min-width: 801px) {
  #bnr {
    padding-top: 0;
  }
}

@media screen and (max-width: 800px) {
  #bnr {
    padding: 2em 0 1.2em;
  }
}



/* コンシェルジュ型とは */
/* ============================================ */

#what p {
  font-size: 1.35em;
  letter-spacing: 0.05em;
  margin: auto;
}
#what {
  position: relative;
}
#what::before {
  position: absolute;
  content: "";
  width: 43.5em;
  max-width: 47%;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background-image: url(../img/bg01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
#what .inner {
  display: flex;
}

@media screen and (min-width: 871px) {
  #what picture {
    width: 350px;
    margin-right: 3.5em;
  }
  #what p {
    width: 620px;
  }
}

@media screen and (max-width: 870px) {
  #what .inner {
    flex-direction: column;
  }
  #what picture {
    padding: 0 0 1em;
  }
  #what p {
    margin: 0 auto 0 0;
  }
}

@media screen and (max-width: 800px) {
  #what p {
    font-size: 1em;
  }
  #what {
    padding-bottom: 1.4em;
  }
}




/* ご利用くださった方の「お声」 */
/* ============================================ */

#voice .bg {
  position: relative;
  background: #efe5da;
  padding: 1.3em;
}
#voice {
  position: relative;
}
#voice::before,
#voice .inner::before {
  position: absolute;
  content: "";
}
#voice::before {
  width: 46.56em;
  height: 100%;
  left: -0.5%;
  bottom: 6%;
  margin: auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  background-image: url(../img/bg02.png);
}
#voice .inner::before {
  width: 42.67em;
  height: 100%;
  left: -13%;
  bottom: -5.5%;
  margin: auto;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  background-image: url(../img/bg03.png);
}
#voice .bg > * {
  background: #fff;
  width: 100%;
  padding: 2em 3em 3em;
}
#voice .bg > * > * {
  display: block;
  max-width: 920px;
  margin: 0 auto;
}
#voice span {
  display: block;
  padding: 1.3em 0 0;
  font-weight: 600;
}
#voice .flex {
  justify-content: space-between;
}
#voice .flex:not(:last-of-type) {
  margin-bottom: 3.7em;
}
#voice .flex p {
  line-height: 2.1;
  margin: 0 auto 0 0;
  text-align: left;
}

@media screen and (min-width: 1041px) {
  #voice picture {
    padding-top: 0.5em;
  }
  #voice .flex:nth-of-type(odd) picture {
    margin-left: 1.2em;
  }
  #voice .flex:nth-of-type(even) picture {
    margin-right: 4.5em;
  }
}

@media screen and (max-width: 1040px) {
  #voice .flex {
    flex-direction: column;
    display: inline-flex;
    margin: 0 auto;
  }
  #voice .flex picture {
    order: 1;
    padding: 0 0 0.55em;
  }
  #voice .flex p {
    order: 2;
  }
  #voice .bg > * {
    padding: 2em 2em 3em;
  }
  #voice .bg > * > * {
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  #voice .flex:not(:last-of-type) {
    margin-bottom: 2.5em;
  }
  #voice::before,
  #voice .inner::before {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #voice .bg > * {
    padding: 1em 1em 2em;
  }
  #voice .bg {
    padding: 1em;
  }
}




/* コンシェルジュ型のメリット */
/* ============================================ */

#merit {
  position: relative;
}
#merit::before {
  position: absolute;
  content: "";
  width: 67.23em;
  max-width: 81%;
  height: 100%;
  right: 0;
  top: 44.2em;
  margin: auto;
  background-image: url(../img/bg04.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
#merit .inner h3 {
  position: relative;
  font-size: 1.67em;
  font-weight: 600;
}
#merit .inner > *:nth-child(1) h3 {
  text-align: left;
  display: flex;
  padding: 1.1em 0 0;
}
#merit .inner > *:nth-child(1) h3::before {
  position: absolute;
  content: "";
  width: 4.935em;
  height: 150px;
  left: -2.25em;
  top: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
#merit .inner > *:nth-child(1) h3:nth-of-type(1):before {
  background-image: url(../img/img_merit01.png);
}
#merit .inner > *:nth-child(1) h3:nth-of-type(2):before {
  background-image: url(../img/img_merit02.png);
}
#merit .inner > *:nth-child(1) h3:nth-of-type(3):before {
  background-image: url(../img/img_merit03.png);
}
#merit .inner > *:nth-child(1) h3:nth-of-type(4):before {
  background-image: url(../img/img_merit04.png);
}
#merit h3 span {
  color: var(--main-color);
  padding-right: 0.65em;
}
#merit .inner > *:nth-child(1) p {
  font-size: 1.33em;
  padding: 1em 0 2.7em 4em;
}
#merit .inner > *:nth-child(1) {
  padding: 0 3em 0 6.7em;
}
#merit > .inner > *:nth-child(2) {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 6em 0 5em;
}
#merit > .inner > *:nth-child(2) picture {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#merit > .inner > *:nth-child(2) picture img {
  margin-bottom: 1.5em;
}
#merit > .inner > *:nth-child(2) picture a:not(:last-of-type) {
  margin-right: 1em;
}
#merit h3 {
  text-align: center;
  display: block;
}
#merit .inner > *:nth-child(n+3) {
  position: relative;
  padding: 2.5em 0;
}
#merit .inner > *:nth-child(n+3) h3 {
  position: relative;
  padding: 1em 0;
}
#merit .inner > *:nth-child(n+3) h3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
#merit .inner > *:nth-child(3) h3::before {
  background-image: url(../img/img_merit12.png);
}
#merit .inner > *:nth-child(4) h3::before {
  background-image: url(../img/img_merit13.png);
  background-position: 57% 50%;
}
#merit .inner > *:nth-child(5) h3::before {
  background-image: url(../img/img_merit14.png);
  background-position: 52% 50%;
}
#merit .inner > *:nth-child(6) h3::before {
  background-image: url(../img/img_merit15.png);
  background-position: 51% 50%;
}
#merit .inner > *:nth-child(7) h3::before {
  background-image: url(../img/img_merit16.png);
  top: 11%;
}
#merit .inner > *:nth-child(8) h3::before {
  background-image: url(../img/img_merit17.png);
  background-position: 41% 50%;
  top: 6%;
}
#merit .inner > *:nth-child(n+3) .flex {
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em 0 0;
}
#merit .inner > *:nth-child(odd) .flex figure {
  order: 1;
}
#merit .inner > *:nth-child(odd) .flex div {
  order: 2;
  margin: auto auto auto 0;
}
#merit .inner > *:nth-child(n+3) .flex {
  font-size: 1.12em;
}
#merit .inner > *:nth-child(n+3) .flex p:not(:last-child) {
  padding-bottom: 1em;
}
figcaption {
  padding: 0.8em 0 0;
  text-align: left;
}
#merit .inner > *:nth-child(n+3)::before {
  position: absolute;
  content: "";
  width: 300%;
  height: 42%;
  left: 35%;
  top: 29%;
  z-index: -1;
}
#merit .inner > *:nth-child(even)::before {
  right: 35%;
  left: unset;
  background: #f5f0ed;
}
#merit .inner > *:nth-child(odd)::before {
  background: #f7f5e6;
}
#merit .inner > *:nth-child(3)::before {
  bottom: 30%;
}
#merit .inner > *:nth-child(8)::before {
  right: 23.5%;
  height: 60%;
  top: 21%;
}
#merit .inner > *:nth-child(n+3) .flex .txt ul {
  font-size: 1.49em;
  padding: 0.2em 0 0;
}
#merit .inner > *:nth-child(n+3) .flex .txt ul li {
  padding: 0.3em 0;
}
#merit .inner > *:nth-child(n+3) .flex div {
  text-align: left;
}

@media screen and (min-width: 901px) {
  #merit .inner > *:nth-child(odd) .flex figure {
    margin-right: 2.3em;
  }
}

@media screen and (max-width: 1900px) {
  #merit::before {
    width: 120em;
  }
}

@media screen and (max-width: 900px) {
  #merit .inner > *:nth-child(n+3) .flex {
    flex-direction: column;
    padding: 1.4em 0 0;
    margin: 0 auto;
    display: inline-flex;
  }
  #merit .inner > *:nth-child(n+3) .flex figure {
    order: 1;
    margin: 0 auto;
    padding: 0 0 1.3em;
  }
  #merit .inner > *:nth-child(n+3) .flex div {
    order: 2;
    margin: 0 auto 0 0;
  }
  #merit .inner > *:nth-child(n+3)::before {
    display: none;
  }
  #merit .inner > *:nth-child(n+3) .flex .txt ul {
    font-size: 1.15em;
  }
  #merit .inner > *:nth-child(n+3) {
    padding: 2em 0;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  #merit .inner > *:nth-child(1) {
    padding: 0 0 0 2em;
  }
  #merit .inner h3 {
    font-size: 1.4em;
  }
  #merit .inner > *:nth-child(1) p {
    font-size: 1.2em;
    padding: 1em 0 2.5em 3.5em;
  }
  #merit .inner > *:nth-child(1) h3::before {
    width: 4em;
    left: -1.8em;
    top: 0;
    background-position: top;
  }
  #merit h3 span {
    padding-right: 2em;
  }
  #merit::before {
    top: 0;
    bottom: 63.5%;
    background-position: center;
    max-width: 74%;
  }
  #merit > .inner > *:nth-child(2) {
    padding: 19vw 0 1em;
  }
}

@media screen and (max-width: 650px) {
  #merit > .inner > *:nth-child(2) picture {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 630px) {
  #merit .inner > *:nth-child(8) h3::before {
    background-position: calc(50% - 1.8em) 50%;
  }
  #merit .inner > *:nth-child(4) h3::before {
    background-position: calc(50% - -1.5em) 50%;
  }
}

@media screen and (max-width: 480px) {
  #merit > .inner > *:nth-child(2) picture a {
    width: 20%;
  }
  #merit > .inner > *:nth-child(2) picture a:not(:last-of-type) {
    margin-right: 4.5vw;
  }
  #merit .inner h3 {
    font-size: 1.2em;
    min-height: 3em;
  }
  #merit .inner > *:nth-child(1) p {
    font-size: 1.05em;
    padding: 1em 0 1.6em 2.5em;
  }
  /* #merit .inner > *:nth-child(8) img {
    height: 75vw;
  } */
}





/* ============================================ */
/* 価格 */
/* ============================================ */

#price .inner > *:nth-child(1) {
  position: relative;
  border: 6px solid #bb974a;
  padding: 2.2em 2em 3.2em;
}
#price .inner > *:nth-child(1)::before,
#price .inner > *:nth-child(1)::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
#price .inner > *:nth-child(1)::before {
  width: 29.6112em;
  max-width: 53%;
  left: -13%;
  top: -20%;
  background-image: url(../img/bg05.png);
}
#price .inner > *:nth-child(1)::after {
  height: 28.834em;
  max-width: 53%;
  right: -13.6%;
  bottom: -32%;
  background-position: 100%;
  background-image: url(../img/bg06.png);
}
#price h3 {
  font-size: 2em;
  text-align: center;
  margin: 0 0 1.8em;
  letter-spacing: 0.1em;
}
#price h3 span {
  border-bottom: 1px solid #000;
  padding: 0 0 0.4em;
  display: inline-block;
}
#price dt,
#price dd {
  display: inline-block;
}
#price dt {
  width: 12em;
  font-weight: normal;
}
#price dd {
  width: calc(100% - 12em);
}
#price .flex > * {
  margin: 0 auto;
}
#price dl {
  display: flex;
}
#price .flex {
  font-size: 1.12em;
  max-width: 910px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#price .inner > *:nth-child(2) {
  padding: 2.2em 0;
}
#price .flex > * {
  padding: 0 0.5em;
}

@media screen and (min-width: 801px) {
  #price .inner {
    padding-top: 3em;
  }
}

@media screen and (max-width: 1070px) {
  #price .inner > *:nth-child(1)::after {
    max-width: 28%;
    bottom: -57%;
  }
  #price .inner > *:nth-child(1)::before {
    max-width: 48%;
  }
}

@media screen and (max-width: 800px) {
  #price .inner > *:nth-child(1)::before,
  #price .inner > *:nth-child(1)::after {
    display: none;
  }
  section#price {
    padding-top: 1em;
  }
}

@media screen and (max-width: 600px) {
  #price .flex > * {
    padding: 0;
  }
  #price .inner > *:nth-child(1) {
    border: 3px solid #bb974a;
    padding: 1.4em 1em;
  }
  #price h3 {
    font-size: 1.6em;
  }
}





/* ============================================ */
/* よくあるご質問 */
/* ============================================ */

#faq {
  position: relative;
  background-color: var(--base-color);
}
#faq::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: 15em, 14em, 14em;
  background-image: url(../img/bg07.png), url(../img/bg08.png), url(../img/bg09.png);
  background-position: 1% 7%, 100% 52%, 0 82%;
}
#faq .inner > * {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 2em 2em 2em 1.3em;
}
#faq h3 {
  font-size: 1.33em;
  padding: 0 0 1.6em;
}
#faq p {
  letter-spacing: 0.05em;
}
#faq .inner > *:not(:last-of-type) {
  margin-bottom: 1.6em;
}
#faq picture {
  padding: 0.6em 0 0;
  margin: auto 0;
}
#faq .txt {
  padding-right: 1em;
}

@media screen and (max-width: 900px) {
  #faq .inner > * {
    flex-direction: column;
  }
  #faq .txt {
    padding-bottom: 0.5em;
  }
}

@media screen and (max-width: 900px) {
  #faq::before {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #faq h3 {
    padding: 0 0 5vw;
  }
}





/* ============================================ */
/* 店舗情報 */
/* ============================================ */

#tenpo h3 {
  font-size: 1.33em;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 0 1em;
}
#tenpo .flex {
  padding: 0 0 2em;
}
#tenpo .flex picture {
  order: 1;
}
#tenpo .flex .txt {
  order: 2;
  margin: auto 0;
}
#tenpo .map {
  margin: 0 0 6em;
  height: 300px;
  overflow: hidden;
  width: 100%;
}
iframe {
  width: 100%;
  height: 665px;
  margin-top: -170px;
}
.btn_wrap {
  text-align: center;
}

@media screen and (min-width: 481px) {
  #tenpo .flex picture {
    margin-right: 1.5em;
  }
}

@media screen and (max-width: 800px) {
  #tenpo h3 {
    font-size: 1.13em;
    padding: 0 0 0.6em;
  }
}

@media screen and (max-width: 480px) {
  #tenpo .map {
    height: 54vw;
  }
  #tenpo iframe {
    height: calc(100% + 360px);
  }
  #tenpo .flex {
    flex-direction: column;
    padding: 0 0 1.45em;
  }
  #tenpo .flex picture {
    padding: 0 0 1em;
  }
  #tenpo .map {
    margin: 0 0 5em;
  }
}





/* ============================================ */
/* 会社概要 */
/* ============================================ */

table {
  width: 100%;
}
#company table {
  border: 1px solid #cccccc;
}
tr:not(:last-of-type) {
  border-bottom: 1px solid #cccccc;
}
th {
  padding: 0.74em 1.5em;
  font-weight: normal;
  width: 11em;
}
#company th {
  background-color: #e6e6e6;
  border-right: 1px solid #cccccc;
}
#company td {
  padding: 0.74em 1.5em;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  th {
    padding: 0.5em 1em;
    width: 8em;
  }
  td {
    padding: 0.5em 1em;
  }
}





/* ============================================ */
/* お問い合わせ */
/* ============================================ */

body .btn {
  min-height: 3.56em;
  background-color: #666666;
  border-radius: 100px;
  color: #fff;
}
#contact h2,
#reserve h2 {
  color: #fff;
  background-color: var(--main-color);
  text-align: center;
  max-width: 100%;
  min-height: 4.546em;
  display: grid;
  align-items: center;
  padding: 0;
}
#contact h2::before, #contact h2::after,
#reserve h2::before, #reserve h2::after {
  display: none;
}
#contact,
#reserve {
  background-color: #f2f2f2;
}
#contact {
  padding-top: 0;
}
#contact, #reserve, #cofirm {
  margin-top: 8.3em;
}
form dl,
form tr {
  display: flex;
  padding: 2.2em 0;
}
form dl {
  border-bottom: 1px solid #cccccc;
}
#contact .inner,
#reserve .inner {
  max-width: 1300px;
  background-color: #fff;
}
.privacybox {
  width: 588px;
  margin: 10px auto 20px;
  border: 1px solid #CCCCCC;
  height: 150px;
  padding: 13px;
  overflow: auto;
  font-size: 85%;
  max-width: 100%;
}
.privacy_accenpt {
  margin: 3.5em 0 2em;
}
input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  width: 23px;
  height: 23px;
  min-height: unset;
  border: 1px solid #B2B2B2;
  background-color: #fff;
  cursor: pointer;
  padding: 0;
  margin: 0 2px 2px 0;
}
input[type="checkbox"]:checked {
  background-color: var(--main-color);
}
input[type="checkbox"]:checked::before {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 0.7em;
  top: 8%;
  right: 0;
  left: 5%;
  margin: auto;
  border: solid 2px #fff;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}
form tr:last-child {
  display: none;
}
html body .icon_txt.icon_txt_window::before {
  right: 0;
  background-image: url(../img/ico_new_window.svg);
}
.privacy_accenpt a {
  text-decoration: underline;
  margin: 1.2em 0 0;
  display: inline-block;
}
.btn {
  width: 250px;
}

@media screen and (max-width: 930px) {
  #contact, #reserve, #cofirm {
    margin-top: 8.7em;
  }
}

@media screen and (max-width: 800px) {
  .privacy_accenpt a {
    margin: 0.7em 0 0;
  }
  .privacy_accenpt {
    margin: 2.5em 0 1.5em;
  }
  input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  input[type="checkbox"]:checked::before {
    left: 0;
    transform: rotate(45deg) scale(0.9);
    top: 13%;
  }
  #contact,
  #reserve {
    padding: 0;
  }
  form dl {
    padding: 1em 0;
    flex-direction: column;
  }
  form {
    width: 90%;
    margin: 0 auto;
  }
  form .flex dd,
  form td {
    width: 100%;
  }
  .btn_wrap {
    margin: 1em 0 0;
  }
  #contact h2, #reserve h2 {
    margin: auto;
    min-height: 3.5em;
  }
  form dd {
    width: 100%;
  }
  form dt {
    width: 100%;
  }
  form dt {
    padding: 0 0 1em;
  }
  .btn {
    width: 170px;
    max-width: 53vw;
  }
}

@media screen and (max-width: 760px) {
  #contact, #reserve, #cofirm {
    margin-top: 9.3em;
  }
}

@media screen and (max-width: 600px) {
  #contact, #reserve, #cofirm {
    margin-top: calc(5.7em + 11vw);
  }
}

@media screen and (max-width: 480px) {
  #contact, #reserve, #cofirm {
    margin-top: calc(5.6em + 8vw);
  }
}



label {
  cursor: pointer;
  margin: 0 2em 0 0;
}
.select label p {
  margin-left: 1em;
  display: inline-block;
}
.select div {
  position: relative;
  display: inline-block;
}
.select div::after {
  position: absolute;
  content: "";
  width: 0.6em;
  height: 0.5em;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 0.5em solid #000;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  z-index: 1;
}
form .flex dd,
form td {
  align-items: center;
  display: grid;
}
form dt small {
  padding: 0.15em 0.4em;
}
.form {
  padding: 6px 0 0;
}
.form dl {
  padding: 1.4em 0;
}
input#zip {
  width: 10em;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 0.434em 0.5em;
  letter-spacing: 0.1em;
  border: 1px solid #cccccc;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  min-height: 2.7em;
}
textarea {
  resize: none;
  width: 100%;
  height: 200px;
}
::placeholder {
  color: #cbcbcb;
}
::placeholder,
select {
  font-size: 90%;
}
input[type="submit"],
input[type="button"] {
  display: inline-block;
  width: 250px;
}
/* .confirm input[type="submit"],
.confirm input[type="button"] {
  display: inline-block;
  width: 250px;
} */
.btn.preview {
  background-color: #b7b7b7;
}
select.selected {
  color: #4D4D4D;
}
form dt {
  display: flex;
  margin: 0 0 auto;
  align-items: center;
  font-weight: 500;
}
form table {
  text-align: center;
}
form tbody {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}
form {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.6em 0 4.5em;
}
form .lavel {
  color: #fff;
  display: grid;
  padding: 0.41em 0.961em;
}
form dl:nth-of-type(odd) .lavel {
  background-color: var(--main-color);
}
form dl:nth-of-type(even) .lavel {
  background-color: #0071bc;
}
select {
  display: inline-block;
  width: auto;
  padding-right: 3em;
  padding-left: 1.5em;
}
#reserve form dl:nth-of-type(2),
#reserve form dl:nth-of-type(4) {
  border: none;
  padding-bottom: 0.5em;
}
.confirm {
  padding-bottom: 5em;
}
.confirm form tr {
  padding: 1em 0;
}
.confirm form td {
  padding: 0;
}

@media screen and (min-width: 801px) {
  form .flex dt,
  form th {
    width: 17em;
  }
  form .flex dd,
  form td {
    width: calc(100% - 17em);
  }
  form dt {
    min-height: 2.7em;
    width: 18em;
  }
  form dd {
    width: calc(100% - 18em);
  }
  form dt p:nth-child(1) {
    min-width: 3.3em;
  }
  form dt p:nth-child(1) {
    margin-right: 2.1em;
  }
}

@media screen and (max-width: 800px) {
  input[type="text"], input[type="tel"], input[type="email"] {
    min-height: 3.2em;
  }
  .confirm form th {
    width: 100%;
  }
  .confirm form tr {
    padding: 1em 0 0.8em;
  }
  label {
    margin: 0 1em 0 0;
  }
  .select label p {
    margin-left: 0.45em;
  }
  .confirm {
    padding-bottom: 3em;
  }
  form .lavel {
    margin-right: 1.2em;
    padding: 0.05em 0.45em;
  }
  .form {
    width: 91%;
    padding: 4px 0 0;
    margin: 0 auto;
  }
  input[type="submit"],
  input[type="button"] {
    width: 170px;
    max-width: 53vw;
  }
  input {
    min-height: 30px;
  }
  textarea {
    height: 150px;
  }
  form .flex dt,
  form th {
    border: none;
  }
  form .flex dt,
  form th {
    padding: 0 0 0.1em;
    margin-top: -0.2em;
  }
  form dt small {
    padding: 0.06em 0.4em;
  }
  .form dl {
    padding: 0 0 0 0.7em;
    margin: 1.68em 0;
  }
  form tr {
    flex-direction: column;
  }
  form tbody {
    width: 100%;
  }
  form .padding_btm_wide {
    padding-bottom: 2em;
  }
  #reserve form {
    padding: 1.6em 0 3em;
  }
}

@media screen and (max-width: 480px) {
  textarea {
    height: 120px;
  }
}