@charset "UTF-8";
/* Scss Document */
/* UTILITY
 * ========================================================================== */
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.notosuns {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.notoserif {
  font-family: "Noto Serif JP", _serif;
  font-weight: 400;
}

html,
body {
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  color: #505050;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
  background-color: white;
}
@media screen and (max-width: 767px) {
  html,
body {
    font-size: 3.8888888889vw;
  }
}

body.fixed {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
body.fixed .page-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 58, 83, 0.8);
  z-index: 998;
  visibility: visible;
  opacity: 1;
}
body .page-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 58, 83, 0.8);
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, a, figcaption {
  letter-spacing: 1px;
  line-height: 2.111em;
  margin: 0;
  padding: 0;
  color: #806829;
}
@media screen and (max-width: 767px) {
  h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, a, figcaption {
    letter-spacing: 0;
    line-height: 1.999em;
  }
}

figure {
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

button {
  cursor: pointer;
}

.resize {
  width: 100%;
  height: auto;
}

.responsive {
  max-width: 100%;
  width: auto;
  height: auto;
}

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

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

.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-br {
    display: initial;
  }
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.flex .x-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .x-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex .x-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .x-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex .x-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex .y-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .y-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex .y-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .y-baseline {
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}
.flex .c-center {
  -ms-flex-line-pack: center;
      align-content: center;
}
.flex .c-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.flex .c-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  opacity: 0;
}

/* COMMON
 * ========================================================================== */
a,
button {
  color: #806829;
  text-decoration: none;
}
a.scaleup,
button.scaleup {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
a.scaleup:hover,
button.scaleup:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  a.scaleup:hover,
button.scaleup:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
a.opacity,
button.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a.opacity:hover,
button.opacity:hover {
  opacity: 0.6;
}
a.slide,
button.slide {
  display: inline-block;
  -webkit-animation: slideLeft 1s forwards;
          animation: slideLeft 1s forwards;
}
a.slide:hover,
button.slide:hover {
  -webkit-animation: slideRight 0.25s forwards;
          animation: slideRight 0.25s forwards;
}
a.underline,
button.underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a.underline:after,
button.underline:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #806829;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  a.underline:after,
button.underline:after {
    bottom: -1.1111111111vw;
    height: 0.5555555556vw;
  }
}
a.underline:hover:after,
button.underline:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.link-btn {
  width: 364px;
  height: 76px;
  background-color: #806829;
  color: white;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .link-btn {
    width: 100%;
    height: 18.3333333333vw;
    margin: 40px auto 0;
  }
}
.link-btn.white a {
  border-color: #D3D3D3;
  color: #fff;
}
.link-btn.white a:before {
  background-color: #806829;
}
.link-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .link-btn a {
    font-size: 3.8888888889vw;
    border-radius: 5.5555555556vw;
  }
}
.link-btn a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: 1em;
  font-weight: 700;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
  color: white;
}
.link-btn a:hover:after {
  right: 0.777em;
}

.page-top {
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
}

.page-top a {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(/assets/img/pagetop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* LAYOUT
 * ========================================================================== */
.page-header {
  width: 100%;
  min-width: 1110px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .page-header {
    min-width: 320px;
    padding: 0;
  }
}
.page-header.sticky {
  background-color: #806829;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.contact .page-header {
  background-color: #806829;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.page-main {
  width: 100%;
  min-width: 1110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-main {
    min-width: 320px;
    margin-top: 15.2777777778vw;
  }
}
.page-main.toppage {
  background-image: url("/assets/img/passer_mainvisual.jpg");
  background-size: 100% auto;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .page-main.toppage {
    background-position: center top 66px;
    background-size: 140%;
  }
}

.page-footer {
  background-color: white;
  width: 100%;
  min-width: 1110px;
  position: relative;
  margin-top: 100px;
  color: white;
  border-top: 2px solid #806829;
}
.page-footer a {
  color: #806829;
}
@media screen and (max-width: 767px) {
  .page-footer {
    min-width: 320px;
    margin-top: 40px;
  }
}

/* PAGE-HEADER
 * ========================================================================== */
.page-header .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-header .inner {
    height: 15.2777777778vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  }
}
.page-header .inner .logo {
  width: 100%;
  height: 117px;
  padding: 8px 0 0 5%;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-header .inner .logo {
    margin: 0;
    z-index: 999;
    position: relative;
    height: 15.2777777778vw;
    background-size: 129px 38px;
    width: 84.7222222222vw;
    padding: 2.2222222222vw 0 0 0;
  }
}
.page-header .inner .logo span {
  font-size: 14px;
}
.page-header .inner .logo a {
  display: block;
  line-height: 0;
  margin: 22px 0 0 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .page-header .inner .logo a {
    width: 163px;
    margin: 13px 0 0 0;
  }
}
.page-header .inner .menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button {
    width: 15.2777777778vw;
    height: 15.2777777778vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 999;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button span {
    display: block;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
    background-image: url("../img/common/menu-open.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.page-header .inner .menu-button.active {
  background-color: #806829;
}
.page-header .inner .menu-button.active span {
  background-image: url("../img/common/menu-close.svg");
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button.active span {
    background-image: url("../img/common/menu-close.svg");
  }
}
.page-header .inner .menu {
  padding-right: 5%;
}
.page-header .inner .menu .menu_inner {
  margin: 0 auto;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .menu_inner {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-color: #806829;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu {
    display: none;
    margin: 0;
    position: fixed;
    top: 15.2777777778vw;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    z-index: -1;
    width: 100%;
  }
}
.page-header .inner .menu .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 635px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    width: 100%;
  }
}
.page-header .inner .menu .list > li {
  margin-left: 1px;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  background-color: #806829;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li {
    margin: 11.1111111111vw 0 0 0;
    font-size: 3.8888888889vw;
    letter-spacing: 0.111em;
    color: #fff;
    text-align: center;
    padding: 0;
  }
}
.page-header .inner .menu .list > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li:last-child {
    margin: 11.1111111111vw 0 0 0;
    font-size: 3.8888888889vw;
    letter-spacing: 0.111em;
    color: #fff;
    text-align: center;
  }
}
.page-header .inner .menu .list > li:before {
  position: absolute;
}
.page-header .inner .menu .list > li a {
  color: #fff;
  display: inline-block;
}
.page-header .inner .menu .list > li .sns {
  position: absolute;
  left: 50%;
  top: 50px;
  margin-left: -100px;
  width: 200px;
  display: none;
}
.page-header .inner .menu .list > li .sns:before {
  content: "";
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 20px;
  height: 20px;
  background-color: #806829;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -10px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns {
    display: block;
    position: static;
    width: auto;
    margin-left: 0;
  }
}
.page-header .inner .menu .list > li .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  padding: 10px;
  background-color: #806829;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns ul {
    background-color: transparent;
    padding: 0;
  }
}
.page-header .inner .menu .list > li .sns ul li {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns ul li {
    font-size: 6.1111111111vw;
    margin-left: 0.777em;
  }
  .page-header .inner .menu .list > li .sns ul li:first-child {
    font-size: 4.4444444444vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-header .inner .menu .tellink {
  color: #806829;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .tellink {
    color: white;
  }
}
.page-header .inner .menu .tellink span {
  font-size: 29px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .tellink span {
    color: white;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .tellink {
    margin-top: 40px;
    text-align: center;
  }
}
.page-header .inner .menu .tellink a {
  color: #806829;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .tellink a {
    color: white;
  }
}
.page-header .inner .menu .sp-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .sp-menu {
    display: block;
    width: 73.33333333%;
    margin: 5.5555555556vw auto 13.8888888889vw auto;
    background-color: #806829;
    list-style: none;
    padding: 5.5555555556vw 6.9444444444vw;
  }
  .page-header .inner .menu .sp-menu li {
    margin-top: 4.1666666667vw;
  }
  .page-header .inner .menu .sp-menu li:first-child {
    margin-top: 0;
  }
  .page-header .inner .menu .sp-menu li a {
    color: #fff;
  }
}
.page-header.fixed .inner {
  background-color: white;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
.page-header.fixed .inner .menu {
  padding: 0;
}
.page-header.fixed .inner .logo {
  height: 76px;
}
@media screen and (max-width: 767px) {
  .page-header.fixed .inner .logo {
    height: 15.2777777778vw;
    padding: 8px 0 0 0;
  }
}
.page-header.fixed .inner .logo .subcopy {
  display: none;
}
.page-header.fixed .inner .logo a {
  width: 382px;
  margin: 11px 0 0 0;
}
@media screen and (max-width: 767px) {
  .page-header.fixed .inner .logo a {
    width: 163px;
    margin: 13px 0 0 0;
  }
}
.page-header.fixed .inner .menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-header.fixed .inner .menu_inner .tellink {
  width: 243px;
  text-align: right;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .page-header.fixed .inner .menu_inner .tellink {
    width: 100%;
    text-align: center;
  }
}
.page-header.fixed .inner .menu_inner .list {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .page-header.fixed .inner .menu_inner .list {
    width: 100%;
  }
}

/* TOP PAGE
 * ========================================================================== */
.top-01 {
  width: 100%;
  height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1110px) {
  .top-01 {
    height: 609px;
  }
}
@media screen and (max-width: 767px) {
  .top-01 {
    height: auto;
    display: block;
  }
}
.top-01 .mainvisual {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-01 .mainvisual {
    width: 100%;
    height: 100vw;
    background-position: right bottom;
  }
}
.top-01 .mainvisual .catchcopy {
  width: 300px;
  position: absolute;
  top: 330px;
  left: 20%;
  font-size: 35px;
  color: #806829;
}
@media screen and (max-width: 767px) {
  .top-01 .mainvisual .catchcopy {
    width: 55.5555555556vw;
    left: 8%;
    top: 13.6111111111vw;
    font-size: 24px;
  }
}

.top-02 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .top-02 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    background-image: url(/assets/img/division_sp.svg);
  }
}
.top-02 h1 {
  background-image: url(/assets/img/title_passer.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .top-02 h1 {
    font-size: 5.5555555556vw;
    text-align: center;
    background-image: url(/assets/img/title_passer_sp.svg);
  }
}
.top-02 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .top-02 .wrap {
    display: block;
  }
}
.top-02 .wrap .text {
  width: 650px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-02 .wrap .text {
    width: 100%;
  }
}
.top-02 .wrap .text h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .top-02 .wrap .text h2 {
    font-size: 5.5555555556vw;
  }
}
.top-02 .wrap .image {
  width: 240px;
  text-align: right;
  margin: 24px 0 0;
}
@media screen and (max-width: 767px) {
  .top-02 .wrap .image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top-02 .wrap .image img {
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-02 .wrap .image img {
    width: 48%;
  }
}
.top-02 .message {
  color: #505050;
  margin-top: 20px;
}
.top-02 .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-02 .button {
    display: block;
  }
}
.top-02 .button .link-btn {
  margin: 60px 16px;
}
@media screen and (max-width: 767px) {
  .top-02 .button .link-btn {
    margin: 11.1111111111vw auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top-02 .interior {
    margin-top: 45px;
  }
}
.top-02 .interior h3 {
  text-align: center;
}
.top-02 .interior .photo_variable {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-02 .interior .photo_variable {
    margin: 11.1111111111vw auto 0;
  }
}
.top-02 .interior .photo_variable ul {
  width: 1000px;
  margin: 0 auto;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top-02 .interior .photo_variable ul {
    width: 100%;
  }
}
.top-02 .interior .photo_variable ul li {
  width: 320px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.top-02 .interior .photo_variable ul li img {
  width: 100%;
}
.top-02 .interior .photo_variable ul li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .top-02 .interior .photo_variable ul li:nth-child(3n) {
    margin-right: 4%;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top-02 .interior .photo_variable ul li {
    width: 48%;
    margin-right: 4%;
  }
  .top-02 .interior .photo_variable ul li:nth-child(2n) {
    margin-right: 0;
  }
}

.top-04 {
  padding: 0 0 0 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-04 {
    width: 80%;
    padding: 0 0 8.3333333333vw 0;
    margin: 60px auto 0;
  }
}
.top-04 img {
  display: block;
  margin: 30px auto;
  width: 250px;
}
.top-04 .message {
  color: #505050;
  margin: 20px auto 0;
  text-align: center;
  width: 780px;
}
@media screen and (max-width: 767px) {
  .top-04 .message {
    width: 100%;
  }
}

.subpagetitle {
  background-color: #EFEDE1;
  width: 100%;
  height: 140px;
  padding: 43px 0 0;
}
@media screen and (max-width: 767px) {
  .subpagetitle {
    height: 106px;
    padding: 10.2777777778vw 0 0;
  }
}
.subpagetitle .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .subpagetitle .inner {
    width: 90%;
  }
}
.subpagetitle .inner h1 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .subpagetitle .inner h1 {
    font-size: 5vw;
  }
}

.access {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 15.2777777778vw;
  }
}
.access .access-01 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access .access-01 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    margin: 60px auto 0;
  }
}
.access .access-01 .message {
  color: #505050;
  margin: 20px auto 0;
  text-align: left;
}
.access .access-01 .imagewrap {
  margin: 30px auto 0;
}
.access .access-01 .imagewrap iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access .access-01 .imagewrap {
    width: 100%;
  }
  .access .access-01 .imagewrap img {
    width: 100%;
  }
}

.salonmenu {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .salonmenu {
    margin-top: 15.2777777778vw;
  }
}
.salonmenu .tax {
  margin: 60px;
  text-align: center;
  font-size: 14px;
  color: #505050;
}
@media screen and (max-width: 767px) {
  .salonmenu .tax {
    margin: 11.1111111111vw;
    font-size: 3.3333333333vw;
  }
}
.salonmenu .menu-01 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 90%;
  }
}
.salonmenu .menu-01 h2 {
  background-image: url(/assets/img/title_passer.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  font-size: 26px;
  margin: 45px auto 0;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 h2 {
    font-size: 5.5555555556vw;
    text-align: center;
    background-image: url(/assets/img/title_passer_sp.svg);
  }
}
.salonmenu .menu-01 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
  width: 740px;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 .wrap {
    width: 90%;
    margin: 8.3333333333vw auto 0;
  }
}
.salonmenu .menu-01 .wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  color: #505050;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 .wrap dl {
    width: 100%;
  }
}
.salonmenu .menu-01 .wrap dl dt {
  margin-right: 1em;
  color: #505050;
}
.salonmenu .menu-01 .wrap dl dd {
  color: #505050;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 .wrap {
    display: block;
  }
}
.salonmenu .menu-01 .wrap .text {
  width: 650px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 .wrap .text {
    width: 100%;
  }
}
.salonmenu .menu-01 .wrap .text h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .salonmenu .menu-01 .wrap .text h2 {
    font-size: 5.5555555556vw;
  }
}
.salonmenu .menu-01 .message {
  color: #505050;
  margin-top: 5.5555555556vw;
}
.salonmenu .opt {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .salonmenu .opt {
    width: 90%;
    margin: 0 auto;
    font-size: 3.3333333333vw;
    text-align: left;
  }
}

/* フッター */
.page-footer {
  color: #806829;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .page-footer {
    padding: 20px 0;
  }
}
.page-footer .inner {
  color: #806829;
}
.page-footer .inner .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-footer .inner .links li {
  margin-right: 30px;
}
.page-footer .inner .links li:last-child {
  margin: 0;
}
.page-footer .inner .footerlogo {
  width: 260px;
  margin: 0 auto;
  display: block;
}
.page-footer .inner .links {
  width: 1000px;
  margin: 0 auto;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .links {
    width: 100%;
    display: none;
  }
}
.page-footer .inner p {
  margin: 50px auto 30px;
  color: #505050;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-footer .inner p:nth-child(1) {
    margin: 0;
  }
}
.page-footer .inner .info {
  width: 1000px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info {
    width: 100%;
  }
}
.page-footer .inner .info li {
  color: #806829;
  margin: 0;
  padding: 0;
}
.page-footer .inner .info li:nth-child(1) {
  width: 100%;
}
.page-footer .inner .info li:nth-child(2) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info li:nth-child(2) {
    width: 100%;
  }
}
.page-footer .inner .info li:nth-child(3) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info li:nth-child(3) {
    width: 100%;
  }
}
.page-footer .inner .copyright {
  font-size: 10px;
  color: #806829;
}