@charset "UTF-8";
/* =========================
   style.scss
========================= */
/* =========================
   foundation/_index.scss
========================= */
/* =========================
   foundation/_variables.scss
========================= */
/* =========================
   foundation/_index.scss
========================= */
/* =========================
   foundation/_mixin.scss
========================= */
/* =========================
   breakpoint
========================= */
@media (min-width: 768px) {
  :root {
    --header-h: 104px;
  }
}

/* =========================
   foundation/_reset.scss
========================= */
/* =========================
   Hard Reset (Fully Neutral)
   ========================= */
/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* margin / padding */
* {
  margin: 0;
  padding: 0;
}

/* body */
body {
  min-height: 100vh;
  line-height: 1;
  font-weight: normal;
  text-size-adjust: none;
}

/* typography reset */
h1,h2,h3,h4,h5,h6,b,strong,em,i,small,sub,sup,code,kbd,samp,pre {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

/* list */
ul,ol {
  list-style: none;
}

/* anchor */
a {
  color: inherit;
  text-decoration: none;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* media */
img,picture,video,canvas,svg {
  display: block;
  max-width: 100%;
}

/* form */
input,button,textarea,select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* button cursor */
button {
  cursor: pointer;
}

/* fieldset */
fieldset {
  border: 0;
}

/* dialog */
dialog {
  border: none;
  padding: 0;
}

/* details */
summary {
  list-style: none;
}

/* hr */
hr {
  border: 0;
}

/* blockquote */
blockquote,q {
  quotes: none;
}

/* mark */
mark {
  background: none;
  color: inherit;
}

/* abbr */
abbr[title] {
  text-decoration: none;
}

/* address */
address {
  font-style: normal;
}

/* iframe */
iframe {
  border: 0;
}

/* =========================
   foundation/_base.scss
========================= */
/* ---------------------------------
   root
--------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 0px);
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 73px;
  }
}

/* ---------------------------------
   body
--------------------------------- */
body {
  background: #fff;
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}

/* ---------------------------------
   media
--------------------------------- */
img,picture,video,canvas,svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: currentColor;
}

.img--full {
  width: 100%;
}

/* ---------------------------------
   form
--------------------------------- */
input,button,textarea,select {
  font: inherit;
}

/* ---------------------------------
   button
--------------------------------- */
button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------------------------------
   text overflow
--------------------------------- */
p,h1,h2,h3,h4,h5,h6 {
  overflow-wrap: break-word;
}

/* ---------------------------------
   link
--------------------------------- */
a {
  text-decoration-skip-ink: auto;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none; /* クリック無効化 */
  }
}

/* ---------------------------------
   table
--------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ---------------------------------
   iframe
--------------------------------- */
iframe {
  border: none;
}

/* =========================
   foundation/_index.scss
========================= */
/* =========================
   layout/_typography.scss
========================= */
/* 基本文字サイズ・行間・文字色 */
body {
  background: #f9f6ed;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  font-feature-settings:normal;
  letter-spacing:0;
}
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

/* リンクの文字装飾 */
a {
  color: #004040;
  text-decoration: none;
}

/* =========================
   layout/_index.scss
========================= */
/* =========================
   layout/_container.scss
========================= */
.container {
  max-width: 1200px;
  margin-inline: auto;
}
.container--S {
  max-width: 1000px;
}
.container--M {
  max-width: 1100px;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   object/_index.scss
========================= */
/* =========================
   object/layout/_index.scss
========================= */
/* =========================
   object/_stack.scss
========================= */
.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
   object/_cluster.scss
========================= */
.cluster {
  display: block;
}
@media (min-width: 768px) {
  .cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.cluster--start {
  justify-content: flex-start;
}
.cluster--center {
  justify-content: center;
}
.cluster--end {
  justify-content: flex-end;
}
.cluster--between {
  justify-content: space-between;
}

/* =========================
   object/_grid.scss
========================= */
.grid {
  --grid-gap: ;
  --grid-columns: 1;
}
@media (max-width: 767px) {
  .grid {
    --grid-gap: ;
  }
}
.grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
.grid__item {
  min-width: 0;
}
@media (max-width: 767px) {
  .grid--sp1 {
    --grid-columns: 1;
    --grid-gap: 0px;
  }
}
@media (max-width: 767px) {
  .grid--sp2 {
    --grid-columns: 2;
    --grid-gap: calc(100vw / (750 / 20));
  }
}
@media (min-width: 768px) {
  .grid--tab2 {
    --grid-columns: 2;
    --grid-gap: 40px;
  }
}
@media (min-width: 768px) {
  .grid--tab3 {
    --grid-columns: 3;
    --grid-gap: 20px;
  }
}
@media (min-width: 768px) {
  .grid--tab4 {
    --grid-columns: 4;
    --grid-gap: 28px;
  }
}
@media (min-width: 1200px) {
  .grid--pc3 {
    --grid-columns: 3;
    --grid-gap: 12px;
  }
}
@media (min-width: 1200px) {
  .grid--pc4 {
    --grid-columns: 4;
  }
}
.grid--S {
  --grid-gap: 20px;
}
.grid--M {
  --grid-gap: 30px;
}
.grid--L {
  --grid-gap: 40px;
}

/* =========================
   object/_split.scss
========================= */
@media (min-width: 768px) {
  .split__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.split__inner--center {
  align-items: center;
}

/* =========================
   object/_panel.scss
========================= */
@media (max-width: 767px) {
  .panel-grid {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (min-width: 768px) {
  .panel-grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  .panel-grid--w4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .panel-grid--w2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .panel-grid .col-2 {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .panel-grid .col-4 {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  .panel-grid .row-2 {
    grid-row: span 2;
  }
}

/* =========================
   object/ui/_index.scss
========================= */
/* =========================
   object/_gutter.scss
========================= */
.gutter {
  padding-inline: clamp(15px, 4vw, 120px);
}

/* =========================
   object/_list.scss
========================= */
.list--note .list__item {
  text-indent: -1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .list--note .list__item {
    font-size: 11px;
  }
}

.section {
  padding-top: clamp(30px, 10vw, 170px);
}
.section--white {
  background: #fff;
}
.section--intro {
  overflow: hidden;
  padding: 26.6666666667vw 0 60px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section--intro {
    padding: 10vw 0;
  }
}
@media (min-width: 1200px) {
  .section--intro {
    padding: 100px 0;
  }
}
.section--concept {
  overflow: hidden;
}
@media (min-width: 768px) {
  .section--concept {
    padding: 0;
  }
}
.section--menu {
  overflow: hidden;
}
@media (max-width: 767px) {
  .section--menu {
    padding-top: 60px;
  }
}
.section--picky {
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .section--picky {
    padding-bottom: 30px;
  }
}
.section--voice {
  padding: 30px 0 25px;
}
@media (min-width: 768px) {
  .section--voice {
    padding-top: 0;
    padding-bottom: 55px;
  }
}
.section--access {
/*  padding-bottom: 110px;*/
}
@media (max-width: 767px) {
  .section--access {
/*    padding-bottom: 75px;*/
  }
}
.section__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .section__header {
    margin-bottom: 30px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   component/_index.scss
========================= */
/* =========================
   component/_menu.scss
========================= */
@media (max-width: 960px) {
  .menu__body {
    overflow: auto;
    height: 100vh;
    padding: 40px 15px;
  }
}
.menu__inner {
  display: flex;
  justify-content: space-between;
}
.menu__list {
  display: flex;
}
@media (min-width: 768px) {
  .menu__list {
    column-gap: 2em;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .menu__list {
    column-gap: 1em;
    font-size: 17px;
  }
}
@media (max-width: 960px) {
  .menu__list {
    flex-direction: column;
    align-items: center;
    row-gap: 3em;
  }
}
.menu__item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .menu__item {
    font-size: 20px;
  }
}
.menu__link {
  color: #000;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   component/_btn.scss
========================= */
.btn {
  position: relative;
  border: 1px solid #004040;
  background: #004040;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 2em 0 1em;
  transition: all 0.3s;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/icon_arrow_wh.png) center no-repeat;
  background-size: contain;
}
.btn:hover {
  opacity: 0.7;
  background: none;
  color: #004040;
}
.btn:hover:after {
  background-image: url(../images/icon_arrow_gr.png);
}
.btn--white {
  background: none;
  color: #004040;
}
@media (min-width: 768px) {
  .btn--white {
    opacity: 0.7;
  }
}
.btn--white:after {
  background-image: url(../images/icon_arrow_gr.png);
}
.btn--white:hover {
  opacity: 1;
  background: #004040;
  color: #fff;
}
.btn--white:hover:after {
  background-image: url(../images/icon_arrow_wh.png);
}
.btn--img {
  opacity: 1;
  background: #004040;
  color: #fff;
  height: auto;
  flex-direction: column;
  padding: 13px;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .btn--img {
    padding: 8px;
  }
}
.btn--img:after {
  display: none;
}
.btn--img:hover {
  background: none;
  color: #004040;
}
.btn--img:hover .btn__txt:after {
  background-image: url(../images/icon_arrow_gr.png);
}
.btn__wrap {
  display: flex;
}
.btn__wrap--center {
  justify-content: center;
}
.btn__txt {
  width: 100%;
  text-align: center;
  position: relative;
}
.btn__txt:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/icon_arrow_wh.png) center no-repeat;
  background-size: contain;
}

/* =========================
   component/_heading.scss
========================= */
/* =========================
   component/_text.scss
========================= */
.text-italic {
  font-style: italic;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #004040;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  row-gap: 24px;
}
@media (max-width: 767px) {
  .heading {
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .heading-sub {
    font-size: 15px;
  }
}
.heading-ttl {
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 767px) {
  .heading-ttl {
    font-size: 20px;
  }
}
.heading-ttl__num {
  font-size: 60px;
}
@media (max-width: 767px) {
  .heading-ttl__num {
    font-size: 30px;
  }
}
.heading-std {
  align-items: flex-start;
  line-height: 1;
  font-size: 25px;
}
@media (min-width: 768px) {
  .heading-std {
    font-size: 40px;
    margin-left: -50px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .heading-std {
    margin-left: -20px;
  }
}
.heading-primary {
  font-size: 24px;
}
@media (max-width: 767px) {
  .heading-primary {
    font-size: 17px;
  }
}

/* =========================
   component/_table.scss
========================= */
.table {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.4;
}
.table th {
  font-weight: 600;
  padding: 1em 0;
  border-bottom: 1px solid #000;
}
.table td {
  border-bottom: 1px solid #000;
  padding: 1em 0;
}
.table tr:last-child th,
.table tr:last-child td {
  border-bottom: none;
}
.table-bracket {
  display: inline-block;
  position: relative;
  width: 6em;
}
.table-bracket:before, .table-bracket:after {
  position: absolute;
  top: 0;
}
.table-bracket:before {
  content: "【";
  left: 0;
}
.table-bracket:after {
  content: "】";
  right: 0;
}

/* =========================
   project/_index.scss
========================= */
/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_mv.scss
========================= */
@media (min-width: 768px) {
  .mv {
/*    padding-top: 50px;*/
  }
}
.mv__inner {
  position: relative;
  margin: auto;
  max-width: 1820px;
}
.mv-catch {
  color: #b16a26;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 6.6666666667vw;
}
@media (max-width: 767px) {
  .mv-catch {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .mv-catch {
    position: absolute;
    z-index: 10;
    font-size: 2.6041666667vw;
    right: 5.2083333333vw;
    bottom: 5.2083333333vw;
  }
}
@media (min-width: 1920px) {
  .mv-catch {
    font-size: 50px;
    right: 100px;
    bottom: 100px;
  }
}
@media (max-width: 767px) {
  .mv-img {
    margin-bottom: 5.3333333333vw;
  }
}
.mv-logo {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 164px;
}
@media (max-width: 767px) {
  .mv-logo {
    left: 5px;
    top: 5px;
    width: 68px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_intro.scss
========================= */
@media (max-width: 767px) {
  .intro {
    position: relative;
  }
}
@media (min-width: 768px) {
  .intro__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.intro-img {
  position: absolute;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .intro-img {
    overflow: hidden;
    aspect-ratio: 1/1.25;
    width: 206px;
    height: 259px;
  }
}
.intro-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .intro-img--01 {
    top: -35px;
    left: 0;
    transform: translateX(-400px);
  }
}
@media (max-width: 767px) {
  .intro-img--01 {
    width: 21.4666666667vw;
    top: -20.5333333333vw;
    left: -2.6666666667vw;
  }
}
@media (min-width: 768px) {
  .intro-img--02 {
    bottom: 0;
    left: 0;
    transform: translateX(-170px);
  }
}
@media (max-width: 767px) {
  .intro-img--02 {
    width: 25.0666666667vw;
    top: 17.3333333333vw;
    right: -2.6666666667vw;
  }
}
@media (min-width: 768px) {
  .intro-img--03 {
    top: 120px;
    right: 0;
    transform: translateX(220px);
  }
}
@media (max-width: 767px) {
  .intro-img--03 {
    position: relative;
    order: 2;
    width: 35.3333333333vw;
    margin-top: 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .intro-img--04 {
    top: -15px;
    right: 0;
    transform: translateX(446px);
  }
}
@media (max-width: 767px) {
  .intro-img--04 {
    position: relative;
    order: 1;
    width: 27.8666666667vw;
  }
}
@media (max-width: 767px) {
  .intro-img__btm {
    display: flex;
    align-items: flex-start;
    column-gap: 6.6666666667vw;
    padding: 5.3333333333vw 0 0 8vw;
  }
}
.intro-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #004040;
  font-weight: 500;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .intro-ttl {
    font-size: 2.5vw;
    line-height: 4.1666666667vw;
  }
}
@media (min-width: 1200px) {
  .intro-ttl {
    font-size: 30px;
    line-height: 50px;
  }
}
.intro-ttl__wrap {
  border-radius: 10px;
  background: #f5f0dd;
  width: 74.6666666667vw;
  padding: 4vw;
  position: relative;
}
@media (min-width: 768px) {
  .intro-ttl__wrap {
    position: absolute;
    width: 28.18181%;
    left: 50px;
    top: -50px;
    padding: 7.1428571429vw 2.1428571429vw;
  }
}
@media (min-width: 1200px) {
  .intro-ttl__wrap {
    padding: 100px 30px;
  }
}
.intro-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 15px;
}
@media (min-width: 768px) {
  .intro-body {
    width: 69.81818%;
  }
}
@media (max-width: 767px) {
  .intro-body {
    margin-top: -2vw;
    padding-left: 4vw;
    row-gap: 4vw;
    align-items: center;
  }
}
.intro-body__txt {
  border-radius: 10px;
  background: #fff;
  line-height: 2;
  padding: 30px 50px;
}
@media (max-width: 767px) {
  .intro-body__txt {
    padding: 8vw 4vw;
  }
}
.intro .section__header {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .intro .section__header {
    margin-bottom: 18.6666666667vw;
  }
}
@media (max-width: 767px) {
  .intro .section__header .heading {
    row-gap: 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .intro .section__header .heading {
    flex-direction: row;
    justify-content: center;
  }
}
.intro .section__header .heading-sub {
  color: #b16a26;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
}
@media (max-width: 767px) {
  .intro .section__header .heading-sub {
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .intro .section__header .heading-sub--01 {
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .intro .section__header .heading-sub--01 {
    font-size: 4.8vw;
    padding-left: 0.5em;
  }
}
@media (min-width: 768px) {
  .intro .section__header .heading-sub--02 {
    letter-spacing: 0.075em;
  }
}
@media (max-width: 767px) {
  .intro .section__header .heading-sub--02 {
    font-size: 5.3333333333vw;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_concept.scss
========================= */
@media (min-width: 768px) {
  .concept {
    position: relative;
  }
}
.concept-body {
  padding: 0 15px 30px;
}
@media (min-width: 768px) {
  .concept-body {
    width: 50%;
    padding: 65px 0;
  }
}
.concept-main {
  background: url(../images/concept_main.jpg) center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .concept-main {
    height: 255px;
    margin: 0 -15px;
  }
}
@media (min-width: 768px) {
  .concept-main {
    position: absolute;
    left: calc(50% + 60px);
    top: 0;
    width: calc(50vw - 60px);
    height: 100%;
  }
}
.concept-catch {
  color: #004040;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  font-size: 30px;
}
@media (max-width: 767px) {
  .concept-catch {
    flex-direction: column;
    font-size: 22px;
    margin-bottom: 30px;
    row-gap: 14px;
  }
}
.concept-catch__icon {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .concept-catch__icon {
    flex-direction: column;
    row-gap: 14px;
  }
}
.concept-catch__icon:not(:last-child):after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../images/icon_cross.png) center no-repeat;
  background-size: contain;
  margin: 0 0.25em;
}
.concept-txt {
  line-height: 44px;
}
@media (max-width: 767px) {
  .concept-txt {
    line-height: 2;
  }
}
.concept .section__header .heading {
  color: #000;
  align-items: flex-start;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_menu.scss
========================= */
.menu-intro {
  text-align: center;
  line-height: 2;
  margin-bottom: 30px;
}
.menu-item {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .menu-item {
    position: relative;
  }
  .menu-item:after {
    content: "";
    display: block;
    position: absolute;
    left: -15px;
    bottom: 0;
    width: 100vw;
    height: calc(100% - 80px);
    background: #f6f1de;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .menu-item:first-child {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .menu-item:nth-child(odd) .menu-item__body {
    padding-left: 50px;
  }
}
@media (min-width: 768px) {
  .menu-item:nth-child(even) {
    align-items: flex-end;
  }
}
@media (min-width: 1200px) {
  .menu-item:nth-child(even) .menu-item__body {
    padding-right: 50px;
  }
}
.menu-item__body {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .menu-item__body {
    padding: 0 15px 20px;
  }
}
.menu-item__body .heading {
  text-align: left;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .menu-item__body .heading {
    margin-bottom: 20px;
  }
}
.menu-item__img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}
.menu-item__txt {
  line-height: 2;
}
.menu-item__txt > span {
  font-weight: 500;
  color: hsl(180, 100%, 12.5%);
}
@media (min-width: 768px) {
  .menu-item__txt > br.u-pc-only {
    display: inline;
  }
}
.menu-item__wrap {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .menu-item__wrap {
    position: relative;
  }
  .menu-item__wrap:before, .menu-item__wrap:after {
    content: "";
    display: block;
    position: absolute;
    background: #f6f1de;
    bottom: 0;
    width: calc(50vw - 40px);
    height: calc(100% - 110px);
    z-index: -1;
    border-radius: 10px;
  }
  .menu-item__wrap:before {
    right: calc(50% + 40px);
  }
  .menu-item__wrap:after {
    left: calc(50% + 40px);
  }
}
@media (min-width: 768px) {
  .menu-btm {
    display: flex;
    justify-content: center;
    column-gap: 30px;
  }
  .menu-btm > ul > li {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .menu-btm {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
.menu-price {
  border: 1px solid #004040;
  color: #004040;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .menu-price {
    font-size: 12px;
    padding: 0.75em 0;
  }
}
.menu-price__yen {
  padding-left: 0.5em;
  font-size: 24px;
}
@media (max-width: 767px) {
  .menu-price__yen {
    font-size: 16px;
  }
}
.menu .section__header {
  margin-bottom: 30px;
}
.menu .section__header .heading {
  line-height: 1;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_picky.scss
========================= */
@media (min-width: 1022px) {
  .picky-1st {
    position: relative;
  }
  .picky-1st .section__header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.picky-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 20px;
}
@media (min-width: 1022px) {
  .picky-list {
    row-gap: 270px;
  }
}
@media (max-width: 767px) {
  .picky-list {
    margin-left: -15px;
    margin-right: -15px;
    column-gap: 2.6666666667vw;
    row-gap: 6.6666666667vw;
  }
}
.picky-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid #004040;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .picky-item {
    width: 325px;
    height: 325px;
    justify-content: center;
    row-gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .picky-item {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .picky-item {
    row-gap: 2vw;
    width: 46.6666666667vw;
    height: 46.6666666667vw;
    padding-top: 6vw;
  }
  .picky-item:nth-child(4) {
/*    padding-top: 2vw;*/
  }
  .picky-item:nth-child(5) {
/*    padding-top: 4vw;*/
  }
  .picky-item:nth-child(6) {
    padding-top: 2.6666666667vw;
  }
}
@media (min-width: 768px) {
  .picky-item:nth-child(1) .picky-item__img {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1022px) {
  .picky-item:nth-child(1) {
    transform: translateY(125px);
  }
}
@media (min-width: 768px) {
  .picky-item:nth-child(2) {
    padding-bottom: 30px;
  }
  .picky-item:nth-child(2) .picky-item__img {
    left: 0;
    bottom: -30px;
  }
}
@media (min-width: 1022px) {
  .picky-item:nth-child(2) .picky-item__img {
    bottom: -50px;
  }
}
@media (min-width: 768px) {
  .picky-item:nth-child(3) {
/*    padding-bottom: 20px;*/
  }
  .picky-item:nth-child(3) .picky-item__img {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1022px) {
  .picky-item:nth-child(3) {
    transform: translateY(125px);
  }
}
@media (min-width: 1022px) {
  .picky-item:nth-child(4) {
    transform: translateY(-125px);
  }
}
@media (min-width: 768px) {
  .picky-item:nth-child(5) .picky-item__img {
    left: 0;
    top: -50px;
  }
}
@media (max-width: 767px) {
  .picky-item:nth-child(5) .picky-item__img {
    left: -1.3333333333vw;
    bottom: -1.3333333333vw;
  }
}
@media (max-width: 767px) {
  .picky-item:nth-child(6) .picky-item__img {
    left: -6.6666666667vw;
    bottom: -2.6666666667vw;
    width: 24vw;
  }
}
@media (min-width: 768px) {
  .picky-item:nth-child(6) .picky-item__img {
    left: -30px;
    top: 0px;
  }
}
@media (min-width: 1022px) {
  .picky-item:nth-child(6) {
    transform: translateY(-125px);
  }
  .picky-item:nth-child(6) .picky-item__img {
    left: -70px;
    top: 40px;
  }
}
.picky-item__num {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 105px;
}
@media (max-width: 767px) {
  .picky-item__num {
    width: 14vw;
    right: 0;
    bottom: -2.6666666667vw;
  }
}
.picky-item__img {
  position: absolute;
  width: 130px;
}
@media (min-width: 1022px) {
  .picky-item__img {
    width: 166px;
  }
}
@media (max-width: 767px) {
  .picky-item__img {
    width: 17.8666666667vw;
    left: 0;
    bottom: 0;
  }
}
.picky-item__ttl {
  font-weight: 700;
  color: #b16a26;
  margin-bottom: 0.35em;
}
@media (min-width: 768px) {
  .picky-item__ttl {
    font-size: 24px;
    margin-bottom: 0.5em;
  }
}
.picky-item__txt {
  line-height: 1.4;
  position: relative;
}
@media (max-width: 767px) {
  .picky-item__txt {
    font-size: 2.9333333333vw;
  }
}
.picky-item__notUsing {
  display: inline-block;
  text-align: left;
  color: #004040;
  font-size: 16px;
}
@media (max-width: 767px) {
  .picky-item__notUsing {
    font-size: 2.4vw;
    padding-left: 1em;
  }
}
.picky-item__link {
  position: relative;
}
@media (max-width: 767px) {
  .picky-item__link {
    font-size: 2.9333333333vw;
  }
}
.picky-item__link:after {
  content: "";
  display: block;
  margin: 0.5em auto 0;
  width: 0.8em;
  height: 0.8em;
  background: url(../images/icon_arrow_gr.png) center no-repeat;
  background-size: contain;
}
.picky-point {
  text-align: center;
}
@media (max-width: 767px) {
  .picky-point {
    padding-top: 60px;
  }
}
.picky-point-ttl {
  color: #004040;
  font-size: 60px;
}
@media (max-width: 767px) {
  .picky-point-ttl {
    font-size: 30px;
  }
}
.picky-point-ttl__en {
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 767px) {
  .picky-point-ttl__en {
    font-size: 20px;
  }
}
.picky-point-intro {
  line-height: 2;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .picky-point-intro {
    margin-bottom: 60px;
  }
}
.picky-point-subTtl {
  letter-spacing: 0.1em;
  color: #b16a26;
}
@media (min-width: 768px) {
  .picky-point-subTtl {
    margin-bottom: 45px;
  }
}
.picky-point-subTtl__num {
  font-size: 40px;
}
@media (max-width: 767px) {
  .picky-point-subTtl__num {
    font-size: 29px;
  }
}
@media (min-width: 768px) {
  .picky-point-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .picky-point-item {
    width: 33.3333333333%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .picky-point-item {
    text-align: left;
    position: relative;
    padding: 6vw 0 6vw 4vw;
  }
}
@media (min-width: 768px) {
  .picky-point-item:not(:last-child) {
    border-right: 1px solid #004040;
  }
}
@media (max-width: 767px) {
  .picky-point-item:not(:last-child) {
    border-bottom: 1px solid #004040;
  }
}
.picky-point-item__num {
  display: block;
  width: 47px;
}
@media (min-width: 768px) {
  .picky-point-item__num {
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .picky-point-item__num {
    width: 8.9333333333vw;
    margin-bottom: 4vw;
  }
}
.picky-point-item__ttl {
  font-weight: 700;
  color: #004040;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .picky-point-item__ttl {
    order: 2;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .picky-point-item__ttl {
    font-size: 16px;
  }
}
.picky-point-item__txt {
  line-height: 2;
}
@media (min-width: 768px) {
  .picky-point-item__txt {
    order: 4;
    line-height: 1.44;
  }
}
.picky-point-item__img {
  width: 221px;
}
@media (min-width: 768px) {
  .picky-point-item__img {
    order: 3;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .picky-point-item__img {
    position: absolute;
    right: 0;
    bottom: 6vw;
    width: 38vw;
  }
}
.picky-point-item__img img {
  width: 100%;
  height: auto;
}
.picky .heading {
  row-gap: 0;
}
@media (min-width: 768px) {
  .picky .heading-sub {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .picky .heading-ttl {
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 768px) {
  .picky .heading-ttl {
    font-size: 40px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_voice.scss
========================= */
@media (min-width: 768px) {
  .voice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 36px;
  }
}
@media (max-width: 767px) {
  .voice {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .voice-main {
    flex: 0 0 46.54545%;
    margin-top: -35px;
  }
}
@media (max-width: 767px) {
  .voice-main {
    order: 3;
    margin-bottom: 20px;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .voice-body {
    display: contents;
  }
}
@media (min-width: 768px) {
  .voice-body {
    flex: 1;
    padding: 70px 20px 0 30px;
  }
}
.voice-body .section__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .voice-body .section__header {
    order: 1;
  }
}
.voice-body .section__header .heading-primary {
  display: flex;
  align-items: flex-end;
  font-weight: 600;
}
.voice-body .section__header .heading-primary:before, .voice-body .section__header .heading-primary:after {
  content: "";
  display: block;
  width: 33px;
  height: 50px;
  background: url(../images/voice_ttl_obj.png) center no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .voice-body .section__header .heading-primary:before, .voice-body .section__header .heading-primary:after {
    width: 22px;
    height: 35px;
  }
}
.voice-body .section__header .heading-primary:before {
  transform: scaleX(-1);
  margin-right: 0.5em;
}
.voice-item {
  border: 1px solid #004040;
  border-radius: 10px;
  position: relative;
  padding: 0 1em 1em;
}
@media (min-width: 768px) {
  .voice-item {
    width: 90%;
  }
  .voice-item:nth-child(even) {
    margin-left: 10%;
  }
}
@media (max-width: 767px) {
  .voice-item {
    display: inline-block;
    font-size: 12px;
  }
}
.voice-item:before, .voice-item:after {
  content: "";
  display: block;
  position: absolute;
}
.voice-item:before {
  left: 115px;
  bottom: -2px;
  background: #fff;
  width: 16px;
  height: 4px;
}
.voice-item:after {
  left: 131px;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: #004040;
  transform: translate(-20px, 9px) rotate(-40deg);
}
@media (max-width: 767px) {
  .voice-item:after {
    width: 20px;
    transform: translate(-20px, 9px) rotate(-30deg);
  }
}
.voice-item:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .voice-item:not(:last-child) {
    margin-bottom: 55px;
  }
}
.voice-item__ttl {
  display: inline-block;
  padding-left: 0.5em;
  background: #fff;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .voice-list--1st {
    order: 2;
  }
  .voice-list--1st .voice-item:nth-child(1) {
    margin-left: 25px;
  }
  .voice-list--1st .voice-item:nth-child(1):before {
    left: 160px;
  }
  .voice-list--1st .voice-item:nth-child(1):after {
    transform: translate(-18px, 6px) rotate(30deg);
    left: 176px;
  }
  .voice-list--1st .voice-item:nth-child(2) {
    margin-left: 100px;
  }
  .voice-list--1st .voice-item:nth-child(2):before {
    left: 82px;
  }
  .voice-list--1st .voice-item:nth-child(2):after {
    left: 98px;
    transform: translate(-18px, 6px) rotate(-30deg);
  }
}
@media (max-width: 767px) {
  .voice-list--2nd {
    order: 4;
  }
  .voice-list--2nd .voice-item:nth-child(1) {
    margin-left: 25px;
  }
  .voice-list--2nd .voice-item:nth-child(1):before {
    bottom: auto;
    top: -2px;
    left: 160px;
  }
  .voice-list--2nd .voice-item:nth-child(1):after {
    bottom: auto;
    top: 0;
    left: 160px;
    transform: translate(-1px, -6px) rotate(-30deg);
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_booking.scss
========================= */
.booking .table {
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .booking .table th {
    width: 7.25em;
    padding-right: 1.25em;
  }
  .booking .split__inner {
    column-gap: 5.5%;
    flex-wrap: wrap;
  }
  .booking .split__item-L {
    flex: 1;
  }
  .booking .split__item-R {
    flex: 0 0 41.7%;
  }
  .booking .notes {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .booking .split__inner {
    display: flex;
    flex-direction: column;
  }
  .booking .split__item-R {
    order: 2;
  }
  .booking .table th {
    width: 6.5em;
    padding-right: .5em;
  }
  .booking .btn {
    max-width: 290px;
    margin: 2em auto 0;
  }
}
.booking .notes li {
  position: relative;
  margin-left: 1.3em;
  text-indent: -1.3em;
  font-size: 94.5%;
}
.booking .notes li::before {
  content: "●";
  padding-right: 0.3em;
  color: #004040;
}


/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_access.scss
========================= */
.access-map {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .access-map {
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(60 / 750 * 100vw);
    margin: 0 -15px;
  }
}
.access-map iframe {
  height: 290px;
}
@media (max-width: 767px) {
  .access-map iframe {
    height: 203px;
  }
}
.access-map > img {
  width: 400px;
}
@media (max-width: 767px) {
  .access-map > img {
    width: calc(555 / 750 * 100vw);
  }
}
@media (min-width: 768px) {
  .access-map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0 40px;
  }
}
@media (max-width: 767px) {
  .access-add {
    text-align: center;
    padding: 1.6em 0;
  }
}
.access-case {
  line-height: 1.846;
}
@media (min-width: 768px) {
  .access-case {
    line-height: 2;
  }
}
.access-case__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 45px;
}
@media (max-width: 767px) {
  .access-case__wrap {
    row-gap: 30px;
    padding-top: 35px;
  }
}
@media (max-width: 767px) {
  .access-case P {
    padding-left: 1em;
  }
}
.access-case P + p {
  margin-top: 1em;
}
.access-ttl {
  position: relative;
  margin-bottom: 0.5em;
}
.access-ttl:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #000;
}
.access-ttl__bg {
  background: #f9f6ed;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 0.5em;
  font-weight: 600;
}
.access-subTtl {
  margin-top: 1em;
  margin-bottom: 0.25em;
}
@media (max-width: 767px) {
  .access-subTtl {
    padding-left: 1em;
  }
}
@media (max-width: 767px) {
  .access-detail {
    padding-left: 1em;
  }
}
.access-detail__ttl {
  float: left;
  clear: both;
}
.access-detail__txt {
  position: relative;
  padding-left: 1em;
}
.access-detail__txt:after {
  content: "：";
  position: absolute;
  left: 0;
  top: 0;
}
.access-detail__txt--case01 {
  margin-left: 7em;
}
.access-detail__txt--case02 {
  margin-left: 4em;
}
.access-detail__txt--case03 {
  margin-left: 8em;
}

/* =========================
   utility/_index.scss
========================= */
/* =========================
   utility/_utility.scss
========================= */
.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-mt-S {
  margin-top: 20px;
}

.u-mb-S {
  margin-bottom: 20px;
}

.u-pb-S {
  padding-bottom: 20px;
}

.u-mt-M {
  margin-top: 30px;
}

.u-mb-M {
  margin-bottom: 30px;
}

.u-pb-M {
  padding-bottom: 30px;
}

.u-mt-L {
  margin-top: 40px;
}

.u-mb-L {
  margin-bottom: 40px;
}

.u-pb-L {
  padding-bottom: 40px;
}

.u-mt-XL {
  margin-top: 80px;
}

.u-mb-XL {
  margin-bottom: 80px;
}

.u-pb-XL {
  padding-bottom: 80px;
}

.u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

.u-radius {
  overflow: hidden;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .u-radius {
    border-radius: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
