@charset "UTF-8";
/*
Theme Name: ふきのとう
*/
/********************************
# 目次

 - reset
 - general
 - component
   → ヘッダ・フッタ・グロナビ **以外** の、各ページで共用するパーツをここに置く
   → WordPressネイティブなCSS＆プラグインのCSSもここに置く
   → 接頭辞は 'c-'
   → 書く場所はこの位置をキープする事
 - layout
   → 接頭辞は 'l-'
   → 書く場所はこの位置をキープする事
 - WordPress WordPressが使用するクラス
 - header
 - main
 - footer
 - home トップページ
 - about 法人概要
 - activities 活動の様子
 - products 販売商品
 - contact お問い合わせ
 - recruit 採用情報
 - news お知らせ デフォルトの投稿タイプ
 - 404 ページ
 - single-products 販売商品 単独
 - single-recruit 採用情報 単独
 - single お知らせ 単独
*********************************/
/********************************
# 規約

 - ブロック相当部分とエレメント相当部分の区切りはアンダースコア2つ
 - エレメントとモディファイの区切りはハイフン2つ
 - 単語の区切りはハイフン1つ
 - 要素・クラス名の後に半角スペース1
 - 要素・クラス名毎に改行
 - プロパティの前にはスペ4
 - プロパティ毎に改行
 - メディアクエリはセレクタ毎に分けて書く

----
# 汎用クラス

 - 接頭辞は'u-'
 - utility.css で設定している各クラスを参照
 - font-size -> fz 等の略称はemmetで採用されているものを使用しています

----
# JS用クラス

 - 接頭辞は'js-'
 - slick等、IDを指定して動かすもの専用

----
# ステートメント用クラス

接頭辞は'is_'

.is_active
クリックされた状態・現在選択されている状態を表現

注意：.is_activeには直接スタイルを当てない（スタイル汚染の原因になる）
BAD
.is_active {
    font-weight: bold;
}
GOOD
.hogehoge.is_active {
    font-weight: bold;
}
*********************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/********************************
general
*********************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.333vw;
  }
}

body {
  text-size-adjust: 100%;
  /*Chrome,Safari*/
  -webkit-text-size-adjust: 100%;
  /*EgdeMobile*/
  -ms-text-size-adjust: 100%;
  /*firefox*/
  -moz-text-size-adjust: 100%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 3rem;
    min-width: 0;
    width: 100%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

a:hover {
  text-decoration: underline;
}

a img:not([class]):hover {
  opacity: 0.8;
}

.spbr {
  display: none;
}
@media screen and (max-width: 750px) {
  .spbr {
    display: inline-block;
  }
}

.spbr--md1 {
  display: none;
}

@media screen and (max-width: 1100px) {
  .md1 {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}

/********************************
component 接頭辞はc-
*********************************/
.c-txt {
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .c-txt {
    font-size: 3.6rem;
  }
}

.c-upper {
  text-transform: uppercase;
}

.c-h2-group {
  width: 1900px;
  height: 240px;
  max-width: 100%;
  padding-top: 80px;
  overflow-y: hidden;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .c-h2-group {
    width: 100%;
  }
}

.c-h2 {
  font-size: 50px;
  font-weight: bold;
}

.c-h2-small {
  display: inline-block;
  font-size: 20px;
  margin-top: 15px;
}

.c-breadcrumb {
  width: 1100px;
  font-size: 14px;
  margin: 30px auto 0;
}
@media screen and (max-width: 1100px) {
  .c-breadcrumb {
    width: 100%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 750px) {
  .c-breadcrumb {
    font-size: 2.5rem;
    padding-left: 4rem;
    line-height: 1.7;
  }
}

.c-breadcrumb + * {
  /* .l-w750を上書きするために */
  margin-top: 100px !important;
}

@media screen and (max-width: 750px) {
  .c-h3-wrap {
    padding: 0 4rem;
  }
}

.c-h3-wrap + * {
  /* .l-w1100を上書きするために */
  margin-top: 60px !important;
}
@media screen and (max-width: 750px) {
  .c-h3-wrap + * {
    margin-top: 12rem !important;
  }
}

.c-h3-group {
  width: fit-content;
  min-width: 200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 17px;
  border-bottom: 5px #00b050 solid;
}
@media screen and (max-width: 750px) {
  .c-h3-group {
    width: 100%;
    padding-bottom: 3.2rem;
    border-bottom: 1.1rem #00b050 solid;
  }
}

.c-h3-group:not(.news__h3) + * {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .c-h3-group:not(.news__h3) + * {
    margin-top: 12rem;
  }
}

.c-h3 {
  font-size: 40px;
}
@media screen and (max-width: 750px) {
  .c-h3 {
    font-size: 8rem;
    line-height: 1.5;
  }
}

.c-h4 {
  display: flex;
  align-items: center;
  font-size: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  background: url(../img/common/ico_h4-arrow.webp) no-repeat left 7px/18px 23px;
}
@media screen and (max-width: 750px) {
  .c-h4 {
    font-size: 4rem;
  }
}

.c-h4 small {
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .c-h4 small {
    font-size: 2.5rem;
  }
}

.c-h4 + * {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .c-h4 + * {
    margin-top: 7rem;
  }
}

.c-h5 {
  position: relative;
  width: 100%;
  height: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .c-h5 {
    font-size: 3.5rem;
  }
}

.c-h5 + * {
  margin-top: 90px;
}
@media screen and (max-width: 750px) {
  .c-h5 + * {
    margin-top: 9rem;
  }
}

.c-h5::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.c-h5__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  background: #fff;
  padding: 0 40px;
}
@media screen and (max-width: 750px) {
  .c-h5__txt {
    text-align: center;
    font-size: 3.5rem;
  }
}

.c-h6 {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-h6 {
    font-size: 3.5rem;
  }
}

.c-h6 + * {
  margin-top: 50px;
}

.c-small {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  margin-top: 15px;
  color: #00b050;
}
@media screen and (max-width: 750px) {
  .c-small {
    font-size: 3.2rem;
    margin-top: 3rem;
  }
}

.c-link-btn {
  display: block;
  width: fit-content;
  height: 50px;
  padding: 0 45px 0 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 25px;
  background: url(../img/common/ico_btn-arrow.webp) no-repeat 40px center, linear-gradient(-90deg, #f6c055, #ed9fc1);
  font-size: 18px;
  line-height: 50px;
  color: #fff;
  border: none;
  font-family: inherit;
  appearance: none;
}
@media screen and (max-width: 750px) {
  .c-link-btn {
    width: 100%;
    height: 10rem;
    padding: 2.3rem 0 0 0;
    text-align: center;
    border-radius: 5rem;
    background: url(../img/common/ico_btn-arrow.webp) no-repeat 3.2rem center, linear-gradient(-90deg, #f6c055, #ed9fc1);
    font-size: 3.6rem;
    line-height: normal;
  }
}

@media screen and (max-width: 750px) {
  input.c-link-btn {
    padding-top: 0;
  }
}

.c-link-btn:hover {
  text-decoration: none;
  box-shadow: 0px 10px 5px -5px #ccc;
}

.c-article__wrap {
  width: 750px;
  padding: 40px 40px 40px 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: 1px solid #999;
}
@media screen and (max-width: 750px) {
  .c-article__wrap {
    width: 100%;
    padding: 1.5rem;
  }
}

.c-article__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-article__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.c-article__inner + * {
  margin-top: 50px;
}

.c-article__title {
  font-size: 24px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-article__title {
    font-size: 3.6rem;
  }
}

.c-article__list {
  width: 510px;
  padding-left: 30px;
  border-left: 1px solid #999;
}
@media screen and (max-width: 750px) {
  .c-article__list {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}

.c-article__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 750px) {
  .c-article__list-item {
    flex-wrap: wrap;
  }
}

.c-article__category-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 750px) {
  .c-article__category-wrap {
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}

.c-article__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  font-size: 14px;
  color: #fff;
  background-color: #00b050;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-article__category {
    font-size: 2rem;
    width: fit-content;
    height: auto;
    padding: 1rem 2rem;
  }
}

.c-article__meta {
  font-family: "Quicksand", sans-serif;
  display: block;
  color: #999;
}
@media screen and (max-width: 750px) {
  .c-article__meta {
    font-size: 2.5rem;
  }
}

.c-article__link {
  display: inline-block;
  margin-top: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .c-article__link {
    font-size: 3.6rem;
  }
}

.c-archive__wrap {
  justify-content: space-between;
  padding-bottom: 150px;
}
@media screen and (max-width: 1100px) {
  .c-archive__wrap {
    flex-direction: column-reverse;
    gap: 3rem;
    padding: 0 40px;
  }
}
@media screen and (max-width: 750px) {
  .c-archive__wrap {
    padding: 0 4rem;
  }
}

.c-archive__aside {
  width: 200px;
}
@media screen and (max-width: 1100px) {
  .c-archive__aside {
    width: 100%;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 750px) {
  .c-archive__aside {
    padding-bottom: 3rem;
  }
}

.c-archive__aside-h3 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-archive__aside-h3 {
    font-size: 3.6rem;
  }
}

.c-archive__aside-h3 + * {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .c-archive__aside-h3 + * {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1100px) {
  .c-archive__aside-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .c-archive__aside-list {
    gap: 2rem;
  }
}

.c-archive__aside-list-item {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .c-archive__aside-list-item {
    font-size: 3.6rem;
  }
}

.c-archive__aside-list-item + * {
  margin-top: 35px;
}
@media screen and (max-width: 1100px) {
  .c-archive__aside-list-item + * {
    margin-top: 0;
  }
}

.c-archive__list-wrap {
  border-left: 1px solid #333;
  width: 900px;
  padding-left: 50px;
}
@media screen and (max-width: 1100px) {
  .c-archive__list-wrap {
    border-left: none;
    width: 100%;
    padding-left: 0;
  }
}

.c-archive__wrap .c-article__list {
  width: 100%;
  padding-left: 0;
  border-left: none;
}

.c-archive__wrap .c-article__list-item {
  align-items: start;
  padding: 20px 0;
}

.c-archive__wrap .c-article__list-item:first-of-type {
  padding-top: 0;
}

.c-archive__wrap .c-article__category {
  width: 140px;
}
@media screen and (max-width: 750px) {
  .c-archive__wrap .c-article__category {
    width: fit-content;
  }
}

.c-bg-green-wave {
  margin-top: 100px;
  padding-top: 200px;
  padding-bottom: 100px;
  width: 1900px;
  max-width: 100%;
  overflow-y: hidden;
  background: url(../img/common/bg_wave-top.webp) no-repeat top center #e5f7ed;
  background-size: 1900px 100px;
}
@media screen and (max-width: 1100px) {
  .c-bg-green-wave {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .c-bg-green-wave {
    margin-top: 30rem;
    padding: 20rem 4rem 10rem;
    background: url(../img/common/bg_wave-top--sp.webp) no-repeat top center #e5f7ed;
    background-size: contain;
  }
}

.c-bg-white-wave {
  padding-top: 200px;
  padding-bottom: 100px;
  width: 1900px;
  max-width: 100%;
  overflow-y: hidden;
  background: url(../img/common/bg_white-wave-top.webp) no-repeat top center;
  background-size: 1900px 100px;
}
@media screen and (max-width: 1100px) {
  .c-bg-white-wave {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .c-bg-white-wave {
    padding: 20rem 4rem 10rem;
    background: url(../img/common/bg_white-wave-top--sp.webp) no-repeat top center;
    background-size: contain;
  }
}

.c-table {
  font-size: 18px;
  border: 1px solid #999;
}
@media screen and (max-width: 750px) {
  .c-table {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.c-table tr:not(:first-of-type) th,
.c-table tr:not(:first-of-type) td {
  border-top: 1px solid #c8c8c8;
}

@media screen and (max-width: 750px) {
  .c-table tr {
    display: block;
  }
}

.c-table__th {
  text-align: center;
  background-color: #f2f2f2;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-table__th {
    display: block;
    width: 100%;
    font-size: 3.6rem;
    padding: 2rem 0;
  }
}

.c-table__td {
  padding: 20px;
  line-height: 1.7;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .c-table__td {
    display: block;
    width: 100%;
    font-size: 3.6rem;
    padding: 2rem;
  }
}

.c-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.c-dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.7;
  padding: 30px 20px;
  border: 1px solid #c2cbc6;
}
@media screen and (max-width: 750px) {
  .c-dt {
    font-size: 3.6rem;
    padding: 1rem;
  }
}

.c-dd {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .c-dd {
    font-size: 3.6rem;
  }
}

.c-dd-strong {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-dd-strong {
    font-size: 3.6rem;
  }
}

/********************************
layout 接頭辞はl-
*********************************/
.l-w1100 {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .l-w1100 {
    width: 100%;
  }
}

.l-w960 {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .l-w960 {
    width: 100%;
  }
}

.l-w750 {
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .l-w750 {
    width: 100%;
  }
}

.l-flex {
  display: flex;
}

.l-flex--pc {
  display: flex;
}
@media screen and (max-width: 750px) {
  .l-flex--pc {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .l-flex--sp {
    display: flex;
  }
}

.l-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.l-flex-wrap--pc {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .l-flex-wrap--pc {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .l-flex-wrap--sp {
    display: flex;
    flex-wrap: wrap;
  }
}

/********************************
WordPressネイティブなCSS＆プラグインのCSS
*********************************/
.wp-pagenavi {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 80px auto;
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  .wp-pagenavi {
    column-gap: 1rem;
    margin: 40px auto;
  }
}
@media screen and (max-width: 750px) {
  .wp-pagenavi {
    font-size: 3.6rem;
    margin: 4rem auto;
  }
}
.wp-pagenavi a {
  text-decoration: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  min-width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 0;
    width: 5rem;
    height: 5rem;
  }
}
.wp-pagenavi .current {
  background-color: #333;
  color: #fff;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover {
  background-color: #f2f2f2;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: inline-block;
  width: 13px;
  height: 12px;
}
.wp-pagenavi .previouspostslink {
  background: url(../img/common/ico_pagenavi-left.webp) no-repeat top left;
}
.wp-pagenavi .nextpostslink {
  background: url(../img/common/ico_pagenavi-right.webp) no-repeat top left;
}

.wpcf7-list-item {
  margin-left: 0;
}

/********************************
header
*********************************/
.header {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .header {
    padding: 10px 5px 0;
  }
}
@media screen and (max-width: 750px) {
  .header {
    padding: 2rem 4rem;
  }
}

.header.is-active {
  background-color: #00b050;
}
@media screen and (min-width: 751px) {
  .header.is-active {
    background-color: #fff;
  }
}

.header__lnav {
  width: 100%;
  display: flex;
  justify-content: end;
  margin: 15px 0;
}
@media screen and (max-width: 750px) {
  .header__lnav {
    display: none;
  }
}

.header__lnav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lnav-list__item a {
  text-decoration: none;
  background: url("../img/header/ico_list-arrow-right.webp") no-repeat left center/9px 13px;
  padding-left: 15px;
}

.lnav-list__item a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1100px) {
  .header__h1 {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .header__h1 {
    width: auto;
  }
}

.header__btn-menu {
  display: none;
  width: 9.9rem;
  height: 10.2rem;
  background: url("../img/header/menu-on.webp") no-repeat, url("../img/header/menu-close.webp") no-repeat;
  background-size: contain, 0 0;
}
@media screen and (max-width: 750px) {
  .header__btn-menu {
    display: block;
  }
}

.header__btn-menu.is-active {
  background: url("../img/header/menu-on.webp") no-repeat, url("../img/header/menu-close.webp") no-repeat;
  background-size: 0 0, contain;
}

@media screen and (max-width: 1100px) {
  .header__gnav {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .header__gnav {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .gnav-list__item {
    width: 14.2857142857%;
  }
}

.gnav-list__item a {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}
@media screen and (max-width: 1100px) {
  .gnav-list__item a {
    justify-content: center;
    padding: 0;
  }
}

.gnav-list__item a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #00b050;
}

.header__megamenu-wrap {
  width: 100%;
  position: relative;
}

.header__megamenu-list {
  display: none;
  position: absolute;
}

.header__megamenu-list.is-active {
  display: block;
}

.header__megamenu-list--01 {
  left: 428px;
}
@media screen and (max-width: 1100px) {
  .header__megamenu-list--01 {
    left: 14.2857142857%;
  }
}

.header__megamenu-list--02 {
  left: 532px;
}
@media screen and (max-width: 1100px) {
  .header__megamenu-list--02 {
    left: 28.5714285714%;
  }
}

.header__megamenu-list--03 {
  left: 652px;
}
@media screen and (max-width: 1100px) {
  .header__megamenu-list--03 {
    left: 42.8571428571%;
  }
}

.header__megamenu-list-item:not(:first-child) {
  border-top: 2px solid #cfcfcf;
}

.header__megamenu-list-item a {
  display: flex;
  height: 55px;
  width: 220px;
  padding: 0 44px;
  align-items: center;
  background: #fff url("../img/header/ico_megamenu-arrow.webp") no-repeat 15px 24px/7px 11px;
}

.header__megamenu-list-item a:hover {
  text-decoration: none;
  background-color: #e5f7ed;
}

.header__gnav-sp {
  display: none;
  position: absolute;
  top: 14.1rem;
  left: 0;
  width: 100%;
  padding: 0 4rem 3rem;
  background-color: #00b050;
}

.header__gnav-sp.is-active {
  display: block;
  z-index: 10;
}
@media screen and (min-width: 751px) {
  .header__gnav-sp.is-active {
    display: none;
  }
}

.gnav-sp-list__item {
  padding: 2.5rem 0;
  border-top: 2px solid #fff;
  position: relative;
}

.gnav-sp-list__item a,
.gnav-sp-list__item .txt {
  font-size: 4rem;
  color: #fff;
}

.gnav-sp-list__item .txt {
  margin-right: 4rem;
}

.gnav-sp-list__item--sns {
  display: flex;
  align-items: center;
}

.gnav-sp-list__item--sns a + a {
  margin-left: 3rem;
}

.gnav-sp-list__btn {
  width: 3.5rem;
  height: 2.4rem;
  background: url("../img/header/ico_list-arrow-down.webp") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 3.6rem;
  right: 6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gnav-sp-list__btn.is-active {
  transform: rotate(180deg);
}

.gnav-sp-sublist {
  display: none;
  margin-top: 1.5rem;
  padding: 5rem 4rem;
  background-color: #e5f7ed;
  margin-left: -4rem;
  margin-right: -4rem;
  width: calc(100% + 8rem);
}

.gnav-sp-list__item.is-active .gnav-sp-sublist {
  display: block;
}

.gnav-sp-list__item:has(.is-active) {
  padding-bottom: 0;
}

.gnav-sp-list__item:has(.is-active) + * {
  border-top: none;
}

.gnav-sp-sublist__item {
  padding-left: 5rem;
}

.gnav-sp-sublist__item + * {
  margin-top: 5rem;
}

.gnav-sp-sublist__item a {
  font-size: 3.2rem;
  font-weight: normal;
  color: #333;
  padding-left: 2.5rem;
  background: url("../img/header/ico_list-arrow-right.webp") no-repeat left center;
}

/********************************
main 
*********************************/
/********************************
footer 全ページ共通部品があればこちらに入れる
*********************************/
.section__info {
  width: 1900px;
  height: 676px;
  max-width: 100%;
  overflow-y: hidden;
  background: url(../img/footer/info/bg_info.webp) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .section__info {
    width: 100%;
    height: auto;
    padding: 10rem 0;
    background-size: cover;
  }
}
.section__info .info__inner {
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .section__info .info__inner {
    gap: 10px;
  }
}
@media screen and (max-width: 750px) {
  .section__info .info__inner {
    flex-direction: column;
    height: auto;
    gap: 12rem;
  }
}
.section__info .info__item {
  width: 520px;
  height: 480px;
  background-color: #fff;
  padding: 60px 0;
}
@media screen and (max-width: 750px) {
  .section__info .info__item {
    width: 100%;
    height: auto;
    padding: 7rem 4rem 11rem;
  }
}
.section__info .info__h3-group {
  text-align: center;
}
.section__info .info__h3 {
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .section__info .info__h3 {
    font-size: 6rem;
  }
}
.section__info .info__small {
  margin-top: 5px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 750px) {
  .section__info .info__small {
    margin-top: 3.5rem;
  }
}
.section__info .info__small::before,
.section__info .info__small::after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  background-color: #58c17e;
}
@media screen and (max-width: 750px) {
  .section__info .info__small::before,
  .section__info .info__small::after {
    width: 100%;
    height: 3px;
  }
}
.section__info .info__small span {
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.1em;
  font-size: 24px;
  color: #58c17e;
}
@media screen and (max-width: 750px) {
  .section__info .info__small span {
    font-size: 3.6rem;
  }
}
.section__info .info__txt {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .section__info .info__txt {
    margin-top: 12rem;
    font-size: 3.6rem;
  }
}
.section__info .c-link-btn {
  margin-top: 60px;
}

.section__access {
  margin-top: 80px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .section__access {
    margin-top: 16rem;
    flex-direction: column;
  }
}
.section__access .access__txt-wrap {
  width: 380px;
}
@media screen and (max-width: 1100px) {
  .section__access .access__txt-wrap {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .section__access .access__txt-wrap {
    width: 100%;
    padding: 0 4rem;
  }
}
.section__access .access__txt-lead {
  text-align: center;
  font-size: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .section__access .access__txt-lead {
    text-align: left;
    font-size: 4.3rem;
  }
}
.section__access .access__txt {
  text-align: center;
  margin-top: 70px;
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .section__access .access__txt {
    text-align: left;
    margin-top: 3rem;
    font-size: 3.3rem;
  }
}
.section__access .access__map {
  width: 690px;
  height: 480px;
}
@media screen and (max-width: 1100px) {
  .section__access .access__map {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .section__access .access__map {
    margin-top: 5rem;
    width: 100%;
  }
}

.footer {
  margin-top: 110px;
  padding-top: 70px;
  background-color: #ccefdc;
}
@media screen and (max-width: 750px) {
  .footer {
    margin-top: 0;
    padding-top: 15rem;
  }
}

.footer__inner {
  padding-bottom: 80px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .footer__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 750px) {
  .footer__inner {
    flex-direction: column-reverse;
    padding: 0 4rem 12rem;
    gap: 15.5rem;
  }
}

.footer__address-h3 {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .footer__address-h3 img {
    width: 47rem;
  }
}

.footer__address-txt {
  margin-top: 15px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .footer__address-txt {
    margin-top: 4rem;
    font-size: 3.2rem;
  }
}

.footer__nav {
  width: 710px;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .footer__nav--pc {
    width: auto;
    gap: 40px;
  }
}
@media screen and (max-width: 750px) {
  .footer__nav--pc {
    display: none;
  }
}

.footer__nav--sp {
  display: none;
  width: 100%;
  justify-content: space-between;
}
.footer__nav--sp .footer__nav-first,
.footer__nav--sp .footer__nav-second {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .footer__nav--sp {
    display: flex;
  }
}

.footer__nav-group + * {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .footer__nav-group + * {
    margin-top: 8rem;
  }
}

.footer__nav-link {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .footer__nav-link {
    font-size: 4rem;
  }
}

.footer__nav-list {
  margin-top: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 750px) {
  .footer__nav-list {
    margin-top: 4rem;
    padding-left: 2rem;
  }
}

.footer__list-item + * {
  margin-top: 22px;
}
@media screen and (max-width: 750px) {
  .footer__list-item + * {
    margin-top: 5rem;
  }
}

.footer__list-item a {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 750px) {
  .footer__list-item a {
    font-size: 3.2rem;
    gap: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 750px) {
  .footer__nav-list--news .footer__list-item a {
    display: inline-block;
    width: calc(100% - 1.8rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.footer__list-item a::before {
  content: "";
  width: 7px;
  height: 11px;
  display: block;
  background: url("../img/footer/ico_footer-arrow.webp") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .footer__list-item a::before {
    width: 1.05rem;
    height: 1.65rem;
  }
}

.footer__nav-list--news .footer__list-item a::before {
  display: inline-block;
  margin-right: 0.7rem;
}

.footer__copyright {
  background-color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    padding: 4rem 0;
  }
}

.footer__copyright-txt {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .footer__copyright-txt {
    font-size: 2.8rem;
  }
}

/********************************
home トップページ
*********************************/
.home .section__news {
  margin-top: 75px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .home .section__news {
    padding: 0 40px;
  }
}
@media screen and (max-width: 750px) {
  .home .section__news {
    position: relative;
    padding: 0 4rem;
    margin-top: 16rem;
  }
}
.home .section__news .news__h3 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__h3 {
    margin: 0 auto;
    width: fit-content;
  }
}
.home .section__news .news__small {
  margin-top: 0;
}
.home .section__news .news__link {
  display: flex;
  background: #ccefdc url("../img/home/ico_arrow-only-green.webp") no-repeat 12px center/10px 14px;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 35px;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__link {
    position: absolute;
    bottom: -15rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: 40rem;
    padding: 2.5rem 5rem;
    height: 3rem;
    border-radius: 5rem;
    background: #ccefdc url("../img/home/ico_arrow-only-green.webp") no-repeat 2rem center/1.5rem 2.1rem;
  }
}
.home .section__news .news__link:hover {
  text-decoration: none;
  background-color: #e5f7ed;
}
.home .section__news .news__list {
  margin-top: 45px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__list {
    margin-top: 11rem;
  }
}
.home .section__news .news__list-item {
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__list-item {
    flex-wrap: wrap;
  }
}
.home .section__news .news__list-item + * {
  margin-top: 15px;
}
.home .section__news .news__meta {
  display: flex;
  align-items: center;
}
.home .section__news .news__meta-date {
  font-family: "Quicksand", sans-serif;
  color: #999;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__meta-date {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .home .section__news .news__meta-catwrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.home .section__news .news__meta-category {
  width: 130px;
  height: 30px;
  margin-left: 16px;
  font-size: 14px;
  background-color: #00b050;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__meta-category {
    font-size: 2.5rem;
    width: fit-content;
    height: auto;
    padding: 1rem 2rem;
  }
}
.home .section__news .news__meta-category + .news__meta-category {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__meta-category + .news__meta-category {
    margin-top: 0;
  }
}
.home .section__news .news__title {
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .home .section__news .news__title {
    width: 100%;
    margin-left: 0;
    margin-top: 2.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.home .section__about .about__txt {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .home .section__about .about__txt {
    margin-top: 12rem;
  }
}
.home .section__about .about__txt + * {
  margin-top: 65px;
}
@media screen and (max-width: 750px) {
  .home .section__about .about__txt + * {
    margin-top: 12rem;
  }
}
.home .section__activity .activity__img-wrap {
  margin-top: 60px;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 750px) {
  .home .section__activity .activity__img-wrap {
    margin-top: 12rem;
    flex-direction: column;
    align-items: center;
    gap: 12rem;
  }
}
.home .section__activity .activity__img-link--01,
.home .section__activity .activity__img-link--03 {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .home .section__activity .activity__img {
    width: 60rem;
  }
}
@media screen and (max-width: 750px) {
  .home .section__products .c-h3-group {
    width: calc(100% - 8rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.home .section__products .products__txt {
  width: 620px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .home .section__products .products__txt {
    width: 100%;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 750px) {
  .home .section__products .products__txt br {
    display: none;
  }
}
.home .section__products .products__slider {
  width: 950px;
  margin: 60px auto 0;
}
@media screen and (max-width: 750px) {
  .home .section__products .products__slider {
    width: 100%;
    margin-top: 12rem;
  }
}
.home .section__products .products__slide {
  width: 202px !important;
  margin: 0 22.5px;
}
.home .section__products .slick-prev,
.home .section__products .slick-next {
  width: 42px;
  height: 42px;
  background: url("../img/home/product/ico_arrow-left.webp") no-repeat center;
  background-size: contain;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.home .section__products .slick-prev {
  left: -75px;
}
@media screen and (max-width: 750px) {
  .home .section__products .slick-prev {
    display: none;
  }
}
.home .section__products .slick-next {
  right: -75px;
  background-image: url("../img/home/product/ico_arrow-right.webp");
}
@media screen and (max-width: 750px) {
  .home .section__products .slick-next {
    display: none;
  }
}
.home .section__products .slick-prev:before,
.home .section__products .slick-next:before {
  content: "";
}
@media screen and (max-width: 750px) {
  .home .section__products .slick-prev:before,
  .home .section__products .slick-next:before {
    display: none;
  }
}
.home .section__products .slick-dots {
  bottom: -70px;
}
.home .section__products .slick-dots li button:before {
  color: #7fd7a7 !important;
  opacity: 1 !important;
}
.home .section__products .slick-dots .slick-active button:before {
  color: #00b050 !important;
  opacity: 1 !important;
}
.home .section__products .c-link-btn {
  margin-top: 110px;
}
@media screen and (max-width: 750px) {
  .home .section__products .c-link-btn {
    margin-top: 15rem;
    width: calc(100% - 8rem);
  }
}

/********************************
about 法人概要
*********************************/
.page-about .about__h2 {
  background: url(../img/about/bg_h2-about.webp) no-repeat center/cover;
}
@media screen and (max-width: 750px) {
  .page-about .section__idea {
    padding: 0 4rem;
  }
}
.page-about .idea__lead-txt,
.page-about .idea__txt {
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .page-about .idea__lead-txt,
  .page-about .idea__txt {
    font-size: 3.5rem;
  }
}
.page-about .idea__strong {
  border-bottom: 10px solid #e5f7ed;
}
@media screen and (max-width: 750px) {
  .page-about .idea__strong {
    line-height: 1.7;
  }
}
.page-about .idea__txt {
  margin-top: 90px;
}
.page-about .idea__list {
  margin: 55px auto 0;
  width: fit-content;
}
.page-about .idea__list-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-about .idea__list-item + * {
  margin-top: 30px;
}
.page-about .idea__list-num {
  display: flex;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  width: 60px;
  height: 60px;
  background-color: #00b050;
  border-radius: 30px;
}
.page-about .idea__list-num span {
  margin-top: 8px;
}
.page-about .idea__list-txt {
  font-size: 24px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .page-about .idea__list-txt {
    font-size: 2.5rem;
  }
}
.page-about .greeting__inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .page-about .greeting__inner {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.page-about .greeting__txt-wrap {
  width: 480px;
}
@media screen and (max-width: 1100px) {
  .page-about .greeting__txt-wrap {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .page-about .greeting__txt-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-about .greeting__small,
.page-about .greeting__name {
  display: block;
}
@media screen and (max-width: 750px) {
  .page-about .greeting__small {
    font-size: 2.5rem;
  }
}
.page-about .greeting__name {
  margin-top: 20px;
  font-size: 32px;
}
@media screen and (max-width: 750px) {
  .page-about .greeting__name {
    font-size: 3.6rem;
  }
}
.page-about .greeting__txt {
  margin-top: 50px;
}
.page-about .section__service {
  padding-top: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .page-about .section__service {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.page-about .service__txt + * {
  margin-top: 90px;
}
@media screen and (max-width: 750px) {
  .page-about .service__txt + * {
    margin-top: 9rem;
  }
}
.page-about .service__fig-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-about .service__fig-img + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-about .service__fig-img + * {
    margin-top: 8rem;
  }
}
.page-about .service__item {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .page-about .service__item {
    width: 100%;
  }
}
.page-about .service__item + * {
  margin-top: 85px;
}
@media screen and (max-width: 750px) {
  .page-about .service__item + * {
    margin-top: 8.5rem;
  }
}
.page-about .service__item .c-link-btn {
  margin-top: 55px;
}
@media screen and (max-width: 750px) {
  .page-about .service__item .c-link-btn {
    margin-top: 3rem;
  }
}
.page-about .service__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .page-about .service__wrap {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.page-about .service__wrap--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .page-about .service__wrap--reverse {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.page-about .service__table-wrap {
  width: 480px;
}
@media screen and (max-width: 1100px) {
  .page-about .service__table-wrap {
    width: 100%;
    max-width: 750px;
  }
}
@media screen and (max-width: 750px) {
  .page-about .service__table-wrap {
    max-width: none;
  }
}
.page-about .service__table {
  width: 100%;
}
.page-about .service__table th {
  width: 170px;
}
@media screen and (max-width: 750px) {
  .page-about .service__table th {
    width: 100%;
  }
}
.page-about .service__table--th95 th {
  width: 95px;
}
@media screen and (max-width: 750px) {
  .page-about .service__table--th95 th {
    width: 100%;
  }
}
.page-about .service__dl-fukinotou {
  width: 750px;
  gap: 20px 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .page-about .service__dl-fukinotou {
    width: 100%;
  }
}
.page-about .service__dl-fukinotou dt {
  width: 190px;
  height: 75px;
}
@media screen and (max-width: 750px) {
  .page-about .service__dl-fukinotou dt {
    width: fit-content;
    height: auto;
  }
}
.page-about .service__dl-fukinotou dd {
  width: 540px;
}
@media screen and (max-width: 1100px) {
  .page-about .service__dl-fukinotou dd {
    width: 100%;
  }
}
.page-about .financial__item {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .page-about .financial__item {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .page-about .financial__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-about .financial__item + * {
  margin-top: 80px;
}
.page-about .financial__table {
  width: 620px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-about .financial__table {
    width: 100%;
  }
}
.page-about .financial__table + * {
  margin-top: 30px;
}
.page-about .financial__dl {
  width: 620px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-about .financial__dl {
    width: 100%;
  }
}
.page-about .financial__dl dt {
  width: 135px;
  height: 55px;
}
@media screen and (max-width: 750px) {
  .page-about .financial__dl dt {
    width: fit-content;
    height: auto;
  }
}
.page-about .financial__dl + .financial__table {
  margin-top: 30px;
}
.page-about .financial__link-list {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .page-about .financial__link-list {
    font-size: 3.6rem;
  }
}
.page-about .financial__link-list + * {
  margin-top: 80px;
}
.page-about .financial__link-item {
  text-align: center;
}
.page-about .financial__link-item + * {
  margin-top: 15px;
}
.page-about .history__table {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-about .history__table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .page-about .history__table tr {
    display: block;
  }
}
.page-about .history__th,
.page-about .history__td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 750px) {
  .page-about .history__th,
  .page-about .history__td {
    font-size: 3.6rem;
    display: block;
    border-bottom: none;
  }
}
.page-about .history__th {
  text-align: right;
  width: 180px;
}
@media screen and (max-width: 750px) {
  .page-about .history__th {
    text-align: left;
    width: 100%;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #333;
  }
}
.page-about .history__td {
  padding-left: 50px;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .page-about .history__td {
    width: 100%;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  }
}

/********************************
activity 活動の様子
*********************************/
.page-activity .activity__h2 {
  background: url(../img/activity/bg_h2-activities.webp) no-repeat center/cover;
}
@media screen and (max-width: 1100px) {
  .page-activity .section__daytime {
    padding: 0 40px;
  }
}
@media screen and (max-width: 750px) {
  .page-activity .section__daytime {
    padding: 0 4rem;
  }
}
.page-activity .daytime__lead {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__lead {
    font-size: 3.6rem;
  }
}
.page-activity .daytime__lead + * {
  margin-top: 80px;
}
.page-activity .daytime__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .page-activity .daytime__item {
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__item {
    flex-direction: column;
    align-items: center;
  }
}
.page-activity .daytime__item + * {
  margin-top: 80px;
}
.page-activity .daytime__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__item--reverse {
    flex-direction: column;
    align-items: center;
  }
}
.page-activity .daytime__img {
  width: 317px;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__img {
    width: 100%;
  }
}
.page-activity .daytime__txt-wrap {
  width: 375px;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__txt-wrap {
    width: 100%;
  }
}
.page-activity .daytime__h5 {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__h5 {
    font-size: 3.6rem;
  }
}
.page-activity .daytime__h5 + * {
  margin-top: 30px;
}
.page-activity .daytime__txt {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .page-activity .daytime__txt {
    font-size: 3.6rem;
  }
}
.page-activity .schedule__th,
.page-activity .schedule__td {
  font-size: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px dotted #00b050;
}
@media screen and (max-width: 750px) {
  .page-activity .schedule__th,
  .page-activity .schedule__td {
    font-size: 3.6rem;
    padding: 2rem;
  }
}
.page-activity .schedule__table tr:last-of-type th,
.page-activity .schedule__table tr:last-of-type td {
  border-bottom: 2px dotted #00b050;
}
.page-activity .schedule__th {
  width: 130px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .page-activity .schedule__th {
    width: 13rem;
  }
}
.page-activity .schedule__td {
  padding-left: 70px;
}
@media screen and (max-width: 750px) {
  .page-activity .schedule__td {
    padding-left: 3rem;
  }
}
.page-activity .season__lead {
  font-size: 18px;
  line-height: 1.5;
  width: fit-content;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .page-activity .season__lead {
    font-size: 3.6rem;
    max-width: 100%;
  }
}
.page-activity .season__lead + * {
  margin-top: 80px;
}
.page-activity .season__img {
  display: block;
  width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.page-activity .season__img + * {
  margin-top: 80px;
}
.page-activity .c-article__wrap + * {
  margin-top: 80px;
}

/********************************
products 販売商品
*********************************/
.post-type-archive-products .products__h2,
.tax-product_category .products__h2 {
  background: url(../img/products/bg_h2-product.webp) no-repeat center/cover;
}
.post-type-archive-products .products__list,
.tax-product_category .products__list {
  flex-wrap: wrap;
  gap: 50px 20px;
}
.post-type-archive-products .products__list-item,
.tax-product_category .products__list-item {
  width: 195px;
}
.post-type-archive-products .products__list-img,
.tax-product_category .products__list-img {
  width: 195px;
  height: 172px;
}
.post-type-archive-products .products__list-name,
.post-type-archive-products .products__list-price,
.tax-product_category .products__list-name,
.tax-product_category .products__list-price {
  font-size: 14px;
}
.post-type-archive-products .products__list-name,
.tax-product_category .products__list-name {
  margin-top: 20px;
}
.post-type-archive-products .products__list-price,
.tax-product_category .products__list-price {
  margin-top: 10px;
}
.post-type-archive-products .products__list-meta,
.tax-product_category .products__list-meta {
  margin-top: 15px;
  display: flex;
  column-gap: 10px;
}
.post-type-archive-products .products__list-tag,
.tax-product_category .products__list-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  min-width: 75px;
  padding: 7px 13px;
  border: 1px solid;
}
.post-type-archive-products .products__list-tag--cake,
.tax-product_category .products__list-tag--cake {
  color: #ed9dc6;
}
.post-type-archive-products .products__list-tag--cookie,
.tax-product_category .products__list-tag--cookie {
  color: #e46c0a;
}
.post-type-archive-products .products__list-tag--soy,
.tax-product_category .products__list-tag--soy {
  color: #f6c347;
}
.post-type-archive-products .products__list-tag--standard,
.tax-product_category .products__list-tag--standard {
  color: #00b050;
}
.post-type-archive-products .products__list-tag--limited,
.tax-product_category .products__list-tag--limited {
  color: #4f81bd;
}
.post-type-archive-products .products__list-tag--other,
.tax-product_category .products__list-tag--other {
  color: #a78cc6;
}

/********************************
contact お問い合わせ
*********************************/
.page-contact .section__contact {
  padding-bottom: 80px;
}
@media screen and (max-width: 1100px) {
  .page-contact .section__contact {
    padding: 0 40px;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .section__contact {
    padding: 0 4rem;
  }
}
.page-contact .contact__h2 {
  background: url(../img/contact/bg_h2-contact.webp) no-repeat center/cover;
}
.page-contact .contact__lead-txt {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__lead-txt {
    font-size: 3.6rem;
  }
}
.page-contact .contact__lead-txt + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__lead-txt + * {
    margin-top: 8rem;
  }
}
.page-contact .contact__table {
  width: 100%;
  border: 1px solid #ccc;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__table {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .contact__table tr {
    display: block;
  }
}
.page-contact .contact__table input {
  height: 40px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__table input {
    height: auto;
  }
}
.page-contact .contact__table input,
.page-contact .contact__table textarea {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ddd;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__table input,
  .page-contact .contact__table textarea {
    padding: 1rem;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 750px) {
  .page-contact .contact__table select {
    font-size: 3.6rem;
  }
}
.page-contact .contact__th,
.page-contact .contact__td {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__th,
  .page-contact .contact__td {
    font-size: 3.6rem;
    display: block;
  }
}
.page-contact .contact__table tr:not(:last-of-type) .contact__th,
.page-contact .contact__table tr:not(:last-of-type) .contact__td {
  border-bottom: 1px solid #ccc;
}
.page-contact .contact__th {
  width: 210px;
  padding: 30px 5px;
  background-color: #efefef;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__th {
    width: 100%;
    text-align: left;
    padding: 2rem;
  }
}
.page-contact .contact__td {
  padding: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .page-contact .contact__td {
    width: 100%;
    padding: 2rem;
  }
}
.page-contact .contact__td--address label {
  display: block;
}
.page-contact .contact__td--address label + * {
  margin-top: 15px;
}
.page-contact .contact__gender-inner {
  display: flex;
  align-items: center;
}
.page-contact .contact__gender-inner label {
  display: flex;
  align-items: center;
}
.page-contact .contact__gender-inner .wpcf7-list-item + * {
  margin-left: 20px;
}
.page-contact .contact__require {
  font-size: 12px;
  background-color: red;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
}
.page-contact .contact__last-name,
.page-contact .contact__first-name,
.page-contact .contact__last-kana-name,
.page-contact .contact__first-kana-name,
.page-contact .contact__address-city,
.page-contact .contact__address-city2,
.page-contact .contact__select {
  display: inline-block;
  margin-left: 10px;
}
.page-contact .contact__last-name,
.page-contact .contact__first-name,
.page-contact .contact__last-kana-name,
.page-contact .contact__first-kana-name {
  width: 190px;
}
.page-contact .contact__email,
.page-contact .contact__email-confirm {
  width: 100%;
  display: block;
}
.page-contact .contact__email-txt {
  margin-top: 25px;
}
.page-contact .contact__email-txt + * {
  display: block;
  margin-top: 25px;
}
.page-contact .contact__tel,
.page-contact .contact__postal-code {
  width: 230px;
}
.page-contact .contact__address-city,
.page-contact .contact__address-city2 {
  width: 400px;
}
.page-contact .contact__message {
  width: 100%;
  height: 240px;
}
.page-contact .contact__submit {
  margin-top: 80px;
}
.page-contact .contact__submit:hover {
  cursor: pointer;
}

/********************************
recruit 採用情報
*********************************/
.recruit__lead {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .recruit__lead {
    padding: 0 40px;
  }
}
@media screen and (max-width: 750px) {
  .recruit__lead {
    font-size: 3.6rem;
    padding: 0 4rem;
    line-height: 1.5;
  }
}

.recruit__lead + * {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  .recruit__lead + * {
    margin-top: 4rem;
  }
}

.recruit__contact {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #999;
  padding: 25px;
  flex-wrap: wrap;
  gap: 30px 50px;
  align-items: baseline;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .recruit__contact {
    width: auto;
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

.recruit__contact + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .recruit__contact + * {
    margin-top: 4rem;
  }
}

.recruit__h4 {
  width: 100%;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .recruit__h4 {
    font-size: 3.6rem;
  }
}

.recruit__address {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .recruit__address {
    font-size: 3.6rem;
  }
}

.recruit__strong {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .recruit__strong {
    font-size: 3.6rem;
  }
}

.recruit__tel {
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .recruit__tel {
    font-size: 3.6rem;
  }
}

.recruit__tel-small {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .recruit__tel-small {
    font-size: 2.5rem;
  }
}

.recruit__tel-time {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #333;
  color: #fff;
  margin-top: 10px;
  padding: 4px 0;
}
@media screen and (max-width: 750px) {
  .recruit__tel-time {
    font-size: 2.5rem;
    padding: 1rem 0;
  }
}

.recruit__category {
  display: flex;
  width: 120px;
  height: 65px;
  justify-content: center;
  align-items: center;
  border: 1px solid #cfcfcf;
}
@media screen and (max-width: 750px) {
  .recruit__category {
    font-size: 2.5rem;
    width: fit-content;
    height: 6.5rem;
    padding: 0 2rem;
  }
}

.post-type-archive-recruit .recruit__h2,
.tax-recruit_category .recruit__h2 {
  background: url(../img/recruit/bg_h2-recruit.webp) no-repeat center/cover;
}
.post-type-archive-recruit .recruit__list-item,
.tax-recruit_category .recruit__list-item {
  font-size: 18px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (max-width: 750px) {
  .post-type-archive-recruit .recruit__list-item,
  .tax-recruit_category .recruit__list-item {
    font-size: 3.6rem;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
@media screen and (max-width: 750px) {
  .post-type-archive-recruit .recruit__link,
  .tax-recruit_category .recruit__link {
    width: 100%;
  }
}

/********************************
news お知らせ
*********************************/
.archive .archive__h2 {
  background: url(../img/news/bg_h2-news.webp) no-repeat center/cover;
}
@media screen and (max-width: 750px) {
  .archive .archive__h3-wrap {
    padding: 0 4rem;
  }
}
.archive .archive__h3-wrap + * {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .archive .archive__h3-wrap + * {
    margin-top: 12rem;
  }
}
/********************************
404 お探しのページは見つかりませんでした
*********************************/
.error404 .error404__h2 {
  background: url(../img/404/bg_h2-404.webp) no-repeat center/cover;
}
.error404 .section__404 {
  padding-bottom: 100px;
}

/********************************
single-products 販売商品単独
*********************************/
.single-products .products__h2 {
  background: url(../img/products/bg_h2-product.webp) no-repeat center/cover;
}
.single-products .products__item-wrap {
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .single-products .products__item-wrap {
    flex-direction: column;
    gap: 3rem;
  }
}
.single-products .products__item-wrap + * {
  margin-top: 50px;
}
.single-products .products__img {
  width: 390px;
}
@media screen and (max-width: 750px) {
  .single-products .products__img {
    width: 100%;
  }
}
.single-products .products__info {
  width: 430px;
}
@media screen and (max-width: 750px) {
  .single-products .products__info {
    width: 100%;
  }
}
.single-products .products__info-meta {
  display: flex;
  column-gap: 10px;
}
.single-products .products__info-meta + * {
  margin-top: 60px;
}
.single-products .products__info-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  min-width: 75px;
  padding: 7px 13px;
  border: 1px solid;
}
.single-products .products__info-tag--cake {
  color: #ed9dc6;
}
.single-products .products__info-tag--cookie {
  color: #e46c0a;
}
.single-products .products__info-tag--soy {
  color: #f6c347;
}
.single-products .products__info-tag--standard {
  color: #00b050;
}
.single-products .products__info-tag--limited {
  color: #4f81bd;
}
.single-products .products__info-tag--other {
  color: #a78cc6;
}
.single-products .products__info-name {
  font-size: 32px;
}
.single-products .products__info-name + * {
  margin-top: 30px;
}
.single-products .products__info-price {
  font-size: 18px;
}
.single-products .products__info-price + * {
  margin-top: 60px;
}
.single-products .products__info-desc {
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.single-products .products__intro + * {
  margin-top: 90px;
}
.single-products .products__intro-h4 {
  display: flex;
  align-items: center;
  font-size: 32px;
}
.single-products .products__intro-h4 + * {
  margin-top: 40px;
}
.single-products .products__intro-h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-top: 2px dotted #00b050;
}
.single-products .products__intro-h4-txt {
  white-space: nowrap;
  width: fit-content;
  padding: 0 10px 0 30px;
  background: url(../img/common/ico_h4-arrow.webp) no-repeat left 7px/18px 23px;
}
.single-products .products__intro-txt {
  font-size: 18px;
  line-height: 1.7;
}
.single-products .products__intro-txt img {
  display: block;
  margin-top: 20px;
}

/********************************
single-recruit 採用情報 単独
*********************************/
.single-recruit .recruit__h2 {
  background: url(../img/recruit/bg_h2-recruit.webp) no-repeat center/cover;
}
.single-recruit .recruit__meta-wrap {
  font-size: 18px;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__meta-wrap {
    font-size: 3.6rem;
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.single-recruit .recruit__meta-wrap + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__meta-wrap + * {
    margin-top: 4rem;
  }
}
.single-recruit .recruit__title {
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__title {
    font-size: 3.6rem;
    width: 100%;
  }
}
.single-recruit .recruit__table {
  width: 100%;
  border: 1px solid #ccc;
}
.single-recruit .recruit__table + * {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__table + * {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.single-recruit .recruit__th,
.single-recruit .recruit__td {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__th,
  .single-recruit .recruit__td {
    font-size: 3.6rem;
  }
}
.single-recruit .recruit__table tr:not(:last-of-type) .recruit__th,
.single-recruit .recruit__table tr:not(:last-of-type) .recruit__td {
  border-bottom: 1px solid #ccc;
}
.single-recruit .recruit__th {
  width: 210px;
  padding: 30px;
  background-color: #efefef;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__th {
    width: 100%;
    padding: 2rem;
    text-align: left;
  }
}
.single-recruit .recruit__td {
  padding: 20px;
  vertical-align: middle;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .single-recruit .recruit__td {
    width: 100%;
    padding: 2rem;
  }
}

/********************************
single お知らせ単独
*********************************/
.single-post .single__h2 {
  background: url(../img/single/bg_h2-single.webp) no-repeat center/cover;
}
.single-post .single__meta-wrap {
  align-items: center;
  gap: 20px;
}
.single-post .single__meta-wrap + * {
  margin-top: 30px;
}
.single-post .single__meta-category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  font-size: 14px;
  color: #fff;
  background-color: #00b050;
  flex-shrink: 0;
}
.single-post .single__meta-date {
  font-family: "Quicksand", sans-serif;
  display: block;
  color: #999;
}
.single-post .single__h4 {
  font-size: 24px;
  line-height: 1.7;
}
.single-post .single__h4 + * {
  margin-top: 80px;
}
.single-post .single__content {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .single-post .single__content {
    font-size: 3.6rem;
  }
}
.single-post .single__content + * {
  margin-top: 80px;
}
.single-post .single__content p + p {
  margin-top: 40px;
}/*# sourceMappingURL=style.css.map */