@charset "UTF-8";
@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
}

/***********************************
基本
***********************************/
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  background: #ececec;
  color: #414141;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}

a {
  -webkit-transition: .3s;
  color: #303438;
  opacity: 1;
  text-decoration: none;
  transition: .3s;
}

a:active {
  text-decoration: none;
}

a:hover {
  opacity: 0.4;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

#content {
  width: 1100px;
}

#content div {
  font-size: 1rem;
}

#content p {
  color: red;
  font-size: 1.2rem;
}

/**
 * is-bolck
**/
.is-sp--block {
  display: none !important;
}

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

.is-md--block {
  display: none !important;
}

@media screen and (max-width: 1100px) {
  .is-md--block {
    display: block !important;
  }
}

.is-pc--block {
  display: block !important;
}

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

/**
 * top Style
**/
.wrap {
  letter-spacing: 2px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .wrap {
    overflow: hidden;
    position: relative;
  }
}

.flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

/****
メニュー
*****/
.sp-menu {
  display: none;
}

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

.desc {
  background: #F2F2F2;
}

.desc .text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 1062px;
  padding: 6px 60px;
  width: 100%;
}

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

@media screen and (max-width: 767px) {
  .desc .text {
    padding: 6px 0px;
    text-align: center;
  }
}

header {
  width: 100%;
}

#nav-toggle {
  background: #ffffff;
  cursor: pointer;
  height: 32px;
  height: 85px;
  position: fixed;
  right: 50px;
  top: 30px;
  width: 85px;
}

@media screen and (max-width: 1100px) {
  #nav-toggle {
    height: 60px;
    right: 20px;
    top: 20px;
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  #nav-toggle {
    height: 55px;
    right: 20px;
    top: 23px;
    width: 55px;
  }
}

#nav-toggle > div {
  -webkit-transform: translateY(-50%) translateX(-50%);
  left: 50%;
  position: absolute;
  top: 40%;
  transform: translateY(-50%) translateX(-50%);
  width: 30px;
}

#nav-toggle > div > span.toggle {
  -webkit-transition: top .5s ease, -webkit-transform .3s ease-in-out;
  background: #232222;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: top .5s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .5s ease;
  transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  width: 100%;
}

header.deteal_header #nav-toggle > div > span.toggle {
  -webkit-transition: top .5s ease, -webkit-transform .3s ease-in-out;
  background: #232222;
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: top .5s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .5s ease;
  transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
  width: 100%;
}

#nav-toggle span.toggle:nth-child(1) {
  top: -6px;
}

#nav-toggle span.toggle:nth-child(2) {
  top: 2px;
}

#nav-toggle span.toggle:nth-child(3) {
  top: 10px;
}

#nav-toggle span.text {
  font-size: 1rem;
  left: -2px;
  letter-spacing: 1px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 18px;
}

@media screen and (max-width: 767px) {
  #nav-toggle span.text {
    font-size: 0.6rem;
    top: 15px;
  }
}

.open #nav-toggle span.toggle {
  background: #232222;
}

.open #nav-toggle span.toggle:nth-child(1) {
  -webkit-transform: rotate(45deg);
  top: 2px;
  transform: rotate(45deg);
}

.open #nav-toggle span.toggle:nth-child(2) {
  left: 50%;
  top: 10px;
  width: 0;
}

.open #nav-toggle span.toggle:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  top: 2px;
  transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  align-items: center;
  background-color: rgba(32, 32, 32, 0.8);
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  font-size: 29px;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: opacity .3s ease, visibility .3s ease;
  visibility: hidden;
  z-index: 990;
}

#gloval-nav a {
  -webkit-transition: color .3s ease;
  color: #fff;
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .5em;
  padding: 20px 0;
  text-decoration: none;
  transition: color .3s ease;
}

#gloval-nav a:hover {
  color: #000000;
}

#gloval-nav ul {
  list-style: none;
  padding: 0;
}

#gloval-nav ul li {
  -webkit-transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  opacity: 0;
  transform: translateX(200px);
  transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .2s ease;
  transition: transform .3s ease, opacity .2s ease, -webkit-transform .3s ease;
}

#gloval-nav ul li:nth-child(2) {
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
}

#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: .25s;
  transition-delay: .25s;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav {
  opacity: 1;
  visibility: visible;
}

.open #gloval-nav li {
  -webkit-transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}

@media screen and (max-width: 767px) {
  #gloval-nav a {
    font-size: .5em;
    padding: 10px 0;
  }
}

.open #gloval-nav .contact {
  margin-top: 50px;
}

.open #gloval-nav .contact .title {
  font-size: 2rem;
  line-height: 1.5;
}

.open #gloval-nav .contact .menutel {
  margin: 0;
}

.open #gloval-nav .contact .menutel a {
  font-size: 2.4rem;
  letter-spacing: 6px;
  line-height: 1.2;
  margin: 0;
  padding: 10px;
}

.open #gloval-nav .contact .menudata {
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
  text-align: center;
}

/******
コンテンツ
*******/
.slick-slide img{
  margin: 0 auto;
  width: 100%;
}
.fv {
  background: #ffffff;
  position: relative;
  width: 100%;
}

.fv header {
  -webkit-box-sizing: border-box;
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px;
}

@media screen and (max-width: 1100px) {
  .fv header {
    padding: 20px 10px;
  }
}

.fv header .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.fv header .logo {
  margin-right: 68px;
  max-width: 170px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .fv header .logo {
    margin-right: 38px;
    max-width: 200px;
  }
}

@media screen and (max-width: 900px) {
  .fv header .logo {
    margin-right: 0px;
    width: 300px;
    max-width: 300px;
  }
}


.fv header .menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .fv header .menu {
    display: none;
  }
}

.fv header .menu li {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 30px;
}

.fv header .menu li:last-child {
  margin-right: 0px;
}

@media screen and (max-width: 1100px) {
  .fv header .menu li {
    font-size: 1.4rem;
    margin-right: 20px;
  }
}

.fv header .tel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  justify-content: center;
  margin-left: 10px;
}

@media screen and (max-width: 1100px) {
  .fv header .tel {
    font-size: 2rem;
    margin-left: 20px;
  }
}

@media screen and (max-width: 900px) {
  .fv header .tel {
    display: none;
  }
}

.fv header .tel .icon {
  margin-right: 8px;
  max-width: 23px;
}

.fv header .data {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-left: 30px;
  text-align: right;
}

@media screen and (max-width: 900px) {
  .fv header .data {
    display: none;
  }
}

.fv .main {
  position: relative;
  width: 100vw;
}

.fv .main .catch {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  margin-right: -50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .fv .main .catch {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .fv .main .catch {
    width: 80%;
  }
}

.fv .main .catch img {
  width: 100%;
}

.fv .main .sns {
  bottom: 40px;
  left: 40px;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 900px) {
  .fv .main .sns {
    bottom: 30px;
    left: 0;
  }
}

.fv .main .sns li {
  margin-right: 20px;
  width: 20%;
}

@media screen and (max-width: 900px) {
  .fv .main .sns li {
    width: 13%;
  }
}

.fv .main .sns li:last-child {
  margin-right: 0px;
}

.about {
  background: #ffffff;
  padding: 90px 20px;
}

@media screen and (max-width: 1100px) {
  .about {
    padding: 70px 20px 70px 20px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding: 40px 20px 50px 20px;
  }
}

.about .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0 140px;
}

@media screen and (max-width: 1100px) {
  .about .inner {
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .about .inner {
    padding: 0 0px;
  }
}

.about .inner .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .about .inner .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .about .inner .title {
    font-size: 2.6rem;
  }
}

.about .inner .title span {
  display: inline-block;
}

.about .inner .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .about .inner .title span:after {
    margin: 10px auto 0;
  }
}

.about .inner .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about .inner .sub-title {
    font-size: 1.8rem;
  }
}

.about .inner .lead {
  font-size: 1.6rem;
  line-height: 3;
  margin-top: 70px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .about .inner .lead {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .about .inner .lead {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.concept {
  background: #F6F4EF;
  padding: 90px 20px;
}

@media screen and (max-width: 1100px) {
  .concept {
    padding: 70px 20px 70px 20px;
  }
}

@media screen and (max-width: 767px) {
  .concept {
    padding: 40px 20px 50px 20px;
  }
}

.concept .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1680px;
  padding: 0 100px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .concept .inner {
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .concept .inner {
    padding: 0 0px;
  }
}

.concept .flex {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media screen and (max-width: 900px) {
  .concept .flex {
    display: block;
  }
}

.concept .flex .images {
  max-width: 908px;
  width: 58%;
}

@media screen and (max-width: 900px) {
  .concept .flex .images {
    max-width: 100%;
    width: 100%;
  }
}

.concept .flex .box {
  text-align: left;
  width: 40%;
}

@media screen and (max-width: 900px) {
  .concept .flex .box {
    margin-top: 30px;
    width: 100%;
  }
}

.concept .flex .box .content-title {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

@media screen and (max-width: 1100px) {
  .concept .flex .box .content-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .concept .flex .box .content-title {
    font-size: 2.5rem;
  }
}

.concept .flex .box .lead {
  font-size: 1.4rem;
  text-align: left;
}

.point {
  background: #ffffff;
  max-width: 100%;
  padding: 90px 0 0 0;
}

@media screen and (max-width: 1100px) {
  .point {
    padding: 70px 0px 00px 0px;
  }
}

@media screen and (max-width: 767px) {
  .point {
    padding: 40px 0px 40px 0px;
  }
}

.point .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .point .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .point .title {
    font-size: 2.6rem;
    padding: 0 20px;
  }
}

.point .title span {
  display: inline-block;
}

.point .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .point .title span:after {
    margin: 10px auto 0;
  }
}

.point .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .point .sub-title {
    font-size: 1.8rem;
    padding: 0 20px;
  }
}

.point .area {
  background-image: url(../img/point_pc@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 70px;
  min-height: 714px;
  position: relative;
  width: 100vw;
}

@media screen and (max-width: 1100px) {
  .point .area {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .point .area {
    background-image: none;
    margin-top: 30px;
    min-height: auto;
  }
}

.point .area .images {
  width: 100vw;
}

.point .area .list-box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.98);
  bottom: 0;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 1542px;
  padding: 42px 40px;
  position: absolute;
  right: 0;
  width: 80%;
}

@media screen and (max-width: 1100px) {
  .point .area .list-box {
    max-width: 100%;
    padding: 45px 45px;
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .point .area .list-box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin-top: 0px;
    padding: 40px 20px 30px 20px;
    position: relative;
    width: 100%;
  }
}

.point .area .list-box .list {
  margin-right: 3%;
}

@media screen and (max-width: 767px) {
  .point .area .list-box .list {
    margin-bottom: 30px;
  }
  .point .area .list-box .list:last-child {
    margin-bottom: 0px;
  }
}

.point .area .list-box .list .icon {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 1.6rem;
  justify-content: flex-start;
  margin-bottom: 13px;
}

@media screen and (max-width: 1100px) {
  .point .area .list-box .list .icon {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .point .area .list-box .list .icon {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}

.point .area .list-box .list .icon:first-child {
  margin-top: 0px;
}

.point .area .list-box .list .icon .number {
  background: #6E6E6E;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1.7rem;
  line-height: 1.9;
  min-height: 35px;
  min-width: 35px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .point .area .list-box .list .icon .number {
    font-size: 1.4rem;
    min-height: 29px;
    min-width: 29px;
  }
}

.point .area .list-box .list .icon .text {
  font-size: 1.6rem;
  padding: 2px 0 0 10px;
}

.point .area .list-box .list .box {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.point .area .list-box .list .big {
  background: #EBEBEB;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-right: 20px;
  padding: 8px 13px;
}

@media screen and (max-width: 1100px) {
  .point .area .list-box .list .big {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 6px 10px;
  }
}

.point .area .list-box .list .lead {
  font-size: 1.4rem;
  margin-top: 6px;
}

.room {
  background: #F6F4EF;
  overflow: hidden;
  padding: 180px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .room {
    padding: 120px 20px 80px 20px;
  }
}

@media screen and (max-width: 767px) {
  .room {
    padding: 40px 20px 40px 20px;
  }
}

.room .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .room .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .room .title {
    font-size: 2.6rem;
  }
}

.room .title span {
  display: inline-block;
}

.room .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .room .title span:after {
    margin: 10px auto 0;
  }
}

.room .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .room .sub-title {
    font-size: 1.8rem;
  }
}

.room .lead {
  font-size: 1.8rem;
  margin-top: 70px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .room .lead {
    font-size: 1.6rem;
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .room .lead {
    font-size: 1.4rem;
    margin-top: 40px;
  }
}

.room .gallery {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .room .gallery {
    margin-top: 40px;
  }
}

.room .gallery div {
  margin-right: 20px;
  position: relative;
}

.room .gallery div .images {
  height: auto;
  width: 100%;
}

.room .gallery div .name {
  bottom: 24px;
  color: #ffffff;
  font-size: 1.6rem;
  left: 24px;
  position: absolute;
}

@media screen and (max-width: 1100px) {
  .room .gallery div .name {
    bottom: 10px;
    font-size: 1.4rem;
    left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .room .gallery div .name {
    bottom: 13px;
    font-size: 1.4rem;
    left: 13px;
  }
}

.guide {
  background: #ffffff;
  padding: 90px 20px;
}

@media screen and (max-width: 1100px) {
  .guide {
    padding: 70px 20px 70px 20px;
  }
}

@media screen and (max-width: 767px) {
  .guide {
    padding: 40px 20px 50px 20px;
  }
}

.guide .inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0 140px;
}

@media screen and (max-width: 1100px) {
  .guide .inner {
    padding: 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .guide .inner {
    padding: 0 0px;
  }
}

.guide .inner .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .guide .inner .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .guide .inner .title {
    font-size: 2.6rem;
  }
}

.guide .inner .title span {
  display: inline-block;
}

.guide .inner .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .guide .inner .title span:after {
    margin: 10px auto 0;
  }
}

.guide .inner .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .guide .inner .sub-title {
    font-size: 1.8rem;
  }
}

.guide .inner .lead {
  font-size: 1.6rem;
  line-height: 3;
  margin-top: 70px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .guide .inner .lead {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .guide .inner .lead {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.food-menu {
  background: #ffffff;
  padding: 100px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .food-menu {
    padding: 80px 40px 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  .food-menu {
    padding: 40px 20px 60px 20px;
  }
}

.food-menu .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .food-menu .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .food-menu .title {
    font-size: 2.6rem;
  }
}

.food-menu .title span {
  display: inline-block;
}

.food-menu .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .food-menu .title span:after {
    margin: 10px auto 0;
  }
}

.food-menu .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .food-menu .sub-title {
    font-size: 1.8rem;
  }
}

.food-menu .inner {
  margin: 0 auto;
  max-width: 1000px;
}

.food-menu .inner .content {
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .food-menu .inner .content {
    margin: 40px auto 0;
  }
}

.food-menu .inner .list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid #414141;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  justify-content: space-between;
  padding: 30px 0;
}

@media screen and (max-width: 1100px) {
  .food-menu .inner .list {
    font-size: 1.6rem;
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .food-menu .inner .list {
    font-size: 1.3rem;
  }
}

.food-menu .inner .list dt {
  text-align: left;
}

.food-menu .inner .list dd {
  margin: 0;
  text-align: right;
}

.food-menu .supplement {
  font-size: 2rem;
  margin-top: 25px;
  text-align: right;
}

@media screen and (max-width: 1100px) {
  .food-menu .supplement {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .food-menu .supplement {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.system {
  -webkit-box-sizing: border-box;
  background-image: url(../img/system_pc@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 100px 20px 100px 20px;
  width: 100vw;
}

@media screen and (max-width: 1100px) {
  .system {
    padding: 80px 40px 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  .system {
    padding: 40px 20px 60px 20px;
  }
}

.system .title {
  color: #ffffff;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .system .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .system .title {
    font-size: 2.6rem;
  }
}

.system .title span {
  display: inline-block;
}

.system .title span:after {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .system .title span:after {
    margin: 10px auto 0;
  }
}

.system .sub-title {
  color: #ffffff;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .system .sub-title {
    font-size: 1.8rem;
  }
}

.system .content {
  margin: 80px auto 0;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .system .content {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .system .content {
    margin: 40px auto 0;
  }
}

.system .content .box {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 20px 24px;
}

@media screen and (max-width: 767px) {
  .system .content .box {
    margin-bottom: 15px;
    padding: 12px 17px;
  }
}

.system .content .box:last-child {
  margin-bottom: 0px;
}

.system .content .box .flex {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.system .content .box .flex .step {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .system .content .box .flex .step {
    font-size: 1.4rem;
  }
}

.system .content .box .flex .cate {
  background: #EBEBEB;
  font-size: 1.6rem;
  margin-left: 10px;
  padding: 5px;
}

@media screen and (max-width: 767px) {
  .system .content .box .flex .cate {
    font-size: 1.2rem;
  }
}

.system .content .box .text {
  font-size: 1.4rem;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .system .content .box .text {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}

.insta {
  background: #F6F4EF;
  padding: 100px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .insta {
    padding: 60px 20px 60px 20px;
  }
}

@media screen and (max-width: 767px) {
  .insta {
    padding: 30px 20px 30px 20px;
  }
}

.news {
  background: #F2F2F2;
  padding: 100px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .news {
    padding: 80px 20px 80px 20px;
  }
}

@media screen and (max-width: 767px) {
  .news {
    padding: 35px 20px 40px 20px;
  }
}

.news .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .news .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .news .title {
    font-size: 2.6rem;
  }
}

.news .title span {
  display: inline-block;
}

.news .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .news .title span:after {
    margin: 10px auto 0;
  }
}

.news .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .news .sub-title {
    font-size: 1.8rem;
  }
}

.news .content {
  margin: 80px auto 0;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .news .content {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .news .content {
    margin: 40px auto 0;
  }
}

.access {
  background: #ffffff;
  padding: 100px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .access {
    padding: 80px 40px 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  .access {
    padding: 35px 20px 40px 20px;
  }
}

.access .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .access .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .access .title {
    font-size: 2.6rem;
  }
}

.access .title span {
  display: inline-block;
}

.access .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .access .title span:after {
    margin: 10px auto 0;
  }
}

.access .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .access .sub-title {
    font-size: 1.8rem;
  }
}

.access .content {
  margin: 80px auto 0;
  max-width: 1000px;
  width: 100%;
  /**
    .movie{
      margin: 100px auto;
      width: 100%;
      max-width: 1000px;
      @include media-query-sp-md {
        margin: 80px auto 0;
      }
      @include media-query-sp {
        margin: 40px auto 0;
      }
    }
    **/
}

@media screen and (max-width: 1100px) {
  .access .content {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .access .content {
    margin: 40px auto 0;
  }
}

.access .content .box {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .access .content .box {
    margin-bottom: 40px;
  }
}

.access .content .box:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .access .content .box .flex {
    display: block;
    overflow: hidden;
  }
}

.access .content .box .ttl {
  font-size: 2.8rem;
  margin-right: 35px;
  width: 10%;
}

@media screen and (max-width: 1100px) {
  .access .content .box .ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .access .content .box .ttl {
    float: left;
    font-size: 1.6rem;
    margin-right: 0;
    margin-top: 10vw;
    width: 15%;
  }
}

.access .content .box .ttl span {
  border-bottom: 1px solid #414141;
  display: inline-block;
  padding-top: 10px;
}

.access .content .box .images {
  margin-right: 35px;
  max-width: 370px;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .access .content .box .images {
    float: right;
    margin-right: 0px;
    max-width: 100%;
    width: 78%;
  }
}

.access .content .box .lead {
  font-size: 1.4rem;
  max-width: 420px;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .access .content .box .lead {
    clear: both;
    max-width: 100%;
    padding-top: 20px;
    width: 100%;
  }
}

.access .content .map {
  margin: 100px auto 0;
  max-width: 1000px;
  width: 100%;
}
.access .content .map-lead{
  margin-top: 5px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .access .content .map {
    margin: 40px auto 0;
  }
}

.access .content .map iframe {
  height: 548px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .access .content .map iframe {
    height: 288px;
  }
}


.insta {
  background: #ffffff;
  padding: 100px 20px 100px 20px;
}

@media screen and (max-width: 1100px) {
  .insta {
    padding: 80px 40px 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  .insta {
    padding: 35px 20px 40px 20px;
  }
}

.insta .title {
  color: #414141;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .insta .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .insta .title {
    font-size: 2.6rem;
  }
}

.insta .title span {
  display: inline-block;
}

.insta .title span:after {
  background-color: #414141;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .insta .title span:after {
    margin: 10px auto 0;
  }
}

.insta .sub-title {
  color: #414141;
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .insta .sub-title {
    font-size: 1.8rem;
  }
}

.insta .list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 70px auto 0;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .insta .list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 50px auto 0;
  }
}

.insta .list li {
  margin-bottom: 1%;
  width: 33%;
}

@media screen and (max-width: 767px) {
  .insta .list li {
    margin-bottom: 2%;
    width: 49%;
  }
}


.entry {
  -webkit-box-sizing: border-box;
  background-image: url(../img/entry_pc@2x.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 100px 20px 120px 20px;
  width: 100vw;
}

@media screen and (max-width: 1100px) {
  .entry {
    padding: 80px 20px 100px 20px;
  }
}

@media screen and (max-width: 767px) {
  .entry {
    background-image: url(../img/entry_sp@2x.png);
    padding: 74px 20px 56px 20px;
  }
}

.entry .inner .title {
  color: #ffffff;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin: 0 auto 15px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .entry .inner .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .entry .inner .title {
    font-size: 2.6rem;
    margin: 0 auto 25px;
  }
}

.entry .inner .title span {
  display: inline-block;
}

.entry .inner .title span:after {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 1px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .entry .inner .title span:after {
    margin: 10px auto 0;
  }
}

.entry .inner .sub-title {
  color: #ffffff;
  display: block;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .entry .inner .sub-title {
    font-size: 1.2rem;
  }
}

.entry .inner .btn {
  -webkit-box-sizing: border-box;
  background: #ffffff;
  box-sizing: border-box;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 70px auto 0;
  max-width: 238px;
  padding: 15px 0;
  text-align: center;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .entry .inner .btn {
    font-size: 1.6rem;
    margin: 30px auto 0;
    max-width: 100%;
    width: 90%;
  }
}

.sp-tel {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-tel {
    -webkit-box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    box-sizing: border-box;
    display: block;
    left: 0;
    margin: 0 auto;
    padding: 12px 8px;
    position: fixed;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 10;
  }

  .sp-tel .flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sp-tel li {
    width: 49%;
  }
  .sp-tel .line .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #545454;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
  .sp-tel .tel .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #545454;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    height: 54px;
    justify-content: center;
    letter-spacing: 0px;
    line-height: 1.3;
    padding: 0 10px;
  }
  .sp-tel .tel .link .icon {
    margin-right: 4px;
  }
}

/****
Twitter
*****/
.timeline-Widget {
  background-color: #3c3c3c;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #323232 10px, #323232 20px);
  background-size: auto auto;
  padding: 20px;
}

.timeline-TweetList-tweet {
  color: #fff;
}

.SandboxRoot.env-bp-660 .timeline-Header-byline, .SandboxRoot.env-bp-660 .timeline-Header-subtitle, .SandboxRoot.env-bp-820 .timeline-Header-byline, .SandboxRoot.env-bp-820 .timeline-Header-subtitle, .SandboxRoot.env-bp-970 .timeline-Header-byline, .SandboxRoot.env-bp-970 .timeline-Header-subtitle {
  color: #fff !important;
}

.timeline-Header-title {
  color: #fff !important;
  font-size: 20px !important;
}

.timeline-Header-title a {
  color: #fff !important;
}

.timeline-Tweet {
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.timeline-Tweet:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.TwitterCard-container--clickable:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

/****
状態対応
*****/
.is-pc {
  display: block !important;
}

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

.is-sp {
  display: none !important;
}

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

/****
スクロールアニメーション
*****/
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0);
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
}

.slide-left {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}

/**
 * Footer Style
**/
.footer {
  background: #ffffff;
  color: #414141;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 60px 30px 70px 30px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .footer {
    font-size: 1.3rem;
    padding: 50px 20px 60px 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 20px 80px 20px;
  }
}

.footer .logo {
  max-width: 151px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer .logo {
    max-width: 140px;
  }
}

.footer .tel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 3.3rem;
  font-weight: bold;
  justify-content: center;
  margin-top: 35px;
}

@media screen and (max-width: 1100px) {
  .footer .tel {
    font-size: 3rem;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .footer .tel {
    font-size: 2.5rem;
    margin-top: 25px;
  }
}

.footer .tel .icon {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .footer .tel .icon {
    max-width: 25px;
  }
}

.footer .address {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .footer .address {
    margin-top: 20px;
  }
}

.footer .holiday {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .footer .holiday {
    margin-top: 20px;
  }
}

.footer .company {
  font-size: 1.4rem;
  margin: 30px auto;
}

@media screen and (max-width: 767px) {
  .footer .company {
    margin: 20px auto;
  }
}

.footer .sns {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

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

.footer .sns li {
  margin-right: 15px;
}

.footer .sns li:last-child {
  margin-right: 0px;
}

.footer .copyright {
  display: block;
  font-size: 1.2rem;
  margin-top: 17px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 30px;
  }
}
