@charset "UTF-8";
/* ----- D E F A U L T ----- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  position: static;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  position: inherit;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.5em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p,
a,
li,
dt,
dd,
label,
input,
textarea,
button {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #333333;
  line-height: 1.7em;
}

ul,
dl,
ol {
  list-style: none;
}

img {
  width: 100%;
  border: none;
  max-width: 100%;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
}

a:link {
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

a.disable {
  opacity: 0.5;
  pointer-events: none;
}

.t_left {
  text-align: left;
}

.t_right {
  text-align: right;
}

.t_center {
  text-align: center;
}

.is-hide {
  display: none;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* ロールオーバー画像用：先読みしたい画像をここで参照させる */
body::after {
  content: "";
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  left: -9999px;
  top: -9999px;
}

/* ----- H E A D E R ----- */
.header-outer {
  background-color: #fff;
  border-bottom: 1px solid #e8e0e4;
}

.header {
  position: relative;
  height: 46px;
}
.header h1 {
  width: 314px;
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header h1 a {
  display: block;
}
.header h1 a span {
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 0 !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/common/head-logo.png");
  padding-top: 11.26%;
}
.header .header-tel {
  display: none;
}
.header .header-tel img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.header #spPanel {
  display: none;
}

nav ul.g-navi {
  display: none;
}

/* ----- S M A R T P H O N E  M E N U ----- */
#naviOpenBtn {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 12px;
  top: 8px;
  z-index: 1001;
  cursor: pointer;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#naviOpenBtn span {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: #9983bb;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#naviOpenBtn .ham {
  top: 6px;
}
#naviOpenBtn .bur {
  top: 14px;
}
#naviOpenBtn .ger {
  top: 22px;
}
#naviOpenBtn.active span {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#naviOpenBtn.active .ham {
  opacity: 0;
}
#naviOpenBtn.active .bur {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#naviOpenBtn.active .ger {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#spPanel {
  position: fixed;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  top: 46px;
  z-index: 100;
  padding: 2px 16px;
}
#spPanel ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#spPanel ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  line-height: 1em;
}
#spPanel ul li:last-child {
  border-bottom: none;
}
#spPanel ul li a {
  display: block;
  width: 100%;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

#spOverlay {
  position: fixed;
  top: 46px;
  left: 0;
  width: 100%;
  height: calc(100% - 46px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#spOverlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ----- C O N T E N T S ----- */
.main {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

/* ----- F O O T E R ----- */
.backToTop {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/common/backToTop.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 44px;
  height: 44px;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
}
.backToTop:hover {
  opacity: 1 !important;
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer {
  text-align: center;
}
footer .footer-bg-top {
  background-image: url("../img/top/footer-bg-top-sp.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  padding-top: 21.09%;
}
footer {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
footer p, footer a, footer li, footer dt, footer dd, footer label, footer input, footer textarea, footer button, footer span {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
footer .footer-contact {
  background-color: #cbe3a9;
  padding: 31px 20px;
}
footer .footer-contact .inner {
  max-width: 700px;
  margin: 0 auto;
}
footer .footer-contact h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
footer .footer-contact .contact-sub {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  padding: 4px 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
}
footer .footer-contact dl {
  text-align: left;
}
footer .footer-contact dl dt {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0px;
  margin-top: 8px;
}
footer .footer-contact dl dt:first-child {
  margin-top: 0;
}
footer .footer-contact dl dd input[type=text],
footer .footer-contact dl dd input[type=email],
footer .footer-contact dl dd input[type=tel] {
  width: 100%;
  padding: 0px 12px;
  border: 1px solid #c8ddd4;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #333333;
}
footer .footer-contact dl dd input[type=text]::-webkit-input-placeholder, footer .footer-contact dl dd input[type=email]::-webkit-input-placeholder, footer .footer-contact dl dd input[type=tel]::-webkit-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd input[type=text]::-moz-placeholder, footer .footer-contact dl dd input[type=email]::-moz-placeholder, footer .footer-contact dl dd input[type=tel]::-moz-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd input[type=text]:-ms-input-placeholder, footer .footer-contact dl dd input[type=email]:-ms-input-placeholder, footer .footer-contact dl dd input[type=tel]:-ms-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd input[type=text]::-ms-input-placeholder, footer .footer-contact dl dd input[type=email]::-ms-input-placeholder, footer .footer-contact dl dd input[type=tel]::-ms-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd input[type=text]::placeholder,
footer .footer-contact dl dd input[type=email]::placeholder,
footer .footer-contact dl dd input[type=tel]::placeholder {
  color: #aaa;
}
footer .footer-contact dl dd textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c8ddd4;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #333333;
  resize: vertical;
}
footer .footer-contact dl dd textarea::-webkit-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd textarea::-moz-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd textarea:-ms-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd textarea::-ms-input-placeholder {
  color: #aaa;
}
footer .footer-contact dl dd textarea::placeholder {
  color: #aaa;
}
footer .footer-contact .req {
  font-size: 10px;
  color: #fff;
  background-color: #d45b5b;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
footer .footer-contact .err-msg {
  font-size: 12px;
  color: #d45b5b;
  min-height: 0;
  line-height: 1.4em;
}
footer .footer-contact .err-msg:empty {
  display: none;
}
footer .footer-contact .is-error {
  border-color: #d45b5b !important;
  background-color: #fff5f5 !important;
}
footer .footer-contact .submit-btn {
  position: relative;
  text-align: center;
  margin-top: 12px;
}
footer .footer-contact .submit-btn button {
  border: none;
  width: 100%;
  background-color: #f2ead5;
  color: #333;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .footer-contact .submit-btn button:hover, footer .footer-contact .submit-btn button:active {
  background-color: #736357;
  color: #fff;
}
footer .footer-contact .submit-btn button.is-disabled {
  background-color: #ccc;
  color: #999;
  cursor: default;
  pointer-events: none;
}
footer .footer-contact .submit-btn .spinner-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-contact .submit-btn .spinner-overlay.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-contact .submit-btn .spinner-overlay img {
  width: 32px;
  height: 32px;
}
footer .footer-contact .form-status {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 10px 0;
}
footer .footer-contact .form-status.is-success {
  color: #2e7d32;
}
footer .footer-contact .form-status.is-error {
  color: #c62828;
}
footer .footer-contact .form-status:empty {
  display: none;
}
footer .footer-contact .contact-info-area {
  margin-top: 32px;
}
footer .footer-contact .contact-info-area .contact-sub {
  margin-bottom: 16px;
}
footer .footer-contact .contact-info-area .tel-num {
  width: 240px;
  margin: 0 auto;
}
footer .footer-contact .contact-info-area .tel-num a {
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 0 !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/common/tel-footer.png");
  padding-top: 10.76%;
}
footer .footer-contact .contact-info-area .map {
  margin-top: 20px;
  margin-bottom: 13px;
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 6px;
}
footer .footer-contact .contact-info-area .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
footer .footer-contact .contact-info-area .footer-logo {
  width: 67.28%;
  margin: 0 auto 12px;
}
footer .footer-contact .contact-info-area .footer-logo p {
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 0 !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../img/common/footer-logo-sp.png");
  padding-top: 42.42%;
}
footer .footer-contact .contact-info-area .address {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}
footer .footer-info {
  padding: 14px 10px 14px;
  text-align: center;
}
footer .footer-info .inner {
  max-width: 700px;
  margin: 0 auto;
}
footer .footer-info .copyright {
  font-size: 10px;
  color: #333;
}

/* ------------------------------------------------------------------------------------------- over 768px (tablet) ----- */
@media only screen and (min-width: 768px) {
  p,
  a,
  li,
  dt,
  dd {
    font-size: 15px;
  }
  /* --- HEADER --- */
  .header {
    height: 56px;
  }
  .header h1 {
    width: 270px;
    left: 16px;
  }
  #naviOpenBtn {
    width: 34px;
    height: 34px;
    right: 14px;
    top: 11px;
  }
  #naviOpenBtn span {
    width: 22px;
    margin-left: -11px;
  }
  #naviOpenBtn .ham {
    top: 7px;
  }
  #naviOpenBtn .bur {
    top: 16px;
  }
  #naviOpenBtn .ger {
    top: 25px;
  }
  #naviOpenBtn.active .bur {
    top: 16px;
  }
  #naviOpenBtn.active .ger {
    top: 16px;
  }
  #spPanel {
    top: 56px;
    padding: 4px 24px;
  }
  #spPanel ul li a {
    padding: 16px 6px;
    font-size: 15px;
  }
  #spOverlay {
    top: 56px;
    height: calc(100% - 56px);
  }
  /* --- BACK TO TOP --- */
  .backToTop {
    width: 48px;
    height: 48px;
    right: 20px;
    bottom: 20px;
  }
  /* --- FOOTER --- */
  footer .footer-contact {
    padding: 40px 28px;
  }
  footer .footer-contact .inner {
    max-width: 720px;
  }
  footer .footer-contact h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }
  footer .footer-contact .contact-sub {
    font-size: 17px;
  }
  footer .footer-contact dl dt {
    font-size: 14px;
    margin-top: 10px;
  }
  footer .footer-contact dl dd input[type=text],
  footer .footer-contact dl dd input[type=email],
  footer .footer-contact dl dd input[type=tel] {
    padding: 2px 14px;
    font-size: 15px;
  }
  footer .footer-contact dl dd textarea {
    padding: 10px 14px;
    font-size: 15px;
  }
  footer .footer-contact .submit-btn {
    margin-top: 16px;
  }
  footer .footer-contact .submit-btn button {
    width: 80%;
    padding: 14px 40px;
    font-size: 16px;
  }
  footer .footer-contact .contact-info-area {
    margin-top: 36px;
  }
  footer .footer-contact .contact-info-area .tel-num {
    width: 260px;
  }
  footer .footer-contact .contact-info-area .map {
    padding-top: 50%;
    margin-top: 24px;
    margin-bottom: 16px;
  }
  footer .footer-contact .contact-info-area .footer-logo {
    width: 41%;
    margin-bottom: 14px;
  }
  footer .footer-contact .contact-info-area .address {
    font-size: 13px;
  }
  footer .footer-info {
    padding: 16px 10px;
  }
  footer .footer-info .copyright {
    font-size: 11px;
  }
}
/* ------------------------------------------------------------------------------------------- over 1024px ----- */
@media only screen and (min-width: 1024px) {
  /* --- HEADER --- */
  .header-outer {
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: none;
    padding: 0 10px;
  }
  .header {
    max-width: 1024px;
    margin: 0 auto;
    height: 120px;
  }
  .header h1 {
    width: 515px;
    left: 40px;
    top: 49px;
    -webkit-transform: none;
            transform: none;
  }
  .header .header-tel {
    display: block;
    position: absolute;
    top: 46px;
    right: 38px;
    background-color: #fff;
    padding: 0;
    text-align: center;
  }
  .header .header-tel p {
    font-size: 13px;
    font-weight: 700;
    color: #9782ba;
    line-height: 1.4em;
    margin-bottom: 4px;
  }
  .header .header-tel a {
    display: block;
    width: 266px;
  }
  .header .header-tel a span {
    display: block;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 0 !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url("../img/common/tel.png");
    padding-top: 15.38%;
  }
  .header .header-tel a:hover {
    opacity: 0.8;
  }
  #naviOpenBtn {
    display: none;
  }
  #spPanel {
    display: none !important;
  }
  #spOverlay {
    display: none !important;
  }
  nav {
    background-color: #fff;
    height: 66px;
  }
  nav ul.g-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
  }
  nav ul.g-navi li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 66px;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 700;
    color: #333333;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
  }
  nav ul.g-navi li a:hover {
    opacity: 1;
    background-color: #ed8599;
    color: #fff;
  }
  /* --- FOOTER --- */
  footer .footer-bg-top {
    background-image: url("../img/top/footer-bg-top-pc.png");
    height: 130px;
    padding-top: 0;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom center;
  }
  footer .footer-contact {
    padding: 55px 10px 74px;
  }
  footer .footer-contact h2 {
    font-size: 28px;
  }
  footer .footer-contact .inner {
    max-width: 800px;
    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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  footer .footer-contact .inner h2 {
    width: 100%;
  }
  footer .footer-contact .inner .contact-form-area {
    width: 50%;
  }
  footer .footer-contact .inner .contact-info-area {
    width: 41.38%;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-contact .inner .contact-info-area .footer-bottom {
    margin-top: auto;
  }
  footer .footer-contact .inner .contact-info-area .tel-num {
    margin-bottom: 0;
  }
  footer .footer-contact .inner .contact-info-area .map {
    height: 270px;
    margin-bottom: 20px;
  }
  footer .footer-contact .inner .contact-info-area .footer-logo {
    width: 100%;
  }
  footer .footer-contact .inner .contact-info-area .footer-logo p {
    background-image: url("../img/common/footer-logo-pc.png");
    padding-top: 11.34%;
  }
  footer .footer-contact .inner .contact-info-area .address {
    margin-bottom: 0;
  }
  footer .footer-info {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  footer .footer-info .inner p {
    font-size: 15px;
  }
}
/* ------------------------------------------------------------------------------------------- over 1200px ----- */
/*# sourceMappingURL=common.css.map */