@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://glanzen.org/
File name:style.css
Summary:base styles
Created:2024-03-01
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Link */
/* ------------------------------------------------------------ */
a {
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
img,
.alpha {
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc_mode {
  display: inherit;
}

.sp_mode {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pc_mode {
    display: none !important;
  }
  .sp_mode {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html body {
  font-size: 16px;
}
html body::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body {
    font-size: 14px;
  }
}
html body #loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body header {
  position: relative;
  z-index: 1;
}
html body header .inner {
  width: 100%;
  position: fixed !important;
  top: 0px !important;
  margin-top: 0 !important;
}
html body header .inner .header_area {
  background: rgba(239, 235, 231, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px rgb(255, 255, 255) solid;
  transition: all 0.5s ease;
}
html body header .inner .header_area > div {
  height: 95px;
  display: flex;
  align-items: center;
}
html body header .inner .header_area > div > h1 {
  width: 154px;
}
html body header .inner .header_area > div > h1 img {
  filter: brightness(0) invert(1);
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) {
  display: flex;
  align-items: center;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(n+2) {
  margin: 0 0 0 30px;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a {
  display: inline-block;
  color: #fff;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a span {
  display: block;
  font-family: "Crimson Text";
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.5s ease;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a:hover span::after {
  background: #fff;
  bottom: -5px;
}
html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) {
  display: none;
}
html body header .inner.fixed .header_area {
  background: #efebe7 !important;
  border-bottom: 1px rgba(255, 255, 255, 0) solid;
}
html body header .inner.fixed .header_area > div > h1 img {
  filter: brightness(1) invert(0);
}
html body header .inner.fixed .header_area > nav#global_nav > ul:nth-of-type(1) > li a {
  color: #876348;
}
html body header .inner.fixed .header_area > nav#global_nav > ul:nth-of-type(1) > li a:hover span::after {
  background: #876348;
  bottom: -5px;
}
html body header .inner.fixed .header_area > nav#global_nav > ul:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body header .inner .header_area {
    padding: 0 4vw;
    border-bottom: 1px rgba(255, 255, 255, 0) solid;
  }
  html body header .inner .header_area > div {
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    z-index: 3;
  }
  html body header .inner .header_area > div h1 {
    width: 154px;
  }
  html body header .inner .header_area > div #nav_toggle {
    cursor: pointer;
  }
  html body header .inner .header_area > div #nav_toggle > div {
    position: relative;
    width: 31px;
    height: 31px;
  }
  html body header .inner .header_area > div #nav_toggle > div span {
    width: 31px;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(1) {
    top: 7px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(2) {
    top: 15px;
  }
  html body header .inner .header_area > div #nav_toggle > div span:nth-child(3) {
    top: 23px;
  }
  html body header .inner .header_area > nav#global_nav {
    background: rgb(135, 99, 72);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 4vw;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) {
    display: block !important;
    width: 100%;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li {
    margin: 40px 0 0 0 !important;
    display: block;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.1s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a {
    color: #fff !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a span {
    font-size: 24px;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li a:hover span::after {
    background: #fff;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(1) {
    transition-delay: 0.1s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(2) {
    transition-delay: 0.2s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(3) {
    transition-delay: 0.3s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(4) {
    transition-delay: 0.4s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(1) > li:nth-of-type(5) {
    display: none;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) {
    display: block !important;
    width: 100%;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li {
    text-align: center;
    margin: 40px 0 0 0;
    display: block;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.1s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li a {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px #fff solid;
    border-radius: 30px;
    font-family: "Crimson Text";
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    height: 60px;
    padding: 0;
    transition: all 0.5s ease;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li:nth-of-type(1) {
    transition-delay: 0.5s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li:nth-of-type(1) a {
    color: #fff;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li:nth-of-type(1) a img {
    width: 22px;
    margin-right: 10px;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li:nth-of-type(2) {
    transition-delay: 0.6s !important;
  }
  html body header .inner .header_area > nav#global_nav > ul:nth-of-type(2) > li:nth-of-type(2) a {
    background: #fff;
    color: #876348;
  }
  html body header .inner.fixed .header_area #nav_toggle > div span {
    background: #876348;
  }
  html body header .inner.open .header_area h1 img {
    filter: brightness(0) invert(1) !important;
  }
  html body header .inner.open .header_area #nav_toggle span {
    background: #fff !important;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  html body header .inner.open .header_area > nav#global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open .header_area > nav#global_nav > ul > li {
    border: none !important;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.9s ease;
  }
}
html body main section:not(#mainvisual) {
  margin: 120px 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#mainvisual) {
    margin: 60px 0;
  }
}
html body main section:not(#mainvisual) .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body main section:not(#mainvisual) .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body main section#concept .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  margin: 0 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h2 {
    font-size: 54px;
    margin: 0 0 60px;
  }
}
html body main section#concept .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h2::after {
    font-size: 14px;
    margin-top: 10px;
  }
}
html body main section#concept .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h3 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 54px;
    padding-bottom: 20px;
  }
}
html body main section#concept .inner h3::before {
  content: "";
  background: #876348;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h3::before {
    height: 2px;
  }
}
html body main section#concept .inner h3::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h3::after {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
html body main section#concept .inner h4 {
  text-align: left;
  line-height: 1.5;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h4 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
  }
}
html body main section#concept .inner h4:nth-of-type(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner h4:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#concept .inner p {
  text-align: left;
  line-height: 1.8;
}
html body main section#suggestion .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  margin: 0 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h2 {
    font-size: 54px;
    margin: 0 0 60px;
  }
}
html body main section#suggestion .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h2::after {
    font-size: 14px;
    margin-top: 10px;
  }
}
html body main section#suggestion .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h3 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 54px;
    padding-bottom: 20px;
  }
}
html body main section#suggestion .inner h3::before {
  content: "";
  background: #876348;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h3::before {
    height: 2px;
  }
}
html body main section#suggestion .inner h3::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h3::after {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
html body main section#suggestion .inner h4 {
  text-align: left;
  line-height: 1.5;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h4 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
  }
}
html body main section#suggestion .inner h4:nth-of-type(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner h4:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#suggestion .inner p {
  text-align: left;
  line-height: 1.8;
}
html body main section#menu .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  margin: 0 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h2 {
    font-size: 54px;
    margin: 0 0 60px;
  }
}
html body main section#menu .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h2::after {
    font-size: 14px;
    margin-top: 10px;
  }
}
html body main section#menu .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h3 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 54px;
    padding-bottom: 20px;
  }
}
html body main section#menu .inner h3::before {
  content: "";
  background: #876348;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h3::before {
    height: 2px;
  }
}
html body main section#menu .inner h3::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h3::after {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
html body main section#menu .inner h4 {
  text-align: left;
  line-height: 1.5;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h4 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
  }
}
html body main section#menu .inner h4:nth-of-type(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner h4:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#menu .inner p {
  text-align: left;
  line-height: 1.8;
}
html body main section#access_sec .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  margin: 0 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h2 {
    font-size: 54px;
    margin: 0 0 60px;
  }
}
html body main section#access_sec .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h2::after {
    font-size: 14px;
    margin-top: 10px;
  }
}
html body main section#access_sec .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h3 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 54px;
    padding-bottom: 20px;
  }
}
html body main section#access_sec .inner h3::before {
  content: "";
  background: #876348;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h3::before {
    height: 2px;
  }
}
html body main section#access_sec .inner h3::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h3::after {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
html body main section#access_sec .inner h4 {
  text-align: left;
  line-height: 1.5;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h4 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
  }
}
html body main section#access_sec .inner h4:nth-of-type(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner h4:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#access_sec .inner p {
  text-align: left;
  line-height: 1.8;
}
html body main section#contact .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  margin: 0 0 120px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h2 {
    font-size: 54px;
    margin: 0 0 60px;
  }
}
html body main section#contact .inner h2::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h2::after {
    font-size: 14px;
    margin-top: 10px;
  }
}
html body main section#contact .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #876348;
  font-family: "Crimson Text";
  font-size: 70px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h3 {
    flex-direction: column;
    align-items: flex-start;
    font-size: 54px;
    padding-bottom: 20px;
  }
}
html body main section#contact .inner h3::before {
  content: "";
  background: #876348;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h3::before {
    height: 2px;
  }
}
html body main section#contact .inner h3::after {
  content: attr(data-subtitle);
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h3::after {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
html body main section#contact .inner h4 {
  text-align: left;
  line-height: 1.5;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h4 {
    text-align: left;
    font-size: 22px;
    margin: 0 0 15px;
  }
}
html body main section#contact .inner h4:nth-of-type(n+2) {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner h4:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
html body main section#contact .inner p {
  text-align: left;
  line-height: 1.8;
}
html body main section#mainvisual figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
html body main section#mainvisual figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
html body main section#mainvisual figcaption h2 {
  color: #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: min(2.5vw, 38px);
  line-height: 2.5;
  text-indent: 0.5em;
  margin-top: 6vw;
}
@media screen and (max-width: 1024px) {
  html body main section#mainvisual figcaption h2 {
    font-size: min(6vw, 38px);
  }
}
html body main section#concept .inner {
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 374px 462px;
}
@media screen and (max-width: 1024px) {
  html body main section#concept .inner {
    background-position: right 4vw top;
    background-size: 187px 231px;
  }
}
html body main section#suggestion {
  background: #876348;
}
html body main section#suggestion .inner {
  padding: 60px 4vw;
}
html body main section#suggestion .inner p {
  text-align: center;
  color: #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  html body main section#suggestion .inner p {
    font-size: 18px;
  }
}
html body main section#menu .inner > div {
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 374px 462px;
}
html body main section#menu .inner > div:nth-of-type(n+2) {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div:nth-of-type(n+2) {
    margin-top: 60px;
  }
  html body main section#menu .inner > div:nth-of-type(n+2) article > figure {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div {
    background-position: right 4vw top;
    background-size: 187px 231px;
  }
}
html body main section#menu .inner > div article {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 120px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article {
    display: block;
    margin: 60px auto 0;
  }
}
html body main section#menu .inner > div article > figcaption {
  width: 100%;
}
html body main section#menu .inner > div article > figcaption h4 {
  color: #876348;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption h4 {
    text-align: center;
  }
}
html body main section#menu .inner > div article > figcaption h5 {
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption h5 {
    text-align: center;
  }
}
html body main section#menu .inner > div article > figcaption h5:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption h5:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
html body main section#menu .inner > div article > figcaption h5 + p {
  margin-top: 10px;
}
html body main section#menu .inner > div article > figcaption figure {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption figure {
    margin: 20px auto 0;
  }
}
html body main section#menu .inner > div article > figcaption figure img:nth-of-type(1) {
  width: 100%;
  max-width: 356px;
  height: auto;
}
html body main section#menu .inner > div article > figcaption figure img:nth-of-type(2) {
  width: 100%;
  max-width: 332px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption figure img:nth-of-type(1) {
    width: 50%;
  }
  html body main section#menu .inner > div article > figcaption figure img:nth-of-type(2) {
    width: 46.629%;
  }
}
html body main section#menu .inner > div article > figcaption dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 20px;
  border-bottom: 1px #000 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption dl {
    padding: 20px 0;
  }
}
html body main section#menu .inner > div article > figcaption dl dt {
  line-height: 1.5;
}
html body main section#menu .inner > div article > figcaption dl dd {
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figcaption dl dd {
    margin-left: 4vw;
  }
}
html body main section#menu .inner > div article > figure {
  flex-shrink: 0;
  width: 235px;
  margin: 0 0 0 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figure {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: 30px 0 0 0;
  }
}
html body main section#menu .inner > div article > figure img {
  width: 100%;
  max-width: 235px;
}
html body main section#menu .inner > div article > figure img:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#menu .inner > div article > figure img {
    width: 48%;
  }
  html body main section#menu .inner > div article > figure img:nth-of-type(n+2) {
    margin: 0;
  }
}
html body main section#access_sec {
  background: #efebe7;
}
html body main section#access_sec .inner {
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner {
    padding: 60px 4vw;
  }
}
html body main section#access_sec .inner address {
  background: #fff;
  font-style: normal;
  box-sizing: border-box;
  width: 100%;
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner address {
    padding: 30px;
  }
}
html body main section#access_sec .inner address dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px 40px;
  border-bottom: 1px #C3C3C3 solid;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner address dl {
    padding: 0 0 20px;
  }
}
html body main section#access_sec .inner address dl:nth-of-type(n+2) {
  padding: 40px 20px 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner address dl:nth-of-type(n+2) {
    padding: 20px 0 20px;
  }
}
html body main section#access_sec .inner address dl dt {
  flex-shrink: 0;
  line-height: 1.5;
  width: 140px;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner address dl dt {
    width: 6.6em;
  }
}
html body main section#access_sec .inner address dl dd {
  line-height: 1.5;
  width: 100%;
}
html body main section#access_sec .inner address dl dd a {
  color: #000;
}
html body main section#access_sec .inner address dl dd span {
  margin: 0 1.1em 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#access_sec .inner address dl dd span {
    margin: 0;
  }
}
html body main section#contact .inner {
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 374px 462px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner {
    background-position: right 4vw top;
    background-size: 187px 231px;
  }
}
html body main section#contact .inner .must {
  color: #E60012;
}
html body main section#contact .inner span.error {
  color: #E60012;
  text-align: center;
  margin-top: 5px;
}
html body main section#contact .inner form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form {
    margin: 30px auto 0;
  }
}
html body main section#contact .inner form > p:nth-of-type(1) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(1) {
    margin-bottom: 30px;
  }
}
html body main section#contact .inner form > p:nth-of-type(2) {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(2) {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
html body main section#contact .inner form > p:nth-of-type(3) {
  margin: 60px 0 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form > p:nth-of-type(3) {
    margin: 30px 0 0;
  }
}
html body main section#contact .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
}
html body main section#contact .inner form dl:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl {
    display: block;
    width: 100%;
  }
}
html body main section#contact .inner form dl dt {
  display: block;
  text-align: left;
  width: 300px;
  margin-right: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dt {
    width: 100%;
    margin: 0;
    padding: 0 0 5px;
  }
}
html body main section#contact .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
html body main section#contact .inner form dl dd {
  display: block;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form dl dd {
    padding: 0;
  }
}
html body main section#contact .inner form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.8;
}
html body main section#contact .inner form :is(input:not([type=file]), select, textarea) {
  border-radius: 6px;
  border: 1px #DBDBDB solid;
  background: #fff;
  color: #000;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form :is(input:not([type=file]), select, textarea) {
    font-size: 14px;
  }
}
html body main section#contact .inner form input[type=text].input_number {
  text-align: right;
  width: 5.4em;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].input_number {
    width: 3.8em;
  }
}
html body main section#contact .inner form input[type=text].zip {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=text].zip {
    width: 40%;
  }
}
html body main section#contact .inner form input[type=file] {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form input[type=file] {
    font-size: 14px;
  }
}
html body main section#contact .inner form select.prefecture {
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form select.prefecture {
    width: 40%;
  }
}
html body main section#contact .inner form .mwform-zip-field {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main section#contact .inner form .mwform-zip-field input {
  margin: 0 10px;
}
html body main section#contact .inner form .select {
  width: 100%;
  position: relative;
}
html body main section#contact .inner form .select::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-color: #727171;
  border-style: solid;
  position: absolute;
  right: 20px;
  top: 15px;
  transform-origin: center;
  transform: rotate(45deg);
}
html body main section#contact .inner form .radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#contact .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#contact .inner form .radio .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
}
html body main section#contact .inner form .radio .mwform-radio-field-text::before {
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #DBDBDB;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #2E9CC7;
}
html body main section#contact .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #2E9CC7;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#contact .inner form input[type=checkbox] {
  display: none;
}
html body main section#contact .inner form .mwform-checkbox-field {
  display: block;
  text-align: center;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
  font-size: 16px;
  text-align: left;
  display: inline-block;
  position: relative;
  padding: 0 0 0 36px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text {
    font-size: 14px;
  }
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before, html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  display: block;
  content: "";
  position: absolute;
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: #fff;
  border: 2px solid #DBDBDB;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
}
html body main section#contact .inner form .mwform-checkbox-field .mwform-checkbox-field-text::after {
  border-width: 3px;
  border-color: transparent transparent #876348 #876348;
  border-style: solid;
  width: 20px;
  height: 10px;
  top: 10%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main section#contact .inner form input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main section#contact .inner form div.privacypolicy {
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
  width: 100%;
  height: 360px;
  padding: 20px 30px;
  overflow-y: auto;
  border: 1px #DBDBDB solid;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.privacypolicy {
    padding: 2vw 4vw;
  }
}
html body main section#contact .inner form div.privacypolicy strong {
  display: block;
  font-weight: 500;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.privacypolicy strong {
    margin-top: 30px;
  }
}
html body main section#contact .inner form div.privacypolicy p {
  margin-top: 10px;
  line-height: 1.8;
}
html body main section#contact .inner form div.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.btn_area {
    margin: 30px auto 0;
  }
}
html body main section#contact .inner form div.btn_area .btn_submit {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #876348;
  border-radius: 40px;
  width: 100%;
  max-width: 420px;
  height: 80px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner form div.btn_area .btn_submit {
    border-radius: 30px;
    height: 60px;
    font-size: 16px;
  }
}
html body main section#contact .inner form div.btn_area .btn_submit:hover {
  background: rgba(135, 99, 72, 0.13);
  color: #000;
}
html body main section#contact .inner .mw_wp_form_complete p {
  line-height: 1.8;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  html body main section#contact .inner .mw_wp_form_complete p {
    margin-top: 30px;
  }
}
html body footer {
  background: #efebe7;
  padding: 120px 0 60px;
}
@media screen and (max-width: 1024px) {
  html body footer {
    padding: 60px 0 30px;
  }
}
html body footer .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  html body footer .inner {
    box-sizing: border-box;
    padding: 0 4vw;
  }
}
html body footer .inner > div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div {
    display: block;
  }
}
html body footer .inner > div nav > ul:nth-of-type(1) {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div nav > ul:nth-of-type(1) {
    display: block;
  }
}
html body footer .inner > div nav > ul:nth-of-type(1) > li:nth-of-type(n+2) {
  margin: 0 0 0 30px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div nav > ul:nth-of-type(1) > li:nth-of-type(n+2) {
    margin: 30px 0 0 0;
  }
}
html body footer .inner > div nav > ul:nth-of-type(1) > li a {
  display: inline-block;
  color: #876348;
}
html body footer .inner > div nav > ul:nth-of-type(1) > li a span {
  display: block;
  font-family: "Crimson Text";
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
html body footer .inner > div nav > ul:nth-of-type(1) > li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div nav > ul:nth-of-type(1) > li a span::after {
    content: none;
  }
}
html body footer .inner > div nav > ul:nth-of-type(1) > li a:hover span::after {
  background: #876348;
  bottom: -5px;
}
html body footer .inner > div h1 {
  width: 252px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner > div h1 {
    width: 208px;
    margin: 60px auto 0;
  }
}
html body footer .inner small {
  display: block;
  color: #876348;
  font-size: 14px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  html body footer .inner small {
    text-align: center;
    font-size: 10px;
    margin-top: 30px;
  }
}

/* fadein */
/* ------------------------------------------------------------ */
.fadein {
  transform: translate(0, 40px);
  transition: all 700ms;
  opacity: 0;
}

/* scrollin */
/* ------------------------------------------------------------ */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=style.css.map */