@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  animation: fadeIn 1s forwards;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.6rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrap {
  padding-top: 100px;
}
@media screen and (max-width: 991.98px) {
  .wrap {
    padding-top: 60px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.section-wrap {
  padding: 8rem 0;
}
.section-wrap.background {
  background-color: #F3F2EC;
}
.section-wrap .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #E48E00;
  text-decoration: underline;
}

a:active {
  color: #E48E00;
  text-decoration: underline;
}

.button-area {
  text-align: center;
  margin-top: 3rem;
}

.btn-normal {
  display: inline-block;
  color: #222 !important;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  width: 250px;
  max-width: 100%;
  border: 2px solid #707070;
  padding: 1.4rem 0;
  text-align: center;
  background-color: #fff;
  border-radius: 5rem;
  text-decoration: none !important;
}
@media screen and (max-width: 767.98px) {
  .btn-normal {
    height: 60px;
  }
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 1.5em;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: "";
  width: 15rem;
  height: 6px;
  background-color: #11A9C4;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -7.5rem;
}
.section-title span {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 100;
  background-color: #FEF7E7;
}
header .header-area {
  height: 100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  transition: 0.2s;
}
@media screen and (max-width: 991.98px) {
  header .header-area {
    height: 60px;
  }
}
header .header-area .header-left {
  display: flex;
  align-items: center;
}
header .header-area .header-left .header-logo {
  display: inline-block;
  margin-left: 4rem;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-left .header-logo {
    margin-left: 1.5rem;
  }
}
header .header-area .header-left .header-logo img {
  display: block;
  max-width: 100%;
  width: 264px;
  height: auto;
}
header .header-area .header-right {
  position: relative;
}
header .header-area .header-right nav {
  height: 100%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: right;
  margin-right: 80px;
}
header .header-area .header-right a.link-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E53828;
  width: 70px;
  height: 180px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 991.98px) {
  header .header-area .header-right a.link-shop {
    display: none;
  }
}
header::after {
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}

.open header::after {
  z-index: 0;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.5s;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav {
    display: none;
  }
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  text-decoration: none;
  color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  user-select: none;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav > li > a {
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
ul.global-nav > li > a:hover {
  color: #E53828;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
.menu-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 991.98px) {
  .menu-button {
    display: block;
  }
}
.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 25px;
  padding: 5px;
  display: inline-block;
  transition: all 0.4s;
}
.menu-button .menu-trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 10px);
  height: 3px;
  background-color: #222;
  border-radius: 4px;
  transition: 0.4s;
}
.menu-button .menu-trigger span:nth-of-type(1) {
  top: 5px;
}
.menu-button .menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-button .menu-trigger span:nth-of-type(3) {
  bottom: 5px;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 10px !important;
  transform: translateX(-50%) rotate(40deg);
}
.open .menu-trigger span:nth-of-type(2) {
  display: none;
}
.open .menu-trigger span:nth-of-type(3) {
  top: 10px !important;
  transform: translateX(-50%) rotate(-40deg);
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  padding: 60px 2rem 3rem;
  display: none;
  overflow-y: scroll;
}
.smp-menu::-webkit-scrollbar {
  display: none;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul li {
  text-align: center;
}
.smp-menu ul li a {
  color: #222;
  font-weight: 700;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
.page-top a {
  background: #E53828;
  text-decoration: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  width: 80px;
  height: 80px;
  padding: 5px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .page-top a {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
  }
}

footer .inquiry-wrap {
  padding: 8rem 0;
  background-color: #F3F2EC;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap {
    padding: 5rem 0;
  }
}
footer .inquiry-wrap .button-area {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap .button-area {
    display: block;
  }
}
footer .inquiry-wrap .button-area > div {
  padding: 0 2rem;
}
@media screen and (max-width: 991.98px) {
  footer .inquiry-wrap .button-area > div {
    width: 50%;
  }
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap .button-area > div {
    width: auto;
    margin-bottom: 2rem;
  }
}
footer .inquiry-wrap .button-area > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 700;
  width: 400px;
  height: 80px;
  border: 2px solid #707070;
  background-color: #fff;
  border-radius: 5rem;
}
@media screen and (max-width: 991.98px) {
  footer .inquiry-wrap .button-area > div a {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  footer .inquiry-wrap .button-area > div a {
    height: 60px;
  }
}
footer .footer-area {
  padding: 8rem 0;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area {
    padding: 5rem 0;
  }
}
footer .footer-area .footer-logo {
  margin-bottom: 3rem;
}
footer .footer-area ul.footer-menu {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin-bottom: 2rem;
}
footer .footer-area ul.footer-menu li {
  display: inline-block;
  font-size: 1.6rem;
  margin: 1em;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area ul.footer-menu li {
    display: block;
    margin: 1em 0;
  }
}
footer .footer-area ul.footer-menu li a {
  color: #222;
  text-decoration: none;
}
footer .footer-area ul.footer-menu li a:hover {
  opacity: 0.6;
}
footer .footer-area .copyright {
  font-size: 1.4rem;
  text-align: center;
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
ul.info-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 3rem;
}
ul.info-list li {
  border-bottom: 1px solid #484848;
}
ul.info-list li a {
  display: flex;
  padding: 3rem 0.5rem;
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  ul.info-list li a {
    display: block;
    padding: 2rem 3rem;
  }
}
ul.info-list li a time {
  width: 148px;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  ul.info-list li a time {
    width: auto;
    display: block;
    margin-bottom: 0.5em;
  }
}
ul.info-list li a p {
  flex: 1;
}

.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=common.css.map */