@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/*
min-font-size ($font_size, $min_font_size)
$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*-------------------------------------------------------------------
	Top
-------------------------------------------------------------------*/
/*-------------------------------------------------------------------
	Section Setting
-------------------------------------------------------------------*/
#mainVisualSec {
  position: relative;
}
#mainVisualSec #mainSlider {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#mainVisualSec #mainSlider li {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
#mainVisualSec #mainSlider li img {
  width: 100%;
}
#mainVisualSec #mainTxt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  top: 0;
}
#mainVisualSec #mainTxt h2 {
  font-size: 2.3vw;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 800px) {
  #mainVisualSec #mainTxt h2 {
    font-size: 4.3vw;
    line-height: 2;
  }
}

#mapSec {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 35%;
}
@media screen and (max-width: 800px) {
  #mapSec {
    padding-top: 64%;
  }
}
#mapSec iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}