@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Hiragino Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

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

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-top: 116px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  #wrapper {
    padding-top: 89px;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 77px;
  }
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-section {
  margin-bottom: 144px;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin-bottom: 72px;
  }
}

.l-main__commonContainer {
  margin: 96px 0 144px;
}
@media screen and (max-width: 767px) {
  .l-main__commonContainer {
    margin: 56px 0 72px;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
}
.l-header.is-bgc {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1740px;
  margin: 0 auto;
  padding: 28px 50px;
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding: 20px 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 16px 20px 12px;
  }
}

.l-header__logo {
  width: 100%;
  max-width: 130px;
}
@media screen and (max-width: 1280px) {
  .l-header__logo {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 88px;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 999;
    width: 0;
    height: 100vh;
    -webkit-transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #AB9560;
    display: block;
    visibility: hidden;
  }
}
.l-header__nav.open {
  visibility: visible;
  opacity: 1;
  width: 400px;
  z-index: 99;
  -webkit-box-shadow: -25px 0 40px rgba(43, 44, 49, 0.14);
          box-shadow: -25px 0 40px rgba(43, 44, 49, 0.14);
}
@media screen and (max-width: 767px) {
  .l-header__nav.open {
    width: calc(100% - 32px);
    max-width: 400px;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4px;
  margin-right: 32px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding-top: 170px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    padding-top: 100px;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    margin: 0 auto 24px;
    width: 100%;
  }
}
.l-header__nav-item:not(:last-child) {
  margin-right: 36px;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-item:not(:last-child) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item:not(:last-child) {
    margin-right: auto;
  }
}

.l-header__nav-item--md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item--md {
    display: block;
  }
}

.l-header__nav-link {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    color: #fff;
  }
}
.l-header__nav-link:hover {
  color: #AB9560;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link:hover {
    color: #fff;
    opacity: 0.8;
  }
}

.l-header__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Noto Serif JP", serif;
  margin-right: 24px;
}
@media screen and (max-width: 1023px) {
  .l-header__tel-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
  }
}

.l-header__tel {
  font-size: 1.8rem;
  font-weight: 600;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 24px;
  margin-bottom: 2px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__tel {
    font-size: 1.6rem;
    color: #fff;
    white-space: nowrap;
    padding-left: 21px;
    margin-left: -12px;
  }
}
.l-header__tel::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background-image: url(../img/tel-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
}
@media screen and (max-width: 1023px) {
  .l-header__tel::before {
    top: 7px;
    width: 16px;
    background-image: url(../img/tel-white.svg);
    height: 16px;
  }
}

.l-header__tel-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1023px) {
  .l-header__tel-text {
    color: #fff;
    font-size: 1.05rem;
    white-space: nowrap;
    padding-left: 12px;
  }
}

.l-header__line-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  width: 196px;
  height: 50px;
  border-radius: 1px;
  background-color: #AB9560;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-header__line-btn {
    display: none;
  }
}
.l-header__line-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  border: 0.5px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header__line-btn::before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}

.l-header__line-btn--md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__line-btn--md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    letter-spacing: 0.14em;
    width: 150px;
    height: 42px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__line-btn--md {
    font-size: 1.3rem;
    width: 130px;
    height: 40px;
  }
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer__inner.c-inner {
  max-width: 1680px;
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #D3D3D3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 80px 8px 72px;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    display: block;
    padding: 48px 8px 28px;
  }
}

.l-footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 180px;
          flex: 0 1 180px;
  margin-right: 16px;
}
@media screen and (max-width: 1023px) {
  .l-footer__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 120px;
            flex: 0 1 120px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 110px;
    display: block;
    margin: 0 auto 28px;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 8px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px 0;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
}
.l-footer__nav-item:not(:last-child) {
  margin-right: 36px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item:not(:last-child) {
    margin-right: 0px;
  }
}

.l-footer__nav-link {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-size: 1.6rem;
  }
}
.l-footer__nav-link:hover {
  color: #AB9560;
  opacity: 1;
}

.l-footer__copyright {
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-align: center;
  }
}

/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 1140px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

.c-inner--md {
  max-width: 1300px;
}

.c-inner--lg {
  max-width: 1340px;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title__en {
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 4.8rem;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .c-title__en--sm {
    font-size: 4rem;
  }
  .c-title__en--sm + .c-title__ja {
    font-size: 1.4rem;
  }
}

.c-title__ja {
  color: #666666;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.5rem;
  }
}

.c-title-en {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title-en {
    font-size: 4.4rem;
  }
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  width: 260px;
  height: 56px;
  border-radius: 1px;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.7rem;
    width: 220px;
    height: 52px;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  border: 0.5px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    display: block;
    cursor: pointer;
    z-index: 999;
    padding: 15px 30px;
    background-color: transparent;
    margin-left: 0;
    margin-right: -30px;
    /* ハンバーガーメニューが開いたとき */
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .c-burger-btn {
    padding: 15px 20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 1023px) {
  .c-burger-btn.cross .c-burger-btn__bar {
    background-color: #fff;
  }
  .c-burger-btn.cross .c-burger-btn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(9px) rotate(135deg);
            transform: translateY(9px) rotate(135deg);
  }
  .c-burger-btn.cross .c-burger-btn__bar--mid {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transform: translateX(-15px) scaleX(0);
            transform: translateX(-15px) scaleX(0);
  }
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-9px) rotate(-135deg);
            transform: translateY(-9px) rotate(-135deg);
  }
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 1px;
  width: 30px;
  border-radius: 0px;
  background-color: #333;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-burger-btn__bar--top,
.c-burger-btn__bar--mid {
  margin-bottom: 8px;
}

/*------------------------------------------------------------------------------
  c-menu-media
------------------------------------------------------------------------------*/
.c-menu-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #D3D3D3;
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  .c-menu-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 48px 0;
  }
}
.c-menu-media:first-child {
  border-top: 1px solid #D3D3D3;
}

.c-menu-media__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 61.81%;
          flex: 0 1 61.81%;
}

.c-menu-media__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .c-menu-media__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-menu-media__title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}

.c-menu-media__price {
  color: #96782F;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-menu-media__price {
    font-size: 1.2rem;
  }
}
.c-menu-media__price span {
  font-size: 1.7rem;
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .c-menu-media__price span {
    font-size: 1.5rem;
  }
}

.c-menu-media__text {
  font-size: 1.5rem;
  line-height: 2.2;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .c-menu-media__text {
    font-size: 1.3rem;
    line-height: 2;
    text-align: justify;
    margin: 20px 0;
  }
}

.c-menu-media__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb {
  max-width: 1640px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.c-breadcrumb .c-inner {
  padding-left: 50px;
}
@media screen and (max-width: 1023px) {
  .c-breadcrumb .c-inner {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .c-breadcrumb {
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    width: calc(100% - 40px);
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 28px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  position: absolute;
  top: 9px;
  right: -24px;
  font-size: 0.8rem;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    font-size: 0.7rem;
    top: 7px;
    right: -19px;
  }
}

.c-breadcrumb__link {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.2rem;
    font-weight: normal;
  }
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-fade
------------------------------------------------------------------------------*/
.c-fade {
  opacity: 0;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}
.c-fade.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  position: relative;
  width: 100%;
  margin: 0 auto 152px;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-bottom: 72px;
  }
}

.p-mv__inner {
  max-width: 1640px;
  width: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-mv__inner {
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    width: calc(100% - 40px);
  }
}

.p-mv__title-wrap {
  position: absolute;
  top: 484px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1140px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .p-mv__title-wrap {
    top: 380px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    top: 384px;
  }
}

.p-mv__title-ja {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .p-mv__title-ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__title-ja {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-ja {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
}

.p-mv__title-en {
  color: #B7923A;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  padding-right: 6px;
}
@media screen and (max-width: 1280px) {
  .p-mv__title-en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__title-en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title-en {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
}

.p-mv__bg {
  width: 100%;
  height: 800px;
}
@media screen and (max-width: 1280px) {
  .p-mv__bg {
    height: 720px;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__bg {
    height: 560px;
  }
}
@media screen and (max-width: 520px) {
  .p-mv__bg {
    height: 520px;
  }
}
@media screen and (max-width: 480px) {
  .p-mv__bg {
    height: 480px;
  }
}
.p-mv__bg img {
  -o-object-position: center 0;
     object-position: center 0;
}
@media screen and (max-width: 767px) {
  .p-mv__bg img {
    -o-object-position: center;
       object-position: center;
  }
}

/*------------------------------------------------------------------------------
  p-top-message
------------------------------------------------------------------------------*/
.p-top-message {
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    margin-bottom: 88px;
  }
}

.p-top-message__inner {
  position: relative;
}
.p-top-message__inner::before, .p-top-message__inner::after {
  content: "";
  position: absolute;
  top: -30px;
  background-color: #828282;
  width: 1px;
  height: 360px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 1023px) {
  .p-top-message__inner::before, .p-top-message__inner::after {
    height: 290px;
    -webkit-transform: rotate(24deg);
            transform: rotate(24deg);
  }
}
@media screen and (max-width: 767px) {
  .p-top-message__inner::before, .p-top-message__inner::after {
    display: none;
  }
}
.p-top-message__inner::before {
  left: 78px;
}
.p-top-message__inner::after {
  right: 78px;
}

.p-top-message__texts {
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.18em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 1023px) {
  .p-top-message__texts {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }
}
@media screen and (max-width: 767px) {
  .p-top-message__texts {
    font-size: 1.3rem;
    margin-top: 28px;
  }
}

/*------------------------------------------------------------------------------
  p-top-about
------------------------------------------------------------------------------*/
.p-top-about {
  max-width: 1440px;
  margin: 0 auto 342px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 72px;
  }
}

.p-top-about__text-wrap {
  max-width: 642px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 116px 20px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-top-about__text-wrap {
    max-width: 460px;
    padding: 72px 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__text-wrap {
    max-width: 100%;
    padding: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: -24px;
  }
}

.p-top-about__text {
  font-weight: normal;
  line-height: 2.2;
  letter-spacing: 0.1em;
  margin: 72px 0 42px;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    line-height: 2;
    text-align: justify;
    margin: 32px 0 24px;
  }
}

.p-top-about__img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 850px;
  width: 59vw;
  height: 624px;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .p-top-about__img {
    height: 560px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    position: relative;
    width: calc(100% - 40px);
    margin-left: auto;
    height: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-top-about__img-caption {
  position: absolute;
  bottom: -78px;
  left: -77px;
  width: 607px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1023px) {
  .p-top-about__img-caption {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img-caption {
    top: -46px;
    left: -24px;
    bottom: auto;
    width: 300px;
  }
}

/*------------------------------------------------------------------------------
  p-top-concept
------------------------------------------------------------------------------*/
.p-top-concept {
  background-color: #F1F1F1;
  padding: 128px 0;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    padding: 72px 0;
  }
}

.p-top-concept__inner {
  max-width: 1280px;
}
@media screen and (max-width: 767px) {
  .p-top-concept__inner {
    padding: 0 12px 0 20px;
  }
}

.p-top-concept__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 100px auto 72px;
  gap: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-top-concept__list {
    margin: 64px auto 40px;
    gap: 44px 0;
  }
}

.p-top-concept__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-concept__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46.2%;
            flex: 0 1 46.2%;
  }
}

.p-top-concept__number {
  position: absolute;
  top: -32px;
  left: -30px;
  width: 50px;
}
@media screen and (max-width: 1280px) {
  .p-top-concept__number {
    width: 40px;
    left: -14px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__number {
    top: -26px;
    left: -16px;
    width: 30px;
  }
}

.p-top-concept__img {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-top-concept__img {
    margin-bottom: 12px;
  }
}

.p-top-concept__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: 0.08em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .p-top-concept__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-concept__title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-concept__title {
    font-size: 1.35rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .p-top-concept__title br {
    display: none;
  }
}

/*------------------------------------------------------------------------------
  p-top-menu
------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-top-menu .c-title__en {
    font-size: 4.2rem;
    line-height: 0.96;
  }
}

.p-top-menu__content {
  margin: 96px 0 64px;
}
@media screen and (max-width: 767px) {
  .p-top-menu__content {
    margin: 48px 0;
  }
}

/*------------------------------------------------------------------------------
  p-voice
------------------------------------------------------------------------------*/
.p-voice {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 100px;
  padding-left: 54px;
  margin-left: 116px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-voice {
    width: calc(1140px + (100% - 1140px) / 2);
    margin-left: auto;
  }
}
@media screen and (max-width: 1023px) {
  .p-voice {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding-top: 56px;
    padding-left: 40px;
  }
}
.p-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #F1F1F1;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 1280px) {
  .p-voice::before {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice::before {
    height: 300px;
  }
}

.p-voice__inner {
  overflow: hidden;
  margin-bottom: -20px;
}

.p-voice__slider {
  padding: 56px 24px 20px 0;
  position: relative;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media screen and (max-width: 767px) {
  .p-voice__slider {
    padding: 40px 16px 20px 0;
  }
}
.p-voice__slider .swiper-button-prev,
.p-voice__slider .swiper-button-next {
  height: 55px;
  width: 55px;
  top: -34px;
}
@media screen and (max-width: 767px) {
  .p-voice__slider .swiper-button-prev,
  .p-voice__slider .swiper-button-next {
    top: -17px;
    width: 38px;
    height: 38px;
  }
}
.p-voice__slider .swiper-button-prev {
  left: auto;
  right: 164px;
}
@media screen and (max-width: 1023px) {
  .p-voice__slider .swiper-button-prev {
    right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__slider .swiper-button-prev {
    right: 66px;
  }
}
.p-voice__slider .swiper-button-next {
  right: 80px;
}
@media screen and (max-width: 1023px) {
  .p-voice__slider .swiper-button-next {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__slider .swiper-button-next {
    right: 16px;
  }
}
.p-voice__slider .swiper-button-prev::after,
.p-voice__slider .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .p-voice__slider .swiper-button-prev::after,
  .p-voice__slider .swiper-button-next::after {
    width: 38px;
    height: 38px;
  }
}
.p-voice__slider .swiper-button-prev::after {
  background-image: url(../img/slide-btnL.png);
}
.p-voice__slider .swiper-button-next::after {
  background-image: url(../img/slide-btnR.png);
}

.p-voice__card {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  min-height: 183px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(150, 120, 47, 0.08);
          box-shadow: 0px 0px 24px 0px rgba(150, 120, 47, 0.08);
  padding: 30px 20px 20px;
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    padding: 16px;
  }
}

.p-voice__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 52px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice__card-info {
    margin-bottom: 16px;
  }
}
.p-voice__card-info::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  background-image: url(../img/double-quotation.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .p-voice__card-info::after {
    top: 10px;
    width: 32px;
    height: 28px;
  }
}

.p-voice__card-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44px;
          flex: 0 1 44px;
  display: block;
  margin-right: 28px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  .p-voice__card-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40px;
            flex: 0 1 40px;
    margin-right: 24px;
  }
}

.p-voice__card-customer {
  color: #666666;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-voice__card-customer {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.p-voice__card-text {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.9;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-voice__card-text {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}

/*------------------------------------------------------------------------------
  p-gallery
------------------------------------------------------------------------------*/
.p-gallery {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    margin-bottom: 48px;
  }
}

.p-gallery__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p-gallery__slider .swiper-slide {
  width: 464px !important;
  height: auto !important;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-slide {
    width: 200px !important;
  }
}
.p-gallery__slider .swiper-slide .swiper-slide img {
  width: 100%;
  height: auto;
}

/*------------------------------------------------------------------------------
  p-salon
------------------------------------------------------------------------------*/
.p-salon__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-salon__content {
    display: block;
    margin-top: 12px;
  }
}

.p-salon__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.454%;
          flex: 0 1 45.454%;
}
@media screen and (max-width: 767px) {
  .p-salon__info {
    margin-bottom: 24px;
  }
}

.p-salon__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D3D3D3;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px 0;
}
@media screen and (max-width: 1023px) {
  .p-salon__info-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salon__info-item {
    padding: 20px 0;
  }
}

.p-salon__info-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22.4%;
          flex: 0 1 22.4%;
  font-weight: normal;
}

.p-salon__info-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.02em;
}

.p-salon__map {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.p-salon__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-salon__map iframe {
    aspect-ratio: 4/3;
  }
}

/*------------------------------------------------------------------------------
  p-top-recruit
------------------------------------------------------------------------------*/
.p-top-recruit {
  margin-bottom: 220px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    margin-bottom: 140px;
  }
}

.p-top-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 600px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__inner {
    display: block;
    max-height: 100%;
  }
}

.p-top-recruit__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__img img {
    aspect-ratio: 4/3;
  }
}

.p-top-recruit__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  background-color: #F9F7EE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 60px 20px 60px 100px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 1280px) {
  .p-top-recruit__content {
    padding: 60px 20px 60px 70px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__content {
    padding: 60px 20px 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content {
    padding: 32px 20px 56px;
  }
}

.p-top-recruit__text {
  margin: 56px 0 40px;
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__text {
    margin: 40px 0 32px;
  }
  .p-top-recruit__text br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__text {
    margin: 32px 0 28px;
  }
}

.p-top-recruit__en-text {
  position: absolute;
  bottom: -90px;
  left: 280px;
  width: 420px;
}
@media screen and (max-width: 1440px) {
  .p-top-recruit__en-text {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .p-top-recruit__en-text {
    bottom: -60px;
    width: 340px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-recruit__en-text {
    bottom: -40px;
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__en-text {
    bottom: -42px;
    right: auto;
    left: 10px;
    width: 200px;
  }
}

/*------------------------------------------------------------------------------
  p-instagram
------------------------------------------------------------------------------*/
.p-instagram__content {
  margin-top: 56px;
}

/*------------------------------------------------------------------------------
  p-page-mv
------------------------------------------------------------------------------*/
.p-page-mv {
  position: relative;
  width: 100%;
  margin: 0 auto 8px;
}
.p-page-mv .c-inner {
  padding-left: 50px;
}
@media screen and (max-width: 1023px) {
  .p-page-mv .c-inner {
    padding-left: 20px;
  }
}

.p-page-mv__inner {
  max-width: 1640px;
  width: calc(100% - 100px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__inner {
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__inner {
    width: calc(100% - 40px);
  }
}
.p-page-mv__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/page-mv-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.p-page-mv__title-wrap {
  white-space: nowrap;
  padding: 130px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-wrap {
    padding: 72px 0 24px;
  }
}

.p-page-mv__title-en {
  color: #333;
  font-size: 7rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-en {
    font-size: 4.8rem;
  }
}

.p-page-mv__title-ja {
  color: #96782F;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-ja {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
  }
}

/*------------------------------------------------------------------------------
  p-message
------------------------------------------------------------------------------*/
.p-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-message__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}
@media screen and (max-width: 1023px) {
  .p-message__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 54%;
            flex: 0 1 54%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__text-wrap {
    display: contents;
  }
  .p-message__text-wrap .c-title {
    width: 100%;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-bottom: 24px;
  }
}

.p-message__texts {
  margin-top: 48px;
  line-height: 2.2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1023px) {
  .p-message__texts {
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .p-message__texts {
    line-height: 2;
    margin-top: 20px;
  }
}

.p-message__ceo {
  line-height: 1.7;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-message__ceo {
    margin-top: 16px;
  }
}

.p-message__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
}
@media screen and (max-width: 1023px) {
  .p-message__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*------------------------------------------------------------------------------
  p-staff
------------------------------------------------------------------------------*/
.p-staff__media-wrap {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-staff__media-wrap {
    margin-top: 40px;
  }
}

.p-staff__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-staff__media {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-staff__media {
    display: block;
  }
}
.p-staff__media:not(:last-child) {
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .p-staff__media:not(:last-child) {
    margin-bottom: 48px;
  }
}

.p-staff__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37%;
          flex: 0 1 37%;
}

.p-staff__media-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 58%;
          flex: 0 1 58%;
}
@media screen and (max-width: 1023px) {
  .p-staff__media-content {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-staff__media-content {
    margin-top: 20px;
  }
}

.p-staff__label {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  border-radius: 2px;
  background-color: #AB9560;
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-staff__label {
    font-size: 1.3rem;
    padding: 5px 12px;
    margin-bottom: 10px;
  }
}

.p-staff__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 1023px) {
  .p-staff__name {
    margin-bottom: 16px;
  }
}

.p-staff__name-ja {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .p-staff__name-ja {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-staff__name-ja {
    font-size: 2.6rem;
  }
}

.p-staff__name-en {
  color: #96782F;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.2em;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-family: "Cormorant Garamond", serif;
  margin-left: 12px;
}
@media screen and (max-width: 1023px) {
  .p-staff__name-en {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-staff__media-texts {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-staff__media-texts {
    text-align: justify;
  }
}

.p-staff__media-detail {
  margin-top: 32px;
}
@media screen and (max-width: 1023px) {
  .p-staff__media-detail {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-staff__media-detail {
    margin-top: 20px;
  }
}
.p-staff__media-detail li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-staff__media-detail li:not(:last-child) {
  margin-bottom: 4px;
}
.p-staff__media-detail li h4 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  margin-right: 2px;
}

/*------------------------------------------------------------------------------
  p-concept
------------------------------------------------------------------------------*/
.p-concept-wrap {
  padding: 24px 0 32px;
}
@media screen and (max-width: 767px) {
  .p-concept-wrap {
    padding: 16px 0 8px;
  }
}

.p-concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-concept:not(:last-child) {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-concept:not(:last-child) {
    margin-bottom: 72px;
  }
}

.p-concept--odd .p-concept__title::before {
  right: 0;
}

.p-concept--even .p-concept__title::before {
  left: 0;
}

.p-concept__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 38%;
          flex: 0 1 38%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-concept__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.p-concept__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55.5%;
          flex: 0 1 55.5%;
}

.p-concept__number {
  color: #AB9560;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-concept__number {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.p-concept__number span {
  font-size: 3rem;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-concept__number span {
    font-size: 2.6rem;
    margin-left: 8px;
  }
}

.p-concept__title {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 30px;
  margin-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-concept__title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__title {
    font-size: 1.8rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.p-concept__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 700px;
  height: 1px;
  background-color: #AB9560;
  z-index: -1;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-concept__title::before {
    width: 100%;
  }
}

.p-concept__text {
  letter-spacing: 0.1em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-concept__text {
    letter-spacing: 0.07em;
    line-height: 1.8;
  }
}

/*------------------------------------------------------------------------------
  p-menu-head
------------------------------------------------------------------------------*/
.p-menu-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px 4%;
  padding-top: 32px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-menu-head {
    gap: 28px 6%;
    padding-top: 0;
    margin-bottom: 64px;
  }
}

.p-menu-head__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 22%;
          flex: 0 1 22%;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  border-bottom: 1px solid #D3D3D3;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0 14px 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-menu-head__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
    font-size: 1.6rem;
    padding: 0 0 8px 2px;
  }
}
.p-menu-head__link:hover {
  opacity: 0.75;
}
.p-menu-head__link::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 8px;
  background-image: url(../img/caret.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 9px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-menu-head__link::after {
    top: 7.5px;
    right: 6px;
    width: 8px;
    height: 8px;
  }
}

/*------------------------------------------------------------------------------
  p-menu-media
------------------------------------------------------------------------------*/
.p-menu-media-wrap .c-title {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .p-menu-media-wrap .c-title {
    margin-bottom: 32px;
  }
}

/*------------------------------------------------------------------------------
  p-menu
------------------------------------------------------------------------------*/
.p-menu:not(:last-of-type) {
  margin-bottom: 144px;
}
@media screen and (max-width: 767px) {
  .p-menu:not(:last-of-type) {
    margin-bottom: 64px;
  }
}

.p-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 64px 0;
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-menu__list {
    margin-top: 36px;
    gap: 28px 0;
  }
}

.p-menu__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
  border-bottom: 1px solid #D3D3D3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-menu__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding-bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu__item--has-text-wrap {
    display: block;
  }
  .p-menu__item--has-text-wrap .p-menu__price {
    text-align: right;
    margin-top: 8px;
  }
}

.p-menu__item-text-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .p-menu__item-text-wrap {
    padding-right: 0;
  }
}
.p-menu__item-text-wrap .p-menu__item-title {
  padding-right: 0;
}

.p-menu__item-title {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 12px;
}

.p-menu__item-text {
  color: #666666;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-menu__item-text {
    font-size: 1.2rem;
  }
}

.p-menu__price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

.p-menu__notes {
  font-size: 1.3rem;
  font-weight: normal;
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-menu__notes {
    font-size: 1.1rem;
    margin-top: 12px;
  }
}

/*------------------------------------------------------------------------------
  p-reserve
------------------------------------------------------------------------------*/
.p-reserve__lead {
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.14em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .p-reserve__lead {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-reserve__lead {
    font-size: 1.4rem;
    line-height: 1.85;
    letter-spacing: 0.06em;
    text-align: left;
  }
}

.p-reserve__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 96px -24px 0;
}
@media screen and (max-width: 767px) {
  .p-reserve__content {
    display: block;
    margin: 40px 0 0;
  }
}

.p-reserve__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-reserve__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

.p-reserve__title--lg {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-reserve__title--lg {
    font-size: 1.8rem;
  }
}

.p-reserve__content-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 330px;
          flex: 0 1 330px;
  margin: 0 24px;
}
@media screen and (max-width: 767px) {
  .p-reserve__content-child {
    margin: 0 auto;
  }
  .p-reserve__content-child:nth-child(2) {
    margin-bottom: 24px;
  }
}

.p-reserve__line {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin: 0 auto 72px;
}
@media screen and (max-width: 767px) {
  .p-reserve__line {
    margin-bottom: 32px;
  }
}

.p-reserve__btn {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  max-width: 330px;
  height: 60px;
  border-radius: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reserve__btn {
    font-size: 1.6rem;
    max-width: 300px;
    height: 56px;
  }
}

.p-reserve__btn--line {
  font-size: 2rem;
  background-color: #07C655;
  max-width: 540px;
  height: 72px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reserve__btn--line {
    font-size: 1.8rem;
    max-width: 350px;
    height: 60px;
  }
}

.p-reserve__btn--gold {
  background-color: #96782F;
}

.p-reserve__btn--white {
  color: #96782F;
  border: 1px solid #96782F;
  background-color: #fff;
}

/*------------------------------------------------------------------------------
  p-recruit-mv
------------------------------------------------------------------------------*/
.p-recruit-mv {
  margin-bottom: 134px;
}
@media screen and (max-width: 767px) {
  .p-recruit-mv {
    margin-bottom: 64px;
  }
}

.p-recruit-mv__inner {
  max-width: 1640px;
  width: calc(100% - 100px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 142px 0 112px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__inner {
    width: calc(100% - 48px);
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__inner {
    width: calc(100% - 16px);
    padding: 88px 0 38px;
    margin-right: 0;
  }
}
.p-recruit-mv__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1150px;
  height: 100%;
  background-image: url(../img/recruit-mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__inner::before {
    width: 100%;
  }
}

.p-recruit-mv__content {
  margin-left: 46px;
}
@media screen and (max-width: 1100px) {
  .p-recruit-mv__content {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__content {
    margin-left: 16px;
  }
}

.p-recruit-mv__title {
  margin-bottom: 72px;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__title {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__title {
    margin-bottom: 40px;
  }
}

.p-recruit-mv__title-en {
  color: #B7923A;
  font-size: 9.6rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__title-en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__title-en {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__title-en {
    font-size: 4.4rem;
  }
}

.p-recruit-mv__title-ja {
  color: #434343;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__title-ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__title-ja {
    font-size: 1.4rem;
  }
}

.p-recruit-mv__lead {
  color: #434343;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__lead {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__lead {
    font-size: 1.25rem;
  }
}

.p-recruit-mv__lead--lg {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
}
@media screen and (max-width: 1023px) {
  .p-recruit-mv__lead--lg {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-mv__lead--lg {
    font-size: 2rem;
  }
}

/*------------------------------------------------------------------------------
  p-entry-btn
------------------------------------------------------------------------------*/
.p-entry-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 108px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-entry-btn {
    right: 16px;
    bottom: 16px;
    width: 80px;
  }
}

/*------------------------------------------------------------------------------
  p-recruit-message
------------------------------------------------------------------------------*/
.p-recruit-message__lead {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__lead {
    font-size: 2rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
  }
}

.p-recruit-message__texts {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  line-height: 2.2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-recruit-message__texts {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-message__texts {
    font-size: 1.35rem;
    line-height: 1.9;
    letter-spacing: 0.08em;
    text-align: justify;
  }
  .p-recruit-message__texts br {
    display: none;
  }
}
.p-recruit-message__texts p:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-message__texts p:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-merit
------------------------------------------------------------------------------*/
.p-merit {
  background-image: url(../img/merit-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 128px 0;
}
@media screen and (max-width: 767px) {
  .p-merit {
    background-image: url(../img/merit-bg_sp.jpg);
    padding: 64px 0;
  }
}

.p-merit__box {
  background-color: #F9F7EE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 112px 16px;
}
@media screen and (max-width: 767px) {
  .p-merit__box {
    padding: 56px 16px 32px;
  }
}

.p-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 910px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .p-merit__list {
    display: block;
    margin-top: 20px;
  }
}

.p-merit__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px 0;
}
.p-merit__item:not(:last-child) {
  border-right: 1px solid #AB9560;
}
@media screen and (max-width: 767px) {
  .p-merit__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #AB9560;
  }
}

.p-merit__number {
  max-width: 54px;
  display: block;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .p-merit__number {
    max-width: 38px;
    margin: 0 auto 8px;
  }
}

.p-merit__title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-merit__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit__title {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-recruit-voice
------------------------------------------------------------------------------*/
.p-recruit-voice__media-wrap {
  margin-top: 176px;
}
@media screen and (max-width: 767px) {
  .p-recruit-voice__media-wrap {
    margin-top: 120px;
  }
}

.p-voice-media {
  position: relative;
}
.p-voice-media:not(:last-child) {
  margin-bottom: 176px;
}
@media screen and (max-width: 767px) {
  .p-voice-media:not(:last-child) {
    margin-bottom: 120px;
  }
}
.p-voice-media.--odd .p-voice-media__content {
  padding-left: 50px;
}
@media screen and (max-width: 1023px) {
  .p-voice-media.--odd .p-voice-media__content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media.--odd .p-voice-media__content {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.p-voice-media.--odd .p-voice-media__img {
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-voice-media.--odd .p-voice-media__img {
    right: -8px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media.--odd .p-voice-media__number {
    left: 4px;
  }
}
.p-voice-media.--even {
  margin-left: auto;
}
.p-voice-media.--even .p-voice-media__content {
  padding-right: 50px;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .p-voice-media.--even .p-voice-media__content {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media.--even .p-voice-media__content {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.p-voice-media.--even .p-voice-media__text-wrap {
  margin-left: auto;
}
.p-voice-media.--even .p-voice-media__img {
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-voice-media.--even .p-voice-media__img {
    left: -8px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media.--even .p-voice-media__number {
    left: 134px;
  }
}

.p-voice-media__content {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1055px;
  -webkit-box-shadow: 0px 0px 33px 0px rgba(97, 77, 26, 0.13);
          box-shadow: 0px 0px 33px 0px rgba(97, 77, 26, 0.13);
  padding-top: 90px;
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-voice-media__content {
    padding-top: 100px;
    padding-bottom: 32px;
  }
}

.p-voice-media__text-wrap {
  max-width: 632px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .p-voice-media__text-wrap {
    max-width: 60vw;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media__text-wrap {
    max-width: 100%;
  }
}

.p-voice-media__number {
  position: absolute;
  top: -128px;
  width: 220px;
}
@media screen and (max-width: 1023px) {
  .p-voice-media__number {
    width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media__number {
    top: -76px;
    width: 136px;
  }
}

.p-voice-media__title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 24px;
}
@media screen and (max-width: 1023px) {
  .p-voice-media__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media__title {
    font-size: 1.6rem;
  }
}

.p-voice-media__text {
  line-height: 1.9;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-voice-media__text {
    text-align: justify;
    margin-bottom: 8px;
  }
}

.p-voice-media__name {
  color: #96782F;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.26em;
}
@media screen and (max-width: 767px) {
  .p-voice-media__name {
    font-size: 1.3rem;
  }
}

.p-voice-media__img {
  position: absolute;
  top: -78px;
  width: 336px;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .p-voice-media__img {
    width: 27vw;
  }
}
@media screen and (max-width: 767px) {
  .p-voice-media__img {
    top: -60px;
    width: 126px;
  }
}

/*------------------------------------------------------------------------------
  p-faq
------------------------------------------------------------------------------*/
.p-faq {
  background-color: #F9F7EE;
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 64px 0;
  }
}

.p-faq__list {
  max-width: 1000px;
  margin: 56px auto 0;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 32px;
  }
}

.p-faq__item {
  background-color: #fff;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 40px 40px 112px;
  -webkit-box-shadow: 0px 0px 33px 0px rgba(97, 77, 26, 0.13);
          box-shadow: 0px 0px 33px 0px rgba(97, 77, 26, 0.13);
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 24px 16px 24px 56px;
  }
}
.p-faq__item:not(:last-child) {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-faq__item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.p-faq__question {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 28px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-faq__question {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 1.4rem;
    padding-right: 24px;
  }
}
.p-faq__question::before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -64px;
  color: #AB9560;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-faq__question::before {
    top: -4px;
    font-size: 2.8rem;
    left: -40px;
  }
}
.p-faq__question button {
  position: absolute;
  top: 0px;
  right: 0;
  width: 22px;
  height: 22px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-faq__question button {
    width: 18px;
    height: 18px;
  }
}
.p-faq__question button:focus {
  outline: rgb(0, 95, 204);
}
.p-faq__question button::before, .p-faq__question button::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #AB9560;
}
.p-faq__question button::before {
  top: 15px;
  width: 17px;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .p-faq__question button::before {
    top: 11px;
    width: 13px;
  }
}
.p-faq__question button::after {
  top: 7px;
  width: 1px;
  height: 17px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__question button::after {
    top: 5px;
    height: 13px;
  }
}
.p-faq__question.open button::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.p-faq__answer {
  line-height: 1.7;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 32px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    margin-top: 24px;
  }
}
.p-faq__answer::before {
  content: "A";
  position: absolute;
  top: -4px;
  left: -64px;
  color: #AB9560;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .p-faq__answer::before {
    left: -39px;
    font-size: 2.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-requirement
------------------------------------------------------------------------------*/
.p-requirement__list {
  margin-top: 56px;
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .p-requirement__list {
    margin-top: 32px;
  }
}

.p-requirement__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #D3D3D3;
  padding: 40px 24px;
}
@media screen and (max-width: 767px) {
  .p-requirement__item {
    display: block;
    padding: 32px 8px;
  }
}

.p-requirement__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 206px;
          flex: 0 1 206px;
  color: #96782F;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1023px) {
  .p-requirement__item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 170px;
            flex: 0 1 170px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-requirement__item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 80px;
            flex: 0 1 80px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

.p-requirement__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-requirement__detail a {
  color: #96782F;
  text-decoration: underline;
}

.p-requirement__text-list > li:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .p-requirement__text-list > li:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-requirement__order-list {
  list-style-position: inside;
}

/*------------------------------------------------------------------------------
  p-ceo-message
------------------------------------------------------------------------------*/
.p-ceo-message {
  background-color: #F9F7EE;
  padding: 144px 0;
}
@media screen and (max-width: 767px) {
  .p-ceo-message {
    padding: 64px 0 56px;
  }
  .p-ceo-message .c-inner {
    max-width: 550px;
  }
}

.p-ceo-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 28px;
  }
}

.p-ceo-message__texts {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56%;
          flex: 0 1 56%;
  font-weight: normal;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__texts {
    text-align: justify;
    margin-top: 8px;
    margin-bottom: 1em;
  }
}
.p-ceo-message__texts p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.p-ceo-message__texts .u-fw-bold {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  margin-top: 1.6em;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__texts .u-fw-bold {
    font-size: 1.6rem;
    margin-top: 1.4em;
  }
}

.p-ceo-message__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37.5%;
          flex: 0 1 37.5%;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-ceo-message__img figcaption {
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  display: block;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-ceo-message__img figcaption {
    display: none;
  }
}

.p-ceo-message___sign {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  display: block;
  display: none;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-ceo-message___sign {
    display: block;
  }
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview__list {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-overview__list {
    margin-top: 32px;
  }
}

.p-overview__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 32px;
}
@media screen and (max-width: 767px) {
  .p-overview__item {
    padding: 32px 20px;
  }
}
.p-overview__item:nth-child(odd) {
  background-color: #F9F7EE;
}

.p-overview__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 218px;
          flex: 0 1 218px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-overview__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 96px;
            flex: 0 1 96px;
  }
}

.p-overview__detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------------------------------------------------
  p-menu-media
------------------------------------------------------------------------------*/
.p-menu-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #293553;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

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

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

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

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */