@charset "UTF-8";

/* ==========================================================================
   Common
========================================================================== */
@media only screen and (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}
@media only screen and (max-width: 374px) {
  html {
    font-size: 75%;
  }
}

body {
  background-color: #efe6e8;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2;
  position: relative;
}

*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: inherit;
}

.row {
  list-style-type: none;
}

.container {
  padding-right: 24px;
  padding-left: 24px;
}
.section {
  padding-top: 45px;
  padding-bottom: 45px;
}
.content {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
}

img {
  max-width: 100%;
  height: auto;
}
.cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.btn {
  box-shadow: none !important;
  border-radius: 0;
  border: 1px solid currentColor;
  padding: .8em 3rem;
  min-width: 260px;
  font-size: 1.125rem;
}
a.arrow {
  position: relative;
}
a.arrow:before,
a.arrow:after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  top: 54%;
  right: 1rem;
}
a.arrow:after {
  width: .5rem;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #95008c;
  width: 100%;
  height: 80px;
  transition: .4s;
}
#siteHeader #logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
#siteHeader #logo a {
  display: block;
}
#siteHeader #logo #mark {
  margin-right: 10px;
  width: 24px;
}
#siteHeader #logo #text {
  font-size: 1rem;
  margin: 0;
  width: 80px;
}
#siteHeader nav {
  display: flex;
  height: 100%;
}
#siteHeader nav ul li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  letter-spacing: .05em;
  color: #FFF;
  text-decoration: none;
}
#siteHeader nav ul li.contact a {
  background-color: #373737;
}

@media only screen and (min-width: 768px) {
  #siteHeader #logo {
    padding: 0 30px;
  }
  #siteHeader nav ul li a {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 992px) {
  #siteHeader {
    height: 100px;
  }
  #siteHeader #logo #mark {
    width: 28px;
  }
  #siteHeader #logo #text {
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  #siteHeader nav ul li a {
    padding: 0 45px;
  }
}


/* ==========================================================================
   Main
========================================================================== */
#main {
  margin-top: 80px;
}
@media only screen and (min-width: 992px) {
  #main {
    margin-top: 100px;
  }
}

#mv {
  padding-top: 40%;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  line-height: 2;
  letter-spacing: .05em;
}

@media only screen and (max-width: 575px) {
  .h4, h4 {
      font-size: 1.071rem;
  }
}

.GoogleMap{
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.GoogleMap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) {
  .GoogleMap{
    padding-top: 40%;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  border-top: 1px solid rgba(0,0,0,0.05);
}
#siteFooter ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
#siteFooter ul.sns-nav li a {
  padding: .75em;
  font-size: 1.125rem;
}
#siteFooter .fixed-nav {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #95008c;
}
#siteFooter .fixed-nav li {
  flex: 1 1 100%;
}
#siteFooter .fixed-nav li a {
  display: block;
  color: #FFF;
  text-decoration: none;
  line-height: 60px;
}

#siteFooter .copyright {
  margin: 1rem 0;
  font-size: .875rem;
}

@media only screen and (max-width: 767px) {
  #siteFooter {
    padding-bottom: 60px;
  }
}