@charset "UTF-8";
.html {
  font-size: 62.5%;
  background: #ede6e2;
}

body {
  background: #ede6e2;
  color: #572e1d;
  font-size: 1.6rem;
  line-height: 1.6em;
  margin: 0;
  font-family: "Kiwi Maru", serif;
  overflow-x: hidden;
}

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

@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .is-sp {
    display: none;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.section {
  padding: 100px 0 100px;
  background: #ede6e2;
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0 40px;
  }
}

.section-title {
  font-weight: bold;
  font-size: 3.5rem;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2.3rem;
    padding-bottom: 35px;
  }
}
.section-title::after {
  position: absolute;
  content: "NEWS";
  font-family: "Baloo Bhaina 2", cursive;
  bottom: 0%;
  left: 50%;
  font-size: 1.6rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-title::after {
    font-size: 1.4rem;
  }
}

.utile-button {
  margin-top: 40px;
  text-align: center;
}

.utile-link {
  font-size: 1.8rem;
  display: inline-block;
  padding: 0.5em 1em 0.3em;
  position: relative;
  color: #572e1d;
  border: solid 2px #572e1d;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  z-index: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.utile-link::before {
  background-color: rgba(176, 131, 35, 0.3);
  border-radius: 5px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 8px;
  top: 10px;
  z-index: -1;
}
.utile-link:hover {
  background: #b08323;
}
.utile-link:hover::before {
  display: none;
}

.loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 2s;
  transition: all 2s;
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.header {
  width: 100%;
  height: 120px;
  line-height: 120px;
  background-color: #ede6e2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    height: 70px;
    background-color: transparent;
  }
}

@media (max-width: 767px) {
  .header-inner {
    display: none;
  }
}

.header-logo {
  display: block;
  text-align: center;
  line-height: 3;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .header-logo {
    display: inline-block;
    text-align: left;
    padding: 16px;
    margin-top: 0;
  }
}
.header-logo a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-logo a:hover img {
  background: url("../img/logohover.png") no-repeat center center/cover;
}
.header-logo img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 50px;
}
@media (max-width: 767px) {
  .header-logo img {
    height: 40px;
    display: block;
  }
}

.header-nav {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
.header-nav li {
  font-size: 1.6rem;
  line-height: 0;
}
.header-nav a {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-nav a:hover, .header-nav a.is-active {
  color: #b08323;
}

.header-inner-sp {
  display: none;
}
@media (max-width: 767px) {
  .header-inner-sp {
    display: block;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 5;
  right: 15px;
  top: 15px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 7px;
  border-radius: 50px;
  background: #b08323;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 22px;
}

.hamburger span:nth-child(3) {
  top: 32px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 21px;
  left: 7px;
  background: #b08323;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 21px;
  background: #b08323;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景*/
.header-nav-sp {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  color: #b08323;
  background-color: #572e1d;
  text-align: center;
  width: 100%;
  opacity: 0;
  display: none;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  /* クリックでjQueryで追加・削除 */
}
.header-nav-sp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.header-nav-sp li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.header-nav-sp li:last-child {
  padding-bottom: 0;
}
.header-nav-sp li:hover {
  color: #ddd;
}
.header-nav-sp a {
  display: block;
  color: #b08323;
  line-height: 4;
}
.header-nav-sp.active {
  display: block;
  opacity: 100;
}

@media (max-width: 767px) {
  .swiper-slide .inner {
    padding: 0;
  }
}

.main-content1 {
  height: 500px;
  width: 100%;
  background: url(../img/top1.jpg) no-repeat center center/cover;
  margin-top: 120px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .main-content1 {
    margin-top: 70px;
    height: 420px;
  }
}
.main-content1 .main-content-wrap {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  width: 90%;
  border-radius: 100px;
  padding: 20px 0px;
  background: linear-gradient(125deg, rgba(225, 225, 225, 0.5) 20%, #b08323 20%, #b08323 40%, rgba(225, 225, 225, 0.5) 40%, rgba(225, 225, 225, 0.5) 60%, #ede6e2 60%, #ede6e2 80%, rgba(225, 225, 225, 0.5) 80%);
}
@media (max-width: 767px) {
  .main-content1 .main-content-wrap {
    border-radius: 60px;
  }
}
.main-content1 .main-title {
  font-size: 3.8rem;
  line-height: 1.3;
  color: #572e1d;
  font-weight: bold;
  z-index: 101;
}
@media (max-width: 767px) {
  .main-content1 .main-title {
    font-size: 32px;
    line-height: 1;
  }
}
.main-content1 .main-title span {
  color: #572e1d;
  font-weight: bold;
}

.main-content2 {
  height: 500px;
  width: 100%;
  background: url(../img/top2.jpg) no-repeat center center/cover;
  margin-top: 120px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .main-content2 {
    margin-top: 70px;
    height: 420px;
  }
}
.main-content2 .main-content-wrap {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.main-content2 .main-title {
  font-size: 6.2rem;
  line-height: 1.3;
  color: #fff;
}
@media (max-width: 767px) {
  .main-content2 .main-title {
    font-size: 3rem;
    text-align: center;
  }
}

.main-content4 {
  height: 500px;
  width: 100%;
  background: url(../img/top4.jpg) no-repeat center center/cover;
  margin-top: 120px;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .main-content4 {
    background: url("../img/top4tb.jpg") no-repeat center center/cover;
  }
}
@media screen and (max-width: 600px) {
  .main-content4 {
    background: url("../img/top4sp.jpg") no-repeat center center/cover;
  }
}
@media (max-width: 767px) {
  .main-content4 {
    margin-top: 70px;
    height: 420px;
  }
}
.main-content4 .main-content-wrap {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.main-content4 .main-title {
  font-size: 4rem;
  line-height: 1.3;
  color: #fff;
}
@media (max-width: 767px) {
  .main-content4 .main-title {
    font-size: 3rem;
    text-align: center;
  }
}

.main-content3 {
  height: 500px;
  width: 100%;
  background: url(../img/top32.jpg) no-repeat center center/cover;
  margin-top: 120px;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .main-content3 {
    margin-top: 70px;
    height: 420px;
  }
}
.main-content3 .main-content-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.main-content3 .main-title {
  font-size: 4.5rem;
  line-height: 1.3;
  color: #fff;
  font-weight: bold;
  text-shadow: 5px 5px 5px #572e1d;
}
@media (max-width: 767px) {
  .main-content3 .main-title {
    font-size: 3rem;
    text-align: center;
  }
}

.swiper-button-next {
  width: 60px;
  height: 60px;
  -webkit-transform: translate(-50% 0);
          transform: translate(-50% 0);
  background: transparent url(../img/arrow-next2.png) no-repeat center center/contain;
  right: calc(50% - 600px);
}
.swiper-button-next::after {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-next {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    background: transparent url("../img/arrow-next2.png") no-repeat center center/contain;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

.swiper-button-prev {
  width: 60px;
  height: 60px;
  -webkit-transform: translate(-50% 0);
          transform: translate(-50% 0);
  background: transparent url(../img/arrow-prev2.png) no-repeat center center/contain;
  left: calc(50% - 600px);
}
.swiper-button-prev::after {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    background: transparent url("../img/arrow-prev2.png") no-repeat center center/contain;
    left: 10px;
    width: 35px;
    height: 35px;
  }
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-right: 6px;
  margin-left: 6px;
  height: 16px;
  width: 16px;
}
@media (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #b08323;
}

.swiper-button-next,
.swiper-button-prev {
  top: 60%;
}

.news {
  font-size: 1rem;
}
.news.section {
  padding: 120px 50px;
}
@media (max-width: 767px) {
  .news.section {
    padding: 70px 0 20px;
  }
}

.news-items {
  width: 900px;
  max-width: 100%;
  margin: 40px auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .news-items {
    margin-top: 20px;
    padding-bottom: 80px;
  }
}
.news-items::after {
  position: absolute;
  content: "";
  top: -230px;
  right: -70px;
  width: 300px;
  height: 150px;
  background: url("../img/illust6.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .news-items::after {
    top: -170px;
    right: 0;
    width: 80px;
    height: 100px;
  }
}
.news-items::before {
  position: absolute;
  content: "";
  bottom: -200px;
  left: -100px;
  width: 300px;
  height: 200px;
  background: url("../img/illust1.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .news-items::before {
    display: block;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 95px;
    height: 110px;
  }
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.news-item:not(:first-child) {
  border-top: 5px dotted #b08323;
}
@media (max-width: 767px) {
  .news-item {
    display: block;
  }
}

.news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 185px;
}

.news-date {
  width: 105px;
  margin-top: 3px;
}

.news-label {
  width: 80px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  background: #666666;
  border-radius: 4px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.news-label.is-main {
  background: #b08323;
}
.news-label.is-red {
  background: #e81919;
}

.news-text {
  width: calc(100% - 185px);
  padding-left: 20px;
  padding-top: 3px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .news-text {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    line-height: 1.8em;
    font-size: 1rem;
  }
}
.news-text a {
  line-height: 1;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.concept .section-title::after {
  content: "concept";
}

.concept-inner {
  width: 1400px;
  max-width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .concept-inner {
    padding: 0 16px;
  }
}

.concept-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .concept-wrapper {
    display: block;
  }
}

.concept-img img {
  width: 100%;
}
@media (max-width: 767px) {
  .concept-img img {
    width: 100%;
  }
}

.concept-body {
  margin-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .concept-body {
    margin-left: 0;
    margin-top: 20px;
  }
}
.concept-body::before {
  position: absolute;
  content: "";
  bottom: -150px;
  right: -20px;
  width: 330px;
  height: 150px;
  background: url("../img/illust4.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .concept-body::before {
    bottom: -120px;
    right: 0;
    width: 110px;
    height: 130px;
  }
}

.concept-title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .concept-title {
    font-size: 1.8rem;
  }
}

.concept-lead {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .concept-lead {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.8;
  }
}

.menu .section-title::after {
  content: "MENU";
}
.menu .utile-button {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .menu .utile-button {
    margin-top: 50px;
  }
}

.menu-inner {
  width: 1300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .menu-inner {
    padding: 0 16px;
  }
}

.menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .menu-wrapper {
    display: block;
    margin-top: 20px;
  }
}

.menu-item {
  width: 30%;
}
@media (max-width: 767px) {
  .menu-item {
    width: 70%;
    margin: 0 auto;
  }
  .menu-item:not(:first-child) {
    margin-top: 40px;
  }
}

.menu-img img {
  width: 100%;
}

.menu-point {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .menu-point {
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
}
.menu-point span {
  padding: 0 26px;
  display: inline-block;
  color: #8b0000;
  position: relative;
}
.menu-point span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 3px;
  height: 34px;
  background: #8b0000;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(-20deg);
          transform: translateY(-50%) rotate(-20deg);
}
@media (max-width: 767px) {
  .menu-point span::before {
    height: 25px;
  }
}
.menu-point span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 3px;
  height: 34px;
  background: #8b0000;
  border-radius: 10px;
  -webkit-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
}
@media (max-width: 767px) {
  .menu-point span::after {
    height: 25px;
  }
}

.recommended {
  background: #b08323;
  color: #fff;
  padding: 6px 30px;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto 10px;
  width: 200px;
  font-weight: 500;
  display: block;
  position: relative;
}
.recommended::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 45%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 13px 0 13px;
  border-color: #b08323 transparent transparent transparent;
}
@media (max-width: 767px) {
  .recommended {
    padding: 2px 10px;
    width: 200px;
    font-size: 1.2rem;
  }
}

.menu-name {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .menu-name {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.menu-cost {
  text-align: center;
}
@media (max-width: 767px) {
  .menu-cost {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.menu-cost span {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .menu-cost span {
    font-size: 1rem;
  }
}

.menu-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .menu-text {
    margin-top: 0;
  }
}

.access .section-title::after {
  content: "ACCESS";
}

.access-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 767px) {
  .access-inner {
    padding: 16px;
  }
}

.access-wrapper {
  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;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .access-wrapper {
    display: block;
    margin-top: 20px;
  }
}

.info-title {
  font-size: 2rem;
  font-weight: 500;
  display: block;
  width: 300px;
}
@media (max-width: 767px) {
  .info-title {
    text-align: center;
    width: 100%;
  }
}

.info {
  position: relative;
}
@media (max-width: 767px) {
  .info {
    width: 100%;
    margin: 0 auto 0;
  }
}
.info::before {
  position: absolute;
  content: "";
  top: -400px;
  left: -50px;
  width: 400px;
  height: 170px;
  background: url("../img/illust7.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .info::before {
    top: -180px;
    width: 100px;
    height: 100px;
    left: 0;
  }
}

.info-dl-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .info-dl-wrap {
    margin: 10px auto 0;
  }
}

.info-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  width: 100%;
  margin-right: 50px;
}
@media (max-width: 767px) {
  .info-dl {
    width: 100%;
  }
}
.info-dl dt {
  width: 100px;
  font-weight: 500;
  font-size: 1.2rem;
}
.info-dl dd {
  line-height: 1.6;
}

.access-map {
  width: 800px;
  max-width: 100%;
  -webkit-box-shadow: 10px 10px 0 #b08323;
          box-shadow: 10px 10px 0 #b08323;
  border-radius: 20px;
  margin-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .access-map {
    margin-top: 20px;
    margin-left: 0;
    -webkit-box-shadow: 5px 8px 0 #b08323;
            box-shadow: 5px 8px 0 #b08323;
  }
}
.access-map::before {
  position: absolute;
  content: "";
  bottom: -200px;
  right: 0;
  width: 300px;
  height: 150px;
  background: url("../img/illust2.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .access-map::before {
    bottom: -100px;
    width: 100px;
    height: 100px;
  }
}

.iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.faq .section-title::after {
  content: "FAQ";
}

.qa-items {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto 0;
  position: relative;
}
@media (max-width: 767px) {
  .qa-items {
    margin: 20px auto 0;
  }
}
.qa-items::after {
  position: absolute;
  content: "";
  bottom: -200px;
  left: -80px;
  width: 300px;
  height: 150px;
  background: url("../img/illust3.png") no-repeat center center/cover;
}
@media (max-width: 767px) {
  .qa-items::after {
    bottom: -90px;
    left: 0;
    width: 100px;
    height: 100px;
  }
}

.qa-item:nth-child(n+2) {
  margin-top: 30px;
}

.qa-box {
  overflow: hidden;
  border: 1px solid #b08323;
  border-radius: 11px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .qa-box {
    font-size: 1.4rem;
  }
}

.qa-box-q {
  background: #b08323;
  color: #fff;
  border-radius: 10px 10px 10px 10px;
  padding: 15px 65px;
  -webkit-transition: all 0.5 ease 0s;
  transition: all 0.5 ease 0s;
  cursor: pointer;
  position: relative;
}
.qa-box-q::before {
  position: absolute;
  content: "Q";
  color: #fff;
  top: 14px;
  left: 30px;
}
@media (max-width: 767px) {
  .qa-box-q::before {
    top: 10px;
  }
}
.qa-box-q.is-open {
  border-radius: 10px 10px 0px 0px;
}
@media (max-width: 767px) {
  .qa-box-q {
    padding: 10px 30px 10px 65px;
    line-height: 1.5em;
  }
}

.qa-box-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.qa-box-icon.is-open .qa-icon-bar1 {
  display: none;
}
.qa-box-icon.is-open .qa-icon-bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa-icon-bar1 {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-icon-bar2 {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background: #fff;
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.qa-box-a {
  background: #fff;
  padding: 15px 30px;
  border-radius: 0 0 11px 11px;
  display: none;
}
@media (max-width: 767px) {
  .qa-box-a {
    padding: 10px 20px 10px 30px;
    line-height: 1.5em;
  }
}

.qa-box-content {
  padding-left: 35px;
  position: relative;
}
.qa-box-content::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0px;
}

.contact .section-title::after {
  content: "CONTACT";
}

.contact-content {
  width: 800px;
  max-width: 100%;
  margin: 60px auto 0;
  padding: 60px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 767px) {
  .contact-content {
    margin-top: 30px;
    padding: 25px;
  }
}

.contact-form-row:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-form-row:not(:first-child) {
    margin-top: 20px;
  }
}

.contact-form-label {
  margin: 0;
  padding: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .contact-form-label {
    width: 100%;
  }
}
.contact-form-label label.is-required {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
}
.contact-form-label label.is-required::after {
  position: absolute;
  content: "必須";
  top: 2px;
  right: -70px;
  font-size: 1.4rem;
  padding: 0px 8px;
  border-radius: 10px;
  background: #e81919;
  color: #fff;
}
@media (max-width: 767px) {
  .contact-form-label label.is-required {
    font-size: 1.6rem;
  }
}
.contact-form-label label.is-radio {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .contact-form-label label.is-radio {
    font-size: 1.6rem;
  }
}

.contact-form-radio [type=radio] {
  display: none;
}
.contact-form-radio span {
  padding-left: 30px;
  margin-right: 30px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form-radio span {
    padding-left: 25px;
    margin-right: 5px;
  }
}
.contact-form-radio span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #572e1d;
  border-radius: 50%;
}
.contact-form-radio span::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #b08323;
  border-radius: 50%;
  display: none;
}
.contact-form-radio [type=radio]:checked + span::after {
  display: block;
}

.contact-form-input {
  width: 100%;
  margin-top: 10px;
}
.contact-form-input [type=text],
.contact-form-input [type=email] {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #ede6e2;
  border-radius: 5px;
  width: 100%;
  padding: 15px 10px;
  font-size: 1.4rem;
}
.contact-form-input [type=text]:focus,
.contact-form-input [type=email]:focus {
  outline-color: #b08323;
}
.contact-form-input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  resize: none;
  background: #ede6e2;
  border-radius: 5px;
  width: 100%;
  height: 240px;
  padding: 15px 10px;
  font-family: inherit;
  font-size: 1.4rem;
}
.contact-form-input textarea:focus {
  outline-color: #b08323;
}

.contact-form-check [type=checkbox] {
  display: none;
}
.contact-form-check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}
.contact-form-check span::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.contact-form-check span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 40%;
  left: 10px;
  width: 15px;
  height: 10px;
  border-left: 2px solid #b08323;
  border-bottom: 2px solid #b08323;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  display: none;
}
@media (max-width: 767px) {
  .contact-form-check span::after {
    top: 45%;
  }
}
@media (max-width: 767px) {
  .contact-form-check span {
    padding-left: 40px;
  }
}
.contact-form-check [type=checkbox]:checked + span::after {
  display: block;
}
@media (max-width: 767px) {
  .contact-form-check span {
    font-size: 1.4rem;
  }
}
.contact-form-check a {
  text-decoration: underline;
  font-weight: bold;
  color: #00008b;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.contact-form-check a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .contact-form-check a {
    font-size: 1.4rem;
  }
}

.contact-form-button {
  margin-top: 40px;
  text-align: center;
}
.contact-form-button [type=submit] {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  background: #c0c0c0;
  color: #fff;
  width: 50%;
  padding: 10px;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  position: relative;
}
.contact-form-button [type=submit].-active {
  background: #b08323;
}
@media (max-width: 767px) {
  .contact-form-button [type=submit] {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-form-button {
    margin-top: 30px;
  }
}

.modal {
  position: fixed;
  z-index: 501;
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 60px;
  color: #707070;
  font-family: "Baloo Bhaina 2", cursive;
  display: none;
}
@media (max-width: 767px) {
  .modal {
    padding: 30px 30px;
  }
}

.modal-title {
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 26px;
  position: relative;
  text-align: center;
}
.modal-title::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #b08323;
}

.modal-inner {
  margin-top: 40px;
  height: calc(100% - 88px - 108px);
  overflow: auto;
}
.modal-inner > :first-child {
  margin-top: 0;
}

.modal-sub-title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  margin-top: 40px;
}
.modal-sub-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 20px;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #b08323;
}

.modal-text {
  margin: 16px 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .modal-text {
    margin: 5px 10px;
    font-size: 1.4rem;
  }
}

.modal-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -20px;
}
@media (max-width: 767px) {
  .modal-icon {
    width: 20px;
    height: 20px;
    top: -10px;
    right: 0;
  }
}
.modal-icon img {
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .modal-icon img {
    width: 40px;
  }
}

.modal-button {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-button {
    margin-top: 30px;
  }
}
.modal-button a {
  font-weight: bold;
  color: #fff;
  padding: 15px 20px 5px;
  line-height: 1.6;
  background: #b08323;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
  display: none;
}

.top-link {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .top-link {
    bottom: 15px;
    right: 10px;
  }
}
.top-link img {
  width: 80px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .top-link img {
    width: 50px;
  }
}
.top-link.add-scrolled {
  opacity: 1;
}

.footer {
  padding: 40px 0 10px;
  background: #572e1d;
}

.footer-wrapper {
  text-align: center;
  color: #fff;
}

.footer-logo img {
  width: 200px;
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 100px;
  }
}

.sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sns-wrap {
    margin: 0 auto;
  }
}

.footer-sns-item:nth-child(n+2) {
  margin-left: 10px;
}

.footer-sns-item-link {
  font-size: 40px;
  display: block;
  padding: 0.1em 0.5em;
}
@media (min-width: 1200px) {
  .footer-sns-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.6;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-sns-item-link {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }
  .footer-sns-item-link:hover {
    opacity: 0.6;
  }
}

.copyright {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 1rem;
    margin-top: 30px;
  }
}