@charset "UTF-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
:root {
  --header-bg: #FFA500;


}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

body {
  color: #707070;
  position: relative;
  font-size: 20px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.u-1000 {
  display: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

header {
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: var(--header-bg);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

/* header .top {
  background-color: none;
} */

header .header-inner {
  display: flex;
  align-items: center;
  /* 縦中央 */
  justify-content: space-between;
  padding: 8px 24px;
}

header h1 {
  max-width: 200px;
}

header h1 img {
  display: block;
  width: 100%;
}

header ul {
  display: flex;
  align-items: center;
  /* リンクの縦中央 */
  gap: 1rem;
  margin: 0;
  padding: 0;
}

header .main-nav ul li {
  padding: 0.5em 0 0.5em 0.5em;
}

header .main-nav li a {
  color: #fff;
  display: inline-block;
  padding: 0.5em 0.25em;
  line-height: 1;
  transition: 0.3s;
  font-weight: 500;
}

header .main-nav li a:hover {
  color: #a1d5c1;
}

header .sp-nav {
  display: none;
}

/* ================================= */
.material-symbols-outlined {
  font-size: 1em;
  /* 文字サイズに合わせる */
  line-height: 1;
  /* 余白を消す */
  vertical-align: -0.18em;
  /* ← 下げる（数値はお好みで -0.08〜-0.18em くらい） */
  font-variation-settings:
    'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  /* お好みで */
}

header .breadcrumb ul {
  font-size: 14px;
  background-color: #ffedcb;
  padding: 0.5em 24px;
  gap: 0.2em;

}

header .symbol-home {
  color: #707070;
  transition: .3s;
}

header #crumb {
  color: #707070;
  text-decoration: underline;
  transition: .3s;
}

header #crumb:hover,
header .symbol-home:hover {
  color: #a1d5c1;
}

header .breadcrumb li:not(:first-child)::before {
  content: "▶";
  color: #FFA500;
  /* お好みで色を変更 */
  margin: 0 8px;
  /* 間隔を調整 */
  font-size: 0.8em;
  /* 大きさ調整（任意） */
}

/* ================================= */

@media screen and (max-width:960px) {


  header h1 {
    max-width: 180px;
    padding: 10px 0 10px 0.5em;
  }

  header .breadcrumb {
    display: none;
  }

}

@media screen and (max-width:600px) {
  header h1 {
    /* max-width: 26%; */
    max-width: 130px;
  }

}

@media screen and (max-width:960px) {

  header .header-inner {
    padding: 0 0px;
  }


  /* ハンバーガーメニュー */
  header .pc-nav {
    display: none;
  }

  header .sp-nav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(255, 247, 233, 0.9);
  }

  header .sp-nav ul {
    /*最初はナビゲーションボタンは非表示*/
    display: none;
    list-style: none;
    /* padding: 40px 20px 20px 0; */
  }

  header .sp-nav li a {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 1.5em 0;
    font-size: 20px;
    color: #707070;
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
  }


  header .sp-nav li a:hover {
    color: #E3608C;
  }

  header .hamburger {
    position: absolute;
    top: 30px;
    right: 20px;
    cursor: pointer;
    width: 32px;
    height: 24px;
    z-index: 10;
  }

  .hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #FFF;
    width: 100%;
    z-index: 10;
  }

  .hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
  }

  .hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
  }

  .hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
  }

  .hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
    background-color: #FFA500;
  }

  .hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
  }

  .hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
    background-color: #FFA500;
  }
}

@media screen and (max-width:600px) {


  header .sp-nav li a {
    font-size: 16px;
  }

  header .hamburger {
    top: 20px;
    right: 16px;
  }
}










/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.end-leaves {
  display: none;
}

footer {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #B9CB7C;
  color: #fff;
}

footer a:hover,
footer li a:hover {
  color: #FFC966;
}

footer .top-footer {
  background-color: #472F04;
}

footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5em 0.5em 0 0.5em;
}

footer .footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5em;
}

footer .footer-logo,
footer .bottom-left {
  width: 35%;
  text-align: center;
}

footer .footer-logo img {
  max-width: 250px;
  margin: 0 auto;
}

footer .footer-nav,
footer .bottom-right {
  width: 50%;
}

footer .footer-logo {
  text-align: center;
  border-bottom: 5px dashed #fff;
  padding-bottom: 1em;
}

footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 3em;
  padding-top: 1em;
  font-weight: bold;
}

footer .arrow_s {
  position: relative;
  display: inline-block;
  padding-left: 1em;
  color: #fff;
}

footer .arrow_s::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

footer .bottom-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer-to-meet {
  background: #fcedd4;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: auto;
  min-width: 250px;
  min-height: 50px;
  border-right: 1px solid #000;
  /* padding: 5px 15px; */
  color: #472F04;
  border: 1.5px solid #472F04;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  border-radius: 10px;
}

.footer-to-meet:before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2.5px;
  background-color: #FFA500;
  transition: 0.3s;
}

.footer-to-meet:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 2.5px;
  background-color: #FFA500;
  transition: 0.3s;
}

.footer-to-meet:hover:before,
.footer-to-meet:hover:after {
  right: -2.5em;
}

.footer-to-meet:hover {
  background: #edf6ff;
}

footer .sns-icon {
  display: block;
  max-width: 50px;
  margin-right: 50px;
}

footer .sns-icon img {
  display: block;
  width: 100%;
  height: auto
}

footer .vity-intro {
  font-size: 0.7em;
  padding-bottom: 1.5em;
  color: #fff;
}

footer .to-vity-btn {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 30px;
  ;
}

footer .to-vity-btn img {
  display: block;
}

footer .to-vity-btn:hover {
  opacity: 0.7;
}

footer .footer-leaves {
  width: 53%;
  margin: 0 auto;
}

footer .footer-link {
  display: flex;
  justify-content: space-around;
  font-size: 0.75em;
  padding: 2.5em 0 1em 0;
  border-top: 1px solid #FFC966;
}

footer .footer-link a {
  color: #fff;
}

footer small {
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width:1280px) {
  footer .footer-link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em 0;
  }

  footer .footer-link li {
    text-align: center;
  }

}

@media screen and (max-width:1000px) {

  footer .footer-top {
    display: block;
  }

  footer .footer-bottom {
    flex-direction: column-reverse;
  }

  footer .footer-logo,
  footer .footer-nav,
  footer .bottom-left,
  footer .bottom-right {
    margin: 0 auto;
  }

  footer .footer-logo,
  footer .bottom-left {
    width: 80%;
  }

  footer .footer-nav {
    width: 60%;
    gap: 1em 3em;
  }

  footer .bottom-right {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 30px;
  }

  .footer-to-meet {
    min-height: 50px;
    margin-right: unset;
    padding: 5px 2em;
  }

  footer .footer-top {
    margin-bottom: 3em;
  }

  footer .footer-logo {
    border-bottom: none;
  }

  footer .bottom-left {
    border-top: 3px dashed #fff;
  }

  footer .vity-intro {
    padding-top: 2em;
  }

  footer .footer-leaves {
    width: 30%;
  }
}

@media screen and (max-width:600px) {
  .end-leaves {
    display: block;
    width: 30%;
    padding-bottom: 4em;
    margin: 0 auto;
  }

  footer .footer-leaves {
    display: none;
  }

  footer .footer-inner {
    padding: 2em 0;
  }

  footer .footer-logo img {
    max-width: 150px;
  }

  footer .footer-nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 0;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  footer .arrow_s {
    padding-left: 0;
  }

  footer .arrow_s::before {
    content: none;
  }

  footer .bottom-right {
    width: 95%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "sns-icon"
      "footer-to-meet";
  }

  footer .footer-top {
    margin-bottom: 1em;
  }

  footer .sns-icon {
    margin-right: unset;
    margin: 0 auto 30px;
  }

  .footer-to-meet {
    min-height: 50px;
    max-width: 300px;
    margin-right: unset;
    margin: 0 auto;
    padding: 5px 3em;
  }

  .footer-to-meet:before {
    width: 12px;
    height: 2px;
    right: -1em;
  }

  .footer-to-meet:after {
    right: -1em;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: #FFA500;
    transition: 0.3s;
  }

  .footer-to-meett:hover:before,
  .footer-to-meet:hover:after {
    right: -2.5em;
  }

  footer .footer-link {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 1em;
    padding-bottom: 3em;
  }
}

/* ======================================== */
/* ======================================== */
/* slick.css */

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: text;
  -webkit-touch-callout: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  /* overflow: hidden; */

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.draggable {
  cursor: pointer;
  cursor: grab;
  user-select: none;
}

.slick-list.dragging {
  cursor: grabbing;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

/* .slick-slide img
{
    display: block;
} */
.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}