@charset "UTF-8";
/* 基本情報 */
/***************************************************************
基本
***************************************************************/
/*--------------------------------------------------------------
本体
--------------------------------------------------------------*/
body {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "UD Digi Kyokasho NP-B", "Rounded Mplus 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(http://fb-funabashi.com/image.php?id=29) center/cover no-repeat;
  -webkit-background-size: cover;
}

/*--------------------------------------------------------------
リンク
--------------------------------------------------------------*/
a, i {
  transition: 0.5s;
}

/*--------------------------------------------------------------
フェードイン
--------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/***************************************************************
ヘッダー
***************************************************************/
/*--------------------------------------------------------------
共通（z-index設定の為のposition: relative）
--------------------------------------------------------------*/
header #common {
  position: relative;
  z-index: 4;
  padding: 20px 0;
  background: #f0a607;
}

header #common h1 {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  color: #fff;
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
}

/*--------------------------------------------------------------
スマートフォン用
--------------------------------------------------------------*/
/* 固定
--------------------------------------------------------------*/
header #sp .fixation {
  position: fixed;
  width: 100%;
  max-width: 1200px;
  height: 100px;
  box-sizing: border-box;
  background: #fff;
  z-index: 4;
}

/* ロゴ（z-index設定の為のposition: relative）
--------------------------------------------------------------*/
header #sp .fixation .logo {
  position: relative;
  z-index: 4;
  background: #fff;
}

header #sp .fixation .logo h1 {
  width: 95%;
  height: 100px;
  margin: 0 auto;
  box-sizing: border-box;
}

header #sp .fixation .logo h1 a {
  text-decoration: none;
}

header #sp .fixation .logo h1 a img {
  position: absolute;
  top: 20px;
  left: 2.5%;
  display: inline-block;
  width: 300px;
}

/* ハンバーガーメニュー
--------------------------------------------------------------*/
/* 領域 */
.globalMenuSp {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-100%);
  transition: all 0.5s;
  width: 100%;
}

.globalMenuSp.active {
  -ms-transform: translateY(15%);
  -moz-transform: translateY(15%);
  -webkit-transform: translateY(15%);
  -o-transform: translateY(15%);
}

/* メニュー */
.globalMenuSp .menu ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background: #fff;
}

.globalMenuSp .menu ul li {
  font-size: 20px;
  letter-spacing: 4px;
  list-style-type: none;
  width: 100%;
  border-bottom: 1px solid #d3d3d3;
}

.globalMenuSp .menu ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.globalMenuSp .menu ul li a {
  display: block;
  box-shadow: 0 5px 20px -5px rgba(51, 51, 51, 0.1) inset, 0 -10px 20px -5px rgba(51, 51, 51, 0.2) inset;
  color: #424242;
  padding: 20px;
  text-decoration: none;
}

.globalMenuSp .menu ul li a i {
  float: right;
}

/* SNS */
.globalMenuSp .sns {
  padding: 50px 0;
  font-size: 0;
  text-align: center;
}

.globalMenuSp .sns a {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
}

.globalMenuSp .sns a img {
  display: inline-block;
  width: 50px;
}

/* トグル（タップ前）
--------------------------------------------------------------*/
.navToggle {
  display: block;
  position: absolute;
  /* bodyに対しての絶対位置指定 */
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 4;
  text-align: center;
}

.navToggle span {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 80px;
  border-bottom: solid 3px #424242;
  transition: 0.35s ease-in-out;
  left: 6px;
}

.navToggle span:nth-child(1) {
  top: 15px;
}

.navToggle span:nth-child(2) {
  top: 30px;
}

.navToggle span:nth-child(3) {
  top: 45px;
}

/* トグル（タップ後）
--------------------------------------------------------------*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 30px;
  left: 6px;
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
  top: 30px;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
パソコン用
--------------------------------------------------------------*/
/* 固定
--------------------------------------------------------------*/
header #pc .fixation {
  display: none;
}

/* テーブル
--------------------------------------------------------------*/
header #pc .fixation .table {
  display: none;
}

/* 左側
--------------------------------------------------------------*/
header #pc .fixation .table .left {
  display: none;
}

header #pc .fixation .table .left a {
  display: none;
}

header #pc .fixation .table .left a img {
  display: none;
}

/* 右側
--------------------------------------------------------------*/
header #pc .fixation .table .right {
  display: none;
}

/* SNS */
header #pc .fixation .table .right .sns {
  display: none;
}

header #pc .fixation .table .right .sns a {
  display: none;
}

header #pc .fixation .table .right .sns a:hover {
  display: none;
}

header #pc .fixation .table .right .sns a:nth-of-type(n+2) {
  display: none;
}

header #pc .fixation .table .right .sns a img {
  display: none;
}

/* ナビゲーション */
header #pc .fixation .table .right .nav {
  display: none;
}

header #pc .fixation .table .right .nav p {
  display: none;
}

header #pc .fixation .table .right .nav p:last-of-type {
  display: none;
}

header #pc .fixation .table .right .nav p a {
  display: none;
}

header #pc .fixation .table .right .nav p a:hover {
  display: none;
}

/***************************************************************
フッター
***************************************************************/
/*--------------------------------------------------------------
ページトップへ戻る
--------------------------------------------------------------*/
footer #return {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

footer #return p#pagetop {
  display: inline-block;
}

footer #return p#pagetop a {
  display: inline-block;
  text-decoration: none;
}

footer #return p#pagetop a i {
  display: inline-block;
  color: #d3d3d3;
  font-size: 100px;
}

/*--------------------------------------------------------------
コンテンツ
--------------------------------------------------------------*/
/* 線
--------------------------------------------------------------*/
footer #content {
  border-style: solid;
  border-color: #d3d3d3;
  border-width: 1px 0 0 0;
}

/* ナビゲーション
--------------------------------------------------------------*/
footer #content .content_1 {
  display: none;
}

footer #content .content_1 p {
  display: none;
}

footer #content .content_1 p:nth-of-type(n+2) {
  display: none;
}

footer #content .content_1 p a {
  display: none;
}

footer #content .content_1 p a:hover {
  display: none;
}

/* ロゴ&基本情報
--------------------------------------------------------------*/
footer #content .content_2 {
  display: block;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}

footer #content .content_2 .left {
  display: block;
  margin: 50px 0 0 0;
  text-align: center;
}

footer #content .content_2 .left img {
  display: inline-block;
  width: 300px;
}

footer #content .content_2 .right {
  display: block;
  width: 60%;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  footer #content .content_2 .right {
    display: block;
    width: 50%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
  }
}
footer #content .content_2 .right p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

footer #content .content_2 .right p i {
  display: inline-block;
  margin: 0 10px 0 0;
}

footer #content .content_2 .heart {
  display: block;
  margin: 50px 0 0 0;
  text-align: center;
}

footer #content .content_2 .heart img {
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

/*--------------------------------------------------------------
著作権
--------------------------------------------------------------*/
footer #copyright small {
  display: block;
  width: 95%;
  margin: 50px auto 20px auto;
  box-sizing: border-box;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  text-align: center;
}

/* イラスト */
/***************************************************************
相対位置
***************************************************************/
#wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* トップページ */
/***************************************************************
ヘッダー分の高さとフッターとの間の余白
***************************************************************/
/*--------------------------------------------------------------
余白
--------------------------------------------------------------*/
#toppage {
  padding: 100px 0 50px 0;
}

/***************************************************************
バナー
***************************************************************/
/*--------------------------------------------------------------
横幅
--------------------------------------------------------------*/
#toppage #banner {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  font-size: 0;
}

/*--------------------------------------------------------------
リスト
--------------------------------------------------------------*/
#toppage #banner article {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  margin: 50px 0 0 0;
  text-align: center;
}

#toppage #banner article:nth-of-type(n+3) {
  margin: 20px 0 0 0;
}

/*--------------------------------------------------------------
リンク
--------------------------------------------------------------*/
#toppage #banner article a {
  display: inline-block;
  text-decoration: none;
}

#toppage #banner article a:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
ぼかし
--------------------------------------------------------------*/
#toppage #banner article a span.frame {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
}

#toppage #banner article a span.frame::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 20px 10px #fff;
  border-radius: 100px;
  border-style: solid;
  border-color: rgba(255, 140, 0, 0.5);
  border-width: 5px;
}

/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
#toppage #banner article a span.frame img {
  display: inline-block;
  width: 100%;
  border-radius: 100px;
}

/*--------------------------------------------------------------
テキスト_1
--------------------------------------------------------------*/
#toppage #banner article a span.text_1 {
  display: block;
  margin: 10px 0 0 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
}

/*--------------------------------------------------------------
テキスト_2
--------------------------------------------------------------*/
#toppage #banner article a span.text_2 {
  display: block;
  color: #a9a9a9;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
  white-space: nowrap;
}

/***************************************************************
新着情報
***************************************************************/
/*--------------------------------------------------------------
テーブル
--------------------------------------------------------------*/
#toppage #news {
  display: block;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
左側
--------------------------------------------------------------*/
#toppage #news .left {
  display: block;
  padding: 50px 0 0 0;
}

/* 見出し
--------------------------------------------------------------*/
#toppage #news .left .subtitle h2 {
  padding: 0 0 10px 0;
  border-style: solid;
  border-color: #d3d3d3;
  border-width: 0 0 1px 0;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

/* 新着情報
--------------------------------------------------------------*/
#toppage #news .left .frame {
  margin: 20px 0 0 0;
  padding: 20px;
  border-style: solid;
  border-color: #424242;
  border-width: 1px;
}

#toppage #news .left .frame .region {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#toppage #news .left .frame .region ul {
  display: block;
  width: 95%;
  magrin: 0 auto 0 0;
  box-sizing: border-box;
}

#toppage #news .left .frame .region ul:nth-of-type(n+2) {
  margin: 10px auto 0 0;
}

#toppage #news .left .frame .region ul li:nth-of-type(1) {
  display: block;
  color: #a9a9a9;
  font-size: 20px;
  line-height: 30px;
}

#toppage #news .left .frame .region ul li:nth-of-type(2) {
  display: block;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

/* スクロールバー
--------------------------------------------------------------*/
#toppage #news .left div::-webkit-scrollbar {
  width: 12px;
}

#toppage #news .left div::-webkit-scrollbar-track {
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777;
}

#toppage #news .left div::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
  box-shadow: none;
}

/*--------------------------------------------------------------
右側
--------------------------------------------------------------*/
#toppage #news .right {
  display: block;
  padding: 50px 0 0 0;
}

#toppage #news .right a {
  display: block;
  text-decoration: none;
}

#toppage #news .right a:hover {
  opacity: 0.8;
}

#toppage #news .right a:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}

#toppage #news .right a span.image {
  display: block;
  padding: 10px;
  border-style: solid;
  border-color: rgba(255, 140, 0, 0.8);
  border-width: 5px;
  text-decoration: none;
  text-align: center;
}

#toppage #news .right a span.image img {
  display: inline-block;
  width: auto;
  height: 50px;
}

#toppage #news .right a span.text {
  display: block;
  margin: 10px 0 0 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
  text-align: center;
}

#toppage #news .right a span.text br {
  display: none;
}

/***************************************************************
強調バナー
***************************************************************/
/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
#toppage #emphasis-banner {
  width: 95%;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
  text-align: center;
}

#toppage #emphasis-banner p a img {
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

/***************************************************************
協賛企業　協力団体
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
.top-company {
  position: relative;
  border: solid 1px #000;
  background-color: #fff;
  width: 95%;
  margin: 75px auto 0 auto;
  box-sizing: border-box;
}

.top-company h2 {
  position: absolute;
  display: inline-block;
  top: -25px;
  left: 25px;
  padding: 10px 9px;
  background: #fff2cc;
  color: #4472c4;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

.top-company h2.group2022 {
  top: -35px;
}

/*--------------------------------------------------------------
リスト
--------------------------------------------------------------*/
.top-company .c_table {
  padding: 60px 20px 20px 20px;
}

.top-company .c_table a:hover {
  text-decoration: none;
}

.top-company .c_table a:hover img {
  opacity: 0.8;
}

.top-company .noimg {
  color: #000 !important;
  font-size: 14px;
}

/* 下層ページ */
/***************************************************************
ヘッダー分の高さとフッターとの間の余白
***************************************************************/
/*--------------------------------------------------------------
余白
--------------------------------------------------------------*/
#lower {
  padding: 100px 0 50px 0;
}

/***************************************************************
ビジュアル
***************************************************************/
/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
#lower #visual .frame img.sp {
  display: block;
  width: 100%;
}

#lower #visual .frame img.pc {
  display: none;
}

/***************************************************************
フードバンクとは
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #bank {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #bank .subtitle {
  text-align: center;
}

#lower #bank .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #bank .subtitle h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
コンテンツ_1
--------------------------------------------------------------*/
#lower #bank .content_1 {
  margin: 70px 0 0 0;
}

#lower #bank .content_1 .table {
  display: block;
  box-sizing: border-box;
}

#lower #bank .content_1 .table .left {
  display: block;
  box-sizing: border-box;
  text-align: center;
}

#lower #bank .content_1 .table .left p img {
  display: inline-block;
  width: 100%;
  max-width: 769px;
}

#lower #bank .content_1 .table .right {
  display: block;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #bank .content_1 .table .right p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  text-indent: 24px;
}

#lower #bank .content_1 .table .right p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
  padding: 0;
}

/***************************************************************
食品を集める
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #drive {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #drive .subtitle {
  text-align: center;
}

#lower #drive .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #drive .subtitle h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
コンテンツ_1
--------------------------------------------------------------*/
#lower #drive .content_1 {
  margin: 70px 0 0 0;
  box-sizing: border-box;
}

#lower #drive .content_1 article.item_1 h3 {
  color: #ff8c00;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #drive .content_1 article.item_1 p {
  margin: 20px 0 0 0;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 article.item_2 h3 {
  margin: 50px 0 0 0;
  color: #ff8c00;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #drive .content_1 article.item_2 ul {
  display: table;
  width: 100%;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #drive .content_1 article.item_2 ul:nth-of-type(n+2) {
  margin: 0;
}

#lower #drive .content_1 article.item_2 ul li:nth-of-type(1) {
  display: table-cell;
  width: 5%;
  vertical-align: top;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

#lower #drive .content_1 article.item_2 ul li:nth-of-type(2) {
  display: table-cell;
  width: 95%;
  vertical-align: top;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 article.item_2 p {
  margin: 20px 0 0 0;
  font-size: 20px;
  letter-spacing: 4px;
}

#lower #drive .content_1 article.item_2 p + ul {
  margin: 20px 0 0 0 !important;
}

#lower #drive .content_1 article.item_3 h3 {
  margin: 50px 0 0 0;
  color: #ff8c00;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #drive .content_1 article.item_3 h4 {
  margin: 20px 0 0 0;
  color: #ff8c00;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #drive .content_1 article.item_3 p {
  margin: 10px 0 0 0;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 article.item_3 ul {
  display: table;
  width: 100%;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #drive .content_1 article.item_3 ul li:nth-of-type(1) {
  display: table-cell;
  width: 5%;
  vertical-align: top;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

#lower #drive .content_1 article.item_3 ul li:nth-of-type(2) {
  display: table-cell;
  width: 95%;
  vertical-align: top;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 .drive_address {
  margin: 20px 0 0 0;
}

#lower #drive .content_1 .drive_address .info_t {
  display: block;
  box-sizing: border-box;
}

#lower #drive .content_1 .drive_address .info_t .info_l {
  display: block;
  margin: 10px 0 0 0;
}

#lower #drive .content_1 .drive_address .info_t .info_l p {
  margin: 0 !important;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 .drive_address .info_t .info_r {
  display: block;
  margin: 10px 0 0 0;
}

#lower #drive .content_1 .drive_address .info_t .info_r p {
  padding: 0 25%;
}

#lower #drive .content_1 .drive_address .info_t .info_r p img {
  display: block;
  width: 100%;
}

#lower #drive .content_1 .drive_address2 {
  padding: 0 2em;
}

#lower #drive .content_1 .drive_address2 p {
  padding-left: 1em;
  text-indent: -1em;
}

#lower #drive .content_1 .midashi h3 {
  margin: 50px 0 0 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #drive .content_1 .text {
  margin: 20px 0 0 0;
}

#lower #drive .content_1 .text p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #drive .content_1 .text p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

.info_r .cs {
  background: #fff;
  padding: 15% 3% !important;
  text-align: center;
}

/***************************************************************
食品を届ける
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #deliver {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #deliver .subtitle {
  text-align: center;
}

#lower #deliver .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #deliver .subtitle h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
コンテンツ_1
--------------------------------------------------------------*/
#lower #deliver .content_1 .table {
  display: block;
  box-sizing: border-box;
}

#lower #deliver .content_1 .table .left {
  display: block;
  margin: 70px 0 0 0;
}

#lower #deliver .content_1 .table .left .text p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #deliver .content_1 .table .left .text p:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}

#lower #deliver .content_1 .table .left .text .sodan h3 {
  display: inline-block;
  margin: 20px 0 0 0;
  border: solid 1px #000;
  padding: 10px;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #deliver .content_1 .table .left .text .sodan h4 {
  margin: 20px 0 0 0;
  box-sizing: border-box;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #deliver .content_1 .table .left .text .sodan p {
  margin: 10px 0 0 0;
  box-sizing: border-box;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #deliver .content_1 .table .left .text .sodan p a {
  color: #00bfff;
  text-decoration: underline;
}

#lower #deliver .content_1 .table .left .contact {
  display: block;
  margin-top: 20px;
  padding: 20px;
}

#lower #deliver .content_1 .table .left .contact .c_address {
  display: block;
  box-sizing: border-box;
}

#lower #deliver .content_1 .table .left .contact .c_address h3 {
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 1em;
  text-align: center;
}

#lower #deliver .content_1 .table .left .contact .c_address p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #deliver .content_1 .table .left .contact .c_address p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#lower #deliver .content_1 .table .left .contact .c_address p a {
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  text-decoration: underline;
}

#lower #deliver .content_1 .table .left .contact .c_address p a:hover {
  text-decoration: none;
}

#lower #deliver .content_1 .table .left .contact .c_img {
  display: table;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
}

#lower #deliver .content_1 .table .left .contact .c_img p {
  display: table-cell;
  width: 50%;
  vertical-align: top;
  box-sizing: border-box;
}

#lower #deliver .content_1 .table .left .contact .c_img p a {
  display: table;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

#lower #deliver .content_1 .table .left .contact .c_img p a span.icon {
  display: table-cell;
  width: 25%;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 40px;
  text-decoration: none;
}

#lower #deliver .content_1 .table .left .contact .c_img p:nth-of-type(1) a span.icon i {
  color: #ff0000;
}

#lower #deliver .content_1 .table .left .contact .c_img p:nth-of-type(2) a span.icon i {
  color: #008000;
}

#lower #deliver .content_1 .table .left .contact .c_img p a span.type {
  display: table-cell;
  width: 75%;
  vertical-align: middle;
  box-sizing: border-box;
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
}

#lower #deliver .content_1 .table .right {
  display: block;
  margin: 50px 0 0 0;
}

#lower #deliver .content_1 .table .right .image img {
  display: inline-block;
  width: 100%;
  max-width: 1108px;
}

/***************************************************************
私たちの思い
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #thought {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #thought .content_1 .orange h2 {
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

/*--------------------------------------------------------------
食が育む子どもの未来
--------------------------------------------------------------*/
#lower #thought .content_1 .orange {
  background: linear-gradient(to bottom, #FFF, #FFC778 30%, #F89174);
  padding: 10px 20px;
}

#lower #thought .content_1 .orange h3 {
  color: #424242;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 1em 0;
}

#lower #thought .content_1 .orange .o_main p {
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  margin-bottom: 1em;
}

#lower #thought .content_1 .orange .o_main p:nth-of-type(6) {
  margin-top: 1em;
}

#lower #thought .content_1 .orange .o_main ul li {
  list-style-type: none;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  padding-left: 1em;
  text-indent: -1em;
}

#lower #thought .content_1 .orange .o_main ul li:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

/*--------------------------------------------------------------
団体概要
--------------------------------------------------------------*/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #thought .content_1 .overview {
  position: relative;
  border: solid 1px #000;
  background-color: #fff2cc;
  width: 100%;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
}

#lower #thought .content_1 .overview h3 {
  position: absolute;
  display: inline-block;
  top: -20px;
  left: 25px;
  padding: 10px 9px;
  background: #fff;
  color: #424242;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4px;
  white-space: nowrap;
}

/*--------------------------------------------------------------
リスト
--------------------------------------------------------------*/
#lower #thought .content_1 .overview .c_table {
  padding: 30px 20px 20px 20px;
  text-align: left;
}

#lower #thought .content_1 .overview .c_table dl {
  margin-bottom: 1em;
}

#lower #thought .content_1 .overview .c_table dl dt {
  display: block;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
}

#lower #thought .content_1 .overview .c_table dl dd {
  display: block;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 4px;
}

#lower #thought .content_1 .overview .c_table dl:nth-of-type(6) {
  margin-bottom: 0;
}

/***************************************************************
お問い合わせ・アクセス
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #inquiry {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #inquiry .subtitle {
  text-align: center;
}

#lower #inquiry .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #inquiry .subtitle h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
内容
--------------------------------------------------------------*/
#lower #inquiry .contact h3 {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: bold;
  margin: 70px 0 40px 0;
}

#lower #inquiry .contact p {
  margin: 10px 0 0 0;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #inquiry .contact p span {
  margin-right: 1em;
}

#lower #inquiry .contact p a {
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  text-decoration: underline;
}

#lower #inquiry .contact p a:hover {
  text-decoration: none;
}

#lower #inquiry .access {
  margin: 40px 0 0 0;
}

#lower #inquiry .access p {
  margin: 10px 0 0 0;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  padding-left: 1em;
  text-indent: -1em;
}

#lower #inquiry .access p:nth-of-type(3) {
  margin: 50px 0 0 0;
}

#lower #inquiry .access p span {
  display: block;
}

#lower #inquiry .map {
  margin-top: 50px;
  width: 100%;
}

#lower #inquiry .map iframe {
  width: 100%;
}

.access-flow {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  margin-left: 1em;
}

.access-flow__content {
  margin: 0 0 10px 1em;
}

.access-flow__content:last-child {
  margin-bottom: 0;
}

.access-flow__list {
  list-style: none;
}

.access-flow__item {
  margin: 0 0 5px 1em;
  text-indent: -1em;
}

.access-flow__item:last-child {
  margin-bottom: 0;
}

.note {
  color: #f00 !important;
}

/*--------------------------------------------------------------
お問い合わせフォームにリンク
--------------------------------------------------------------*/
#lower #inquiry .formlink {
  display: block;
  width: 100%;
  background-color: #fff2cc;
  margin-top: 50px;
  padding: 20px;
  box-sizing: border-box;
}

#lower #inquiry .formlink .left {
  display: block;
}

#lower #inquiry .formlink .left p.midashi {
  color: #00bfff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
  padding-bottom: 20px;
  text-align: center;
}

#lower #inquiry .formlink .left p.text {
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #00bfff;
  text-align: center;
}

#lower #inquiry .formlink .left .tel {
  display: block;
  text-align: center;
}

#lower #inquiry .formlink .left .tel p {
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  margin-top: 10px;
}

#lower #inquiry .formlink .left .tel p.time {
  text-align: center;
}

#lower #inquiry .formlink .left .tel p:nth-of-type(1) {
  margin-top: 20px;
}

#lower #inquiry .formlink .left .tel p a {
  color: #00bfff;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 4px;
  text-decoration: none;
}

#lower #inquiry .formlink .left .tel p a:hover {
  text-decoration: none;
}

#lower #inquiry .formlink .left .tel p a i {
  margin-right: 0.5em;
}

#lower #inquiry .formlink .right {
  display: block;
  box-sizing: border-box;
}

#lower #inquiry .formlink .right .img {
  display: block;
  width: 75%;
  margin: 20px auto 0;
}

#lower #inquiry .formlink .right .img img {
  width: 100%;
}

#lower #inquiry .formlink .right p.web {
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  text-align: center;
  margin-top: 10px;
}

#lower #inquiry .formlink .right p.button {
  margin-top: 10px;
  text-align: center;
}

#lower #inquiry .formlink .right p.button a {
  display: block;
  color: #00bfff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
}

#lower #inquiry .formlink .right p.button a:hover {
  text-decoration: none;
}

#lower #inquiry .formlink .right p.button a i {
  margin-right: 1em;
}

#lower #inquiry .formlink .right p.privacy {
  margin-top: 10px;
  text-align: center;
}

#lower #inquiry .formlink .right p.privacy a {
  display: inline-block;
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
  text-decoration: underline;
}

/***************************************************************
ご支援・ご寄付のお願い
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #donation {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #donation .subtitle {
  text-align: center;
}

#lower #donation .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

/*--------------------------------------------------------------
ご支援のお願い
--------------------------------------------------------------*/
#lower #donation .content_1 .text p {
  margin: 50px 0 0 0;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
  text-align: center;
}

#lower #donation .content_1 .text p br {
  display: none;
}

/*--------------------------------------------------------------
賛助会員のお願い
--------------------------------------------------------------*/
#lower #donation .content_2 .komidashi p {
  margin: 20px 0 0 0;
  color: #336692;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #donation .content_2 .komidashi p i {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #336692;
  font-size: 30px;
  font-weight: bold;
}

#lower #donation .content_2 .text p {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #donation .content_2 .text p br {
  display: none;
}

#lower #donation .content_2 .enumeration {
  margin: 20px 0 0 0;
}

#lower #donation .content_2 .enumeration ul {
  display: table;
  width: 100%;
  box-sizing: border-box;
}

#lower #donation .content_2 .enumeration ul li:nth-of-type(1) {
  display: table-cell;
  width: 5%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

#lower #donation .content_2 .enumeration ul li:nth-of-type(2) {
  display: table-cell;
  width: 95%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

/*--------------------------------------------------------------
会費のお振込先
--------------------------------------------------------------*/
#lower #donation .content_3 .komidashi p {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #donation .content_3 .transfer .midashi p {
  display: inline-block;
  margin-bottom: 10px;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #donation .content_3 .transfer .table {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#lower #donation .content_3 .transfer .table .cell {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0 0 0;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(1) article {
  padding: 20px;
  background: #F3F3F3;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(1) article p {
  margin: 0 0 20px 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(1) article dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(1) article dl dt {
  display: table-cell;
  width: 30%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(1) article dl dd {
  display: table-cell;
  width: 70%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article {
  display: table;
  width: 100%;
  margin: 10px 0 0 0;
  padding: 20px 0;
  box-sizing: border-box;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p {
  display: table-cell;
  width: 50%;
  box-sizing: border-box;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p a {
  display: table;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p a span.icon {
  display: table-cell;
  width: 25%;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 40px;
  text-decoration: none;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p a span.icon i {
  color: #ff0000;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p:nth-of-type(2) a span.icon i {
  color: #008000;
}

#lower #donation .content_3 .transfer .table .cell:nth-of-type(2) article p a span.type {
  display: table-cell;
  width: 75%;
  vertical-align: middle;
  box-sizing: border-box;
  color: #00bfff;
  font-size: 20px;
  letter-spacing: 4px;
}

/*--------------------------------------------------------------
ご寄付のお願い
--------------------------------------------------------------*/
#lower #donation .content_4 .komidashi p {
  margin: 40px 0 0 0;
  color: #336692;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #donation .content_4 .komidashi p i {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #336692;
  font-size: 30px;
  font-weight: bold;
}

#lower #donation .content_4 .transfer .midashi p {
  display: inline-block;
  margin-bottom: 10px;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #donation .content_4 .transfer .table {
  display: block;
  box-sizing: border-box;
}

#lower #donation .content_4 .transfer .table .cell {
  display: block;
  margin: 20px 0 0 0;
}

#lower #donation .content_4 .transfer .table .cell article {
  padding: 20px;
  background: #F3F3F3;
}

#lower #donation .content_4 .transfer .table .cell article p {
  margin: 0 0 20px 0;
  color: #424242;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#lower #donation .content_4 .transfer .table .cell article dl {
  display: table;
  width: 100%;
  box-sizing: border-box;
}

#lower #donation .content_4 .transfer .table .cell article dl dt {
  display: table-cell;
  width: 30%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #donation .content_4 .transfer .table .cell article dl dd {
  display: table-cell;
  width: 70%;
  vertical-align: top;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #donation .content_4 .transfer .asterisk p {
  margin: 20px 0 0 0;
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

/***************************************************************
パントリーピックアップ
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#lower #activity {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 50px 0 0 0;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#lower #activity .subtitle {
  text-align: center;
}

#lower #activity .subtitle h2 {
  position: relative;
  display: inline-block;
  color: #424242;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 6px;
}

#lower #activity .subtitle h2::before {
  content: "";
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d3d3d3;
}

/*--------------------------------------------------------------
コンテンツ_1
--------------------------------------------------------------*/
#lower #activity .content_1 {
  margin: 70px 0 0 0;
}

#lower #activity .content_1 p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

/*--------------------------------------------------------------
コンテンツ_2
--------------------------------------------------------------*/
#lower #activity .content_2 {
  position: relative;
  margin: 20px 0 0 0;
  padding: 20px 0;
  background: #fff;
}

#lower #activity .content_2 p.border img.sp {
  display: block;
  width: 100%;
}

#lower #activity .content_2 p.border img.pc {
  display: none;
}

#lower #activity .content_2 .table {
  display: block;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

#lower #activity .content_2 .table .left {
  display: block;
  text-align: center;
}

#lower #activity .content_2 .table .left p.sp a img {
  display: inline-block;
  width: 100px;
}

#lower #activity .content_2 .table .left p img {
  display: none;
}

#lower #activity .content_2 .table .left p.pc {
  display: none;
}

#lower #activity .content_2 .table .center {
  display: block;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #activity .content_2 .table .center p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #activity .content_2 .table .center p span {
  display: block;
  margin: 0 0 20px 0;
  font-weight: bold;
}

#lower #activity .content_2 .table .center p br {
  display: none;
}

#lower #activity .content_2 .table .right {
  display: block;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #activity .content_2 .table .right p img {
  display: inline-block;
  width: 100%;
}

/*--------------------------------------------------------------
コンテンツ_3
--------------------------------------------------------------*/
#lower #activity .content_3 {
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#lower #activity .content_3 p {
  color: #424242;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 30px;
}

#lower #activity .content_3 p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}