@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
  color: #1A1A1A;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-size: 62.5%;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

body {
  font-size: 1.5rem;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.container {
  width: 100%;
  max-width: 1030px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 980px) {
  .container {
    max-width: 1030px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
  background-color: #fff;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  height: 100%;
  min-width: 0;
  align-items: center;
  padding: 0 30px;
}
.header__logo {
  margin: 0;
  margin-right: auto;
}
.header__logo a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__logo a img {
  width: 228px;
}
.header__nav {
  margin-left: 30px;
}
.header__contact {
  color: inherit;
  font-weight: 700;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  margin-left: 30px;
}
.header__tel {
  font-size: 3rem;
}
.header__business-hours {
  font-size: 1rem;
  margin-top: 7px;
}

@media screen and (max-width: 979.98px) {
  .header {
    height: 60px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .header__logo a img {
    width: 134px;
  }
  .header__nav {
    margin-left: 0;
  }
  .header__contact {
    display: none;
  }
}
@media screen and (min-width: 980px) and (max-width: 1229.98px) {
  .header-inner {
    padding: 0 15px 0 20px;
  }
  .header__logo a img {
    width: 190px;
  }
  .header__nav {
    margin-left: 18px;
  }
  .header__contact {
    margin-left: 15px;
  }
  .header__tel {
    font-size: 2.6rem;
  }
  .header__business-hours {
    transform: scale(0.9);
  }
}
/* ---------------------------------------------
*   Global Navigation
--------------------------------------------- */
.global-nav-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.global-nav-list__item + .global-nav-list__item {
  margin-left: 30px;
}
.global-nav-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.25s;
}
.global-nav-link:hover {
  opacity: 0.8;
}
.global-nav-nested-list {
  display: none;
}
.global-nav-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-nav-contact__item + .global-nav-contact__item {
  margin-top: 10px;
}
.global-nav-contact__link {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  width: 150px;
  align-items: center;
  text-decoration: none;
  padding: 7px 0;
  border-radius: 6px;
}
.global-nav-contact__link--line {
  background-color: #1abb03;
}
.global-nav-contact__link--web {
  background-color: #00b6db;
}
.global-nav-contact__icon {
  width: 24px;
  height: 24px;
  margin: 0 7px;
}
.global-nav-toggle {
  display: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 999;
  margin-top: -20px;
}
.global-nav-toggle-inner {
  top: 50%;
  left: 7px;
  transition: background-color 0s 0.15s;
}
.global-nav-toggle-inner, .global-nav-toggle-inner::before, .global-nav-toggle-inner::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: #999999;
  position: absolute;
}
.global-nav-toggle-inner::before {
  top: -9px;
  transition: top 0.15s 0.15s, transform 0.15s 0s;
}
.global-nav-toggle-inner::after {
  bottom: -9px;
  transition: bottom 0.15s 0.15s, transform 0.15s 0s;
}
.global-nav-toggle.is-active .global-nav-toggle-inner {
  background-color: transparent;
  transition: background-color 0s 0.15s;
}
.global-nav-toggle.is-active .global-nav-toggle-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.15s 0s, transform 0.15s 0.15s;
}
.global-nav-toggle.is-active .global-nav-toggle-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.15s 0s, transform 0.15s 0.15s;
}

@media screen and (max-width: 979.98px) {
  .global-nav {
    position: fixed;
    width: 220px;
    top: 60px;
    right: -220px;
    bottom: 0;
    z-index: 900;
    overflow-y: scroll;
    background-image: url(../img/common/bg.png);
    background-size: cover;
    background-repeat: repeat;
    transition: right 0.25s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .global-nav.is-active {
    right: 0;
  }
  .global-nav-list {
    display: block;
    margin-bottom: 60px;
  }
  .global-nav-list__item {
    border-bottom: 1px dashed #999999;
  }
  .global-nav-list__item:first-child {
    border-top: 1px dashed #999999;
  }
  .global-nav-list__item + .global-nav-list__item {
    margin: 0;
  }
  .global-nav-link {
    font-size: 1.4rem;
    display: block;
    padding: 15px 15px 15px 25px;
  }
  .global-nav-link--with-nested::before {
    content: "＞ ";
  }
  .global-nav-nested-list {
    display: block;
    background-color: rgba(255, 255, 255, 0.34);
  }
  .global-nav-nested-list__item {
    border-top: 1px dashed #999999;
  }
  .global-nav-nested-link {
    color: inherit;
    display: block;
    padding: 10px 15px 10px calc(25px + 1.5em);
    text-decoration: none;
  }
  .global-nav-contact {
    padding: 15px 0;
  }
  .global-nav-toggle {
    display: block;
  }
}
@media screen and (min-width: 980px) and (max-width: 1229.98px) {
  .global-nav-list__item + .global-nav-list__item {
    margin-left: 15px;
  }
  .global-nav-link {
    font-size: 1.4rem;
  }
}
.wrapper {
  padding-top: 100px;
}

@media screen and (max-width: 979.98px) {
  .wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.container {
  max-width: 1030px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sec-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 30px;
  padding-top: 45px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.sec-title::before {
  content: "";
  display: block;
  width: 56px;
  height: 33px;
  background-image: url(../img/common/rainbow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -28px;
}

@media screen and (max-width: 979.98px) {
  .sec-title {
    font-size: 2.2rem;
    margin: 0 0 20px;
    padding-top: 30px;
  }
  .sec-title::before {
    /*width: 45px;*/
    height: 26px;
  }
}
.link-btn {
  color: inherit;
  font-size: 2.4rem;
  display: inline-block;
  border: 4px solid #999999;
  border-radius: 30px/50%;
  padding: 8px 50px;
  text-decoration: none;
  position: relative;
  z-index: 0;
  transition: opacity 0.25s;
}
.link-btn:hover {
  opacity: 0.8;
}
.link-btn::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../img/common/arrow.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -7.5px;
}

@media screen and (max-width: 979.98px) {
  .link-btn {
    font-size: 1.6rem;
    padding: 8px 25px;
    border: 3px solid #999999;
    border-radius: 20px/50%;
  }
  .link-btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url(../img/common/arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -5px;
  }
}
.floating-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 100;
  display: none;
  opacity: 0;
  animation: fadeOut 0.25s linear;
}
.floating-contact.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.25s linear;
}
.floating-contact__item + .floating-contact__item {
  margin-top: 20px;
}
.floating-contact__link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  width: 185px;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
}
.floating-contact__link--line {
  background-color: #1abb03;
}
.floating-contact__link--web {
  background-color: #00b6db;
}
.floating-contact__icon {
  width: 45px;
  height: 45px;
  margin: 0 8px;
}

.bottom-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-image: url(../img/common/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px 15px;
}
.bottom-contact-inner {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: stretch;
}
.bottom-contact-tel {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  overflow: hidden;
	min-width:195px;
}
.bottom-contact-tel__number {
  font-size: 2.5rem;
}
.bottom-contact-tel__business-hours {
  font-size: 1rem;
  white-space: nowrap;
  transform: scale(0.8);
  margin-top: 4px;
}
.bottom-contact-emergency-tel {
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  background-color: #ff4559;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}
.bottom-contact-reserve {
  flex: 0 0 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 8px;
  background-color: #999999;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

/* ---------------------------------------------
*   FP Banner
--------------------------------------------- */
.banner-sec {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 20px 50px;
}
.banner-sec a {
  transition: opacity 0.25s;
}
.banner-sec a:hover {
  opacity: 0.8;
}
.banner-sec a img {
  width: 100%;
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
  background-color: #def1fb;
  border: 5px solid #66a7fb;
  border-radius: 3px;
  padding: 0 20px 0 215px;
  position: relative;
  z-index: 0;
}
.contact-banner__illust {
  width: 169px;
  max-height: none;
  position: absolute;
  left: 10px;
  bottom: -22px;
  vertical-align: bottom;
}
.contact-banner__message {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.666;
  margin: 10px 0 0;
  position: relative;
  z-index: 0;
}
.contact-banner__free {
  width: 76px;
  position: absolute;
  right: -36px;
  top: -25px;
}
.contact-banner-btn-list {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-banner-btn-list__item {
  flex: 0 0 120px;
}
.contact-banner-btn-list__item + .contact-banner-btn-list__item {
  margin-left: 20px;
}
.contact-banner__btn {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 18px;
  padding: 14px 0 10px;
  transition: opacity 0.25s;
}
.contact-banner__btn:hover {
  opacity: 0.8;
}
.contact-banner__btn--tel {
  background-color: #ec6d45;
}
.contact-banner__btn--line {
  background-color: #1abb03;
}
.contact-banner__btn--web {
  background-color: #00b6db;
}
.contact-banner__btn-icon {
  margin-bottom: 7px;
}
.contact-banner__btn-icon img {
  width: 45px;
  height: 45px;
}
.contact-banner__btn-text {
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 979.98px) {
  .banner-sec {
    padding: 50px 20px;
  }
  .contact-banner {
    max-width: 340px;
    display: grid;
    padding: 25px 18px 12px;
    margin: 0 auto;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr;
    grid-template-areas: "message message" "illust btn";
  }
  .contact-banner__illust {
    grid-area: illust;
    width: 109px;
    left: auto;
    right: 20px;
    bottom: -18px;
  }
  .contact-banner__message {
    font-size: 1.9rem;
    grid-area: message;
    max-width: 275px;
    line-height: 1.5;
    margin: 0 auto 30px;
  }
  .contact-banner__free {
    width: 57px;
    position: absolute;
    right: -35px;
    top: -20px;
  }
  .contact-banner-btn-list {
    grid-area: btn;
    display: block;
    max-width: 145px;
  }
  .contact-banner-btn-list__item + .contact-banner-btn-list__item {
    margin-left: 0;
    margin-top: 7px;
  }
  .contact-banner__btn {
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 5px 7px;
  }
  .contact-banner__btn-icon {
    flex: 0 0 24px;
    margin-bottom: 0;
    margin-right: 5px;
  }
  .contact-banner__btn-icon img {
    width: 24px;
    height: 24px;
    max-width: none;
    max-height: none;
  }
  .contact-banner__btn-text {
    font-size: 1.4rem;
  }
}
/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
  background-color: #f5f9fc;
}
.footer-inner {
  display: flex;
  min-width: 0;
  align-items: center;
  max-width: 1060px;
  padding: 70px 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}
.footer-right {
  flex: 1 1 auto;
  margin-left: 80px;
}
.footer__logo a {
  color: inherit;
  text-decoration: none;
}
.footer__logo a img {
  width: 320px;
}
.footer__name {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 30px 0 0;
}
.footer__address {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0 0;
}
.footer__contact {
  font-weight: 700;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  text-align: center;
  line-height: 1;
  margin-top: 25px;
}
.footer__contact a {
  color: inherit;
  text-decoration: none;
}
.footer__tel {
  font-size: 3rem;
}
.footer__business-hours {
  font-size: 1rem;
  margin-top: 7px;
}
.footer-nav-list {
  display: flex;
  min-width: 0;
  border-left: 1px solid #000;
  padding: 0 0 0 30px;
  margin: 0;
}
.footer-nav-list + .footer-nav-list {
  margin-top: 25px;
}
.footer-nav-list__item + .footer-nav-list__item {
  margin-left: 30px;
}
.footer-nav-link {
  color: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.25s;
}
.footer-nav-link:hover {
  opacity: 0.8;
}
.footer__copyright {
  color: #fff;
  font-size: 1.6rem;
  background-color: #036eb7;
  margin: 0;
  text-align: center;
  padding: 10px;
}

@media screen and (max-width: 979.98px) {
  .footer-inner {
    display: block;
    padding: 45px 20px;
  }
  .footer-right {
    display: none;
  }
  .footer__logo a img {
    width: 250px;
  }
  .footer__address {
    font-size: 1.6rem;
  }
  .footer__copyright {
    font-size: 1.4rem;
    padding: 7px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1229.98px) {
  .footer__address {
    font-size: 1.8rem;
  }
  .footer-nav-link {
    font-size: 1.6rem;
  }
}
.color--primary {
  color: #036eb7;
}

.color--red {
  color: #E83929;
}

.color--orange {
  color: #ec6d45;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 979.98px) {
  .hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 980px) {
  .hidden-pc {
    display: none !important;
  }
}
@font-face {
  font-family: "Anzu";
  src: url("../font/apt.woff2") format("woff2"), url("../font/apt.woff") format("woff"), url("../font/apt.ttf") format("truetype");
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

/*追加*/
.top-section{margin-top:50px;}