@charset "UTF-8";
/* ============================================
  import
============================================ */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre {
  margin: 0;
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  outline: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

iframe {
  vertical-align: top;
  border: 0;
}

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

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */
[tabindex="-1"]:focus {
  outline: none !important;
}

body,
table,
input,
textarea,
select,
option {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

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

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
  opacity: 0.7;
}

a:active {
  color: #000;
}

/* ============================================
  共通
============================================ */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  font-style: normal;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    position: relative;
    min-width: 100%;
    font-size: 1.3rem;
    line-height: 20px;
  }
}

#container {
  text-align: left;
}

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

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* pc sp
--------------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

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

/* clearfix
--------------------------------- */
* html .clearfix,
* + html .clearfix {
  zoom: 1;
}

.clearfix:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

/* flex
--------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.flex.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ease
--------------------------------- */
.ease,
.ease *,
.ease *::after,
.ease *::before {
  -webkit-transition: .2s all ease;
  -o-transition: .2s all ease;
  transition: .2s all ease;
}

/* img object fit
--------------------------------- */
img.ofi {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* blur
--------------------------------- */
.blur_bg {
  background: inherit;
}

.blur_ie {
  display: none;
}

@media all and (-ms-high-contrast: none) {
  .blur_ie {
    display: block;
    position: absolute;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
}

@supports (-ms-ime-align: auto) {
  .blur_ie {
    display: block;
    position: absolute;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
}

.blur_in {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.7);
}

/* container
--------------------------------- */
.container,
.container2 {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}

@media screen and (max-width: 767px) {
  .container,
  .container2 {
    padding: 0 15px;
    min-width: 100% !important;
  }
}

.container2 {
  max-width: 1450px;
}

/* ============================================
  header
============================================ */
.global-header a {
  opacity: 1;
}

.global-header__bar {
  position: relative;
  height: 45px;
  padding-top: 8px;
  background-color: #fff;
  z-index: 10;
}

.global-header__bar .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.global-header__bar .logo {
  width: 200px;
}

.global-header__bar .logo a {
  display: block;
}

.global-header__bar .tokuyaku {
  width: 316px;
}

.global-header__bar .tokuyaku a:nth-of-type(2) {
  width: 150px;
}

.global-header__nav {
  position: absolute;
  top: 75px;
  right: 0;
  width: 100%;
  z-index: 2000;
}

.global-header__nav .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.global-header__nav .sns {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.global-header__nav .sns li {
  padding-left: 5px;
}

.global-header__nav .sns .fb_iframe_widget span {
  vertical-align: top !important;
}

.global-header .sp_menu {
  position: absolute;
  width: 40px;
  height: 32px;
  top: 10px;
  right: 4%;
  max-width: 40px;
  display: block;
}

.global-header .sp_menu span {
  display: inline-block;
  height: 2px;
  width: 28px;
  background: #a0a0a0;
  position: absolute;
  top: 14px;
  right: 0;
  left: 6px;
  margin-top: 0;
  -webkit-transition: all 0.3s 0.3s;
  -o-transition: all 0.3s 0.3s;
  transition: all 0.3s 0.3s;
}

.global-header .sp_menu span::before, .global-header .sp_menu span::after {
  content: '';
  left: 0;
  right: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  transition: -webkit-transform 0.3s 0.3s;
  -o-transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  position: absolute;
  display: inline-block;
  height: 2px;
  background: #a0a0a0;
}

.global-header .sp_menu span::before {
  top: -8px;
}

.global-header .sp_menu span::after {
  top: 8px;
}

.global-header .sp_menu.active span {
  background-color: transparent;
}

.global-header .sp_menu.active span::before {
  -webkit-transform: translateX(4px) translateY(-2px) rotate(45deg);
      -ms-transform: translateX(4px) translateY(-2px) rotate(45deg);
          transform: translateX(4px) translateY(-2px) rotate(45deg);
}

.global-header .sp_menu.active span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
      -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
          transform: translateX(4px) translateY(2px) rotate(-45deg);
}

.global-header .sp_menu_nav {
  display: none;
  position: absolute;
  z-index: 5500;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55vh;
  background-color: #fff;
}

@media (min-width: 450px) and (max-width: 767px) {
  .global-header .sp_menu_nav {
    height: 300px;
  }
}

.global-header .sp_menu_nav_list {
  margin: 20% auto auto;
}

@media (min-width: 450px) and (max-width: 767px) {
  .global-header .sp_menu_nav_list {
    margin-top: 50px;
  }
}

.global-header .sp_menu_nav_lists {
  margin: 10% auto auto;
  text-align: center;
}

@media (min-width: 450px) and (max-width: 767px) {
  .global-header .sp_menu_nav_lists {
    margin-top: 30px;
  }
}

.global-header .sp_menu_nav_lists a {
  display: block;
  text-decoration: underline;
}

.global-header .wrapper_sp {
  width: 100%;
  margin: 10vh auto auto;
}

@media screen and (max-width: 767px) {
  .global-header__bar {
    height: 50px;
    padding-top: 12px;
    z-index: 5500;
  }
  .global-header__bar .logo {
    width: 160px;
  }
  .global-header__bar .tokuyaku {
    display: none;
  }
  .global-header__nav {
    top: 60px;
    right: 10px;
  }
  .global-header__nav .sns {
    margin-right: 10px;
  }
}

/* ============================================
  footer
============================================ */
.footer {
  position: relative;
  z-index: 10;
}

.footer__nara {
  padding: 20px 0 0;
  background-color: #fff;
}

.footer__nara .inner {
  display: block;
  position: relative;
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

.footer__nara dl {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0 20px;
}

.footer__nara dl dt {
  width: 47px;
}

.footer__nara dl dt img {
  max-width: 47px;
}

.footer__nara dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 36px;
  line-height: 1.5;
  font-weight: bold;
  font-family: "kozuka-mincho-pro", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif !important;
}

.footer__nara dl dd.-row2 {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer__nara dl dd a {
  text-decoration: underline;
  opacity: 1;
}

.footer_info {
  display: inline-block;
  vertical-align: middle;
  padding-right: 30px;
}

.footer_info img {
  max-width: 316px;
  height: auto;
}

.footer_info a {
  opacity: 1;
}

.footer_copyright {
  font-size: 12px;
  position: relative;
  padding: 10px 0;
  text-align: center;
  color: #a1a1a0;
  background: #000;
}

.footer-info__banner {
  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;
  width: 850px;
  max-width: 90%;
  margin: 20px auto 50px;
}

.footer-info__banner a {
  width: 47%;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .footer__nara {
    padding: 0;
  }
  .footer__nara .inner {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }
  .footer__nara dl {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 0 20px;
  }
  .footer__nara dl dt {
    text-align: center;
    width: auto;
  }
  .footer__nara dl dt img {
    max-width: 80px;
  }
  .footer__nara dl dd {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    padding-left: 15px;
    line-height: 1.5;
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  }
  .footer__nara dl dd.-row2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-top: 20px;
    padding: 25px 0 0;
    border-top: 2px solid #000;
  }
  .footer__nara dl dd a {
    font-size: 1.4rem;
  }
  .footer__j-life {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 23px;
  }
  .footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 30%;
    flex: 1 0 30%;
    padding-right: 0;
  }
  .footer_info img {
    max-width: 100%;
  }
  .footer-info__banner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 92%;
    padding: 0;
    margin: 0 auto 5%;
  }
  .footer-info__banner a {
    margin-top: 6%;
    width: 100%;
  }
  .footer-info__banner a + a {
    margin-top: 6%;
  }
}

.btn-gototop {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-gototop.show {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .btn-gototop {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}

/* ============================================
  contents
============================================ */
.mainContents {
  position: relative;
}

/* sec_mv
--------------------------------- */
.sec_mv {
  position: relative;
}

.sec_mv_bg {
  height: calc(100vh - 45px);
  min-height: 700px;
  background: url("../img/bg_mv.jpg") no-repeat center center/cover;
}

.sec_mv_bg .sec_in {
  background: inherit;
}

.sec_mv_bg .mv_logo {
  position: absolute;
  left: -8px;
  top: 50px;
}

.sec_mv_bg .mv_logo img {
  max-width: 1272px;
  width: 120%;
}

.sec_mv_bg .mv_hakodate {
  position: absolute;
  right: 0;
  bottom: 141px;
  background: inherit;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  .sec_mv_bg .mv_hakodate::before {
    display: none;
  }
  .sec_mv_bg .mv_hakodate .blur_ie {
    width: 100vw;
    height: calc(100vh - 45px);
    min-height: 700px;
    position: absolute;
    right: 0;
    bottom: -141px;
    background: url("../img/bg_mv.jpg") no-repeat center center/cover;
  }
}

@supports (-ms-ime-align: auto) {
  .sec_mv_bg .mv_hakodate::before {
    display: none;
  }
  .sec_mv_bg .mv_hakodate .blur_ie {
    width: 100vw;
    height: calc(100vh - 45px);
    min-height: 700px;
    position: absolute;
    right: 0;
    bottom: -141px;
    background: url("../img/bg_mv.jpg") no-repeat center center/cover;
  }
}

.sec_mv_bg .mv_hakodate .blur_in {
  padding-left: 45px;
  width: 746px;
  height: 116px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec_mv_bg .mv_hakodate img {
  width: 672px;
  height: 40px;
}

.sec_mv .information {
  position: absolute;
  right: 0;
  bottom: 91px;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  .sec_mv .information::before {
    display: none;
  }
  .sec_mv .information .blur_ie {
    width: 100vw;
    height: calc(100vh - 45px);
    min-height: 700px;
    position: absolute;
    right: 0;
    bottom: -91px;
    background: url("../img/bg_mv.jpg") no-repeat center center/cover;
  }
}

@supports (-ms-ime-align: auto) {
  .sec_mv .information::before {
    display: none;
  }
  .sec_mv .information .blur_ie {
    width: 100vw;
    height: calc(100vh - 45px);
    min-height: 700px;
    position: absolute;
    right: 0;
    bottom: -91px;
    background: url("../img/bg_mv.jpg") no-repeat center center/cover;
  }
}

.sec_mv .information_bg {
  padding: 9px 5px 9px 13px;
}

.sec_mv .information_title {
  margin-top: -2px;
  width: 60px;
  position: relative;
  float: left;
  clear: left;
  color: #B46EA4;
  font-size: 1.4rem;
  font-weight: 700;
}

.sec_mv .information_txt {
  padding-left: 60px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .sec_mv_bg {
    height: calc(100vh - 50px);
    min-height: 500px;
    background-image: url(../img/sp_bg_mv.jpg);
  }
  .sec_mv_bg .mv_logo {
    left: 0;
    top: 24px;
  }
  .sec_mv_bg .mv_logo img {
    max-width: 410px;
    width: auto;
  }
  .sec_mv_bg .mv_hakodate {
    margin-right: -119px;
    right: 50%;
    bottom: 130px;
  }
  .sec_mv_bg .mv_hakodate .blur_in {
    padding: 0 0 10px;
    width: 238px;
    height: 121px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec_mv_bg .mv_hakodate img {
    width: 203px;
    height: auto;
  }
  .sec_mv .information {
    width: 100%;
    right: 0;
    bottom: 0;
  }
  .sec_mv .information_bg {
    padding: 9px 5px 7px 10px;
  }
  .sec_mv .information_title {
    margin-top: 0;
    width: 50px;
  }
  .sec_mv .information_title span {
    display: block;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .sec_mv .information_txt {
    padding-left: 50px;
  }
  .sec_mv .information_txt span {
    width: 117%;
    display: block;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}

/* nav
--------------------------------- */
.nav {
  background: rgba(64, 28, 56, 0.9);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
}

.nav.fixed {
  position: fixed;
  width: 100%;
  top: 0;
}

.nav .menu__item {
  color: #fff;
  text-align: center;
  width: 25%;
  height: 100%;
  position: relative;
}

.nav .menu__item > a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  opacity: 1;
}

.nav .menu__item > a::after {
  content: '';
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  top: -3px;
  margin-left: 10px;
  border: solid 1px #fff;
  border-left: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav .menu__item > a:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 767px) {
  .nav .container {
    padding: 0;
  }
  .nav .menu__item {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .nav .menu__item > a {
    padding: 14px 2px;
    line-height: 1.4;
    white-space: nowrap;
  }
  .nav .menu__item > a span {
    display: block;
    font-size: 1.5rem;
  }
  .nav .menu__item > a::after {
    display: block;
    width: 6px;
    height: 6px;
    left: calc(50% - 5px);
    top: 0;
    margin-left: 0;
  }
}

/* key_visual
--------------------------------- */
.key_visual {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url("../img/bg_key_visual_fixed.jpg") no-repeat center center/cover fixed;
}

.key_visual_title {
  position: absolute;
  left: 0;
  top: 15.52%;
}

.key_visual_title img {
  width: 54%;
}

@media screen and (min-width: 1600px) {
  .key_visual_title img {
    max-width: 971px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .key_visual_title img {
    width: 610px;
  }
}

.key_visual_textbox {
  width: 650px;
  position: absolute;
  right: 3.5vw;
  bottom: 4vw;
  background: inherit;
}

@media screen and (min-width: 1600px) {
  .key_visual_textbox {
    bottom: 8.1vw;
  }
}

.key_visual_text {
  margin-top: 35px;
  position: relative;
  font-size: 1.1vw;
  line-height: 1.78;
  background: inherit;
}

@media all and (-ms-high-contrast: none) {
  .key_visual_text {
    overflow: hidden;
  }
  .key_visual_text::before {
    display: none;
  }
  .key_visual_text .blur_ie {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    position: absolute;
    right: -3.5vw;
    bottom: -4vw;
    background: url("../img/bg_key_visual_fixed.jpg") no-repeat center center/cover;
  }
}

@supports (-ms-ime-align: auto) {
  .key_visual_text {
    overflow: hidden;
  }
  .key_visual_text::before {
    display: none;
  }
  .key_visual_text .blur_ie {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    position: absolute;
    right: -3.5vw;
    bottom: -4vw;
    background: url("../img/bg_key_visual_fixed.jpg") no-repeat center center/cover;
  }
}

.key_visual_text .blur_in {
  padding: 0.8vw;
}

@media screen and (min-width: 1600px) {
  .key_visual_text {
    font-size: 1.8rem;
    line-height: 1.78;
  }
  .key_visual_text .blur_in {
    padding: 18px 10px 18px 28px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .key_visual_text {
    font-size: 1.4rem;
  }
  .key_visual_text .blur_in {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .key_visual {
    padding-top: 114px;
    height: auto;
    min-height: 1105px;
    background: url("../img/bg_key_visual_fixed.jpg") no-repeat center center/cover;
  }
  .key_visual_title {
    margin-bottom: 282px;
    position: static;
    left: auto;
    top: auto;
  }
  .key_visual_title img {
    width: auto;
    max-width: 460px;
  }
  .key_visual_textbox {
    margin: 0 30px;
    width: auto;
    position: static;
    right: auto;
    bottom: auto;
  }
  .key_visual_text {
    margin-top: 35px;
    position: relative;
    font-size: 1.3rem;
    line-height: 1.538;
  }
  .key_visual_text .blur_in {
    padding: 10px;
  }
}

/* com_toptitle_box
--------------------------------- */
.com_toptitle_box {
  margin-bottom: 47px;
  padding: 40px 0 10px;
  height: 350px;
  position: relative;
  color: #FFF;
  text-align: center;
  background: url(../img/bg_yoshino01.jpg) no-repeat center center/1920px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 1920px) {
  .com_toptitle_box {
    background-size: cover;
  }
}

.com_toptitle_box .com_toptitle {
  margin-bottom: 50px;
}

.com_toptitle_box .com_topttl {
  margin-bottom: 12px;
}

.com_toptitle_box .text {
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  .com_toptitle_box {
    margin-bottom: 16px;
    padding: 28px 15px 10px;
    height: 220px;
    background-image: url(../img/sp_bg_yoshino01.jpg);
    background-size: cover;
  }
  .com_toptitle_box .com_toptitle {
    margin-bottom: 16px;
  }
  .com_toptitle_box .com_toptitle img {
    height: 22px;
  }
  .com_toptitle_box .com_topttl {
    margin-bottom: 15px;
  }
  .com_toptitle_box .text {
    margin: 0 !important;
    line-height: 22px;
  }
}

/* com_gallery_slide
--------------------------------- */
.com_gallery_slide {
  margin: 20px auto 79px;
  position: relative;
}

.com_gallery_slide_main_in {
  padding: 0 5.76%;
  position: relative;
}

.com_gallery_slide_main {
  margin-bottom: 10px;
}

.com_gallery_slide_main .slide-item {
  position: relative;
}

.com_gallery_slide_main .slide-item img {
  width: 100%;
}

.com_gallery_slide_main .caption {
  width: 100%;
  padding: 5px 10px 8px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 18px;
  background: rgba(0, 0, 0, 0.7);
}

.com_gallery_slide_thumb {
  margin: 0 auto;
  max-width: 840px;
}

.com_gallery_slide_thumb .thumbnail-item {
  float: left;
  margin: 0 5px;
}

.com_gallery_slide_arr .prev,
.com_gallery_slide_arr .next {
  margin-top: -30px;
  width: 30px;
  height: 60px;
  position: absolute;
  top: 50%;
  bottom: 10px;
  opacity: 1;
  cursor: pointer;
}

.com_gallery_slide_arr .prev {
  left: 17px;
  background: url("../img/prev.png") no-repeat center center;
  background-size: 30px 60px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .com_gallery_slide_arr .prev {
    left: 0;
  }
}

.com_gallery_slide_arr .next {
  right: 17px;
  background: url("../img/next.png") no-repeat center center;
  background-size: 30px 60px;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .com_gallery_slide_arr .next {
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .com_gallery_slide {
    margin: 20px auto 119px;
  }
  .com_gallery_slide_main_in {
    padding: 0 8px;
    position: relative;
  }
  .com_gallery_slide_main {
    margin-bottom: 10px;
  }
  .com_gallery_slide_main .slide-item {
    position: relative;
  }
  .com_gallery_slide_main .slide-item img {
    width: 100%;
  }
  .com_gallery_slide_main .caption {
    padding: 0 3px;
  }
  .com_gallery_slide_main .caption span {
    width: 120.5%;
    display: block;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .com_gallery_slide_thumb {
    margin: 0 7px 0 5px;
    max-width: inherit;
  }
  .com_gallery_slide_thumb .thumbnail-item {
    margin: 0 3px;
  }
  .com_gallery_slide_arr .prev,
  .com_gallery_slide_arr .next {
    margin-top: -15px;
    width: 15px;
    height: 30px;
  }
  .com_gallery_slide_arr .prev {
    left: -12px;
    background-size: 15px 30px;
  }
  .com_gallery_slide_arr .next {
    right: -12px;
    background-size: 15px 30px;
  }
}

/* com_house_slide
--------------------------------- */
.com_house_slide {
  margin-top: 4px;
  position: relative;
}

.com_house_slide_main {
  margin-bottom: 10px;
}

.com_house_slide_main .slide-item {
  position: relative;
}

.com_house_slide_main .slide-item img {
  width: 100%;
}

.com_house_slide_main .caption {
  margin-top: -2px;
  width: 100%;
  font-size: 1.4rem;
}

.com_house_slide_thumb {
  margin-top: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.com_house_slide_thumb li {
  margin: 2% 2% 0 0;
  width: 32%;
}

.com_house_slide_thumb li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .com_house_slide {
    margin-top: 7px;
  }
  .com_house_slide_main {
    margin-bottom: 22px;
  }
  .com_house_slide_main .caption {
    margin-top: 0;
    line-height: 1.8;
  }
  .com_house_slide_main .caption span {
    width: 120.5%;
    display: block;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .com_house_slide_thumb {
    margin-top: -5%;
  }
  .com_house_slide_thumb li {
    margin: 5% 5% 0 0;
    width: 30%;
  }
  .com_house_slide_thumb li:nth-child(3n) {
    margin-right: 0;
  }
}

/* com_bg_box
--------------------------------- */
.com_bg_box {
  padding: 81px 0 110px;
  background: url(../img/bg_yoshino02.png) repeat-x center top;
  background-size: auto 335px;
}

.com_bg_box h3 {
  margin-bottom: 39px;
  text-align: center;
}

.com_bg_box h3 img {
  max-width: 1074px;
  width: 95%;
}

@media screen and (max-width: 767px) {
  .com_bg_box {
    padding: 54px 0 57px;
    background: url(../img/bg_yoshino02.png) repeat-x center top;
    background-size: auto 335px;
  }
  .com_bg_box h3 {
    margin-bottom: 32px;
  }
  .com_bg_box h3 img {
    max-width: 338px;
    width: 99%;
  }
}

/* yoshino
--------------------------------- */
.yoshino {
  background: #FFF;
}

.yoshino_content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1130px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.yoshino_toptext {
  margin-bottom: 50px;
  text-align: justify;
}

.yoshino_img_box {
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.yoshino_img_box .sub_text_box {
  width: 53%;
}

.yoshino_img_box .sub_photo_box {
  margin-right: -5px;
  width: 44.07%;
}

.yoshino_img_inn {
  margin: 0 auto;
  padding: 2.6% 1% 2.4% 2.6%;
  max-width: 1000px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #B46EA4;
}

.yoshino_img_inn:before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: 9px;
  top: 9px;
  border: 1px solid rgba(180, 110, 164, 0.3);
  content: "";
}

.yoshino_img_inn .sub_photo_box {
  width: 33.8%;
  position: relative;
  text-align: center;
}

.yoshino_img_inn .sub_text_box {
  margin-top: 7px;
  width: 64.5%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .yoshino_content {
    padding: 0 15px;
    max-width: inherit;
  }
  .yoshino_toptext {
    margin-bottom: 20px;
  }
  .yoshino_img_box {
    margin-bottom: 48px;
  }
  .yoshino_img_box .sub_text_box {
    width: calc(100% - 210px);
  }
}

@media screen and (max-width: 767px) and (max-width: 374px) {
  .yoshino_img_box .sub_text_box {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .yoshino_img_box .sub_photo_box {
    margin-right: 0;
    width: 58%;
    max-width: 200px;
  }
  .yoshino_img_inn {
    margin-right: 7px;
    padding: 23px 19px 9px 26px;
    max-width: inherit;
    display: block;
  }
  .yoshino_img_inn:before {
    left: 6px;
    top: 6px;
  }
  .yoshino_img_inn .sub_photo_box {
    width: auto;
  }
  .yoshino_img_inn .sub_text_box {
    margin-top: 14px;
    width: auto;
  }
  .yoshino_img_inn .sub_text_box h4 {
    margin-bottom: 3px;
  }
  .yoshino_img_inn .sub_text_box h4 img {
    height: 17px;
  }
  .yoshino_img_inn .sub_text_box p {
    line-height: 22px;
  }
}

/* tenkawa
--------------------------------- */
.tenkawa {
  background: #FFF;
}

.tenkawa_title_box {
  padding-top: 20px;
  background-image: url(../img/bg_tenkawa01.jpg);
}

.tenkawa_img_inn {
  margin-bottom: 53px;
  position: relative;
}

.tenkawa_img_inn:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

.tenkawa_img_inn .sub_photo_box {
  width: 32.15%;
  float: right;
}

.tenkawa_img_inn .sub_text_box {
  margin-top: 7px;
  width: 65%;
}

.tenkawa_main_in {
  padding: 0 6.15%;
}

.tenkawa_main_in .style01 {
  padding: 0 6.15%;
}

.tenkawa_img_box {
  margin-bottom: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tenkawa_img_box .sub_text_box {
  width: 52%;
  text-align: justify;
}

.tenkawa_img_box .sub_text_box h4 {
  margin: 3px 0 15px;
}

.tenkawa_img_box .sub_text_box h4 img {
  height: 31px;
}

.tenkawa_img_box .sub_photo_box {
  padding-right: 4px;
  width: 46%;
}

.tenkawa_img_box .sub_photo_box span {
  margin-top: -2px;
  display: block;
  font-size: 1.4rem;
}

.tenkawa_img_box .sub_photo_box .pho_ul {
  margin-top: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tenkawa_img_box .sub_photo_box .pho_ul li {
  width: 49%;
}

.tenkawa_img_box.right {
  margin-bottom: 79px;
}

.tenkawa_img_box.right .sub_photo_box {
  width: 44.5%;
}

.tenkawa_img_box.right .sub_text_box {
  width: 53%;
}

.tenkawa_green_box {
  padding-bottom: 79px;
  background-image: url(../img/bg_tenkawa02.png);
}

.tenkawa_green_box h3 {
  margin-bottom: 49px;
}

.tenkawa_green_box h3 img {
  max-width: 100%;
  width: 206px;
}

.tenkawa_green_box .sub_text01 {
  margin-bottom: 48px;
  text-align: justify;
}

.tenkawa_green_box .com_gallery_slide {
  margin-bottom: 0;
}

.tenkawa_bg_box {
  padding: 83px 0 100px;
  background: #E8EAE9;
}

.tenkawa_bg_box h3 {
  margin-bottom: 49px;
  text-align: center;
}

.tenkawa_bg_box h3 img {
  height: 31px;
}

.tenkawa_photo_box:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

.tenkawa_photo_box h4 {
  margin-bottom: 15px;
}

.tenkawa_photo_box h4 img {
  height: 31px;
}

.tenkawa_photo_box p .sub_pic01 {
  margin: -49px 4px 0 20px;
  display: block;
  width: 30.2%;
  float: right;
}

.tenkawa_photo_box p .sub_pic02 {
  margin: 10px 26px 0 0;
  display: block;
  width: 45.4%;
  float: left;
}

@media screen and (max-width: 767px) {
  .tenkawa_title_box {
    padding-top: 20px;
    background-image: url(../img/sp_bg_tenkawa01.jpg);
  }
  .tenkawa_title_box .com_toptitle {
    margin-bottom: 22px;
  }
  .tenkawa_title_box .com_topttl {
    margin-bottom: 23px;
  }
  .tenkawa_img_inn {
    margin-bottom: 20px;
  }
  .tenkawa_img_inn .sub_photo_box {
    margin-left: 10px;
    width: 51%;
  }
  .tenkawa_img_inn .sub_text_box {
    width: auto;
  }
  .tenkawa_gallery_slide {
    margin-bottom: 50px;
  }
  .tenkawa_main_in {
    padding: 0 8px;
  }
  .tenkawa_main_in .style01 {
    padding: 0 8px;
  }
  .tenkawa_main_in.style02 .caption {
    padding: 6px 0 0;
    position: static;
    left: auto;
    bottom: auto;
    line-height: 14px;
    text-align: justify;
    color: #000;
    background: none;
  }
  .tenkawa_main_in .com_gallery_slide_main {
    margin-bottom: 0;
  }
  .tenkawa_main_in .com_gallery_slide_arr .prev,
  .tenkawa_main_in .com_gallery_slide_arr .next {
    margin-top: 0;
    top: 25.7vw;
  }
  .tenkawa_img_box {
    margin-bottom: 28px;
    display: block;
  }
  .tenkawa_img_box .sub_text_box {
    margin-bottom: 10px;
    width: auto;
  }
  .tenkawa_img_box .sub_text_box h4 {
    margin: 3px 0 15px;
  }
  .tenkawa_img_box .sub_text_box h4 img {
    height: 31px;
  }
  .tenkawa_img_box .sub_photo_box {
    padding-right: 0;
    width: auto;
  }
  .tenkawa_img_box .sub_photo_box span {
    margin-top: 2px;
    display: block;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .tenkawa_img_box .sub_photo_box .pho_ul {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tenkawa_img_box .sub_photo_box .pho_ul li {
    width: 49%;
  }
  .tenkawa_img_box.right {
    margin-bottom: 32px;
  }
  .tenkawa_img_box.right .sub_photo_box {
    margin: -6px 0 6px;
    width: auto;
  }
  .tenkawa_img_box.right .sub_text_box {
    width: auto;
  }
  .tenkawa_img_box.right .sub_text_box h4 img {
    height: 22px;
  }
  .tenkawa_green_box {
    padding: 51px 0 50px;
  }
  .tenkawa_green_box h3 {
    margin-bottom: 32px;
  }
  .tenkawa_green_box h3 img {
    width: 146px;
  }
  .tenkawa_green_box .sub_text01 {
    margin-bottom: 20px;
  }
  .tenkawa_green_box .com_gallery_slide {
    margin-bottom: 0;
  }
  .tenkawa_bg_box {
    padding: 51px 0 51px;
  }
  .tenkawa_bg_box h3 {
    margin-bottom: 34px;
  }
  .tenkawa_bg_box h3 img {
    height: 22px;
  }
  .tenkawa_photo_box h4 {
    margin-bottom: 13px;
  }
  .tenkawa_photo_box h4 img {
    height: 22px;
  }
  .tenkawa_photo_box p .sub_pic01 {
    margin: -2px 0 0 20px;
    width: 44.6%;
  }
  .tenkawa_photo_box p .sub_pic02 {
    margin: 10px 0 0;
    display: block;
    width: auto;
    float: none;
  }
}

/* miwa
--------------------------------- */
.miwa {
  background: #FFF;
}

.miwa_title_box {
  margin-bottom: 0;
  padding-top: 60px;
  height: 250px;
  background-image: url(../img/bg_miwa01.jpg);
}

.miwa_text_area {
  width: 550px;
  padding: 72px 0 62px;
  background: #DDD6D6;
}

.miwa_text_area .sub_box {
  margin: 0 auto;
  width: 410px;
}

.miwa_text_area .sub_title {
  margin-bottom: 14px;
}

.miwa_text_area .sub_text {
  margin-bottom: 52px;
}

.miwa_main_figure_wrap .img {
  margin: 0 auto 36px;
  width: 220px;
  text-align: center;
}

.miwa_main_figure_wrap .img figcaption {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 22px;
}

.miwa_main_figure_wrap .img figcaption b {
  font-size: 1.6rem;
  line-height: 1;
}

.miwa_img_area {
  width: calc(100% - 550px);
  position: relative;
}

.miwa_img_area figcaption {
  padding: 1px 10px 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(0, 0, 0, 0.7);
}

.miwa_conts {
  background: url(../img/bg_miwa02.png) repeat-x center bottom;
}

.miwa_conts .container2 {
  padding: 121px 0 96px;
  position: relative;
}

.miwa_conts .sub_title {
  width: 401px;
  position: absolute;
  left: 0;
  top: -12px;
}

.miwa_conts h3 {
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1.5;
  text-indent: -2.05em;
  padding-left: 2.05em;
}

.miwa_conts .sub_text_dl dt {
  float: left;
  clear: left;
}

.miwa_conts .sub_text_dl dd {
  padding-left: 4em;
}

.miwa_conts .sub_inn {
  margin-bottom: 47px;
}

.miwa_conts .sub_inn.style01 {
  margin-bottom: 0;
}

.miwa_conts .sub_inn.style01 h3 {
  margin-bottom: 24px;
}

.miwa_img_box {
  margin-bottom: 50px;
}

.miwa_img_box:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

.miwa_img_box .sub_text_box {
  width: 54%;
  float: left;
}

.miwa_img_box .sub_photo_box {
  margin-top: 43px;
  width: 44.6%;
  float: right;
}

.miwa_img_box .sub_photo_box span {
  margin-top: 3px;
  display: block;
  font-size: 1.4rem;
}

.miwa_img_box.style01 {
  margin-bottom: 75px;
}

.miwa_img_box.style01 .sub_text_box {
  width: 67%;
  float: right;
}

.miwa_img_box.style01 .sub_photo_box {
  margin-top: -6px;
  width: 30%;
  float: left;
}

.miwa_img_box.style01 .sub_photo_box span {
  line-height: 1;
}

.miwa_img_box.style01 .sub_photo_box ul {
  margin-left: auto;
  width: 278px;
}

@media (min-width: 768px) and (max-width: 958px) {
  .miwa_img_box.style01 .sub_photo_box ul {
    width: auto;
  }
}

.miwa_img_box.style01 .sub_photo_box li:not(:last-child) {
  margin-bottom: 16px;
}

.miwa_img_box.style02 {
  margin-bottom: 64px;
}

.miwa_img_box.style02 .sub_text_box {
  width: 44%;
}

.miwa_img_box.style02 .sub_photo_box {
  width: 53%;
}

.miwa_img_box.style02 .sub_photo_box span {
  line-height: 1.2;
}

.miwa_img_box.style02 .sub_photo_box ul {
  width: 56%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.miwa_img_box.style02 .sub_photo_box ul li {
  width: 100%;
}

@media all and (-ms-high-contrast: none) {
  .miwa_img_box.style02 .sub_photo_box ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .miwa_img_box.style02 .sub_photo_box ul:first-child li:first-child {
    margin-bottom: 21px;
  }
}

.miwa_img_box.style02 .sub_photo_box ul:nth-child(2) {
  width: 42%;
}

@media screen and (max-width: 767px) {
  .miwa_title_box {
    margin-bottom: 0;
    padding-top: 26px;
    height: 180px;
    background-image: url(../img/sp_bg_miwa01.jpg);
  }
  .miwa_main {
    display: block;
  }
  .miwa_text_area {
    width: auto;
    padding: 36px 160px 34px 16px;
    position: relative;
  }
  .miwa_text_area .sub_box {
    margin: 0 auto;
    width: auto;
  }
  .miwa_text_area .sub_title {
    margin-bottom: 14px;
  }
  .miwa_text_area .sub_title img {
    width: 198px;
  }
  .miwa_text_area .sub_text {
    margin-bottom: 31px;
  }
  .miwa_main_figure_wrap .img {
    margin: 0;
    width: 118px;
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .miwa_main_figure_wrap .img figcaption {
    width: 121%;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    line-height: 1.7;
  }
  .miwa_main_figure_wrap .img figcaption b {
    display: block;
    font-size: 1.56rem;
  }
  .miwa_img_area {
    width: auto;
  }
  .miwa_img_area figcaption {
    padding: 1px 10px;
  }
  .miwa_img_area figcaption span {
    margin-bottom: -3px;
    display: block;
    width: 120.5%;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .miwa_conts .container2 {
    padding: 81px 0 54px;
    position: relative;
  }
  .miwa_conts .sub_title {
    width: 200px;
    left: 5px;
    top: -13px;
  }
  .miwa_conts h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 22px;
  }
  .miwa_conts .sub_text_dl dd {
    padding-left: 3em;
  }
  .miwa_conts .sub_inn {
    margin-bottom: 30px;
  }
  .miwa_conts .sub_inn.style01 {
    margin-bottom: 0;
  }
  .miwa_conts .sub_inn.style01 h3 {
    margin-bottom: 8px;
  }
  .miwa_img_box {
    margin-bottom: 26px;
  }
  .miwa_img_box .sub_text_box {
    width: auto;
    float: none;
  }
  .miwa_img_box .sub_photo_box {
    margin-top: 14px;
    width: auto;
    float: none;
  }
  .miwa_img_box .sub_photo_box span {
    margin-top: 2px;
    display: block;
    width: 120.5%;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .miwa_img_box.style01 {
    margin-bottom: 70px;
  }
  .miwa_img_box.style01 .sub_text_box {
    width: auto;
    float: none;
  }
  .miwa_img_box.style01 .sub_photo_box {
    margin-top: 10px;
    padding-left: 0;
    width: auto;
    float: none;
  }
  .miwa_img_box.style01 .sub_photo_box span {
    line-height: 1;
  }
  .miwa_img_box.style01 .sub_photo_box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .miwa_img_box.style01 .sub_photo_box ul li {
    margin-bottom: 0;
    width: 49%;
  }
  .miwa_img_box.style02 {
    margin-bottom: 30px;
  }
  .miwa_img_box.style02 .sub_text_box {
    width: auto;
  }
  .miwa_img_box.style02 .sub_photo_box {
    margin-top: 7px;
    width: auto;
  }
  .miwa_img_box.style02 .sub_photo_box span {
    margin-top: 4px;
  }
}

/* stay
--------------------------------- */
.stay {
  padding-bottom: 100px;
  background: #FFF;
}

.stay_title {
  padding: 35px 0;
  text-align: center;
  background: #673B5D;
}

.stay_main {
  padding: 0 20px;
  background: url(../img/bg_stay01.jpg) no-repeat center center/cover;
}

.stay_main .content {
  margin: 0 auto;
  max-width: 1038px;
  height: 760px;
  position: relative;
}

.stay_main .sub_logo_box {
  width: 320px;
  position: absolute;
  right: 0;
  top: 49px;
  text-align: center;
}

.stay_main .sub_logo_box img {
  margin: 0 auto 12px;
  width: 272px;
  display: block;
}

.stay_main .sub_data_box {
  width: 409px;
  position: absolute;
  left: 0;
  bottom: 20px;
}

.stay_main .sub_data_box .link {
  margin-left: 10px;
  line-height: 1;
}

.stay_main .sub_data_box .link span {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
}

.stay_main .sub_data_box dl {
  padding: 13px 0 12px 10px;
  line-height: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.stay_main .sub_data_box dl dt {
  font-size: 1.8rem;
  font-weight: 700;
}

.stay_main .sub_data_box dl dd span {
  display: block;
}

.stay_main .sub_data_box dl dd span.ttl {
  float: left;
}

.stay_main .sub_data_box dl dd span.txt {
  padding-left: 3em;
}

.stay_conts .sub_text_img {
  margin-bottom: -46px;
  padding-left: 14px;
}

.stay_conts .sub_text_img img {
  max-width: 1050px;
  width: 97%;
}

.stay_conts .area {
  margin-bottom: 40px;
}

.stay_conts h3 {
  margin-bottom: 12px;
  color: #B46EA4;
  font-size: 2rem;
}

.stay_conts h3 span {
  display: inline-block;
  background: url(../img/stay_line01.png) repeat-x left bottom;
  text-indent: -2em;
  padding-left: 2em;
}

.stay_conts .sub_voice_dl dt {
  margin-top: -5px;
  width: 65px;
  height: 65px;
  float: left;
  clear: left;
  color: #FFF;
  font-size: 1.3rem;
  border-radius: 50%;
  background: #B46EA4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.stay_conts .sub_voice_dl dd {
  padding-left: 90px;
}

.stay_conts .sub_voice_dl dd .inn {
  padding: 14px 20px;
  position: relative;
  border-radius: 20px;
  border: 1px solid #B46EA4;
}

.stay_conts .sub_voice_dl dd .inn:before {
  width: 18px;
  height: 22px;
  position: absolute;
  left: -18px;
  top: 17px;
  background: url(../img/stay_icon01.png) no-repeat center center/18px 22px;
  content: "";
}

.stay_conts .sub_picture_ul {
  margin: 22px 0 -5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.stay_conts .sub_picture_ul li {
  width: 48.6%;
}

.stay_conts .sub_picture_ul li:nth-child(2) {
  width: 29.7%;
}

.stay_conts .sub_picture_ul li.txt {
  width: 19.7%;
  font-size: 1.4rem;
  line-height: 18px;
}

.stay_conts .btn {
  margin: 0 auto;
  padding-top: 22px;
  width: 450px;
}

.stay_conts .btn a {
  padding: 13px;
  display: block;
  color: #FFF;
  font-size: 1.8rem;
  text-align: center;
  background: #673B5D url(../img/icon01.png) no-repeat right 16px center/9px 17px;
}

.stay_img_box {
  margin-bottom: 41px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.stay_img_box .sub_text_box {
  width: 67.5%;
}

.stay_img_box .sub_photo_box {
  width: 30%;
}

.stay_img_box.style01 {
  margin-bottom: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stay_img_box.style01 .sub_text_box {
  width: 57.2%;
}

.stay_img_box.style01 .sub_photo_box {
  padding-top: 26px;
  width: 41.4%;
}

@media screen and (max-width: 767px) {
  .stay {
    padding-bottom: 110px;
  }
  .stay_title {
    padding: 45px 0 35px;
  }
  .stay_title img {
    width: 89%;
    max-width: 334px;
  }
  .stay_main {
    margin-bottom: 28px;
    padding: 0;
    background: none;
  }
  .stay_main .content {
    margin: 0 auto;
    max-width: inherit;
    height: auto;
  }
  .stay_main .sub_logo_box {
    margin: 13px auto 15px;
    width: 320px;
    position: static;
    right: auto;
    top: auto;
    text-align: center;
  }
  .stay_main .sub_logo_box img {
    margin: 0 auto 12px;
    width: 166px;
    display: block;
  }
  .stay_main .sub_data_box {
    width: auto;
    position: static;
    left: auto;
    bottom: auto;
  }
  .stay_main .sub_data_box .link {
    margin-left: 15px;
  }
  .stay_main .sub_data_box .link span {
    color: #B2B2B2;
    font-size: 1.3rem;
  }
  .stay_main .sub_data_box dl {
    padding: 10px 0 10px 15px;
    line-height: 20px;
  }
  .stay_main .sub_data_box dl dt {
    font-size: 1.3rem;
    font-weight: 700;
  }
  .stay_main .sub_data_box dl dd span {
    display: block;
  }
  .stay_main .sub_data_box dl dd span.ttl {
    float: left;
  }
  .stay_main .sub_data_box dl dd span.txt {
    padding-left: 3em;
  }
  .stay_conts .sub_text_img {
    margin: 0 -22px 19px -15px;
    padding-left: 0;
  }
  .stay_conts .sub_text_img img {
    max-width: 100%;
    width: auto;
  }
  .stay_conts .area {
    margin-bottom: 18px;
  }
  .stay_conts h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .stay_conts h3 span {
    background-size: auto 9px;
  }
  .stay_conts .sub_voice_dl dt {
    margin-top: 6px;
    padding: 15px 0 0 3px;
    width: 46px;
    height: 46px;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .stay_conts .sub_voice_dl dt span {
    display: block;
    width: 130%;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .stay_conts .sub_voice_dl dd {
    padding-left: 58px;
  }
  .stay_conts .sub_voice_dl dd .inn {
    padding: 8px 10px;
    position: relative;
    border-radius: 3px;
    border: 1px solid #B46EA4;
  }
  .stay_conts .sub_voice_dl dd .inn:before {
    width: 12px;
    height: 12px;
    left: -12px;
    top: 22px;
    background: url(../img/sp_stay_icon01.png) no-repeat center center/12px 12px;
  }
  .stay_conts .sub_picture_ul {
    margin: 10px 0 -5px;
    display: block;
  }
  .stay_conts .sub_picture_ul li {
    width: auto !important;
  }
  .stay_conts .sub_picture_ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .stay_conts .sub_picture_ul li img {
    width: 100%;
  }
  .stay_conts .sub_picture_ul li.txt {
    margin-top: -5px;
    display: block;
  }
  .stay_conts .sub_picture_ul li.txt span {
    display: block;
    width: 120.5%;
    font-size: 1.2rem;
    -webkit-transform: scale(0.83);
        -ms-transform: scale(0.83);
            transform: scale(0.83);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .stay_conts .btn {
    margin: 0 auto;
    padding-top: 22px;
    width: 90%;
    max-width: 350px;
  }
  .stay_conts .btn a {
    padding: 15px;
    font-size: 1.3rem;
    text-align: center;
    background-position: right 12px center;
  }
  .stay_img_box {
    margin-bottom: 20px;
    display: block;
  }
  .stay_img_box .sub_text_box {
    margin-bottom: 10px;
    width: auto;
  }
  .stay_img_box .sub_photo_box {
    width: auto;
  }
  .stay_img_box .sub_photo_box img {
    width: 100%;
  }
  .stay_img_box.style01 {
    margin-bottom: 22px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stay_img_box.style01 .sub_text_box {
    margin-bottom: 0;
    width: auto;
  }
  .stay_img_box.style01 .sub_photo_box {
    padding-top: 10px;
    width: auto;
  }
}

/* sec_map
--------------------------------- */
.sec_map {
  padding: 100px 0;
  background: url("../img/bg_map.jpg") no-repeat center center/cover;
}

.sec_map .map_title_wrap {
  background: #673B5D;
  text-align: center;
  line-height: 120px;
}

.sec_map .map_title {
  max-width: 400px;
  margin: auto;
}

.sec_map .map_title img {
  vertical-align: middle;
}

.sec_map .nara_shop {
  margin: 0 auto 67px;
  max-width: 1060px;
}

.sec_map .nara_shop_in {
  padding: 40px 40px 55px;
  background: #fff;
}

.sec_map .nara_shop_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec_map .nara_shop_cont .map-img {
  width: 54%;
}

.sec_map .nara_shop_list {
  margin-top: -5px;
  width: 43.5%;
}

.sec_map .nara_shop_list li {
  padding: 5px 0;
  position: relative;
}

.sec_map .nara_shop_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  content: "";
}

.sec_map .nara_shop_list li a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sec_map .spons_list {
  margin: 36px auto 52px;
  width: 460px;
}

.sec_map .spons_list li {
  width: 190px;
  position: relative;
}

.sec_map .spons_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  content: "";
}

.sec_map .spons_list li a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sec_map .rentalcar_title {
  margin: auto;
  max-width: 740px;
  padding-right: 34px;
}

@media (min-width: 768px) and (max-width: 880px) {
  .sec_map .rentalcar_title {
    padding-right: 0;
    text-align: center;
  }
}

.sec_map .rentalcar_list {
  margin: 25px auto 10px;
  max-width: 723px;
  padding-right: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 880px) {
  .sec_map .rentalcar_list {
    padding-right: 0;
  }
}

.sec_map .rentalcar_list li {
  position: relative;
}

.sec_map .rentalcar_list li img {
  height: 50px;
}

.sec_map .rentalcar_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  content: "";
}

.sec_map .rentalcar_list li a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sec_map .band_area {
  background: rgba(103, 59, 93, 0.8);
}

.sec_map .band_area_in {
  margin: 0 auto;
  padding: 20px 0 17px;
  max-width: 1054px;
}

@media screen and (max-width: 767px) {
  .sec_map {
    padding: 36px 0 67px;
    background: url("../img/bg_map.jpg") no-repeat center center/cover;
  }
  .sec_map .map_title_wrap {
    background: #673B5D;
    text-align: center;
    line-height: 60px;
  }
  .sec_map .map_title {
    max-width: 400px;
    margin: auto;
  }
  .sec_map .map_title img {
    width: 246px;
    vertical-align: middle;
  }
  .sec_map .nara_shop {
    margin: 0 auto 20px;
    max-width: inherit;
    padding: 0 25px;
  }
  .sec_map .nara_shop_in {
    padding: 14px 15px;
    background: #fff;
  }
  .sec_map .nara_shop_cont {
    display: block;
  }
  .sec_map .nara_shop_cont .map-img {
    width: auto;
    text-align: center;
  }
  .sec_map .nara_shop_list {
    margin: 18px 0 0 6px;
    width: auto;
  }
  .sec_map .nara_shop_list li {
    padding: 4px 0;
  }
  .sec_map .spons_list {
    margin: 20px auto 34px;
    width: auto;
    max-width: 295px;
  }
  .sec_map .spons_list li {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .sec_map .rentalcar_title {
    margin: auto;
    padding-right: 0;
    width: 220px;
    max-width: inherit;
  }
  .sec_map .rentalcar_list {
    margin: -5px auto 20px;
    padding-left: 3vw;
    width: auto;
    max-width: 390px;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec_map .rentalcar_list li {
    margin-top: 34px;
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    text-align: center;
  }
  .sec_map .rentalcar_list li img {
    height: 10.5vw;
  }
}

@media screen and (max-width: 767px) and (min-width: 530px) and (max-width: 767px) {
  .sec_map .rentalcar_list li img {
    height: 56px;
  }
}

@media screen and (max-width: 767px) {
  .sec_map .band_area_in {
    margin: 0 auto;
    padding: 25px 40px 23px;
    max-width: inherit;
  }
}
