@charset "UTF-8";
/*==================================
  General - 共通
==================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #4b3200;
  letter-spacing: 0.25em;
  background: #faf5e6 url(/furusato/assets/images/texture.png) repeat;
}

:focus {
  outline-color: orange;
}

.l-wide {
  max-width: 1460px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.l-wide__inner {
  border-radius: 120px 120px 0 0;
  width: 100%;
}
.l-wide__inner--white {
  background: #fff;
}
.l-wide__inner--green {
  background: #497a30;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .l-wide__inner {
    border-radius: 60px 60px 0 0;
  }
}
/* マーカー */
.u-marker {
  background: #497a30;
  color: #fff;
  padding: 0 0.25em;
  line-height: 1.4;
}

/* 背景色 */
.u-bgWhite {
  background: #fff;
}

/* 行間 */
[class$=__detail] > p:not(:first-child) {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  [class$=__detail] > p:not(:first-child) {
    margin-top: 10px;
  }
}
/*==================================
Scrollin
==================================*/
.scrollin,
.scrollins__item {
  opacity: 0;
  transform: translate(0, 30px);
}

.scrollin.is-visible,
.scrollins__item.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*==================================
  Parts - パーツ
==================================*/
/* ボタン */
.p-button__p1 {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  width: 100%;
  max-width: 320px;
  padding: 0.8em 1em;
  border: 2px solid #497a30;
  border-radius: 9999px;
  background: #497a30;
  color: #fff;
}
.p-button__p1--rev {
  border-color: #fff;
}

/* 区切り線 */
.p-separator {
  border: none;
  margin-top: 120px;
  position: relative;
  padding: 0.9em;
}
.p-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.8em;
  background: url(/furusato/assets/images/material03.svg) repeat;
}

@media only screen and (max-width: 767px) {
  .p-separator {
    margin-top: 60px;
    padding: 0.7em;
  }
  .p-separator::before {
    height: 1.4em;
  }
}
/* 追従ボタン */
.p-donation__button {
  background: #afc87d;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 1em 0 0 0;
  padding: 1em 0.6em;
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 99;
  box-shadow: -2px 0px 4px #a0a0a0;
}

@media only screen and (min-width: 768px) {
  .p-donation__button {
    writing-mode: vertical-rl;
  }
}
@media only screen and (max-width: 767px) {
  .p-donation__button {
    top: auto;
    bottom: 0;
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
    border-radius: 1em 1em 0 0;
    padding: 0.6em;
    box-shadow: 0 0 4px #a0a0a0;
  }
  .p-donation + .l-footer {
    padding-bottom: 60px;
  }
}
/*==================================
  Header - ヘッダー
==================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: transparent;
}
.l-header__utility {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  height: 100vh;
  background: rgba(73, 122, 48, 0.9);
  padding: 80px 40px;
  overflow-y: scroll;
}
.l-header__nav {
  display: grid;
  gap: 60px;
}
.l-header__nav > li {
  text-align: center;
}
.l-header__nav > li a {
  text-decoration: none;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .l-header__utility {
    padding: 60px 40px;
  }
  .l-header__nav {
    gap: 30px;
  }
  .l-header__nav > li a {
    font-size: 2.4rem;
  }
}
/*
 	Hamburger
====================================*/
#nav-toggle .hamburger {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 999;
}
#nav-toggle .on,
#nav-toggle .off {
  display: inline-block;
  text-align: center;
  padding-top: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
}
#nav-toggle span.line {
  display: block;
  height: 5px;
  width: 40px;
  background: #4b3200;
  position: absolute;
  top: 0;
  left: 4px;
  transition: 0.35s ease-in-out;
}
#nav-toggle span.line:nth-child(1) {
  top: 2px;
}
#nav-toggle span.line:nth-child(2) {
  top: 14px;
}
#nav-toggle .off {
  display: none;
}

.open #nav-toggle .on {
  display: none;
}
.open #nav-toggle .off {
  display: block;
  font-weight: 400;
  color: #fff;
}
.open #nav-toggle span.line {
  background: #fff;
  top: 11px;
}
.open #nav-toggle span.line:nth-child(1) {
  transform: rotate(210deg);
}
.open #nav-toggle span.line:nth-child(2) {
  transform: rotate(-210deg);
}

#global-nav {
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.open {
  overflow: hidden;
}
.open #global-nav {
  visibility: visible;
  opacity: 1;
}
.open #global-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

@media only screen and (max-width: 767px) {
  #nav-toggle .hamburger {
    top: 20px;
    right: 20px;
  }
}
/*==================================
  Title - タイトル
==================================*/
.p-title__p1 {
  position: relative;
  padding-bottom: 35px;
}
.p-title__p1::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 120px;
  aspect-ratio: 8/1;
  background: url(/furusato/assets/images/material01.svg) no-repeat center/cover;
}
.p-title__p1 > span {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.p-title__p1--left {
  text-align: left;
}
.p-title__p1--left::before {
  left: 0;
}
.p-title__p1--center {
  text-align: center;
}
.p-title__p1--center::before {
  left: 50%;
  transform: translateX(-50%);
}
.p-title__p2 {
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 0.4em;
  padding: 0.2em 1em;
}
.p-title__p2--dark {
  background: #483200;
  color: #fff;
}
.p-title__p2--light {
  background: #fff;
  color: #497a30;
}

@media only screen and (max-width: 767px) {
  .p-title__p1 {
    padding-bottom: 20px;
  }
  .p-title__p1::before {
    width: 80px;
  }
  .p-title__p1 > span {
    font-size: 2.8rem;
  }
  .p-title__p2 {
    font-size: 2.2rem;
  }
}
/*==================================
  Mainvis - メインビジュアル
==================================*/
.p-mainvis__inner {
  background: #fff;
  padding: 60px;
  position: relative;
}
.p-mainvis__flex {
  display: flex;
}
.p-mainvis__logo {
  width: 14%;
  position: relative;
  z-index: 1;
}
.p-mainvis__image {
  width: 86%;
  margin-left: -6%;
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .p-mainvis__inner {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .p-mainvis__inner {
    padding: 20px;
  }
  .p-mainvis__flex {
    flex-direction: column;
    align-items: center;
  }
  .p-mainvis__logo {
    width: 30%;
  }
  .p-mainvis__image {
    width: calc(100% + 30px);
    margin-left: 0;
  }
}
/*==================================
  Greeting - ご挨拶
==================================*/
.p-greeting__inner {
  display: flex;
  gap: 180px;
}
.p-greeting__title {
  flex-shrink: 0;
}

@media only screen and (max-width: 1199px) {
  .p-greeting__inner {
    gap: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .p-greeting__inner {
    flex-direction: column;
    gap: 40px;
  }
}
/*==================================
  Category - カテゴリから探す
==================================*/
.p-category__item {
  display: flex;
  gap: 60px;
}
.p-category__item:not(:first-of-type) {
  margin-top: 100px;
}
.p-category__image {
  width: calc(50% - 60px);
  position: relative;
  padding: 0 1em 10px 1em;
}
.p-category__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 27/2;
  background: url(/furusato/assets/images/material02.svg) no-repeat center/cover;
}
.p-category__image > img {
  width: 100%;
  border-radius: 3em 3em 0 0;
}
.p-category__detail {
  width: 50%;
}
.p-category__title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #497a30;
  position: relative;
  padding-left: 90px;
}
.p-category__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  aspect-ratio: 1/1;
}
.p-category__title.icon01::before {
  background: url(/furusato/assets/images/icon01.svg) no-repeat center/cover;
}
.p-category__title.icon02::before {
  background: url(/furusato/assets/images/icon02.svg) no-repeat center/cover;
}
.p-category__title.icon03::before {
  background: url(/furusato/assets/images/icon03.svg) no-repeat center/cover;
}
.p-category__site-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.p-category__site-list > li a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  border: 2px solid #4b3200;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  padding: 0.2em 1em;
}

@media only screen and (min-width: 1200px) {
  .p-category__item {
    align-items: flex-end;
  }
  .p-category__item:nth-of-type(even) .p-category__image {
    order: 2;
  }
  .p-category__item:nth-of-type(even) .p-category__detail {
    order: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .p-category__item {
    flex-direction: column;
    align-items: center;
  }
  .p-category__image {
    width: 100%;
    max-width: 750px;
  }
  .p-category__detail {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .p-category__item {
    gap: 30px;
  }
  .p-category__item:not(:first-of-type) {
    margin-top: 60px;
  }
  .p-category__title {
    font-size: 2.4rem;
    padding-left: 50px;
  }
  .p-category__title::before {
    width: 50px;
  }
  .p-category__site-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*==================================
  Order - お申し込み方法
==================================*/
.p-order__list img {
  border: 1px solid #d8d8d8;
}
.p-order__list figcaption {
  text-align: center;
  margin: 0 auto 0.2em;
}

@media only screen and (max-width: 1199px) {
  .p-order__list {
    gap: 20px;
  }
}
/*==================================
  Pickup - ピックアップ
==================================*/
.p-pickup__list {
  border-top: 2px solid #4b3200;
  border-bottom: 2px solid #4b3200;
}
.p-pickup__list > li {
  padding: 1.5em;
}
.p-pickup__list > li:not(:first-of-type) {
  border-top: 1px dashed #4b3200;
}

@media only screen and (max-width: 767px) {
  .p-pickup__list > li {
    padding: 0.75em;
  }
}
/*==================================
  About - 概要
==================================*/
.p-about__flex {
  position: relative;
  padding-left: 54%;
}
.p-about__flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6%;
  width: 54%;
  aspect-ratio: 55/57;
  background: url(/furusato/assets/images/map.svg) no-repeat center/cover, url(/furusato/assets/images/map-image.png) no-repeat center/cover;
}

@media only screen and (max-width: 1199px) {
  .p-about__flex {
    padding-left: 0;
    padding-top: 100%;
  }
  .p-about__flex::before {
    left: 5%;
    width: 90%;
  }
}
/*==================================
  Purpose - 寄付金の使い道
==================================*/
.p-purpose__list > li {
  position: relative;
  counter-increment: num;
}
.p-purpose__list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #faf5e6;
  border-radius: 0 0 0.4em 0.4em;
  box-shadow: 0 2px 4px #a0a0a0;
}
.p-purpose__list > li::after {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: 30px;
  left: 60px;
  transform: translate(-50%, -50%);
  font-size: 2.6rem;
  font-weight: 700;
  color: #497a30;
  letter-spacing: 0;
}
.p-purpose__list figure img {
  border-radius: 30px;
}
.p-purpose__list figure figcaption {
  color: #497a30;
  margin-top: 0.4em;
}

@media only screen and (max-width: 767px) {
  .p-purpose__list > li::before {
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .p-purpose__list > li::after {
    top: 20px;
    left: 35px;
    font-size: 2rem;
  }
  .p-purpose__list figure img {
    border-radius: 15px;
  }
}
/*==================================
  Pagetop - ページトップ
==================================*/
.p-pagetop {
  text-align: center;
}
.p-pagetop > a {
  display: inline-block;
  position: relative;
  padding-top: 1.8em;
  color: inherit;
  text-decoration: none;
  font-size: 90%;
}
.p-pagetop > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 1em;
  border: 0.6em solid transparent;
  border-bottom: 0.6em solid #000;
}

/*==================================
  Footer - フッター
==================================*/
.l-footer__unit {
  display: flex;
  gap: 80px;
  margin-top: 60px;
}
.l-footer__data {
  width: 100%;
  display: flex;
  gap: 60px;
}
.l-footer__logo {
  width: 180px;
}
.l-footer__info {
  width: calc(100% - 180px - 60px);
}
.l-footer__info dd {
  margin-top: 0.6em;
}
.l-footer__form {
  flex-shrink: 0;
  width: 320px;
}
.l-footer__copy {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1199px) {
  .l-footer__unit {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .l-footer__data {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .l-footer__info {
    width: 100%;
  }
  .l-footer__form {
    width: 100%;
  }
}