@charset "UTF-8";
/* 
//////////////////////////////////////////////////////////////////////////////

module.css
- サイトの基本設定・header・footer

//////////////////////////////////////////////////////////////////////////////
*/
/* site基本設定
===============================================
=============================================== */
body {
  min-width: 375px;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #1a1a1a;
  background-image: linear-gradient(170deg, #f7e6d7, #f7f7df 70%, #eefade);
}

_:lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

*:focus {
  outline: none;
}

input[type="button"], input[type="text"], input[type="email"], input[type="search"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="button"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

i {
  font-style: normal;
}

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

figure {
  margin: auto;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 375px;
  min-height: 100vh;
  padding-top: 60px;
}
@media screen and (min-width: 960px) {
  .container {
    padding-top: 120px;
  }
}

.contents {
  flex-grow: 1;
}

.inner {
  max-width: 100%;
  margin: auto;
  padding: 0 20px;
}

/* リンク 
============================== */
a {
  color: #8f6841;
}
a:hover {
  text-decoration: none;
}

/* header
===============================================
=============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  position: relative;
}
@media screen and (min-width: 960px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header-func {
  height: 60px;
}
@media screen and (min-width: 960px) {
  .header-func {
    height: 120px;
  }
}
.header-func_trigger {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1002;
  cursor: pointer;
  border: 1px solid #5f7c28;
  border-radius: 50%;
  transition: .5s;
}
@media screen and (min-width: 960px) {
  .header-func_trigger {
    display: none;
  }
}
.header-func_trigger span {
  position: absolute;
  right: 14px;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  background-color: #5f7c28;
  transition: all .3s;
}
.header-func_trigger span:nth-of-type(1) {
  top: 22px;
}
.header-func_trigger span:nth-of-type(2) {
  top: 28px;
}
.header-func_trigger.open {
  background: #fff !important;
}
.header-func_trigger.open span:nth-of-type(1) {
  transform: translateY(0px) rotate(25deg);
}
.header-func_trigger.open span:nth-of-type(2) {
  transform: translateY(-6px) rotate(-25deg);
}
.header-func_trigger.open .header-func_txt {
  font-size: 0;
}
.header-func_trigger.open .header-func_txt::before {
  font-size: 1.0rem;
  content: "close";
}
.header-func_txt {
  position: absolute;
  top: 32px;
  right: 17px;
  margin: 0;
  font-size: 1rem;
  color: #5f7c28;
  text-align: center;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0 60px 0 20px;
  background: #fff;
  border-radius: 0 0 60px 0;
}
@media screen and (min-width: 960px) {
  .header-logo {
    height: 120px;
    padding: 0 100px 0 20px;
    border-radius: 0 0 120px 0;
  }
}
@media screen and (min-width: 1400px) {
  .header-logo {
    padding: 0 120px 0 50px;
  }
}
.header-logo a {
  line-height: 1;
}
.header-logo img {
  display: inline-block;
  width: 150px;
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  .header-logo img {
    max-width: 204px;
    width: 204px;
  }
}
@media screen and (min-width: 960px) {
  .header.scrl {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 5px rgba(102, 102, 102, 0.1);
    transition: background-color .3s;
    backdrop-filter: blur(5px);
  }
}
@media screen and (min-width: 960px) {
  .header.scrl .header-func {
    height: 60px;
  }
}
.header.scrl .header-func_trigger {
  background: rgba(255, 255, 255, 0.5);
}
.header.scrl .header-logo {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 960px) {
  .header.scrl .header-logo {
    height: 60px;
    margin: 0;
    padding: 0 60px 0 20px;
    background: #fff;
    border-radius: 0 0 60px 0;
    box-shadow: none;
  }
}
.header.scrl .header-logo img {
  display: inline-block;
  width: 150px;
  vertical-align: middle;
}
.header.scrl .gnav-item {
  text-shadow: 0 0 5px #fff, 0 0 5px #fff;
}
@media screen and (min-width: 1400px) {
  .header.scrl .gnav-item_login {
    padding-right: 20px;
  }
}

/* ハンバーガーメニュー展開時の背景
 --------------------------------------------*/
.modal-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
}

/* グローバルナビ 
============================== */
.gnav {
  display: none;
  position: absolute;
  top: 80px;
  right: 10px;
  z-index: 1002;
  overflow-x: hidden;
  overflow-y: auto;
  width: 320px;
  margin: auto;
  padding: 60px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 960px) {
  .gnav {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    width: max-content;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
  }
}
.gnav-body {
  list-style: none;
  margin: auto;
  padding: 0;
  border-top: 1px solid #f0e6C7;
}
@media screen and (min-width: 960px) {
  .gnav-body {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: max-content;
    border: none;
  }
}
.gnav a {
  font-weight: bold;
  text-decoration: none;
  transition: .5s;
}
.gnav a:hover {
  color: #8f6841;
}
.gnav-item {
  position: relative;
}
.gnav-item a {
  position: relative;
  display: block;
  padding: 10px 20px 10px 38px;
  font-size: 1.8rem;
  color: #333;
  border-bottom: 1px solid #f0e6C7;
}
@media screen and (min-width: 960px) {
  .gnav-item a {
    padding: 10px 20px;
    font-size: 1.6rem;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .gnav-item a {
    padding: 10px 40px;
    font-size: 1.8rem;
  }
}
.gnav-item a::after {
  position: absolute;
  top: calc( 50% - 3px);
  left: 12px;
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  border-radius: 3px;
  background: #854d17;
  transition: .1s;
}
@media screen and (min-width: 960px) {
  .gnav-item a::after {
    display: none;
  }
}
.gnav-item_login {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .gnav-item_login {
    display: block;
    margin: 0;
    padding: 0 20px 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  .gnav-item_login {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .gnav-item_login {
    padding: 0 50px 0 40px;
  }
}
.gnav-item_login a {
  display: block;
  width: 160px;
}
.gnav-item_login a:hover {
  color: #5f7c28;
}
@media screen and (min-width: 960px) {
  .gnav-item_login a {
    width: 140px;
  }
}
@media screen and (min-width: 1400px) {
  .gnav-item_login a {
    width: 160px;
  }
}
@media screen and (min-width: 960px) {
  .gnav-item + .gnav-item::before {
    position: absolute;
    top: calc( 50% - 9px);
    left: 0;
    display: block;
    content: "";
    width: 1px;
    height: 18px;
    background: #666;
  }
}

/* footer
===============================================
=============================================== */
.footer {
  position: relative;
  padding: 120px 0 40px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), white 40px);
  text-align: center;
}
@media screen and (min-width: 960px) {
  .footer {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "footerlogo footerlogo" "footernav copyright";
    align-items: center;
    width: 100%;
    padding: 160px 50px 80px;
    text-align: left;
  }
}
.footer-logo {
  grid-area: footerlogo;
  margin: 0;
}
@media screen and (min-width: 960px) {
  .footer-logo {
    line-height: 1.5;
  }
}
.footer-logo a {
  line-height: 1;
}
.footer-logo img {
  width: 300px;
  height: auto;
}
.footer-nav {
  grid-area: footernav;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  margin-top: 40px;
  padding: 0 15%;
}
@media screen and (min-width: 960px) {
  .footer-nav {
    flex-wrap: nowrap;
    width: max-content;
    margin: 20px 0 0;
    padding: 0;
  }
}
.footer-nav_item {
  position: relative;
  width: 50%;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 960px) {
  .footer-nav_item {
    width: auto;
    border-bottom: none;
  }
}
.footer-nav_item:nth-child(-n+2) {
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 960px) {
  .footer-nav_item:nth-child(-n+2) {
    border-top: none;
  }
}
.footer-nav_item::after {
  position: absolute;
  top: calc( 50% - 9px);
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background: #666;
}
.footer-nav_item:first-child::before {
  position: absolute;
  top: calc( 50% - 9px);
  left: 0;
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background: #666;
}
@media screen and (max-width: 960px) {
  .footer-nav_item:first-child::before, .footer-nav_item:nth-child(even)::after {
    display: none;
  }
}
.footer-nav_item a {
  display: block;
  padding: 15px 0 14px;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .footer-nav_item a {
    padding: 10px 40px;
  }
}

/* コピーライト
============================== */
.copyright {
  grid-area: copyright;
  margin-top: 40px;
  font-size: 1.2rem;
  color: #666;
}
@media screen and (min-width: 960px) {
  .copyright {
    margin: 15px 0 0;
    text-align: right;
    font-size: 1.6rem;
  }
}

/* ページトップに戻る
============================== */
.page-top {
  position: absolute;
  right: 10px;
  top: -30px;
}
@media screen and (min-width: 960px) {
  .page-top {
    right: 50px;
  }
}
.page-top a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid #9dBa6e;
  border-radius: 50%;
}
.page-top a::after, .page-top a::before {
  position: absolute;
  display: block;
  content: "";
  background: #9dBa6e;
  transition: .1s;
}
.page-top a::after {
  right: calc( 50% - 4px);
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.page-top a::before {
  right: calc( 50% - 1px);
  top: 0;
  width: 1px;
  height: 15px;
}
.page-top a:hover::after {
  top: -16px;
}
.page-top a:hover::before {
  top: -12px;
  height: 27px;
}

/* contents
===============================================
=============================================== */
/* セクション
============================== */
.contents {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 60px 20px;
}
@media screen and (min-width: 960px) {
  .contents {
    padding: 80px 20px 120px;
  }
}

/* ページタイトル
============================== */
.page-title {
  overflow: hidden;
  margin: 60px 0 0 20px;
  padding: 20px 20px 20px 50px;
  background: #fff;
  border-radius: 100px 0 0 100px;
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}
@media screen and (min-width: 600px) {
  .page-title {
    margin: 60px 0 0 40px;
    padding: 30px 30px 30px 50px;
  }
}
@media screen and (min-width: 960px) {
  .page-title {
    margin: 80px 0 0 60px;
    padding: 36px 36px 36px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .page-title {
    margin-left: calc( (100vw - 1200px) /2);
    padding-left: 100px;
  }
}
.page-title_name {
  position: relative;
  margin: 0;
  padding: 0 0 8px 10px;
  font-size: 2.4rem;
  color: #8f6841;
}
@media screen and (min-width: 600px) {
  .page-title_name {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 960px) {
  .page-title_name {
    padding: 0 0 10px 10px;
    font-size: 4.8rem;
  }
}
.page-title_name::before, .page-title_name::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  height: 4px;
  background: rgba(157, 186, 110, 0.3);
  border-radius: 3px 0 0 3px;
}
.page-title_name::before {
  left: 0;
  width: 4px;
}
.page-title_name::after {
  left: 10px;
  width: calc( 100% + 50px);
}

/* パンくずリスト
============================== */
.breadcrumb {
  line-height: 1;
}
.breadcrumb a {
  color: #948038;
  text-decoration: none;
}
.breadcrumb_list {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 8px 0 0;
  padding: 0 0 0 10px;
  font-size: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (min-width: 960px) {
  .breadcrumb_list {
    margin-top: 13px;
  }
}
.breadcrumb_item {
  position: relative;
  flex-shrink: 0;
  width: max-content;
}
.breadcrumb_item + .breadcrumb_item::before {
  position: absolute;
  top: calc( 50% - 4px);
  left: -16px;
  display: block;
  content: "●";
  font-size: .8rem;
  color: rgba(148, 128, 56, 0.5);
}

.contents .breadcrumb {
  margin: 0 0 10px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}
.contents .breadcrumb_list {
  margin: 0;
  padding: 0;
}

/* 見出し
============================== */
.title01 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 10px 6px;
  color: #8f6841;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}
@media screen and (min-width: 960px) {
  .title01 {
    width: auto;
    font-size: 3.6rem;
  }
}
.title01::before, .title01::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  height: 6px;
  background: #8f6841;
  border-radius: 3px;
}
.title01::before {
  left: 0;
  width: 6px;
}
.title01::after {
  left: 10px;
  width: calc( 100% - 10px);
}

.sbtitle01 {
  position: relative;
  margin: 0;
  padding: 0 10px 6px;
  color: #948038;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}
@media screen and (min-width: 960px) {
  .sbtitle01 {
    font-size: 2.4rem;
  }
}
.sbtitle01::before, .sbtitle01::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  height: 4px;
  background: #948038;
  border-radius: 2px;
}
.sbtitle01::before {
  left: 0;
  width: 4px;
}
.sbtitle01::after {
  left: 10px;
  width: calc( 100% - 10px);
}

/* ボタン
============================== */
.btn {
  position: relative;
  display: block;
  width: max-content;
  min-width: 160px;
  max-width: 280px;
  padding: 6px 30px 5px;
  color: #854d17;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: 1px solid #854d17;
  border-radius: 50px;
  background: transparent;
}
.btn::after, .btn::before {
  position: absolute;
  display: block;
  content: "";
  background: #854d17;
  transition: .1s;
}
.btn::after {
  top: calc( 50% - 4px);
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.btn::before {
  top: calc( 50% - 1px);
  right: 0;
  width: 24px;
  height: 1px;
}
.btn:hover::after {
  right: -20px;
}
.btn:hover::before {
  right: -12px;
  width: 36px;
}
.btn_l {
  min-width: 240px;
  padding: 16px 30px 15px;
  font-size: 1.8rem;
}
.btn.col02 {
  color: #5f7c28;
  border: 1px solid #5f7c28;
}
.btn.col02::after, .btn.col02::before {
  background: #5f7c28;
}
.btn.col03 {
  color: #666;
  font-size: 1.4rem;
  border: 1px solid #999;
}
.btn.col03::after, .btn.col03::before {
  background: #999;
}
.btn.btn_rev::after {
  top: calc( 50% - 4px);
  left: -4px;
}
.btn.btn_rev::before {
  top: calc( 50% - 1px);
  left: 0;
  width: 24px;
  height: 1px;
}
.btn.btn_rev:hover::after {
  left: -20px;
}
.btn.btn_rev:hover::before {
  left: -12px;
  width: 36px;
}

/* リスト
============================== */
.list_mark {
  list-style: none;
  padding-left: .5em;
}
.list_mark li {
  position: relative;
  padding-left: 22px;
}
.list_mark li::before {
  position: absolute;
  top: .6em;
  left: 0;
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  background: #8f6841;
  border-radius: 3px;
}
.list_mark li + li {
  margin-top: 1em;
}

/* フォーム
============================== */
input[type="search"], input[type="password"], input[type="email"], input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #f0e6C7;
  padding: 10px;
  font-size: 1.6rem;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  input[type="search"], input[type="password"], input[type="email"], input[type="text"] {
    height: 50px;
  }
}

textarea {
  resize: vertical;
  box-sizing: border-box;
  width: 100%;
  min-height: 8em;
  border: 1px solid #f0e6C7;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 1.6rem;
  vertical-align: bottom;
}
textarea.size_s {
  min-height: 3em;
}

textarea:focus {
  border-color: #9dBa6e;
}

input[type="search"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="text"]:focus {
  border-color: #9dBa6e;
}

select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  background: #fff url(../img/icn/form_select_arw_a.svg) no-repeat right 10px top 50%;
  background-size: 15px 15px;
  text-overflow: ellipsis;
  white-space: normal;
  vertical-align: middle;
  border: 1px solid #f0e6C7;
  padding: 0 40px 0 10px;
  outline: none;
  border-radius: 5px;
  font-size: 1.6rem;
}
select:focus {
  border-color: #9dBa6e;
  background: #fff url(../img/icn/form_select_arw_b.svg) no-repeat right 10px top 50%;
  background-size: 15px 15px;
}
select::-ms-expand {
  display: none;
}
select:focus option {
  background-color: #fff;
}
select[disabled] {
  border: none;
  background: none;
}
@media screen and (min-width: 600px) {
  select {
    height: 50px;
  }
}

.ico input[type="checkbox"], .ico input[type="radio"] {
  display: none;
}
.ico input[type="checkbox"] + i, .ico input[type="radio"] + i {
  display: inline-block;
  background: transparent no-repeat 0 50%;
  background-size: 20px auto;
  vertical-align: top;
  padding: 0 0 2px 26px;
}
.ico input[type="checkbox"] + i {
  background-image: url(../img/icn/form_check_off.svg);
  background-size: 16px 16px;
  background-position: left 2px top 4px;
}
.ico input[type="checkbox"]:checked + i {
  background-image: url(../img/icn/form_check_on.svg);
  background-size: 16px 16px;
  font-weight: bold;
}
.ico input[type="radio"] + i {
  background-image: url(../img/icn/form_radio_off.svg);
  background-size: 16px 16px;
}
.ico input[type="radio"]:checked + i {
  background-image: url(../img/icn/form_radio_on.svg);
  background-size: 16px 16px;
  font-weight: bold;
}

.error {
  color: #d6494e;
  font-size: 1.4rem;
  margin: 2px 0 0;
}
.error:before {
  content: "※";
  padding-right: 4px;
}

txtarea .error,
select .error {
  background: #fce5e6;
  border-color: #d6494e;
}

input[type="text"] .error, input[type="number"] .error, input[type="file"] .error, input[type="email"] .error, input[type="password"] .error {
  background: #fce5e6;
  border-color: #d6494e;
}

.form_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 20px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .form_btn {
    margin: 60px auto 0;
  }
}
.form_btn.form_btn0_jc-fs {
  justify-content: flex-start;
}
.form_btn li {
  margin-bottom: 10px;
}
.form_btn li.btn_w50p {
  width: calc( 50% - 10px);
}

/* introduce
===============================================
=============================================== */
.introduce {
  display: grid;
  justify-content: start;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 20px 10px;
  max-width: calc(240px * 2 + 10px * 1);
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 600px) {
  .introduce {
    grid-template-columns: repeat(3, minmax(0, 240px));
    max-width: calc(240px * 3 + 10px * 2);
  }
}
@media screen and (min-width: 960px) {
  .introduce {
    grid-template-columns: repeat(4, minmax(0, 240px));
    gap: 40px 13px;
    max-width: calc(240px * 4 + 13px * 3);
  }
}
.introduce-item {
  max-width: 240px;
  width: 100%;
}
.introduce-item a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.introduce-img {
  width: 100%;
  margin: 0 10px;
  z-index: 2;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  border-radius: 8px;
}
.introduce-img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.introduce-name {
  width: 100%;
  margin: -20px 0 0;
  padding: 30px 14px 10px;
  color: #948038;
  font-size: 1.2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #f0e6C7;
  border-radius: 8px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .introduce-name {
    font-size: 1.4rem;
  }
}

/* お知らせ
===============================================
=============================================== */
.news {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 960px) {
  .news {
    gap: 20px;
  }
}
.news-item {
  width: 100%;
}
.news-item a {
  position: relative;
  display: block;
  padding: 16px 40px 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #f0e6C7;
  border-radius: 20px;
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .news-item a {
    padding: 16px 60px 16px 40px;
  }
}
.news-item a::after, .news-item a::before {
  position: absolute;
  display: block;
  content: "";
  background: #854d17;
  transition: .1s;
}
.news-item a::after {
  top: calc( 50% - 4px);
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.news-item a::before {
  top: calc( 50% - 1px);
  right: 0;
  width: 24px;
  height: 1px;
}
.news-item a:hover::after {
  right: -20px;
}
.news-item a:hover::before {
  right: -12px;
  width: 36px;
}
.news-time {
  color: #666;
  font-size: 1.2rem;
}
.news-txt {
  margin: 0;
  color: #333;
}

/* ページャー
============================== */
.pager {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0;
}
@media screen and (min-width: 960px) {
  .pager {
    margin-top: 60px;
  }
}
.pager li + li {
  margin-left: 3px;
}
@media screen and (min-width: 600px) {
  .pager li + li {
    margin-left: 8px;
  }
}
.pager a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.4);
  color: #9dBa6e;
  line-height: 1;
  border: 1px solid #9dBa6e;
  border-radius: 50%;
  transition: .2s;
}
@media screen and (min-width: 600px) {
  .pager a {
    width: 50px;
    height: 50px;
  }
}
.pager a.active {
  background: white;
  font-weight: bold;
  color: #5f7c28;
  border: 3px solid #5f7c28;
}
.pager a.active:hover {
  border: 3px solid #5f7c28;
}
.pager a:hover {
  font-weight: bold;
  background: white;
  border: 8px solid #9dBa6e;
}

/* 調整用
===============================================
=============================================== */
.m0 {
  margin: 0px !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ma {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mal {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.mar {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.p0 {
  padding: 0px !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mt_rsp80 {
  margin-top: 40px !important;
}
@media screen and (min-width: 960px) {
  .mt_rsp80 {
    margin-top: 80px !important;
  }
}

.mt_rsp60 {
  margin-top: 20px !important;
}
@media screen and (min-width: 960px) {
  .mt_rsp60 {
    margin-top: 60px !important;
  }
}

.mt_rsp40 {
  margin-top: 20px !important;
}
@media screen and (min-width: 960px) {
  .mt_rsp40 {
    margin-top: 40px !important;
  }
}

.mt_rsp20 {
  margin-top: 10px !important;
}
@media screen and (min-width: 600px) {
  .mt_rsp20 {
    margin-top: 20px !important;
  }
}

.w10p {
  width: 10% !important;
}

.w20p {
  width: 20% !important;
}

.w30p {
  width: 30% !important;
}

.w40p {
  width: 40% !important;
}

.w50p {
  width: 50% !important;
}

.w60p {
  width: 60% !important;
}

.w70p {
  width: 70% !important;
}

.w80p {
  width: 80% !important;
}

.w90p {
  width: 90% !important;
}

.w100p {
  width: 100% !important;
}

.w25p {
  width: 25% !important;
}

.w33p {
  width: calc( 100% / 3 ) !important;
}

.wauto {
  width: auto !important;
}

.tl {
  text-align: left;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fz_xl {
  font-size: 1.8rem;
}
@media screen and (min-width: 600px) {
  .fz_xl {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 960px) {
  .fz_xl {
    font-size: 2.4rem;
  }
}

.fz_ll {
  font-size: 1.6rem;
}
@media screen and (min-width: 600px) {
  .fz_ll {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 960px) {
  .fz_ll {
    font-size: 2.0rem;
  }
}

.fz_l {
  font-size: 1.8rem;
}

.fz_m {
  font-size: 1.6rem;
}

.fz_s {
  font-size: 1.4rem;
}

.fz_ss {
  font-size: 1.2rem;
}

.db {
  display: block;
}

.dpib {
  display: inline-block;
}

.dn {
  display: none;
}

.hide_pc {
  display: block;
}

.hide_sp {
  display: none;
}

.hide_pc_dpib {
  display: inline-block;
}

.hide_sp_dpib {
  display: none;
}

@media screen and (min-width: 960px) {
  .hide_pc {
    display: none;
  }

  .hide_sp {
    display: block;
  }

  .hide_pc_dpib {
    display: none;
  }

  .hide_sp_dpib {
    display: inline-block;
  }
}
