@charset "UTF-8";
/* CSS Document */

/* コンテナ */
.container {
  max-width: 1100px;
  width: calc(100% - (20px * 2));
  margin: 0 auto;
}

/* ヘッダー */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 97px;
  background: #806E53;
  margin-top: 30px;
  position: relative;
}
.header .inner {
  position: relative;/*基準としたい要素に追加*/
}

.header_logo {
  margin-left: 85px;
  font-size: 20px;
}

.header_logo a {
  color: #FFFFFF;
  font-family: Montserrat;
  text-decoration: none;
}

.header_nav-list {
  display: flex;
  column-gap: 42px;
  margin: 0 85px 0 auto;
}

.header_nav-item a {
  color: #FFFFFF;
  font-family: Montserrat;
  text-decoration: none;
  font-weight: 300;
}
.navArea {
  display: none;
}
.toggle_btn {
  display: none;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;/*headerの高さと同じ高さにするため追加*/
}

/*共通指定はまとめる*/
.header::before,
.header::after,
.header .inner::before,
.header .inner::after {
  content: "";
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
}

/*headerに指定する擬似要素には3pxの高さの線*/
.header::before,
.header::after {
  height: 3px;
}

/*headerの中に追加したinnerに指定する擬似要素には1pxの高さの線*/
.header .inner::before,
.header .inner::after {
  height: 1px;
}

/*header要素の上から5pxの位置*/
.header::before {
  top: 5px;
}

/*header要素の下から5pxの位置*/
.header::after {
  bottom: 5px;
}

/*inner要素の上から18pxの位置*/
.header .inner::before {
  top: 18px;
}

/*inner要素の下から18pxの位置*/
.header .inner::after {
  bottom: 18px;
}

@media (max-width:767px) {
  .header {
    height: 64px;
    margin-top: 10px;
  }
  .header_logo {
    margin-left: 20px;
    font-size: 16px;
  }
  .header_logo a {
    font-family: "Montserrat","Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }
  .header_nav-list {
    display: none;
  }
  .navArea {
    display: block;
  }
  .inner_nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #F7F2EB;
    border-color: #806E53;
    border-width : 3px 3px 3px 0;
    border-style : solid;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  .open .inner_nav {
  left: 0;
  opacity: 1;
}
  .inner_nav .inner2 {
  padding: 25px;
}
  .inner_nav .inner2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
  .inner_nav .inner2 ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #806E53;
}
  .inner_nav .inner2 ul li a {
  display: block;
  color: #806E53;
  font-size: 14px;
  font-weight: 500;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
  .inner_nav .inner2 ul li a:hover {
  background: #ffffff;
}
  .toggle_btn {
  display: block;
  color: #FFFFFF;
  margin-right: 20px;
  transition: all .5s;
  cursor: pointer;
  }
  .open {
  background-color: #fff;
}
  #mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F7F2EB;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
}

/* ページタイトル */
.page_title-en {
  font-family: Montserrat;
  font-size: 55px;
  color: #4C4841;
}
.page_title-jp {
  font-size: 20px;
  color: #4C4841;
}
.page_title-bg {
  background-image: url("../images/common/page_title-bg.jpg");
  background-size: cover;
  height: 280px;
  width: 100%;
  display: flex;
  border-bottom: solid #806E53 9px;
}
@media (min-width:2300px) {
  .page_title-bg {
    background-image: url("../images/common/sp-page_title-bg2.jpg")
  }
}

.page_title {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-left: 280px;
  margin-top: 145px;
}
@media (max-width:770px) {
  .page_title-bg {
    background-image: url("../images/common/sp-page_title-bg2.jpg");
  }
}
@media (max-width:767px) {
  .page_title-en {
    font-size: 32px;
    font-family: "Montserrat","Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }
  .page_title-jp {
    font-size: 12px;
  }
  .page_title-bg {
    height: 124px;
    width: 100%;
    border-bottom: solid #806E53 7px;
  }
  .page_title {
    margin-left: 60px;
    margin-top: 40px;
  }
}
@media (max-width:640px) {
  .page_title-bg {
    background-image: url("../images/common/sp-page_title-bg.jpg");
  }
}

/* ボタン */
.button {
  width: 48%;
}
.button a {
  background-image: url("../images/common/button.png");
  background-size: cover;
  width: 100%;
  height: 303px;
  background-repeat: no-repeat;  
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.button_text {
  color: #FFFFFF;
  font-family: Montserrat;
  font-size: 40px;
  }
.button_contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 230px auto;
}


@media (max-width:1100px) {  
  .button {
   width: 55%;
  }
  .button a {
    height: 150px;
    line-height: 1.0;
  }
  .button_text {
    font-size: 18px;
    font-family: Montserrat;
  }
  .button_text img {
    padding-top: 3px;
  }
  .button_contents {
    width: 60%;
    gap: 50px;
  }
}
@media (max-width:700px) {
  .button_contents {
    width: 80%;
  }
  .button_text {
    font-family: "Montserrat","Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }
}

/* フッター */
.footer {
  background: #806E53;
  padding: 100px 50px 100px;
}
.footer_contents {
  display: flex;
  justify-content: space-between;
}
.footer_nav-list {
  display: flex;
  gap: 30px;
  padding-left: 100px;
}
.footer_nav-item a {
  font-family: Montserrat;
  color: #FFFFFF;
  text-decoration: none;
}
.footer_copyright {
  color: #FFFFFF;
  font-size: 12px;
}
.city img {
  margin-bottom: -10px;
  width: 100%;
}

@media (max-width:767px) {
  .footer {
    display: flex;
    padding: 70px 60px 16px;
  }
  .footer_nav-item a {
    font-size: 15px;
    font-family: "Montserrat","Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }
  .footer_nav-list {
    padding: inherit;
  }
  .footer_contents {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }
  .footer_copyright {
    margin-top: 60px;
    font-size: 10px;
  }
}

