@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

body.layout-lower
#visual {
  background: url("../../_images/cheering/visual.jpg?20251111") no-repeat;
  background-size: cover;
  background-position: center;
}

/* ****************************************************************************************************
   * そば文化力応援企業・団体
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.cheering {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}

.cheering .body {
  max-width: 1120px;
  padding: 0 20px;
}
.cheering .inner {
  margin-top: -30px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .inner {
    margin-top: 1em;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル画像
/* ------------------------------------------------------------------------------------------------- */

.cheering .title-area {
  background: url("../../_images/_common/title-back.png") no-repeat;
  width: 100%;
  height: 200px;
  background-size: 200px 200px;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cheering .title-area .title {
  font-size: 3.6rem;
  font-weight: 600;
}
.cheering .title-area small {
  font-size: 3.0rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .title-area {
    background: url("../../_images/_common/title-back.png") no-repeat;
    width: 100%;
    height: 100px;
    background-size: 100px 100px;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cheering .title-area .title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .cheering .title-area small {
    font-size: 2.2rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.cheering .lead {}
.cheering .lead p {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .lead p {
    text-align: left;
  }
}

/* ****************************************************************************************************
   * 「そば文化力応援企業・団体」としてご登録いただいた皆様と一緒に、
下記のネットワークを構築し、活用していきます。
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#network {
  padding-top: 0;
  padding-bottom: 100px;
}

#network .title-1 {
  text-align: center;
  color: var(--c-green);
  font-size: 3.0rem;
  font-weight: 600;
}

#network .box {
  max-width: 800px;
  margin: 30px auto 0;
  background: #fff;
  padding: 40px;
}

#network .box ul li {
  position: relative;
  font-size: 2.2rem;
  padding-left: 1.55em;
  font-weight: 600;
}

#network .box ul li::before {
  content: "";
  display: block;
  background: url("../../_images/about/philosophy/nav-icon-l.png") no-repeat;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 14px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #network .title-1 {
    text-align: center;
    color: var(--c-green);
    font-size: 2.0rem;
  }
  #network .box {
    max-width: 100%;
    margin: 1em auto 0;
    background: #fff;
    padding: 20px;
  }
  #network .box ul li {
    position: relative;
    font-size: 1.8rem;
    padding-left: 1.55em;
  }
  #network .box ul li::before {
    margin-top: 9px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン(緑)
/* ------------------------------------------------------------------------------------------------- */

.cheering .link-btn {
  margin-top: 40px;
  text-align: center;
}
.cheering .btn-1 {
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-green);
  padding: 0.5em 1.0em;
  transition: 0.6s;
  text-align: center;
  margin: 0 auto;
}
.cheering .btn-1::after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow-w-1.png") no-repeat;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.1s;
}
.cheering .btn-1:hover::after {
  right: 0.4em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .link-btn {
    margin-top: 1em;
    text-align: center;
  }
}

/* ****************************************************************************************************
   * 応援企業・団体
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#supporting {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--c-beige);
}

.cheering .content dl.organization-info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  border-bottom: 1px solid var(--c-l-ocher);
  background: #fffcf8;
}
.cheering .content dl dt {
  width: 30%;
  padding: 0.5em;
  border-top: 1px solid var(--c-l-ocher);
}
.cheering .content dl dd {
  width: 70%;
  padding: 0.5em;
  text-align: left;
  border-top: 1px solid var(--c-l-ocher);
}

.cheering .meta {}
.cheering .meta.layout-2 {
  justify-content: space-between;
  align-items: center;
}

/* ホームページボタン*/
.cheering .meta.layout-2 .btn-2 {
  display: inline-block;
  color: var(--c-green);
}
.cheering .meta.layout-2 .btn-2 span {
  position: relative;
  padding-right: 2.0em;
  font-weight: 600;
}
.cheering .meta.layout-2 .btn-2 span::after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow-g-1.png") no-repeat;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.1s;
}
.cheering .meta.layout-2 .btn-2:hover span::after {
  right: -0.2em;
}


/* ----------------------------------------------------------------------------------------------------
   * セクション
/* ------------------------------------------------------------------------------------------------- */

#supporting .title-area + section.item {
  margin-top: -30px;
}
.cheering section ~ section {
  padding-top: 50px;
}

.cheering section .title-2 {
  position: relative;
  font-size: 3.0rem;
  padding-left: 1.55em;
  font-weight: 600;
}
.cheering section .title-2::before {
  content: "";
  display: block;
  background: url("../../_images/_common/nav-icon-2.png") no-repeat;
  width: 24px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #supporting .title-area + section.item {
    margin-top: 1em;
  }
  .cheering section ~ section {
    padding-top: 40px;
  }
  
  .cheering section .title-2 {
    position: relative;
    font-size: 2.2rem;
    padding-left: 1.55em;
    font-weight: 600;
  }
  .cheering section .title-2::before {
    margin-top: 13px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.cheering .box {
  background: #fff;
  padding: 50px;
  margin-top: 20px;
}
.cheering .box .item ~ .item {
  margin-top: 40px;
}

.cheering .box .title {
  color: var(--c-green);
  font-size: 2.8rem;
  font-weight: 600;
}

.cheering .box .text {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .box {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
  }
  .cheering .box .title {
    color: var(--c-green);
    font-size: 2.0rem;
    font-weight: 600;
  }
  .cheering .box .text {
    margin-top: 0;
  }
}

.cheering .organization-item ~ .organization-item {
  padding-top: 60px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .organization-item ~ .organization-item {
    padding-top: 30px;
  }
}

/* ****************************************************************************************************
   * そば文化力応援企業・団体　登録フォーム
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#contact-form-2 {
  padding-bottom: 100px;
}
#contact-form-2 .inner {
  position: relative;
  background: #fff;
  padding: 40px 2em;
  margin-top: -30px;
  z-index: 1;
}

#contact-form-2 .column > .text {
  text-align: center;
}
#contact-form-2 .box {
  background: #ede7df;
  padding: 40px;
}

.cheering .box .text a {
  color: var(--c-green);
  text-decoration: underline;
}
.cheering .box .text a:hover {
  color: var(--c-green);
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #contact-form-2 .inner {
    position: relative;
    background: #fff;
    padding: 20px;
    margin-top: 1em;
    z-index: 1;
  }
  #contact-form-2 .column > .text {
    text-align: left;
  }
  #contact-form-2 .box {
    background: #ede7df;
    padding: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * テキスト
/* ------------------------------------------------------------------------------------------------- */

.cheering .text a {
  color: var(--c-green);
  text-decoration: underline;
}
.cheering .text a:hover {
  color: var(--c-green);
  text-decoration: none;
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.cheering .link-btn {
  margin-top: 40px;
  text-align: center;
}
.cheering .btn-1 {
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-green);
  padding: 0.5em 1.0em;
  transition: 0.6s;
  text-align: center;
  margin: 0 auto;
}
.cheering .btn-1::after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow-w-1.png") no-repeat;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.1s;
}
.cheering .btn-1:hover::after {
  right: 0.4em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .link-btn {
    margin-top: 1em;
    text-align: center;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 検索フォーム項目
/* ------------------------------------------------------------------------------------------------- */

/**
* 共通
*/
#main table {
  border-collapse: collapse;
  width: 100%;
}
#main table th {
  font-weight: normal;
  border-bottom: 1px solid #f4e9ce;
  vertical-align: top;
}
#main table th[scope="col"] {}
#main table th[scope="row"] {}
/**
* 項目名
*/
#main table th[scope="row"] span {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.2em 0.5em;
  border-radius: 30px;
}
#main table td {
  text-align: left;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
#main table tr ~ tr {
  margin-top: 20px;
}

#main table tr > th {
  margin-bottom: 5px;
  padding: 5px 10px 2px;
}

#main table tr > td {
  min-height: 40px;
}

}


#main label {
  vertical-align: middle;
  display: inline-block;
}
#main input[type="text"] {
  width: 100%;
  font: inherit;
}
#main input[name="namae"] {
}
#main input[name="kana"] {
}
#main input[type="email"],
#main input[type="email2"] {
}
#main input[name="zip"],
#main input[name="pref"] {
  width: 12em;
}
#main select {
  padding: 0.55em 0.75em 0.55em 0.55em;
  cursor: pointer;
  font: inherit;
  border: 1px solid #ccc;
  box-shadow: none;
  background: none;
  background: #fff;
}
#main textarea {
  max-width: 100%;
  width: 100%;
  background: #f2eee7;
  padding: 0.5em;
  border: none;
}



/* ----------------------------------------------------------------------------------------------------
   * テーブルレイアウト
/* ------------------------------------------------------------------------------------------------- */

#main #contact-form-2 .item {}

#main #contact-form-2 .item ~ .item {
  margin-top: 60px;
}

#main #contact-form-2 .item .title span.col-1 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.1em 0.5em;
  margin-right: 0.5em;
}

#main #contact-form-2 .item .text {
  font-size: 1.6rem;
  margin-top: 1em;
}

#main input {
  max-width: 100%;
  background: #f2eee7;
  padding: 0.5em;
  border: none;
}

#main .privacy-check {
  font-size: 1.6rem;
  text-align: center;
}
#main .privacy-check a {
  text-decoration: underline;
}
#main .privacy-check a:hover {
  text-decoration: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .item ~ .item {
    margin-top: 30px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 入力　確認　完了
/* ------------------------------------------------------------------------------------------------- */

#contact-form-2 .message {
  text-align: center;
  margin-top: -80px;
}

#main *[class*="mwblock-"],
#main *[class*="mwinline-"] {
  display: none;
}

#main .mw_wp_form_preview .mwblock-preview {
  display: block;
  margin-top: 40px;
}

#main .mw_wp_form_input .mwblock-input {
  display: block;
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#contact-form-2 .message {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 1em;
}
#main .mw_wp_form_preview .mwblock-preview {
  display: block;
  margin-top: 0;
}
#main .mw_wp_form_input .mwblock-input {
  display: block;
  margin-top: 0;
}

}

#main .mw_wp_form_preview .mwinline-preview {
  display: inline;
}

#main .mw_wp_form_input .mwinline-input {
  display: inline;
}


#main .mw_wp_form_input .mwblock-message a {
  color: #fe0002;
}
#main .mw_wp_form_input .mwblock-message a:hover {
  color: #fe0002;
  text-decoration: underline;
}

/**
* 必須
*/
#main span.hissu {
  background: #c43030;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.2em 1.0em;
  line-height: 1.4;
}
table.default tr.require > th:after {
  content: '必須';
  float: right;
  display: inline-block;
  vertical-align: middle;
  margin-right: .4em;
  font-size: 1.4rem;
  font-weight: 400;
  width: 3.5em;
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: .25em 0 .3em;
  background: #c43030;
  margin-top: .4em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main span.hissu {
    background: #c43030;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0.2em 1.0em;
    line-height: 1.4;
  }
  table.default tr.require > th:after {
    content: '必須';
    float: right;
    display: inline-block;
    vertical-align: middle;
    margin-right: -5px;
    font-size: 1.4rem;
    font-weight: 400;
    width: 3.5em;
    text-align: center;
    line-height: 1;
    color: #fff;
    padding: .25em 0 .3em;
    background: #c43030;
    margin-top: -2px;
  }
}

/* ****************************************************************************************************
   * フォームボタン
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 確認画面へ進む / 送信する
/* ------------------------------------------------------------------------------------------------- */

#main .form-button {
  text-align: center;
  margin-bottom: 1.5em;
  transition: 0.3s;
  display: flex;
  justify-content: center;
}
#main .form-button button {
  transition: 0.3s;
}

#main .form-button .btn-1 {
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-green);
  padding: 0.5em 1.0em;
  transition: 0.6s;
  text-align: center;
  cursor: pointer;
  margin: 0;
}
#main .form-button .btn-1::after {
  content: "";
  display: block;
  background: url("../../_images/_common/arrow-w-1.png") no-repeat;
  width: 20px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.1s;
}
#main .form-button .btn-1:hover {
  opacity: 0.7;
}

#main .form-button .btn-1 > input {
  background: none;
  padding: 0;
  border: 0;
  margin: 0 auto;
}
/* ローディング画像*/
div.wpcf7 .wpcf7-spinner {
  display: none;
}

#main .form-button .return.btn-1 {
  border: none;
  cursor: pointer;
  width: auto;
  background: none;
  color: #000;
  box-shadow: none;
}
#main .form-button .return.btn-1::after {
  display: none;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .form-button .btn-1 {
    width: auto;
    padding: 0 2.5em;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * ボタン（戻る）
/* ------------------------------------------------------------------------------------------------- */

.cheering .link-btn .btn-1.return {
  font-size: 1.6rem;
  width: 350px;
  padding: 25px 3em;
  font-weight: 900;
}
.cheering .link-btn .btn-1.return::after {
  border: 0px;
  border-bottom: solid 3px #fff;
  border-left: solid 3px #fff;
  left: 15px;
  right: auto;
  transition: 0.2s left;
}
.cheering .link-btn .btn-1.return:hover::after {
  left: 10px !important;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .cheering .link-btn .btn-1.return {
    font-size: 1.6rem;
    width: auto;
    padding: 20px 3em;
  }
}







