@charset "UTF-8";
/* 共通 ---------------------------*/
html {
  font-size: 100%;
}
body {
  font-family: 'Shippori Mincho', serif;
  /* font-optical-sizing: auto; */
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: #446622;
  letter-spacing: 0.04em;
  background: #fff;
  /* animation: fade-in 2s; */
}
img {
  max-width: 100%;
  height: auto;
  /* vertical-align: top; */
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:link,
a:visited {
  color: #446622;
}
a:hover,
a:active {
  color: #e96c06;
  transition: 0.5s;
}

h1 {
  font-weight: normal;
}

/* レイアウト */
.wrapper {
  /* max-width: 100%; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}

@media (min-width: 600px) {
  .wrapper {
    margin: 0 10%;
  }
}

/* 見出し */
.page-title {
  font-size: 1.5rem;
  text-align: center;
  margin: 150px auto 5rem;
  padding: 2rem 0 0.4rem;
  font-weight: normal;
}

@media (min-width: 600px) {
  .page-title {
    font-size: 2rem;
  }
}
/* トップページ　コピー表示 */

.copy {
  width: 100vw;
  height: 100svh;
}

.copy h2 {
  color: #446622;
  font-size: 1.5rem;
  margin: 0 auto;
  padding-top: 300px;
  translate: 0 20px;
  opacity: 0;
  animation: slide 4s linear forwards;
  text-shadow: 0 1px #bbb, 1px 2px #bbb, 2px 3px 4px #bbb;
}

@keyframes slide {
  30% {
    opacity: 0.3;
  }

  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
    translate: 0 -5px;
  }
}

@media (min-width: 600px) {
  .copy h2 {
    font-size: 3rem;
  }
}

#home {
  display: none;
}

/* ヘッダー--------------------------- */
.page-header {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  padding: 5px 2%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  align-items: flex-end;
  z-index: 30;
}

@media (max-width: 800px) {
  .page-header {
    display: block;
    justify-content: flex-end;
  }
}

.header_logo {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.index_logo {
  width: 50px;
}
.header_logo_name h1 {
  font-size: 0.5rem;
  font-weight: normal;
  line-height: 80px;
}

/*　gナビ　デスクトップ版　　　　　 */
@media (min-width: 600px) {
  .btn {
    display: none;
  }
  .hnav {
    display: none;
  }

  .main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }
  .main-nav li {
    list-style-type: none;
    position: relative;
    font-size: 1.2rem;
  }
  .sub-nav li {
    width: 130px;
    background-color: #fff;
  }
  .sub-nav {
    display: none;
    margin: 0px;
    position: absolute;
  }

  .main-nav li:hover ul {
    display: block; /* マウスポインタが載っている項目の内部にあるリストを表示する */
  }
  .cover-index {
    height: 650px;
  }
}

/*　ハンバーガーメニュー　スマホ版　　　　　 */

@media (max-width: 599px) {
  ul {
    list-style: none;
  }
  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .hnav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100svh;
    background: #446622;
    opacity: 0.9;
    transition: all 0.3s;
    padding-top: 80px;
  }
  .hnav.slide {
    transform: translate3d(-100%, 0, 0);
  }
  .hnav ul {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 1.3rem;
  }
  .hnav li {
    text-align: left;
    height: 60px;
    line-height: 60px;
    padding-left: 100px;
  }

  .hnav_list {
    cursor: pointer;
    transition: all 0.4s ease-out;
  }
  .hnav_list:hover {
    background-color: #f0f9ee;
  }
  .hnav_list:hover a {
    color: #446622;
  }

  .hnav_list_2 {
    cursor: pointer;
    color: #f0f9ee;
    transition: all 0.4s ease-out;
  }
  .hnav_list_2:hover {
    background-color: #f0f9ee;
    color: #446622;
  }

  .hnav a {
    color: #f0f9ee;
    display: block;
  }
  .toggle {
    display: none;
  }

  .toggle + ul {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .toggle:checked + ul {
    height: auto;
    transition: all 0.5s ease-in;
  }

  .btn {
    width: 40px;
    height: 40px;
    background: transparent; /* 背景色を透明に */
    border: none;
    display: grid;
    place-items: center;
    position: relative; /* スタック調整 */
    cursor: pointer;
  }
  .btn span,
  .btn span::before,
  .btn span::after {
    content: '';
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #446622; /* 3本ラインの色を変更 */
    position: absolute;
    transition: all 0.4s ease-out;
    z-index: 40;
  }
  .btn span::before {
    bottom: 8px;
  }
  .btn span::after {
    top: 8px;
  }
  .btn.open span {
    transform: rotate(180deg);
    background: #f0f9ee;
    z-index: 40;
  }
  .btn.open span::before {
    bottom: 0;
    width: 18px;
    transform: rotate(45deg) translate(2px, 6px);
    background: #f0f9ee;

    z-index: 40;
  }
  .btn.open span::after {
    top: 0;
    width: 18px;
    transform: rotate(-45deg) translate(2px, -6px);
    background: #f0f9ee;

    z-index: 40;
  }
}

/* Contents */
/* main */
main {
  padding: 2rem 2rem 3rem;
  margin: 0 auto;
  background: #fff;
}
/* topページ */
/* カバー画像 */
.top_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 300px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/top_cover.webp);
  z-index: 0;
}

.top_copy p {
  position: absolute;
  left: 10%;
  line-height: 300px; /* 縦中央揃え */
  color: #446622;
  font-size: 1.5rem;
  text-align: left;
  padding: auto;
  margin: 0 auto;
  opacity: 0;
  animation: slide 5s linear forwards;
  translate: 0 10px;
  text-shadow: 0 1px #bbb, 1px 2px #bbb, 2px 3px 4px #bbb;
  z-index: 10;
}
@keyframes slide {
  30% {
    opacity: 0.3;
  }

  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
    translate: 0 -5px;
  }
}

@media (min-width: 600px) {
  .top_cover-img {
    position: relative;
    top: 100px;
    height: 600px; /* デスクトップの画像高さ */
  }
  .top_copy p {
    position: absolute;
    line-height: 600px;
    font-size: 3rem;
  }
}

.top_about_p {
  margin: 50px 5px;
}

@media (min-width: 600px) {
  .top_about_p {
    margin: 50px 100px;
  }
}
.more {
  text-align: right;
}

.top_news_d {
  font-size: 1rem;
  padding: 20px;
  border-top: 1px solid #446622;
}

.top_news_d:last-child {
  border-bottom: 1px solid #446622;
}

.top_news_ymd {
  padding: 5px auto;
  width: 150px;
}
.top_news_text {
  padding: 5px auto;
  max-width: 600px;
}
.top_news_d img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 600px) {
  .top_news_d {
    display: flex;
    margin: 0 150px;
    gap: 10px;
  }
  .top_news_text {
    padding: 5px auto;
    width: 600px;
  }

  .top_news_d img {
    width: 180px;
    height: 180px;
    object-fit: cover;
  }
}
/* about ページ */
.about_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 250px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/about_cover.webp);
  z-index: 0;
}
.about_copy {
  position: absolute;
  width: 70vw;
  height: 120px;
  top: 25%;
  left: 15%;
  background-color: rgb(69, 103, 34, 0.3);
  z-index: 10;
}

.about_copy p {
  width: 100%;
  line-height: 120px; /* 縦中央揃え */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 600px) {
  .about_cover-img {
    top: 100px;
    height: 380px; /* デスクトップの画像高さ */
  }
  .about_copy {
    height: 180px;
    top: 25%;
    left: 15%;
    background-color: rgb(69, 103, 34, 0.3);
    z-index: 10;
  }
  .about_copy p {
    line-height: 180px;
    font-size: 3rem;
  }
}
.about_p {
  margin: 50px 5px 100px;
}

@media (min-width: 600px) {
  .about_p {
    margin: 50px 100px 100px;
  }
}

.about_etc {
  margin: 70px auto;
}
.about_etc_img {
  width: 80%;
  margin: auto;
  padding-bottom: 20px;
}
.about_etc_img img {
  aspect-ratio: 1; /* 正方形　imgに対していれる */
  object-fit: cover; /* 画像をきれいにはめる */
}

.about_etc_text {
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  .about_etc {
    margin: 100px 3%;
  }

  .about_etc_img {
    width: 30%;
    margin: 0;
    padding-bottom: 50px;
  }

  .about_etc_text {
    width: 40%;
  }

  .about_etc_left {
    display: flex;
    gap: 30px;
  }
  .about_etc_right {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
  }
}
/* 麹いろいろ　ページ */
/* 麹のちから */
.kouji_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 250px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/kouji_cover.webp);
  z-index: 0;
}

.kouji_copy {
  position: absolute;
  width: 70vw;
  height: 120px;
  top: 25%;
  left: 15%;
  background-color: rgb(69, 103, 34, 0.3);

  z-index: 10;
}

.kouji_copy p {
  width: 100%;
  line-height: 120px; /* 縦中央揃え */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  z-index: 10;
}

@media (min-width: 600px) {
  .kouji_cover-img {
    top: 100px;
    height: 380px; /* デスクトップの画像高さ */
  }

  .kouji_copy {
    height: 180px;
    top: 25%;
    left: 15%;
    background-color: rgb(69, 103, 34, 0.3);
    z-index: 10;
  }
  .kouji_copy p {
    line-height: 180px;
    font-size: 3rem;
  }
}

.kouji_power_text {
  padding: 5px auto;
  max-width: 600px;
}
.kouji_power_img img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}

@media (min-width: 600px) {
  .kouji_power_cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .kouji_power_img img {
    max-width: 400px;
    height: auto;
  }
}

/* 麹いろいろ */
.kouji_list {
  margin-bottom: 100px;
}
.kouji_list_img img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
}
.kouji_list_title {
  width: 130px;
  height: 130px;
}

.kouji_list_img {
  /* .item要素を透明にして下に60px移動しておく */
  opacity: 0;
  transform: translateY(60px);
  transition: all 2s;
}
.kouji_list_img.scrollin {
  /* .item要素を不透明にし元の位置へ */
  opacity: 1;
  transform: translateY(0);
}

.kouji_list_img_curry img {
  border-radius: 28% 42% 37% 48%;
}
.kouji_curry {
  display: inline-block;
  background: linear-gradient(top left, rgb(248, 65, 4) 3%, rgba(254, 220, 64, 1));
  background: -webkit-linear-gradient(top, rgba(248, 65, 4), rgba(254, 220, 64, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kouji_list_img_shiro img {
  border-radius: 41% 25% 36% 38%;
}
.kouji_shiro {
  display: inline-block;
  background: linear-gradient(110deg, rgb(1, 112, 12), rgba(254, 220, 64, 1));
  background: -webkit-linear-gradient(top, rgba(1, 112, 12), rgba(254, 220, 64, 1) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kouji_list_img_onion img {
  border-radius: 47% 28% 42% 32%;
}
.kouji_onion {
  display: inline-block;
  background: linear-gradient(90deg, rgb(160, 53, 4), rgb(236, 248, 4) 90%);
  background: -webkit-linear-gradient(top, rgb(160, 53, 4), rgb(236, 248, 4) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kouji_list_img_solt img {
  border-radius: 37% 48% 28% 42%;
}
.kouji_solt {
  display: inline-block;
  background: linear-gradient(90deg, rgb(11, 27, 254), rgb(236, 248, 4) 90%);
  background: -webkit-linear-gradient(top, rgb(11, 27, 254), rgb(236, 248, 4) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kouji_list_title p {
  font-size: 1.5rem;
}

.kouji_list_title span {
  font-size: 3rem;
  /* font-weight: bold; */
}
.kouji_list_text {
  padding: 5px auto;
  max-width: 600px;
}

@media (min-width: 600px) {
  .kouji_cont {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .kouji_list_title {
    width: 150px;
  }
  .kouji_list_left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }
  .kouji_list_right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
  }
  .kouji_list_img img {
    max-width: 400px;
    height: auto;
  }
  .kouji_list_text {
    padding: 5px auto;
    max-width: 300px;
  }
}

/* ワークショップ　ページ */
.wk_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 250px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/workshop_cover.webp);
  z-index: 0;
}

.wk_copy {
  position: absolute;
  width: 70vw;
  height: 120px;
  top: 25%;
  left: 15%;
  background-color: rgb(69, 103, 34, 0.3);
  z-index: 10;
}

.wk_copy p {
  width: 100%;
  line-height: 120px; /* 縦中央揃え */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 600px) {
  .wk_cover-img {
    top: 100px;
    height: 380px; /* デスクトップの画像高さ */
  }

  .wk_copy {
    height: 180px;
    top: 25%;
    left: 15%;
    background-color: rgb(69, 103, 34, 0.3);
    z-index: 10;
  }
  .wk_copy p {
    line-height: 180px;
    font-size: 3rem;
  }
}

.wk_list {
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.wk_list_strong {
  font-size: 1.1rem;
}
.wk_img {
  max-width: 100%;
}
.wk_text {
  margin-top: 20px;
}

@media (min-width: 600px) {
  .wk_list_strong {
    font-size: 1.3rem;
  }
  .wk_img_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .wk_img {
    width: 60%;
  }
  .wk_text {
    width: 35%;
  }
}

.wk_list_table th {
  max-width: 200px;
  text-align-last: left;
  font-size: 1.1rem;
}
.wk_list_table td {
  max-width: 400px;
  text-align-last: left;
  font-size: 1.1rem;
}
.wk_r_btn {
  margin: auto;
  width: 300px;
  padding: 15px 20px;
  background: #fbab2a;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease-out;
  font-size: 1.1rem;
}
.wk_r_btn:hover {
  background: #ea403a;
}
.wk_r_btn a:hover {
  color: #f0f9ee;
}

@media (min-width: 600px) {
  .wk_list_table th,
  .wk_list_table td,
  .wk_r_btn {
    font-size: 1.3rem;
  }
}

/* カルーセル */
.swiper {
  max-width: 600px;
  margin: 0 auto;
  /* padding-bottom: 24px; */
}
.swiper img {
  aspect-ratio: 6/4;
  object-fit: cover;
}
.slide1,
.slide2 {
  height: 70%;
  width: 100%;
}
.thumb1,
.thumb2 {
  height: 20%;
}
.thumb1 .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
}
.thumb2 .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
}
.thumb1 .swiper-slide-thumb-active {
  opacity: 1;
}
.thumb2 .swiper-slide-thumb-active {
  opacity: 1;
}
/* .swiper-pagination {
  bottom: 0 !important;
} */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #aaa;
}

/* お問い合わせ・ワークショップ予約 */
.contact_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 250px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/contact_cover.webp);
  z-index: 0;
}

.contact_copy {
  position: absolute;
  width: 70vw;
  height: 120px;
  top: 25%;
  left: 15%;
  background-color: rgb(69, 103, 34, 0.3);
  z-index: 10;
}

.contact_copy p {
  width: 100%;
  line-height: 60px; /* 縦中央揃え /* 2行のため高さを1/2 */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 600px) {
  .contact_cover-img {
    top: 100px;
    height: 380px; /* デスクトップの画像高さ */
  }

  .contact_copy {
    height: 180px;
    top: 25%;
    left: 15%;
    background-color: rgb(69, 103, 34, 0.3);
    z-index: 10;
  }
  .contact_copy p {
    line-height: 90px; /* 2行のため高さを1/2 */
    font-size: 3rem;
  }
}

.contact div {
  padding-bottom: 1.6rem;
}

.contact > p:last-of-type {
  margin-bottom: 1rem;
  padding: 0; /* 入力内容確認ページ対応 */
  background: none; /* 入力内容確認ページ対応 */
}

.contact label,
.select_radio_lavel {
  display: block;
  /* width: 220px; */
  padding: 0.5rem 0;
  z-index: 0;
}
.select_radio {
  display: block;
  margin: 0 auto;
}
.select_radio label:hover {
  color: rgb(233, 126, 4);
}
.contact input[type='text'],
.contact input[type='email'],
.contact input[type='number'],
.contact select,
.contact textarea {
  width: 100%;
  /* max-width: 28em; */
  padding: 0.4rem 0.8rem;
  color: #303030;
  border: 1px solid #89a55b;
}
.contact input[type='text'] {
  /* width: 100%; */
  width: 20em;
}
.contact input[type='number'] {
  width: 14em;
}
.contact textarea {
  height: 15em;
  vertical-align: top;
  border-radius: 0; /* iOS対応 */
}
input:focus,
select:focus,
textarea:focus {
  background-color: #e6f0f0;
}

.contact button[type='submit'] {
  background: #446622;
  color: #f0f9ee;
  padding: 0.6rem 2rem;
  margin: 2rem 0;
  border-radius: 7px;
}
button[type='submit']:hover {
  background-color: #59af03;
  color: #f0f9ee;
}

/* エラーメッセージ */
span.caution {
  display: block;
  color: #c66c6e;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}
/* 入力内容確認ページ・thanksページ */
.confirm p,
.thanks p:last-child {
  background-color: rgb(232, 240, 254);
  padding: 0.4rem 1rem;
}
.confirm div.btn {
  padding-bottom: 0;
  border: none;
}
.thanks p {
  margin-bottom: 1rem;
}

/* 戻るボタン */
.confirm button[name='btn_back'] {
  background-color: #bbb;
  margin-right: 0.6rem;
}
.confirm button[name='btn_back']:hover {
  background-color: #aaa;
}

@media (min-width: 600px) {
  .select_radio label {
    display: inline-block;
    padding: 0 50px;
  }

  .contact_form {
    margin: 0 10%;
  }
}

/* よくある質問 */
.faq_cover-img {
  position: relative;
  top: 100px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  height: 250px; /* モバイル時の画像高さ */
  background-image: url(../img/cover_img/faq_cover.webp);
  z-index: 0;
}

.faq_copy {
  position: absolute;
  width: 70vw;
  height: 120px;
  top: 25%;
  left: 15%;
  background-color: rgb(69, 103, 34, 0.3);
  z-index: 10;
}

.faq_copy p {
  width: 100%;
  line-height: 120px; /* 縦中央揃え */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 600px) {
  .faq_cover-img {
    top: 100px;
    height: 380px; /* デスクトップの画像高さ */
  }

  .faq_copy {
    height: 180px;
    top: 25%;
    left: 15%;
    background-color: rgb(69, 103, 34, 0.3);
    z-index: 10;
  }
  .faq_copy p {
    line-height: 180px;
    font-size: 3rem;
  }
}

details {
  /* border: 1px solid #446622; */
}
details:not(:last-child) {
  margin-bottom: 20px;
}

/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  background-color: rgba(174, 233, 79, 0.3);
  color: #446622;
  font-size: 1.2rem;
  font-weight: normal;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::before {
  font-family: FontAwesome;
  content: '\f067';
  margin-right: 20px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::before {
  content: '\f068';
}

details p {
  margin: 0;
  padding: 20px;
}

summary:hover {
  color: #e96c06;
  transition: 0.5s;
}
/*　▼ ワークショップ、トップ戻るボタン/
/* ---------------------------- */
/* ワークショップボタン */
.wk_btn {
  width: 80px;
  height: 60px;
  border-radius: 45% 0 0 45%;
  border: none;
  background: #fbab2a;
  color: #f0f9ee;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
  position: fixed;
  right: 0%;
  bottom: 150px;
  transition: all 0.4s ease-out;
}
.wk_btn:hover {
  background: #ea403a;
  /* color: #f0f9ee; */
}
.wk_btn a:hover {
  color: #f0f9ee;
}

/* ページトップボタン */
.page-top {
  width: 60px;
  height: 60px;
  border-radius: 50% 0 0 50%;
  border: none;
  background: #89a55b;
  color: #f0f9ee;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
  position: fixed;
  right: 0%;
  bottom: 80px;
  transition: all 0.4s ease-out;
}
.page-top:hover {
  background: #59af03;
  color: #f0f9ee;
}
.hide {
  display: none;
}
/*　▲ ワークショップ、トップ戻るボタン/

/* フッター
--------------------------- */

.footer {
  background-color: #446622;
  margin-top: 150px;
  color: #f0f9ee;
  max-width: 100%;
}
.footer i {
  color: #f0f9ee;
  font-size: 1.2rem;
}
.footer_add {
  text-align: center;
  padding: 45px 0;
  font-size: 0.9rem;
  max-width: 100%;
}
@media (min-width: 600px) {
  .footer_add {
    padding: 45px 140px;
  }
  .footer_add {
    text-align: left;
    padding: 45px 140px;
    font-size: 0.9rem;
    max-width: 100%;
  }
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 45px auto;
  font-size: 0.8rem;
  max-width: 100%;
  padding-bottom: 45px;
}
.copyright img {
  width: 50px;
}
