@charset "UTF-8";
/*-------------------------------------------------------------------

	Init

-------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: normal;
  letter-spacing: .02em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (-ms-high-contrast: none) {
  /*IE 11*/
  body {
    font-family: "メイリオ", Meiryo, sans-serif !important;
  }
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-size: 1em;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 1em;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

hr {
  border: none;
  height: 1px;
  background: #333;
  margin-bottom: 1em;
}

div#ui-datepicker-div {
  z-index: 9999 !important;
}

* {
  box-sizing: border-box;
}

/*-------------------------------------------------------------------
	PC
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
    min-width: 1260px;
  }
}
/*-------------------------------------------------------------------
	SP
-------------------------------------------------------------------*/
@media (max-width: 767px) {
  html {
    font-size: 2.66vw;
  }
}
/*-------------------------------------------------------------------
	PC
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
    min-width: 1260px;
  }

  .button-zoom {
    transition: all 0.2s ease-out;
  }
  .button-zoom:hover {
    -webkit-transform: scale(1.06, 1.06);
    transform: scale(1.06, 1.06);
  }

  .callbtn a {
    cursor: default;
  }
}
/*-------------------------------------------------------------------

	Common layout

-------------------------------------------------------------------*/
.bread-crumb {
  margin-bottom: 2em;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
}
.bread-crumb li {
  display: inline-block;
  margin-bottom: .5em;
}
.bread-crumb li::after {
  content: "／";
  display: inline-block;
  margin: 0 1em;
}
.bread-crumb li:last-child::after {
  display: none;
}
.bread-crumb li a {
  color: inherit;
}
.bread-crumb li:last-child a {
  text-decoration: none;
}
.bread-crumb li .fa-home {
  margin-right: .5em;
}

/*-------------------------------------------------------------------

	Common parts

-------------------------------------------------------------------*/
/*-------------------------------------------------------------------
	Common parts PC
-------------------------------------------------------------------*/
@media (min-width: 768px) {
  /*button-zoom*/
  .button-zoom {
    transition: all 0.2s ease-out;
  }
  .button-zoom:hover {
    -webkit-transform: scale(1.06, 1.06);
    transform: scale(1.06, 1.06);
  }
}
/*-------------------------------------------------------------------

	Animation

-------------------------------------------------------------------*/
.a-hidden {
  opacity: 0;
  visibility: hidden;
}

/*my-fadeInUp*/
@-webkit-keyframes my-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInUp {
  -webkit-animation-name: my-fadeInUp;
  animation-name: my-fadeInUp;
}

/*my-fadeInLeft*/
@-webkit-keyframes my-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInLeft {
  -webkit-animation-name: my-fadeInLeft;
  animation-name: my-fadeInLeft;
}

/*my-fadeInRight*/
@-webkit-keyframes my-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes my-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.my-fadeInRight {
  -webkit-animation-name: my-fadeInRight;
  animation-name: my-fadeInRight;
}

/*---------------basic fade---------------*/
/*fast*/
.a-fade-in {
  -webkit-animation-name: fade-in;
  -webkit-animation-duration: .5s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/*slow*/
.a-fade-in-slow {
  -webkit-animation-name: fade-in-slow;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-name: fade-in-slow;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

@-webkit-keyframes fade-in-slow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in-slow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.cta-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 250px;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  border: 2px solid #03b6af;
  background-color: #03b6af;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-right: 20px;
  transition: .5s;

  &:hover {
    background-color: #FFFFFF;
    color: #03b6af;
  }
}

.cta-btn  a._tel {
  border: 2px solid #79726d;
  background-color: #79726d;
  &:hover {
    background-color: #FFFFFF;
    color: #79726d;
  }
}

.cta-btn a + a {
  margin-right: 0;
  margin-left: 20px;
}

.basic-section.gray {
  padding-bottom: 40px;
}

.cta-wrap {
  margin-top: 30px;
}

.cta-wrap p {
  text-align: center;
  font-size: 24px;
  color: #03b6af;
  font-weight: bold;
  line-height: 1;
}
.cta-wrap p span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}
.cta-wrap p span::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #03b6af;
  transform: rotate(-30deg);
  position: absolute;
  left: 0;
  bottom: 0;
}
.cta-wrap p span::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background-color: #03b6af;
  transform: rotate(30deg);
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .cta-btn {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cta-btn a {
    width: 100%;
    max-width: 300px;
    height: 50px;
    margin-right: 0;
    margin-left: 0;
  }
  .cta-btn a + a {
    margin-top: 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .cta-wrap p {
    font-size: 20px;
  }
  .cta-wrap p span {
    padding: 0 20px;
  }
  .cta-wrap p span::before {
    height: 25px;
  }
  .cta-wrap p span::after {
    height: 25px;
  }

  #header {
    padding-bottom: 30px;
  }
}

.fix-cta {
  position: fixed;
  top: 0;
  right: 8rem;
}
.fix-cta .cta-btn {
  padding: 10px;
  width: 500px;
}
.fix-cta .cta-btn a {
  margin-right: 10px;
}
.fix-cta .cta-btn a + a {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .fix-cta {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .fix-cta .cta-btn {
    display: flex;
    flex-direction: row;
    padding: 0;
    width: 100%;
  }
  .fix-cta .cta-btn a {
    width: 50%;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
    border: none;
  }
  .fix-cta .cta-btn a + a {
    margin-left: 0;
  }
}