@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
@font-face {
  font-family: "apple";
  src: url("../font/Apple.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 900px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 901px) {
  .is-sp {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Shippori Mincho", serif;
  line-height: 1.7;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
  }
}

main {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 228, 225, 0.4)), color-stop(20%, rgb(255, 255, 255)), color-stop(80%, rgb(255, 255, 255)), to(rgba(255, 228, 225, 0.4)));
  background: linear-gradient(to right, rgba(255, 228, 225, 0.4) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, rgba(255, 228, 225, 0.4) 100%);
}
@media screen and (max-width: 900px) {
  main {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 228, 225, 0.3)), color-stop(10%, rgb(255, 255, 255)), color-stop(90%, rgb(255, 255, 255)), to(rgba(255, 228, 225, 0.3)));
    background: linear-gradient(to right, rgba(255, 228, 225, 0.3) 0%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 90%, rgba(255, 228, 225, 0.3) 100%);
  }
}

#id1,
#id2,
#id3,
#id4,
#id5 {
  position: relative;
  top: -67px;
}
@media screen and (max-width: 900px) {
  #id1,
  #id2,
  #id3,
  #id4,
  #id5 {
    top: -50px;
  }
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Shippori Mincho", serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
}
.header .flex {
  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;
}
.header .flex .logo {
  max-width: 180px;
}
@media screen and (max-width: 900px) {
  .header .flex .logo {
    max-width: 120px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}

.nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .nav-lists {
    display: none;
  }
}
.nav-lists li {
  margin-right: 40px;
}
.nav-lists li:last-child {
  margin-right: 0;
}
.nav-lists li a {
  color: #736357;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.nav-lists li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #D68E8C;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.nav-lists li a:hover {
  color: #D68E8C;
}
.nav-lists li a:hover::after {
  width: 100%;
}

.footer {
  background: #dec8c3;
  padding: 50px 0;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 30px 0 20px;
  }
}
.footer .flex {
  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;
}
@media screen and (max-width: 900px) {
  .footer .flex {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .footer .nav-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .nav-lists li {
    width: 33.333%;
    margin-right: 0;
    text-align: center;
  }
}
.footer .logo {
  max-width: 180px;
}
@media screen and (max-width: 900px) {
  .footer .logo {
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 120px;
  }
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  opacity: 0.6;
}

.copyright {
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .copyright {
    margin-top: 20px;
    font-size: 10px;
  }
}

.mv {
  position: relative;
}
.mv .left-bg {
  position: absolute;
  width: 20%;
  left: 0;
  bottom: -10%;
}
@media screen and (max-width: 900px) {
  .mv .left-bg {
    width: 14%;
    bottom: -4%;
  }
}
.mv .left-bg img {
  min-height: initial !important;
}
.mv .right-bg {
  position: absolute;
  width: 20%;
  right: 0;
  top: 12%;
}
@media screen and (max-width: 900px) {
  .mv .right-bg {
    width: 15%;
    top: 32%;
  }
}
.mv .right-bg img {
  min-height: initial !important;
}
@media screen and (max-width: 900px) {
  .mv {
    white-space: nowrap;
  }
  .mv .mv-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.mv .contents {
  position: absolute;
  bottom: 10%;
  left: 50%;
  font-size: 2.3vw;
  color: #736357;
  text-shadow: 0 0 15px rgb(255, 255, 255), 0 0 15px rgb(255, 255, 255), 0 0 15px rgb(255, 255, 255);
}
@media screen and (max-width: 900px) {
  .mv .contents {
    font-size: 24px;
    width: 100%;
    font-weight: 700;
    line-height: 1.5;
    left: 0;
    text-shadow: 0 0 3px rgb(255, 255, 255), 0 0 3px rgb(255, 255, 255), 0 0 3px rgb(255, 255, 255);
  }
}
@media screen and (max-width: 374px) {
  .mv .contents {
    font-size: 20px;
    bottom: 14%;
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 900px) {
  .section {
    padding: 40px 0;
  }
}

.drawer-icon {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-icon .d-text {
  font-size: 14px;
  font-weight: 700;
  color: #736357;
  padding-top: 6px;
}
@media screen and (min-width: 901px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 45px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 45px;
  height: 2px;
  background: #736357;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 250;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  max-width: 200px;
  padding-top: 70px;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-icon-nav {
  padding: 0 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
  border-bottom: 1px solid #D68E8C;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.section-title {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #736357;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 901px) {
  .top-news .right {
    margin-top: -10px;
  }
}
.top-news .section-title {
  color: #000;
}
.top-news .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .top-news .flex {
    display: block;
  }
}
.top-news .left {
  width: 250px;
}
@media screen and (max-width: 900px) {
  .top-news .left {
    width: 100%;
  }
}
.top-news .right {
  width: calc(100% - 250px);
}
@media screen and (max-width: 900px) {
  .top-news .right {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .top-news .right article .li:first-child a {
    padding-top: 0;
  }
}
.top-news .right article .li a {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #736357;
  font-size: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .top-news .right article .li a {
    padding: 10px 0;
    display: block;
  }
}
.top-news .right article .li a:hover {
  color: #D68E8C;
}
.top-news .right article .li a .time {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .top-news .right article .li a .time {
    width: 100%;
  }
}
.top-news .right article .li a h3 {
  width: calc(100% - 200px);
}
@media screen and (max-width: 900px) {
  .top-news .right article .li a h3 {
    width: 100%;
  }
}

body,
html {
  overflow-x: hidden;
}

.section-lead {
  font-family: "apple", serif;
  font-size: 70px;
  color: #dec8c3;
  line-height: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .section-lead {
    margin-bottom: 30px;
    font-size: 40px;
  }
}
.section-lead .section-lead-wrap {
  display: inline-block;
  position: relative;
}
.section-lead .section-lead-wrap::after {
  position: absolute;
  bottom: 10%;
  left: 110%;
  width: 1000%;
  height: 1px;
  content: "";
  background: #dec8c3;
}

.feature {
  position: relative;
  color: #736357;
}
.feature .bg1 {
  position: absolute;
  top: 7%;
  left: 7%;
  width: 15%;
}
.feature .bg3 {
  position: absolute;
  bottom: 7%;
  left: 7%;
  width: 15%;
}
.feature .bg2 {
  position: absolute;
  top: 47%;
  right: 7%;
  width: 15%;
}
@media screen and (max-width: 900px) {
  .feature .section-title {
    font-size: 21px;
  }
}
.feature .items .li {
  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;
  margin-bottom: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .feature .items .li {
    margin-bottom: 30px;
  }
}
.feature .items .li:nth-child(2n) {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}
@media screen and (max-width: 900px) {
  .feature .items .li {
    display: block;
  }
}
.feature .items .li .img {
  width: 44%;
}
@media screen and (max-width: 900px) {
  .feature .items .li .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.feature .items .li .img img {
  border-radius: 80px 0 80px 0;
}
.feature .items .li .contents {
  width: 53%;
}
@media screen and (max-width: 900px) {
  .feature .items .li .contents {
    width: 100%;
  }
}
.feature .items .li .contents ul {
  padding-left: 20px;
}
.feature .items .li .contents ul li {
  list-style: disc;
}
@media screen and (min-width: 901px) {
  .feature .items2 {
    margin-top: 120px;
  }
}
@media screen and (max-width: 900px) {
  .feature .items2 {
    margin-top: 50px;
  }
}
.feature .items2 .li {
  display: block;
  max-width: 700px;
  margin: 0 auto;
}
.feature .items2 .li .img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .feature .items2 .li .img {
    margin-bottom: 10px;
  }
}
.feature .items2 .li .contents {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .feature .items2 .li .contents {
    text-align: left;
  }
}

.line-sec {
  margin-top: 60px;
}
.line-sec .img {
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .line-sec .img {
    max-width: 150px;
    margin-bottom: 10px;
  }
}
.line-sec .img a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.line-sec .img a:hover {
  opacity: 0.6;
}
.line-sec p {
  text-align: center;
}

p,
li {
  line-height: 2;
}
@media screen and (max-width: 900px) {
  p,
  li {
    line-height: 1.7;
  }
}

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

@media screen and (max-width: 900px) {
  .center-sp {
    text-align: center;
  }
}

.menu {
  line-height: 1.5;
  position: relative;
}
.menu .bg1 {
  position: absolute;
  top: 1%;
  right: 0%;
  width: 30%;
  z-index: 1;
}
.menu .box {
  position: relative;
  z-index: 2;
}
.menu .section-lead {
  margin-bottom: -20px;
}
.menu .box {
  background: #efe6e4;
  padding: 60px 40px;
}
@media screen and (max-width: 900px) {
  .menu .box {
    padding: 30px 20px;
  }
}
.menu .area {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .menu .area {
    margin-bottom: 40px;
  }
}
.menu .area:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .menu .area {
    font-size: 16px;
  }
}
.menu .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #dec8c3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .menu .row1 {
    font-size: 16px;
  }
}
.menu .dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #dec8c3;
}
@media screen and (max-width: 900px) {
  .menu .dl {
    display: block;
  }
}
.menu .dl .dt {
  width: 25%;
}
@media screen and (max-width: 900px) {
  .menu .dl .dt {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
}
.menu .dl .dd-wrap {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .menu .dl .dd-wrap {
    width: 100%;
  }
}
.menu .dl .dd-wrap .dd {
  width: 33.333%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .menu .dl .dd-wrap .dd {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .menu .dd-wrap2 .dd {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 374px) {
  .menu .dd-wrap2 .dd {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 900px) {
  .menu .price {
    font-size: 18px;
  }
}
.menu .white-box {
  background: #fff;
  padding: 30px 20px;
}
@media screen and (max-width: 900px) {
  .menu .white-box {
    padding: 20px;
  }
}
.menu .white-box .contents1 {
  font-size: 24px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .menu .white-box .contents1 {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .menu .white-box .contents1 {
    font-size: 14px;
  }
}
.menu .white-box .contents2 {
  font-size: 20px;
  max-width: 400px;
  margin: 0 auto;
  color: #736357;
}
@media screen and (max-width: 900px) {
  .menu .white-box .contents2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .menu .white-box .contents2 {
    font-size: 14px;
  }
}
.menu .attention {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  .menu .attention {
    font-size: 14px;
  }
}
.menu .wrapper1 .title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .menu .wrapper1 .title {
    margin-bottom: 10px;
  }
}
.menu .wrapper1 .title .wrap {
  padding-bottom: 10px;
  border-bottom: 1px solid #dec8c3;
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .menu .wrapper1 .title .wrap {
    font-size: 18px;
  }
}
.menu .wrapper1 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 450px;
  white-space: nowrap;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .menu .wrapper1 .row {
    display: block;
  }
}
.menu .wrapper1 .row .left {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .menu .wrapper1 .row .left {
    width: 100%;
    text-align: center;
  }
}
.menu .wrapper1 .row .right {
  width: calc(100% - 200px);
}
@media screen and (max-width: 900px) {
  .menu .wrapper1 .row .right {
    width: 100%;
    text-align: center;
  }
}
.menu .wrapper2 .title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .menu .wrapper2 .title {
    margin-bottom: 10px;
  }
}
.menu .wrapper2 .title .wrap {
  padding-bottom: 10px;
  border-bottom: 1px solid #dec8c3;
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .menu .wrapper2 .title .wrap {
    font-size: 18px;
  }
}
.menu .wrapper2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 360px;
  margin: 0 auto;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .menu .wrapper2 .row .left {
    width: initial;
  }
}
@media screen and (max-width: 900px) {
  .menu .wrapper2 .row .right {
    width: initial;
  }
}
.menu .attention2 {
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .menu .attention2 {
    font-size: 14px;
    text-align: left;
  }
}

@media screen and (max-width: 900px) {
  .menu .dl .dt {
    font-size: 18px;
  }
  .menu .row1 h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .menu .dl .dt {
    font-size: 15px;
  }
  .menu .row1 h3 {
    font-size: 15px;
  }
}
.staff {
  position: relative;
}
.staff .bg1 {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 0;
  width: 33%;
}
.staff .inner {
  position: relative;
  z-index: 2;
}
.staff .section-lead {
  text-align: right;
}
.staff .section-lead .section-lead-wrap::after {
  left: -2020px;
  width: 2000px;
}
.staff .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #736357;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .staff .flex {
    display: block;
  }
}
.staff .flex .img {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .staff .flex .img {
    margin: 0 auto 10px;
  }
}
.staff .flex .contents {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .staff .flex .contents {
    width: 100%;
  }
}
.staff .flex .contents .name {
  font-size: 26px;
  margin-bottom: 40px;
  line-height: 1.3;
}
@media screen and (max-width: 900px) {
  .staff .flex .contents .name {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.section-lead {
  z-index: 3;
  position: relative;
}

.access {
  position: relative;
}
.access .inner {
  z-index: 2;
  position: relative;
}
.access .bg1 {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 0;
  width: 33%;
}
.access .map {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .access .map {
    margin-bottom: 20px;
  }
}
.access .map .map-wrap {
  padding-top: 50%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .access .map .map-wrap {
    padding-top: 70%;
  }
}
.access .map .map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access .flex {
  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;
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .access .flex {
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 900px) {
  .access .flex {
    display: block;
  }
}
.access .flex .shop {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .access .flex .shop {
    margin: 0 auto 10px;
    width: 100%;
  }
}
.access .flex .contents {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .access .flex .contents {
    width: 100%;
  }
}
.access .flex .contents .text1 {
  font-size: 16px;
}
.access .flex .contents .text1:first-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .text1:first-child {
    margin-bottom: 15px;
  }
}
.access .flex .contents .text1 span {
  font-size: 14px;
  display: block;
}
.access .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .access .flex2 {
    margin-bottom: 20px;
  }
}
.access .flex2 .img {
  width: 32.5%;
}
.access .flex2 .img .wrap {
  width: 100%;
  padding-top: 75%;
  position: relative;
}
.access .flex2 .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.access .text4 {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .access .text4 {
    text-align: left;
  }
}

.qa {
  background: linear-gradient(to bottom, transparent 0px, transparent 180px, #efe6e4 180px, #efe6e4 100%);
}
@media screen and (max-width: 900px) {
  .qa {
    background: #efe6e4;
  }
}
.qa .wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.qa .row {
  line-height: 2;
  margin-bottom: 60px;
  color: #736357;
}
@media screen and (max-width: 900px) {
  .qa .row {
    margin-bottom: 30px;
    line-height: 1.7;
  }
}
.qa .row:last-child {
  margin-bottom: 0;
}
.qa .row .dt {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 374px) {
  .qa .row .dt {
    font-size: 18px;
  }
}
.qa .row .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qa a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
  display: inline-block;
}
.qa a:hover {
  color: #D68E8C;
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #736357;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.contact {
  color: #736357;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.contact .bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
}
@media screen and (max-width: 900px) {
  .contact .bg1 {
    width: 50%;
    left: -16%;
  }
}
.contact .inner {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  .contact {
    font-size: 16px;
  }
}
.contact .required {
  background: #D68E8C;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
}
@media screen and (max-width: 900px) {
  .contact .required {
    font-size: 14px;
  }
}
.contact .dt {
  margin-bottom: 10px;
}
.contact .section-lead {
  text-align: right;
}
.contact .section-lead .section-lead-wrap::after {
  left: -2020px;
  width: 2000px;
}
.contact .contact-wrap {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px;
  font-family: sans-serif;
}
.contact .contact-wrap a {
  font-family: sans-serif;
  color: #736357;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .contact .contact-wrap {
    margin-bottom: 60px;
  }
}
.contact .row {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .contact .row {
    margin-bottom: 20px;
  }
}
.contact .check-row {
  margin-bottom: 40px;
  text-align: center;
}
.contact .check-row input {
  position: absolute;
  left: -1000%;
}
.contact .check-row .design {
  position: relative;
  text-align: center;
  display: inline-block;
  padding-left: 30px;
  line-height: 1;
}
.contact .check-row .design::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #736357;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact .check-row .design::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 20px;
  border-right: 5px solid #D68E8C;
  border-bottom: 5px solid #D68E8C;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: none;
}
.contact .check-row input[type=checkbox]:checked + .design::after {
  display: block;
}
.contact .check-row a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .check-row a:hover {
  opacity: 0.6;
}

textarea {
  height: 150px;
  resize: none;
}

.submit {
  text-align: center;
}
.submit input {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 10px;
  background: #D68E8C;
  border: 1px solid #D68E8C;
  max-width: 300px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.submit input:hover {
  background: #fff;
  color: #D68E8C;
}

@media screen and (min-width: 901px) {
  .mv .contents {
    font-size: 36px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1300px) {
  .mv .contents {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 900px) {
  .mv .contents {
    font-size: 24px;
  }
}
@media screen and (max-width: 374px) {
  .mv .contents {
    font-size: 22px;
  }
}
.contact2-area .text1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .contact2-area .text1 {
    font-size: 22px;
  }
}
.contact2-area .arrow {
  max-width: 20px;
  margin: 20px auto;
}
@media screen and (max-width: 900px) {
  .contact2-area .arrow {
    max-width: 10px;
    margin: 20px auto;
  }
}
.contact2-area .tel {
  text-align: center;
}
.contact2-area .tel a {
  font-size: 36px;
  padding: 10px 50px;
  display: inline-block;
  color: #736357;
  border: 1px solid #D68E8C;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .contact2-area .tel a {
    font-size: 22px;
    padding: 10px 20px;
  }
}
.contact2-area .tel a:hover {
  opacity: 0.6;
}
.contact2-area .text2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .contact2-area .text2 {
    margin-bottom: 50px;
  }
}
.contact2-area .text3 {
  text-align: center;
  font-size: 30px;
  background: #D68E8C;
  color: #fff;
  margin-bottom: 30px;
  max-width: 300px;
  padding: 10px 0;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .contact2-area .text3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.contact2-area .flex2 {
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact2-area .flex2 .item {
  width: 40%;
}
@media screen and (max-width: 900px) {
  .contact2-area .flex2 .item {
    width: 47%;
  }
}
.contact2-area .flex2 .text5 {
  color: #736357;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .contact2-area .flex2 .text5 {
    margin-top: 5px;
    line-height: 1.3;
  }
}
.contact2-area .flex2 .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact2-area .flex2 a:hover .img {
  opacity: 0.6;
}
.contact2-area .flex2 a:hover .text5 {
  color: #D68E8C;
}

@media screen and (max-width: 900px) {
  .menu .dl .dd-wrap .dd {
    width: initial;
  }
  .menu .dl .dd-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.contact2-area .flex2 .item:nth-child(2) .img {
  border: 1px solid #000;
}

.single {
  padding-top: 180px;
}
@media screen and (max-width: 900px) {
  .single {
    padding-top: 100px;
  }
}
.single img {
  width: 100%;
  height: auto;
}
.single .single_title {
  font-size: 24px;
  border-bottom: 1px solid #736357;
  margin-bottom: 40px;
  line-height: 1.5;
  padding-bottom: 6px;
}
@media screen and (max-width: 900px) {
  .single .single_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.thanks {
  padding-top: 180px;
}
@media screen and (max-width: 900px) {
  .thanks {
    padding-top: 100px;
  }
}
.thanks h1 {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .thanks h1 {
    font-size: 20px;
  }
}
.thanks h3 {
  margin-top: 60px;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .thanks h3 {
    margin-top: 30px;
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.section-btn {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-btn {
    margin-top: 30px;
  }
}
.section-btn a {
  display: inline-block;
  padding: 10px 40px;
  color: #fff;
  background: #736357;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover {
  opacity: 0.6;
}

body {
  display: none;
}

.sakura-container {
  position: absolute;
  width: 30%;
  left: 0;
  top: 75%;
}
@media screen and (max-width: 900px) {
  .sakura-container {
    top: 20%;
  }
}

.sakura-container.bottom {
  left: initial;
  right: 0;
  top: 10%;
}

.sakura {
  position: absolute;
  top: -10%;
  width: 40px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-animation-name: fall-sway;
          animation-name: fall-sway;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media screen and (max-width: 900px) {
  .sakura {
    width: 7px;
  }
}

@-webkit-keyframes fall-sway {
  0% {
    -webkit-transform: translateX(0px) translateY(0px) scale(0.4) rotate(0deg);
            transform: translateX(0px) translateY(0px) scale(0.4) rotate(0deg);
    opacity: 0;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  10% {
    -webkit-transform: translateX(-10px) translateY(3vh) scale(0.7) rotate(20deg);
            transform: translateX(-10px) translateY(3vh) scale(0.7) rotate(20deg);
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  40% {
    -webkit-transform: translateX(20px) translateY(8vh) scale(1.1) rotate(90deg);
            transform: translateX(20px) translateY(8vh) scale(1.1) rotate(90deg);
    opacity: 0.9;
  }
  60% {
    -webkit-transform: translateX(-15px) translateY(12vh) scale(1.4) rotate(135deg);
            transform: translateX(-15px) translateY(12vh) scale(1.4) rotate(135deg);
    opacity: 0.8;
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(15vh) scale(1.3) rotate(180deg);
            transform: translateX(0px) translateY(15vh) scale(1.3) rotate(180deg);
    opacity: 0;
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}

@keyframes fall-sway {
  0% {
    -webkit-transform: translateX(0px) translateY(0px) scale(0.4) rotate(0deg);
            transform: translateX(0px) translateY(0px) scale(0.4) rotate(0deg);
    opacity: 0;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  10% {
    -webkit-transform: translateX(-10px) translateY(3vh) scale(0.7) rotate(20deg);
            transform: translateX(-10px) translateY(3vh) scale(0.7) rotate(20deg);
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  40% {
    -webkit-transform: translateX(20px) translateY(8vh) scale(1.1) rotate(90deg);
            transform: translateX(20px) translateY(8vh) scale(1.1) rotate(90deg);
    opacity: 0.9;
  }
  60% {
    -webkit-transform: translateX(-15px) translateY(12vh) scale(1.4) rotate(135deg);
            transform: translateX(-15px) translateY(12vh) scale(1.4) rotate(135deg);
    opacity: 0.8;
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(15vh) scale(1.3) rotate(180deg);
            transform: translateX(0px) translateY(15vh) scale(1.3) rotate(180deg);
    opacity: 0;
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
.char {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-animation: fadeUp 0.8s ease-out forwards;
          animation: fadeUp 0.8s ease-out forwards;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 900px) {
  .mv {
    padding-top: 78.13px;
  }
}