@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  color: #333333;
  font-family: 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Yu Mincho Light', 'YuMincho', 'Noto Serif JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}
ul {
  margin: 0;
  padding: 0;
}
.mincho {
  font-family: 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Yu Mincho Light', 'YuMincho', 'Noto Serif JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, serif;
}
.sans-serif {
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'Noto Sans JP', sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  .sp {
    display: block;
  }
}
/* ------------------------------------
  header
-------------------------------------- */
header {
  background: #f5f5f5;
  color: #fff;
  padding-bottom: 208px;
}
@media screen and (max-width: 1200px) {
  header {
    padding-bottom: 17.3333333333vw;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  background: #38685D;
  color: #FFF;
  border-top: solid 8px #1f1f1f;
}
.header p {
  margin: 0;
}
.header .logo {
  width: 9.9479166667vw;
}
.header .description {
  margin-left: 1.3020833333vw;
}
.header .description .site-name {
  font-size: 2.0833333333vw;
  font-weight: bold;
}
.header .tel {
  position: relative;
  margin-left: auto;
  padding-left: 4.5833333333vw;
  text-align: right;
  line-height: 1;
}
.header .tel::before {
  content: '';
  display: block;
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/icon-tel.png") no-repeat;
  background-size: contain;
}
.header .tel p:nth-child(1) {
  color: #f5f5f5;
  margin-bottom: 7px;
}
.header .tel a {
  text-decoration: none;
  color: #FFF;
  font-size: 2.34375vw;
}
.header .tel a span {
  font-size: 1.25vw;
}
@media screen and (max-width: 1200px) {
  .header p {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 580px) {
  .header {
    padding: 0 10px;
  }
  .header p {
    font-size: 12px;
  }
  .header .logo {
    width: 90px;
    flex-shrink: 0;
  }
  .header .description {
    margin-left: 15px;
  }
  .header .description .site-name {
    font-size: 18px;
  }
  .header .description .site-name span {
    display: inline-block;
    font-size: 14px;
    display: none;
  }
  .header .tel {
    display: none;
  }
}
h1 {
  margin: 0;
}
.mv {
  width: 88%;
  max-width: 1400px;
  max-height: 60vh;
  margin: 0 auto;
  text-align: center;
}
.mv img {
  max-height: 75vh;
  object-fit: cover;
}
@media screen and (max-width: 580px) {
  .mv {
    width: 95%;
  }
}
.car {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    color: #333;
    flex-wrap: wrap;
    justify-content: center;
}
.car figure {
  width: 40%;
  padding: 0;
  margin: 0;
}
.car figure + div {
  padding-left: 3.125vw;
}
.car h2 {
  font-size: 2.3vw;
  margin: 1.0416666667vw 0 2.8645833333vw;
}
.car p {
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .car {
    padding: 0 1.6666666667vw;
  }
  .car figure {
    width: 35.8333333333vw;
  }
  .car p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .car figure {
    width: 42vw;
  }
  .car h2 {
    font-size: 3.6458333333vw;
  }
  .car p {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 580px) {
  .car {
    display: block;
    margin-top: -20px;
  }
  .car figure {
    width: 55%;
    margin: 0 auto;
  }
  .car h2 {
    margin: 15px 0 20px;
    font-size: 6.7632850242vw;
  }
  .car p {
    font-size: 3.8647342995vw;
  }
}
/* =====================
 * slider
 * ===================== */
.slider-wrapper {
  position: relative;
  top: -122px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .slider-wrapper {
    top: -10vw;
  }
}
.slider li {
  margin: 0 15px;
}
@media screen and (max-width: 1200px) {
  .slider li {
    margin: 0 1.25vw;
  }
}
/* ------------------------------------
  dl 横並び
-------------------------------------- */
dl {
  display: flex;
  flex-wrap: wrap;
}
dt {
  width: 30%;
  border-bottom: 1px solid #E4E4E4;
}
dt:last-of-type {
  border-bottom: none;
}
dd {
  width: 70%;
  margin: 0;
  border-bottom: 1px solid #E4E4E4;
}
dd:last-of-type {
  border-bottom: none;
}
/* =====================
 * メニュー
 * ===================== */
.menu-title {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .menu-title {
    margin-bottom: 7.5vw;
  }
}
.menu {
  display: flex;
  justify-content: space-between;
}
.menu > div {
  flex-basis: calc(50% - 10px);
}
.menu h3 {
  font-size: 26px;
}
.menu dl {
  font-size: 24px;
  text-align: right;
  line-height: 1.6;
}
.menu dt {
  padding-left: 12px;
}
.menu dd {
  padding-right: 12px;
}
.menu-right > div + div {
  margin-top: 50px;
}
.menu-right dt {
  width: 40%;
}
.menu-right dd {
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .menu h3 {
    margin-top: 0;
  }
  .menu dl {
    font-size: 2vw;
  }
  .menu dt {
    width: 40%;
  }
  .menu dd {
    width: 60%;
  }
  .menu-right dt {
    width: 45%;
  }
  .menu-right dd {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .menu dl {
    font-size: 22px;
  }
  .menu dt {
    width: 45%;
  }
  .menu dd {
    width: 55%;
  }
  .menu-right dt {
    width: 50%;
  }
  .menu-right dd {
    width: 50%;
  }
}
@media screen and (max-width: 580px) {
  .menu {
    display: block;
  }
  .menu dl {
    font-size: 20px;
  }
  .menu dt {
    width: 50%;
  }
  .menu dd {
    width: 50%;
  }
}
/* =====================
 * SNS
 * ===================== */
.sns {
  margin: 160px auto 0;
  padding-bottom: 100px;
  text-align: center;
}
.sns-txt {
  font-size: 26px;
  margin: 0;
}
.sns .insta {
  margin: 67px 0 39px;
  display: flex;
  justify-content: space-between;
}
.sns .insta li {
  list-style: none;
  margin: 0 20px;
}
.sns .btn-box {
  text-align: center;
}
.sns .btn {
  display: inline-block;
  margin: 0 10px;
  padding: 9px 40px;
  font-size: 18px;
  background: #707070;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}
.sns .btn:hover {
  opacity: 0.8;
}
.sns .btn.blue {
  background: #3097DC;
}
@media screen and (max-width: 1200px) {
  .sns {
    margin: 13.3333333333vw auto 0;
    padding-bottom: 8.3333333333vw;
  }
  .sns .insta {
    margin: 5.5833333333vw 0 3.25vw;
    display: flex;
    justify-content: space-between;
  }
  .sns .insta li {
    list-style: none;
    margin: 0 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .sns-txt {
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 580px) {
  .sns .insta {
    flex-wrap: wrap;
  }
  .sns .insta li {
    width: 46%;
    margin-bottom: 4%;
  }
  .sns .btn {
    margin: 0px 6px 10px;
    padding: 8px 20px;
    font-size: 14px;
  }
  .sns-txt {
    font-size: 4.347826087vw;
  }
}
/* =====================
 * footer
 * ===================== */
.footer {
  height: 516px;
  margin-top: 134px;
  background: #ECEBEB;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.footer > div {
  flex: 1;
}
.footer-left {
  margin-top: 16px;
  background: #38685D;
  color: #fff;
  position: relative;
  top: -150px;
}
.footer-left-content {
  max-width: 550px;
  height: 100%;
  margin-left: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-right-content {
  max-width: 550px;
  height: 100%;
  padding-bottom: 150px;
  text-align: center;
  display: flex;
  align-items: center;
}
.footer-right-content > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .site-name {
  font-size: 25px;
  margin: 20px 0 50px;
}
.footer .address {
  font-size: 20px;
}
.footer .copyright {
  width: 100%;
  margin: 0;
  padding: 47px 0 80px;
  position: absolute;
  bottom: 0;
  text-align: center;
}
.footer-tel {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer .site-name {
    font-size: 22px;
  }
}
@media screen and (max-width: 580px) {
  .footer {
    display: block;
    margin-top: 50px;
    height: auto;
  }
  .footer-left {
    top: 0;
  }
  .footer-left-content {
    display: block;
    max-height: 100%;
    height: auto;
    padding: 20px 0;
  }
  .footer-left-content img {
    width: 30%;
  }
  .footer-right-content {
    height: auto;
    padding-bottom: 30px;
    text-align: center;
    display: block;
    margin: 0;
  }
  .footer-right-content > div {
    width: 100%;
    margin: 20px 0;
  }
  .footer .site-name {
    font-size: 22px;
  }
  .footer .copyright {
    position: relative;
    padding: 0 0 90px;
  }
  .footer-tel {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    background: rgba(141, 2, 2, 0.8);
    color: #fff;
    z-index: 20;
  }
  .footer-tel a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 20px 10px 80px;
  }
  .footer-tel a::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    background: url("../images/icon-tel.png") no-repeat;
    background-size: contain;
  }
  .footer-tel p:nth-child(1) {
    margin: 0;
    font-size: 14px;
  }
  .footer-tel p:nth-child(2) {
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    margin: 0;
    line-height: 1;
  }
  .footer-tel p:nth-child(2) span {
    font-size: 18px;
  }
}
#back-to-top {
  position: fixed;
  right: 15px;
  bottom: 12px;
  width: 50px;
  height: 50px;
  padding: 0 0;
  background: white;
  z-index: 80;
}
#back-to-top::before {
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  top: 20px;
  left: 12px;
  position: absolute;
  border: 1px solid #8D0202;
  border-width: 1px 0 0 1px;
  transform: rotate(45deg);
  z-index: 81;
}
#back-to-top a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}