@charset "utf-8";
/*****************************************
GENERAL
*****************************************/
*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #564d4d;
  background: #f0eedf;
}
a {
  color: #564d4d;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding: 0;
  /*text-indent: -1.4em;
  list-style-position: inside;*/
}
img {
  max-width: 100%;
}
/*****************************************
TEXT
*****************************************/
.txt-cap {
  font-size: 80%;
}
/*****************************************
DEVICE
*****************************************/
@media screen and (min-width: 481px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width:480px) {
  .pc-only {
    display: none;
  }
}
/*****************************************
COMMON
*****************************************/
.container {
  width: 92%;
  margin: 0 auto 5em;
}
.flex-container {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 480px) {
  .container {
    width: 92%;
    margin: 0 auto 3em;
  }
  .flex-container {
    display: block !important;
  }
}
/*****************************************
HEADER
*****************************************/
header {
  width: 100%;
  position: absolute;
  z-index: 3;
}
#logo {
  max-width: 360px;
  display: block;
  margin: 0;
  padding: 0;
}
#logo img {
  max-width: 100%;
}
nav {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.drawer {
  padding: 1.5em 5% 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
/*ナビゲーション部分*/
.menu ul li a {
  display: block;
  padding: 2em;
  text-decoration: none;
}
.menu ul li a:hover {
  color: orange;
}
.menu {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  transition: .5s ease;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
/*OPEN時の動き*/
.menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  width: 100%;
}
.Toggle {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 3;
}
.Toggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 4px #333;
  -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
  -moz-transition: .35s ease-in-out; /*変化の速度を指定*/
  transition: .35s ease-in-out; /*変化の速度を指定*/
}
.Toggle span:nth-child(1) {
  top: 2em;
}
.Toggle span:nth-child(2) {
  top: 2.5em;
}
.Toggle span:nth-child(3) {
  top: 3em;
}
.Toggle.active span:nth-child(1) {
  top: 2.5em;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 2.5em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 600px) {
  header::after {
    display: none;
  }
  nav {
    display: flex;
  }
  .Toggle {
    display: none;
  }
  .menu {
    width: 100%;
    padding: 2em 5% 0 0;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .menu ul li {
    border-left: 1px solid #fff;
    padding: 0 1em;
  }
  .menu ul li a {
    padding: 0 1em;
    color: #fff;
  }
  .menu ul li:last-child a {
    padding: 0;
  }
}
@media screen and (max-width: 900px) {
  #logo img {
    max-width: 75%;
  }
  .menu {
    padding: 1.5em 5% 0 0;
  }
}
@media screen and (max-width: 480px) {
  #logo img {
    max-width: 80%;
  }
}
/*****************************************
TEL
*****************************************/
#tel {
  width: 90px;
  height: 90px;
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#fddcdf), to(#dfa8ae));
  background: -webkit-linear-gradient(top, #fddcdf 0%, #dfa8ae 100%);
  background: linear-gradient(to bottom, #fddcdf 0%, #dfa8ae 100%);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  margin: 0;
  padding: 0 5px 5px;
  border: 3px solid #fddcdf;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 3%;
  z-index: 2;
  animation: yurayura 2s linear infinite;
}
#tel p {
  margin: 0;
  padding: 0;
  line-height: 1;
}
#tel img {
  width: 30px;
}
@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
/*#tel p::before {
  font-family: "Font Awesome 5 Free";
  content: '\f2a0';
  font-size: 24px;
  font-weight: bold;
  margin-right: 0.2em;
}*/
#tel a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  #tel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #tel {
    top: 13%;
    position: fixed;
  }
}
@media screen and (max-width: 480px) {
  #tel {
    top: 12%;
  }
}
/*****************************************
MAIN
*****************************************/
#teaser {
  position: relative;
}
#teaser .teaser-bg {
  width: 100%;
  height: auto;
}
#teaser #teaser-copy {
  max-width: 40%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 480px) {
  #teaser #teaser-copy {
    max-width: 80%;
    top: 50%;
  }
}
/*****************************************
BANNER
*****************************************/
.bnr {
  justify-content: space-between;
}
.bnr-1clm {
  justify-content: flex-start;
}
.bnr-01, .bnr-02 {
  display: block;
  width: 49%;
  text-align: center;
  margin-bottom: 2em;
  padding-bottom: .5em;
}
.bnr-01 {
  border: 3px solid #d7beb9;
  background: #fff;
}
.bnr-02 {
  border: 3px solid #e3c1ba;
  background: #e3c1ba;
}
.bnr-01 p, .bnr-02 p {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: #f5c136;
  border-radius: 5px;
  padding: .3em .5em;
  margin: .5em;
}
.bnr-sr {
  display: block;
  width: 49%;
  border: 3px solid #ccc;
  background-image: url("../img/sr-bg.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #fff;
  margin-bottom: 2em;
  padding: 1.5em 1em;
  position: relative;
}
.bnr-sr .bnr-1clm {
  align-items: center;
}
.bnr-sr .sr {
  width: 30%;
}
.bnr-sr .sr img {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px;
}
.bnr-sr .sr-01 {
  width: 70%;
  padding-left: 1em;
}
.bnr-sr .sr-01 img {
  width: 100%;
  margin-bottom: .5em;
}
.bnr-sr .sr-btn {
  display: inline-block;
  margin-bottom: 1em;
  padding: .5em 1em;
  color: #fff;
  line-height: 1;
  background: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
  border-radius: 100vh;
}
.bnr-sr .sr-btn:hover {
  background-position: 100% 50%;
}
.bnr-sr .sr-btn::after {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-size: 16px;
  font-weight: bold;
  margin-left: .5em;
  /*color: #f5c136;*/
}
.badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 5px;
  border-radius: 50%;
  text-align: center;
  background: #8cc9da;
  width: 70px;
  height: 70px;
  color: #fff;
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 1;
}
.badge p {
  margin: 0;
  padding: 0;
  font-size: 10px;
}
@media screen and (max-width: 480px) {
  .bnr-01, .bnr-02 {
    width: 100%;
  }
  .bnr-01 p, .bnr-02 p {
    font-size: 12px;
    margin: .5em .3em;
  }
  .bnr-sr, .bnr-sr .sr {
    width: 100%;
  }
  .bnr-sr .sr-01 {
    width: 100%;
    padding-left: 0;
  }
  .bnr-sr .sr-01 img {
    width: 100%;
    margin: 0.5em 0;
  }
  .bnr-sr .sr-btn {
    width: 100%;
    text-align: center;
  }
}
/*****************************************
INQ
*****************************************/
#inq-wrapper {
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px dotted #999;
}
.heading04 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.heading04::before, .heading04::after {
  content: '';
  width: 3px;
  height: 100px;
  background-color: #8cc9da;
}
.heading04::before {
  margin-right: 60px;
  transform: rotate(-35deg)
}
.heading04::after {
  margin-left: 60px;
  transform: rotate(35deg)
}
#inq {
  width: 60%;
}
#inq .flex-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}
#inq img, #inq h2 {
  display: block;
}
#inq img {
  width: 160px;
}
#inq h2 {
  font-size: 26px;
  padding-left: 1em;
  text-align: left;
}
#inq h2 .heading17 {
  padding-bottom: 10px;
  font-size: 26px;
  background-image: repeating-linear-gradient(90deg, #b4a983 0, #b4a983 2px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 4px);
  background-size: 4px 4px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
#inq h2 span {
  font-size: 18px;
  font-weight: normal;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 780px) {
  #inq {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  #inq {
    width: 100%;
  }
  #inq img {
    width: 140px;
    margin: 0 auto 1em;
  }
  #inq h2 {
    padding-left: 0;
  }
  .heading04::before, .heading04::after {
    height: 70px;
  }
  .heading04::before {
    margin-right: 20px;
    transform: rotate(-15deg);
  }
  .heading04::after {
    margin-left: 20px;
    transform: rotate(15deg);
  }
  #inq h2 .heading17 {
    font-size: 22px;
  }
}
/***** TEL *****/
#bottom-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 80%;
  margin: 1em auto;
  padding: .5em 4em;
  font-weight: bold;
  background: #8cc9da;
  border: 2px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
#bottom-tel p.number {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
#bottom-tel p.number span {
  font-size: 70%;
  color: #107ba9;
}
#bottom-tel p.number img {
  width: 40px;
  margin-right: .2em;
}
@media screen and (max-width: 1200px) {
  #bottom-tel {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #bottom-tel p.number {
    font-size: 22px;
  }
  #bottom-tel p.number span {
    font-size: 15px;
  }
}
/***** LINK BUTTON *****/
a.btn-l {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 80%;
  margin: auto;
  padding: 1em 4em;
  font-size: 22px;
  font-weight: bold;
  background: #107ba9;
  border: 2px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
a.btn-l::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 2px;
  background: #fff;
}
a.btn-l::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #fff;
}
a.btn-l:hover {
  background: #f8cfd5;
  color: #fff;
}
a.btn-l img {
  width: 15%;
  position: absolute;
  bottom: 0;
  left: 10%;
}
@media screen and (max-width: 1200px) {
  a.btn-l {
    width: 100%;
  }
  a.btn-l img {
    width: 15%;
    left: 7%;
  }
}
@media screen and (max-width: 900px) {
  a.btn-l {
    font-size: 20px;
  }
  a.btn-l img {
    width: 13%;
    left: 5%;
  }
}
@media screen and (max-width: 480px) {
  a.btn-l {
    font-size: 15px;
    padding: 1em 2em;
  }
  a.btn-l img {
    width: 22%;
    left: -3%;
  }
  a.btn-l::after {
    width: 40px;
  }
}
/***** OTHERS *****/
a.others {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 80%;
  margin: auto;
  padding: 1em 4em;
  font-size: 22px;
  font-weight: bold;
  background: #80bb4b;
  border: 2px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
a.others::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 2px;
  background: #fff;
}
a.others::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #fff;
}
a.others:hover {
  background: #f8cfd5;
  color: #fff;
}
@media screen and (max-width: 480px) {
  a.others {
    width: 100%;
  }
  a.others {
    font-size: 15px;
    text-align: left;
  }
  a.others::after {
    width: 40px;
  }
}
/*****************************************
FOOTER
*****************************************/
footer {
  text-align: right;
  padding: 2em 1em;
  background: #c1b6a6;
}
footer p {
  font-size: 10px;
  color: #fff;
}
/*****************************************
CHEVRON
*****************************************/
.chevron-container {
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 30%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.chevron:before, .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #f0851a;
}
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes pulse {
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 900px) {
  .chevron-container {
    bottom: 35%;
  }
}
@media screen and (max-width: 480px) {
  .chevron-container {
    bottom: 20%;
  }
}