@charset "utf-8";
/* 共通設定 */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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

body {
  font-family: "Poppins", "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

img {
  max-width: 100%;
}

/* header */

header {
  background: #fffade;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 222, 1) 0%,
    rgba(255, 250, 222, 1) 25%,
    rgba(255, 250, 222, 1) 48%,
    rgba(255, 255, 255, 1) 70%
  );
}

.inner {
  max-width: 1000px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
}

.header-logo img {
  display: block;
  height: 100px;
}

.header-logo img:hover {
  transform: scale(1.1); /* 拡大 */
  transition: 0.1s;
}

/* navの設定 */
header .header-site-menu {
  display: flex;
  margin: 0 0 0 auto;
}

header .nav-all ul li:hover {
  transform: scale(1.2); /* 拡大 */
  transition: 0.1s;
  color: #c16479;
}

.site-menu {
  display: flex;
  /* burger横並びへ */
  align-items: center;
  margin: 0 0 0 auto;
  img {
    display: block;
    height: 60px;
    text-align: center;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  /* ハンバーガーメニュー */
  .burger {
    width: 40px;
    height: 40px;
    background-image: url(../images/common.images/burger.svg);
    margin: 0 0 0 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    margin: 0 0 0 80px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: none;
    @media (width <= 800px) {
      display: flex;
    }
  }
}

.burger.is-active {
  background-image: url(../images/common.images/close.svg);
}

/* ハンバーガーメニューリスト */
.menu {
  color: floralwhite;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #555353;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  ul li {
    border-bottom: 1px solid #fff;
    text-align: center;
    margin-bottom: 50px;
  }
}

.menu ul li:hover {
  transform: scale(1.2); /* 拡大 */
  transition: 0.1s;
  color: #c16479;
}

.menu.is-active {
  display: flex;
}

/* レスポンシブ800px以下でnav消える */
.nav-all {
  @media (width <= 800px) {
    display: none;
  }
}

/* 位置微調整用 */
.nav-first-img img {
  margin: 0 auto;
}

/*============ footer========== */
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* footer　logoと表 */
.footer-container {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 500px;
  gap: 5%;
  align-items: center;

  @media (width <= 800px) {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 10%;
  }
}

.footer-logo-number {
  display: grid;
  grid-template-rows: 70% 30%;
  height: 300px;
  @media (width <= 800px) {
    padding-left: 12%;
  }
}

.footer-logo {
  padding-left: 10%;
}
.footer-logo img {
  height: 200px;
  padding-left: 15%;
  margin-top: 10%;
  @media (width <= 800px) {
    display: block;
    height: 150px;
    padding-left: 18%;
  }
}

/* logo 下の番号エリア*/
.number img {
  height: 30px;
  margin-right: 5px;
  padding-left: 20%;
  margin-top: 5%;
  @media (width <= 800px) {
    margin-top: 5%;
    padding-left: 22%;
  }
}

.number:hover {
  transform: scale(1.1); /* 拡大 */
  transition: 0.1s;
}

.number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
}

.footer-exa {
  height: 300px;
  object-fit: contain;
  @media (width <= 800px) {
    display: block;
    height: 200px;
    padding-left: 18%;
    margin-bottom: 0;
  }
}

/* footer　アドレス　車　バス */

.address-container {
  display: grid;
  grid-template-columns: 30% 35% 35%;
  height: 150px;
  gap: 30px;
  align-items: center;
  @media (width <= 800px) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 5%;
    margin-bottom: 5%;
  }
}

/* yubinエリア */
.address-yubin img {
  display: inline-block;
  height: 60px;
  vertical-align: calc(50% - 20px);
  @media (width <= 800px) {
    max-width: 50%;
    padding-left: 30%;
  }
}

.address-yubin span {
  display: inline-block;
  font-size: 18px;
  padding-left: 5px;
  @media (width <= 800px) {
    font-size: 14px;
  }
}

/* carエリア */
.address-car img {
  display: inline-block;
  height: 70px;
  margin-bottom: -20px;
  padding-left: 10%;
  @media (width <= 800px) {
    max-width: 50%;
    padding-left: 30%;
    margin-top: -3%;
  }
}

.address-car span {
  display: inline-block;
  font-size: 18px;
  padding-left: 5px;
  @media (width <= 800px) {
    font-size: 14px;
  }
}

/* busエリア */

.address-bus img {
  display: inline-block;
  height: 70px;
  margin-bottom: -20px;
  @media (width <= 800px) {
    max-width: 50%;
    padding-left: 30%;
  }
}

.address-bus span {
  display: inline-block;
  font-size: 16px;
  @media (width <= 800px) {
    font-size: 14px;
  }
}

/* navエリア */

.footer-site-menu {
  display: flex;
  justify-content: center;
  gap: 8%;
  @media (width <= 800px) {
    display: none;
  }
}

.footer-site-menu ul {
  text-align: center;
  margin: 0 auto;
}

.footer-title {
  border-bottom: 1px solid #333333;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10%;
}

.footer-title:hover {
  color: #c16479;
  font-weight: 700;
}

.footer-site-menu ul li:hover {
  color: #c16479;
  font-size: 24px;
}

.footer-site-menu ul li {
  line-height: 2;
}

.footer-logo-number {
  @media (width <= 800px) {
    margin: 0 -5% 0%;
  }
}

.footer-exa {
  @media (width <= 800px) {
    margin: 0 -5% 0%;
  }
}

/* snsエリア */
.sns-contain {
  display: flex;
  justify-content: flex-end;
  gap: 3%;
  margin-top: 5%;
  @media (width <= 800px) {
    display: flex;
    justify-content: center;
    margin-top: 20%;
    gap: 11%;
  }
}

.sns-line img,
.sns-fb img {
  height: 70px;
  @media (width <= 800px) {
    height: 50px;
  }
}

.sns-line img:hover,
.sns-fb img:hover {
  transform: scale(1.1); /* 拡大 */
  transition: 0.1s;
}

/* copyrightエリア */

.copyright small {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  display: inline-block;
  padding-left: 38%;
  margin-top: 10%;
  margin-bottom: 3%;
  @media (width <= 800px) {
    padding-left: 35%;
  }
}

/* topにもどるボタン */

html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  opacity: 0.5;
  @media (width <= 800px) {
    /* display: block; */
    margin-right: 5%;
    background-color: #fff;
  }
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: translateY(20%) rotate(-45deg);
  @media (width <= 800px) {
    /* display: block; */
    margin-right: 5%;
    background-color: #fff;
  }
}

/* ====== パンくずリスト ====== */
.breadcrumb-list {
  @media (width <= 800px) {
    margin-left: 5%;
  }
}

.breadcrumbs {
  display: inline-block;
  margin-top: 5%;
}

/* 横に並ぶように  */
.breadcrumbs li {
  display: inline;
  @media (width <= 800px) {
    font-size: 14px;
  }
}

.breadcrumbs li:hover {
  transform: scale(1.2); /* 拡大 */
  transition: 0.1s;
  color: #c16479;
}



/* ≫を表示 */
.breadcrumbs li::after {
  content: "≫";
  padding: 0 0.2em;
  color: 333;
}

.breadcrumbs li:last-child::after {
  content: "";
}

.breadcrumbs li a {
  text-decoration: none;
  color: 333;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}
