@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900');
@import url(default.css);
@import url(utility.css);
@import url(footer.css);
@font-face {
  font-family: 'utsukushiregular';
  src: url('../font/utsukushi.eot');
  src: url('../font/utsukushi.eot?#iefix') format('embedded-opentype'),
    url('../font/utsukushi.woff') format('woff'), url('../font/utsukushi.ttf') format('truetype');
}

/* ==================================
    共通箇所
================================== */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: white;
  font-family: '游ゴシック', 'メイリオ', 'ヒラギノ角ゴ Pro W3', -apple-system, BlinkMacSystemFont,
    'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  color: #5a5959;
  letter-spacing: 0px;
}

iframe {
  max-width: 100%;
}

.mincho {
  font-family: 'utsukushiregular', '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3',
    'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

.Lato {
  font-family: 'Lato', 'ヒラギノ角ゴ Pro W3', '游ゴシック', 'メイリオ', -apple-system,
    BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #5a5959;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

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

.sp_cnt {
  display: none;
}

.map_box {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  width: 100%;
  margin: 0 0 5%;
}

.map_box iframe,
.map_box object,
.map_box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.line_btn {
  display: inline-block;
  border-top: 1px solid #000;
  margin: 20px 0 0;
  padding: 18px 15px 0;
  font-size: 1.6rem;
  color: #000;
}

a.mail_btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #0eaeb8 url(../images/common/mail_icon@2x.png) no-repeat 10% center;
  background-size: 23px auto;
  padding: 0 0 0 3.84615%;
  max-width: 260px;
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

a.mail_btn:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  a.line_btn {
    font-size: calc(30 / 750 * 100vw);
  }
  .sp_cnt {
    display: block;
  }
  .pc_cnt {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  a.line_btn {
    padding: calc(18 / 750 * 100%) 15px 0;
  }
}

/* ==================================
    HEADER
================================== */
#header_sp {
  display: none;
  max-width: 960px;
  width: 100%;
  padding: 0;
  margin: 0;
}

#header_sp #sp_header_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 4.375% 3.125% 1.5625%;
}

#header_sp .hd_logo {
  position: relative;
  max-width: 225px;
  width: 100%;
  z-index: 100;
}

#header_sp #nav_icon {
  position: relative;
  max-width: 82px;
  width: 8.54167%;
  z-index: 100;
}

#header_sp #nav_icon a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background: url(../images/common/sp_nav_icon.png) no-repeat center top;
  background-size: 100% auto;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#header_sp.open #nav_icon a {
  background: url(../images/common/sp_nav_icon_close.png) no-repeat center bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 960px) {
  #header_sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #header_sp .hd_logo {
    width: 31.77966%;
  }
  #header_sp #nav_icon {
    position: relative;
    max-width: 82px;
    width: 10.67708%;
  }
}

/* ==================================
    HEADER スマホヘッダー固定
================================== */
#header_sp.fixed {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0px 0 0;
  height: 10vw;
  background: white;
  z-index: 1000;
}

#header_sp.fixed #sp_header_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.04167% 3.125% 1.04167%;
}

#header_sp.fixed .hd_logo {
  position: relative;
  max-width: 150px;
  width: 100%;
  z-index: 1000;
}

#header_sp.fixed #nav_icon {
  position: relative;
  max-width: 52px;
  width: 5.41667%;
  z-index: 100;
}

#header_sp.fixed #nav_icon a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  background: url(../images/common/sp_nav_icon.png) no-repeat center top;
  background-size: 100% auto;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#header_sp.open #nav_icon a {
  background: url(../images/common/sp_nav_icon_close.png) no-repeat center bottom;
  background-size: 100% auto;
}

@media screen and (max-width: 960px) {
  #header_sp.fixed {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #header_sp.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0px 0 0;
    height: 12vw;
    background: white;
    z-index: 1000;
  }
  #header_sp.fixed #sp_header_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 4%;
  }
  #header_sp.fixed .hd_logo {
    position: relative;
    max-width: 200px;
    width: 26.66667%;
    z-index: 1000;
  }
  #header_sp.fixed #nav_icon {
    position: relative;
    max-width: 62px;
    width: 8.07292%;
    z-index: 100;
  }
}

/* ==================================
    GNAV
================================== */
#gnav {
  width: 100%;
  margin: 50px 0 0;
  display: block;
}

#gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

#gnav ul li {
  padding: 0 0 0 0px;
}

#gnav ul li:first-of-type {
  padding: 0;
}

#gnav ul li a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  padding: 0 3px 8px;
}

#gnav ul li a:after {
  content: '';
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  top: 100%;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#gnav ul li a:hover:after {
  width: 100%;
}

#gnav ul .nav09__black {
  display: none;
}

@media screen and (max-width: 1400px) {
  #gnav {
    padding: 0 10px;
  }
  #gnav ul li {
    padding: 0 0 0 2.85714%;
  }
  #gnav ul li a {
    font-size: 13px;
  }
  #gnav ul .child .sub li a {
    display: block;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 960px) {
  #sp_gnav {
    display: none;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 18% 0 0;
    z-index: 10;
  }
  #sp_gnav ul li {
    padding: 2% 0;
    text-align: center;
  }
  #sp_gnav ul li a {
    font-size: 2.91667vw;
    color: #88531a;
    font-weight: 700;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px) {
  #sp_gnav {
    padding: 22% 0 0;
  }
  #sp_gnav ul li {
    padding: 4% 0;
    text-align: center;
  }
  #sp_gnav ul li a {
    font-size: 3.64583vw;
  }
}

/* ==================================
    HEADER FIXED ヘッダー固定時メニュー
================================== */
#gnav.fixed {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0px 0 0;
  height: 7vh;
  background: white;
  z-index: 100;
}

#gnav.fixed ul {
  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;
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

#gnav.fixed ul li {
  padding: 0 0 0 0px;
}

#gnav.fixed ul li:first-of-type {
  padding: 0;
}

#gnav.fixed ul li a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #121212;
  padding: 0 3px 8px;
}

#gnav.fixed ul li a:after {
  content: '';
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  top: 100%;
  background: #121212;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#gnav.fixed ul .nav09__black {
  display: block;
}

#gnav.fixed ul .nav09__white {
  display: none;
}

#gnav.fixed ul li a:hover:after {
  width: 100%;
}

@media screen and (max-width: 1400px) {
  #gnav {
    padding: 0 10px;
  }
  #gnav ul li {
    /* padding: 0 0 0 2.85714%; */
    padding: 0 0 0 0%;
  }
  #gnav ul li a {
    font-size: 13px;
  }
  #gnav ul .child .sub li a {
    display: block;
    padding: 15px 10px;
    font-size: 1.2rem;
    font-weight: 500;
  }
}

/* ==================================
    MAIN CONTENTS
================================== */
#main_container {
  position: relative;
  width: 100%;
  z-index: 10;
}

.contents_box {
  position: relative;
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}

.btn_box {
  height: 80px;
}

.more_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../images/common/btn_bg01.png) no-repeat 0% 0%,
    url(../images/common/btn_bg02.png) no-repeat 100% 100%;
  width: 420px;
  height: 80px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.2em;
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.more_btn:hover {
  width: 400px;
  height: 60px;
}

.next_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  background: url(../images/common/arrow_icon03_b.png) no-repeat 92% center;
  background-size: 9px auto;
  border: 1px solid #111;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.next_btn:hover {
  background: url(../images/common/arrow_icon03_b.png) no-repeat 95% center;
}

@media screen and (max-width: 960px) {
  .more_btn {
    background: url(../images/common/btn_bg01.png) no-repeat 0% 0%,
      url(../images/common/btn_bg02.png) no-repeat 100% 100%;
    background-size: 95.2381% auto, 95.2381% auto;
    max-width: 420px;
    width: 43.75%;
    height: auto;
    margin: 0 auto;
    font-size: 2.08333vw;
    line-height: 4.4;
  }
  .more_btn:hover {
    width: 400px;
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .more_btn {
    width: 54.6875%;
    height: auto;
    font-size: 2.60417vw;
    line-height: 4.4;
  }
  .more_btn:hover {
    width: 54.6875%;
    height: auto;
    line-height: 4.4;
  }
}

@media screen and (max-width: 414px) {
  .more_btn {
    width: 62.5%;
    height: auto;
    font-size: 3.125vw;
    line-height: 4.4;
  }
  .more_btn:hover {
    width: 54.6875%;
    height: auto;
    line-height: 4.4;
  }
}

/* ==================================
    FOOTER
================================== */
@media screen and (max-width: 768px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  }
  .scroll:before {
    content: '※横にスクロールします。';
    font-size: 82.5%;
    display: block;
    margin: 0px 0 5px;
  }
  .scroll:after {
    content: '※横にスクロールします。';
    font-size: 82.5%;
    display: block;
    margin: 5px 0 20px;
  }
  .scroll table {
    max-width: 100%;
  }
  .scroll table th[scope='col'] {
    padding: 15px 15px;
  }
  .scroll table th[scope='row'] {
    padding: 15px 10px;
  }
  .scroll table td {
    padding: 15px;
  }
  #map-area {
    padding-bottom: calc(600 / 768 * 100%);
  }
  #pageTop {
    position: fixed;
    display: block;
    bottom: 0px;
    right: 0px;
    z-index: 50;
    width: 50px;
  }
}

@media screen and (max-width: 414px) {
  #map-area {
    padding-bottom: calc(1000 / 768 * 100%);
  }
}
