@charset "UTF-8";
/* Sass Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;700&display=swap");
* {
  min-width: 0;
  min-height: 0;
}

html, body {
  font-size: 16px;
  font-weight: 400;
  font-family: Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  html, body {
    min-width: 1230px;
  }
}
@media screen and (max-width: 575px) {
  html, body {
    font-size: 14px;
  }
}
html p, body p {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  html p, body p {
    font-size: 0.8571rem;
    line-height: 1.5;
  }
}

body.open {
  overflow: hidden;
}

.container-fluid {
  max-width: 1230px; /*　画面幅の上限　*/
  margin-left: auto;
  margin-right: auto;
}

a:hover, a:active, a:focus {
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}

/*******************************************************************************************

HEADER

*******************************************************************************************/
header.global_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  header.global_header {
    min-width: 1230px;
  }
}
header.global_header nav.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav {
    padding: 0 0 0 15px;
    height: 50px;
  }
}
header.global_header nav.global_nav h1 {
  font-size: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 33.5px;
  padding-bottom: 34.5px;
  margin-left: 2.1875rem;
}
header.global_header nav.global_nav h1 a {
  width: 350px;
}
header.global_header nav.global_nav h1 a img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav h1 {
    margin-left: 0;
    padding: 0;
  }
  header.global_header nav.global_nav h1 a {
    width: 155px;
  }
}
header.global_header nav.global_nav div.global_menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.global_header nav.global_nav div.global_menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu {
  margin-right: 2.75rem;
  position: relative;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #2D2D2D;
  font-size: 1.125rem;
  letter-spacing: 0.304em;
  font-weight: 500;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #2D2D2D;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu a:hover::after {
  width: 100%;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 11px;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner {
  position: relative;
  padding: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  background-color: rgba(169, 209, 89, 0.5);
  text-align: left;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 100%;
  border-bottom: 11px solid rgba(169, 209, 89, 0.5);
  border-left: 6px solid rgba(169, 209, 89, 0);
  border-right: 6px solid rgba(169, 209, 89, 0);
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a {
  white-space: nowrap;
  display: inline-block;
}
header.global_header nav.global_nav div.global_menu ul li.main_menu .sub_menu div.inner a + a {
  margin-top: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1520px) {
  header.global_header nav.global_nav div.global_menu ul li.main_menu {
    margin-right: 1rem;
  }
  header.global_header nav.global_nav div.global_menu ul li.main_menu a {
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav div.global_menu {
    display: none;
  }
}
header.global_header nav.global_nav label.modal_toggle_btn {
  padding: 0.75rem;
  padding-top: 1.4rem;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1;
  width: 120px;
  margin-left: auto;
  background-color: #a9d159;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
}
header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) {
  display: block;
  width: 3rem;
  background-color: #ffffff;
  height: 3px;
}
header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) + span {
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 0.95rem;
}
header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type {
  color: #ffffff;
}
header.global_header nav.global_nav label.modal_toggle_btn:hover, header.global_header nav.global_nav label.modal_toggle_btn:active, header.global_header nav.global_nav label.modal_toggle_btn:focus {
  background-color: rgb(210.3773584906, 231.1320754717, 168.8679245283);
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav label.modal_toggle_btn {
    width: 55px;
    margin-left: 0;
    font-size: 10px;
    padding: 15px 14px 9px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) {
    height: 1px;
    width: 20px;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:not(:last-of-type) + span {
    margin-top: 3px;
    font-size: 10px;
  }
  header.global_header nav.global_nav label.modal_toggle_btn span:last-of-type {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
header.global_header nav.global_nav a.insta_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a9d159;
  border: 1px solid #a9d159;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  width: 120px;
  position: relative;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  margin-right: 1px;
  font-size: 0.95rem;
  padding-top: 0.5rem;
}
header.global_header nav.global_nav a.insta_btn i {
  font-size: 3rem;
}
header.global_header nav.global_nav a.insta_btn span {
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-top: 0.15rem;
}
header.global_header nav.global_nav a.insta_btn:hover, header.global_header nav.global_nav a.insta_btn:active, header.global_header nav.global_nav a.insta_btn:focus {
  background-color: rgb(210.3773584906, 231.1320754717, 168.8679245283);
}
@media screen and (max-width: 767px) {
  header.global_header nav.global_nav a.insta_btn {
    width: 55px;
    margin-left: auto;
    font-size: 10px;
    line-height: 1;
    padding: 15px 14px 9px;
  }
  header.global_header nav.global_nav a.insta_btn i {
    font-size: 1.25rem;
  }
  header.global_header nav.global_nav a.insta_btn span {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    margin-top: 3px;
  }
}

/******************/
input#modal_menu_flg {
  display: none;
}

div.modal_menu {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: ALL 0.35s ease;
  transition: ALL 0.35s ease;
  opacity: 0;
  pointer-events: none;
  padding: 30px;
  overflow-y: scroll;
}
input#modal_menu_flg:checked + div.modal_menu {
  opacity: 1;
  pointer-events: auto;
}
div.modal_menu div.global_menu ul {
  padding: 10% 0 0;
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  list-style: none;
  font-size: 1rem;
}
div.modal_menu div.global_menu ul li a {
  display: block;
  color: #151515;
  text-decoration: none;
  padding: 0.625rem;
  border-bottom: 1px solid #999999;
}
div.modal_menu div.global_menu ul li a:hover, div.modal_menu div.global_menu ul li a:active, div.modal_menu div.global_menu ul li a:focus {
  background-color: #999999;
  color: #ffffff;
}
div.modal_menu div.global_menu ul li div a {
  padding-left: 2rem;
  border-bottom: 1px solid #CCCCCC;
}
div.modal_menu label {
  padding: 0.75rem;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  border: none;
  display: block;
  cursor: pointer;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  background-color: #a9d159;
}
div.modal_menu label span {
  display: block;
  width: 75%;
  background-color: #ffffff;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
div.modal_menu label span:first-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
div.modal_menu label span:last-of-type {
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}

/*******************************************************************************************

FOOTER

*******************************************************************************************/
div.global_footer {
  position: relative;
  z-index: 1;
}
div.global_footer footer {
  color: green;
  background-color: #EAEEF2;
  padding-top: 83px;
  padding-bottom: 3.5rem;
  position: relative;
}
div.global_footer footer div.footer_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
div.global_footer footer div.footer_contents .logo {
  width: 283px;
  margin-right: 3.625rem;
}
div.global_footer footer div.footer_contents .logo img {
  max-width: 100%;
}
div.global_footer footer div.footer_contents .company {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  color: green;
  margin-right: 6.125rem;
}
div.global_footer footer div.footer_contents .company p {
  margin-bottom: 0;
  font-size: 1rem;
}
div.global_footer footer div.footer_contents .information {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 22rem;
  margin-top: -0.5rem;
}
div.global_footer footer div.footer_contents .information div.telephone {
  border-bottom: 1px solid green;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  line-height: 1;
}
div.global_footer footer div.footer_contents .information div.telephone em {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 400;
  display: block;
  line-height: 1.6667;
}
div.global_footer footer div.footer_contents .information div.telephone p {
  margin-bottom: 0;
  font-size: 1.625rem;
  letter-spacing: 0.037em;
  line-height: 1.2667;
}
div.global_footer footer div.footer_contents .information div.telephone p a {
  color: green;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
}
div.global_footer footer div.footer_contents .information div.telephone p a span {
  font-size: 2.5rem;
}
div.global_footer footer div.footer_contents .information div.telephone small {
  font-size: 0.6875rem;
  line-height: 1.1818;
  display: block;
  margin-top: 5px;
}
div.global_footer footer div.footer_contents .information div.mailform em {
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
}
div.global_footer footer div.footer_contents .information div.mailform p {
  margin-bottom: 0;
}
div.global_footer footer div.footer_contents .information div.mailform a.original-btn {
  font-size: 0.875rem;
  background-color: transparent;
  color: green;
  width: 100%;
  padding: 0.625rem;
  border-radius: unset;
  border-color: green;
}
div.global_footer footer div.footer_contents .information div.mailform a.original-btn:hover, div.global_footer footer div.footer_contents .information div.mailform a.original-btn:active, div.global_footer footer div.footer_contents .information div.mailform a.original-btn:focus {
  background-color: #a9d159;
  color: #ffffff;
  border-color: #a9d159;
}
div.global_footer footer div.footer_contents .information div.sitenavi {
  margin-top: 1rem;
  font-size: 0.875rem;
}
div.global_footer footer div.footer_contents .information div.sitenavi a {
  color: green;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
}
div.global_footer footer div.footer_contents .information div.sitenavi a:is(:hover, :focus, :active) {
  color: #a9d159;
}
@media screen and (max-width: 767px) {
  div.global_footer footer div.footer_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div.global_footer footer div.footer_contents .logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    text-align: center;
    margin-bottom: 1.14285rem;
  }
  div.global_footer footer div.footer_contents .logo img {
    width: 80%;
  }
  div.global_footer footer div.footer_contents .company {
    width: 100%;
    max-width: 360px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-right: 0;
    text-align: center;
  }
  div.global_footer footer div.footer_contents .company p {
    font-size: 0.8571rem;
    line-height: 1.6;
  }
  div.global_footer footer div.footer_contents .information {
    width: 100%;
    max-width: 240px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
    margin-top: 0;
    margin-bottom: 2.751rem;
  }
  div.global_footer footer div.footer_contents .information div.telephone {
    padding-bottom: 1.1428rem;
  }
  div.global_footer footer div.footer_contents .information div.telephone em {
    margin-bottom: 5px;
  }
  div.global_footer footer div.footer_contents .information div.mailform em {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  div.global_footer footer {
    padding-top: 2.43857rem;
    padding-bottom: 2.2857rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
div.global_footer .copyright {
  color: #fff;
  text-align: center;
  background-color: #a9d159;
  font-size: 0.75rem;
  letter-spacing: 0.111em;
  padding: 0.75rem 0;
}

/* ページトップへ戻るボタン */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 50;
}
#page-top a {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(169, 209, 89, 0.9);
  font-size: 1rem;
  text-align: center;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
#page-top a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1rem;
}
#page-top a:hover, #page-top a:active {
  color: #999999;
}

/*******************************************************************************************

MAIN

*******************************************************************************************/
body:not(.top-page) main {
  padding-bottom: 3rem;
}
main .rowwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
main .rowwrap .primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .rowwrap .secondary {
  width: 21.6667%;
  margin-left: 4.75%;
}
@media screen and (max-width: 767px) {
  main .rowwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  main .rowwrap .primary {
    width: 100%;
  }
  main .rowwrap .secondary {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
  }
}

/*****************/
/* ページタイトル */
/****************/
main div.page-head {
  height: 336px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  main div.page-head {
    height: 98px;
  }
}
main div.page-title {
  background-color: #EAEEF2;
  height: 10.5rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1.75rem;
}
main div.page-title::before, main div.page-title::after {
  content: "";
  width: auto;
  height: 3px;
  background-color: #a9d159;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  main div.page-title {
    padding-top: 0;
    height: 5rem;
    margin-bottom: 2rem;
  }
}
main div.page-title > h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0;
  padding: 0 4rem;
  color: green;
}
main div.page-title > h2 span {
  display: block;
}
main div.page-title > h2 span.jp {
  font-size: 3.4375rem;
  font-weight: 500;
  letter-spacing: 0.101em;
}
main div.page-title > h2 span.en {
  font-family: "Oswald", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main div.page-title > h2 {
    padding: 0 2rem;
  }
  main div.page-title > h2 span.jp {
    font-size: 1.64285rem;
    letter-spacing: 0.101em;
  }
  main div.page-title > h2 span.en {
    font-size: 0.8571rem;
  }
}

/***************+*/
/* ぱんくずリスト */
/****************/
nav.breadcrumb-filud {
  margin-bottom: 6.25rem;
  background-color: #EAEEF2;
}
nav.breadcrumb-filud ol.breadcrumb {
  margin: 0 auto;
  background-color: transparent;
  font-size: 0;
  padding: 0.75rem 15px;
  max-width: 1230px;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
  font-size: 0.875rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item a {
  color: #999999;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: "　|　";
  padding-right: 0.25rem;
}
nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item.active {
  color: #999999;
}
@media screen and (max-width: 767px) {
  nav.breadcrumb-filud {
    display: none;
    margin-bottom: 3.125rem;
  }
  nav.breadcrumb-filud ol.breadcrumb {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.625rem 5%;
  }
  nav.breadcrumb-filud ol.breadcrumb li.breadcrumb-item {
    display: inline;
    font-size: 0.625rem;
  }
}

/****************/
/* サイドメニュー */
/***************/
aside.secondary nav.sidebar-menu {
  margin-bottom: 2rem;
  /* メニュー本体 */
}
aside.secondary nav.sidebar-menu > h3 {
  font-size: 1.125rem;
  color: #ffffff;
  background-color: #a9d159;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  font-weight: bold;
}
aside.secondary nav.sidebar-menu > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
aside.secondary nav.sidebar-menu > ul > li {
  border-bottom: 1px dotted #999999;
  line-height: 1.2;
  padding: 1px 0;
}
aside.secondary nav.sidebar-menu > ul > li > a {
  padding: 20px 15px;
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 0.875rem;
}
aside.secondary nav.sidebar-menu > ul > li > a::before {
  padding-right: 0.75em;
  color: #a9d159;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
aside.secondary nav.sidebar-menu > ul > li:hover > a, aside.secondary nav.sidebar-menu > ul > li:active > a, aside.secondary nav.sidebar-menu > ul > li.active > a {
  text-decoration: none;
  background-color: #EEEEEE;
}
aside.secondary nav.sidebar-menu + nav.sidebar-menu {
  margin-top: 2rem;
}
aside.secondary ul.banner_list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
aside.secondary ul.banner_list li {
  margin-bottom: 1rem;
}
aside.secondary ul.banner_list li a {
  display: block;
  text-align: center;
}

/*******************************************************************************************

BOOTCMS　コンテンツ設定部分

*******************************************************************************************/
/********/
/*見出し*/
/*******/
.lv1 {
  font-size: 2rem;
  margin-top: 0;
  color: #333333;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.3rem;
  border-bottom: 2px solid #ddd;
}
.lv1::after {
  content: "";
  width: 8.5625rem;
  border-bottom: 2px solid #a9d159;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .lv1 {
    font-size: 1.2857rem;
    padding-bottom: 0.90625rem;
  }
  .lv1::after {
    width: 3.7rem;
  }
}

.lv2 {
  color: #fff;
  background-color: #a9d159;
  font-size: 1.875rem;
  font-weight: 500;
  margin-top: 0;
  position: relative;
  padding: 0.5625rem 0;
  padding-left: 1.5625rem;
  margin-bottom: 1.3rem;
}
.lv2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #a9d159;
}
@media screen and (max-width: 767px) {
  .lv2 {
    font-size: 1.2857rem;
    padding: 0.5rem 0;
    padding-left: 0.7857rem;
  }
}

.lv3 {
  color: #444;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 1.3rem;
  position: relative;
  padding-left: 1.125rem;
}
.lv3::before, .lv3::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 50%;
  left: 0;
}
.lv3::before {
  top: 0;
  background-color: green;
}
.lv3::after {
  bottom: 0;
  background-color: #a9d159;
}
@media screen and (max-width: 767px) {
  .lv3 {
    font-size: 1.2857rem;
    padding-left: 0.64285rem;
  }
  .lv3::before, .lv3::after {
    width: 3px;
  }
}

.lv4 {
  color: green;
  font-size: 1.5625rem;
  font-weight: 500;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  margin-top: 0;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
  .lv4 {
    font-size: 1.2857rem;
  }
}

/*************/
/*テキストのみ*/
/************/
.text-only {
  margin-bottom: 1rem;
}
.text-only p {
  margin-bottom: 0;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .text-only p {
    font-size: 0.85714rem;
  }
}

/************/
/* 写真のみ */
/**********/
.photo-only {
  margin-bottom: 2rem;
  text-align: center;
}
.photo-only a img {
  display: inline-block;
}

/*****************/
/* 写真＋テキスト */
/****************/
.photo-and-text {
  margin-bottom: 1.5rem;
}
.photo-and-text:after {
  content: "";
  clear: both;
  display: block;
}
.photo-and-text p {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 2;
}
.photo-and-text img {
  margin-bottom: 1rem;
  max-width: 40%;
}
.photo-and-text img.float-right {
  margin-left: 2.8125rem;
}
.photo-and-text img.float-left {
  margin-right: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .photo-and-text .photo-area {
    display: block;
    width: 100%;
    text-align: center;
  }
  .photo-and-text .photo-area img {
    max-width: 100%;
    margin: 0 0 2rem !important;
    float: none !important;
  }
  .photo-and-text p {
    font-size: 0.85714rem;
  }
}

/***********************/
/* 2列写真+キャプション */
/* 3列写真+キャプション */
/**********************/
.two-photo, .three-photo, .four-photo {
  margin-bottom: 2rem;
}
.two-photo a img, .three-photo a img, .four-photo a img {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #ffffff;
}
.two-photo a:hover img, .three-photo a:hover img, .four-photo a:hover img {
  opacity: 0.7;
  background-color: #ffffff;
}
.two-photo .row div[class^=col], .three-photo .row div[class^=col], .four-photo .row div[class^=col] {
  text-align: center;
}
.two-photo .row div[class^=col] img, .three-photo .row div[class^=col] img, .four-photo .row div[class^=col] img {
  display: inline-block;
}
.two-photo .caption-title, .three-photo .caption-title, .four-photo .caption-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: left;
  margin-bottom: 0;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .two-photo .caption-title, .three-photo .caption-title, .four-photo .caption-title {
    font-size: 0.85714rem;
    margin-top: 0.35714rem;
  }
}
.two-photo .caption-text, .three-photo .caption-text, .four-photo .caption-text {
  margin: 5px 0;
  text-align: left;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .two-photo .caption-text, .three-photo .caption-text, .four-photo .caption-text {
    font-size: 0.71428rem;
  }
}

@media screen and (max-width: 767px) {
  :where(.two-photo, .three-photo, .four-photo) .row {
    gap: 2rem 0;
  }
  :where(.two-photo, .three-photo, .four-photo) .sp_none_turn .row div.col-12 {
    max-width: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/**********/
/* リスト */
/*********/
ul.dot, ol.dot, ul.none, ol.none {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.dot > li, ol.dot > li, ul.none > li, ol.none > li {
  padding-left: 2em;
  line-height: 1.8;
  position: relative;
}
ul.dot > li::before, ol.dot > li::before, ul.none > li::before, ol.none > li::before {
  display: inline-block;
  width: 2em;
  position: absolute;
  left: 0;
  color: #a9d159;
}

ul.dot > li::before, ol.dot > li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "•";
  text-align: center;
}

ul.counter, ol.counter {
  display: table;
  margin: 0;
  padding: 0;
}
ul.counter li, ol.counter li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: table-row;
  counter-increment: number;
}
ul.counter li::before, ol.counter li::before {
  content: counter(number) ".";
  display: table-cell;
  padding-right: 0.4em;
  text-align: right;
}
ul.counter li::after, ol.counter li::after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}
ul.counter li:last-of-type:after, ol.counter li:last-of-type:after {
  margin-bottom: 0;
}

/**********/
/* ボタン */
/*********/
.btn-on {
  margin-bottom: 2rem;
}

.original-btn {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-align: center;
  border: 1px solid #a9d159;
  background-color: #a9d159;
  color: #ffffff;
  padding: 1.5rem;
  font-size: 1.125rem;
  border-radius: 7px;
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  width: min(500px, 100%);
}
.original-btn:hover, .original-btn:active, .original-btn:focus {
  text-decoration: none;
  background-color: #ffffff;
  color: #a9d159;
}
.original-btn.btn-big {
  padding: 2rem;
}
.original-btn.btn-small {
  padding: 1.125rem;
  font-size: 1rem;
}
.original-btn.btn-blue {
  border: 2px solid #00238C;
  background-color: #00238C;
}
.original-btn.btn-blue:hover, .original-btn.btn-blue:active, .original-btn.btn-blue:focus {
  background-color: transparent;
  color: #00238C;
}
.original-btn.btn-green {
  border: 2px solid #006600;
  background-color: #006600;
}
.original-btn.btn-green:hover, .original-btn.btn-green:active, .original-btn.btn-green:focus {
  background-color: transparent;
  color: #006600;
}
.original-btn.btn-orange {
  border: 2px solid #FF8000;
  background-color: #FF8000;
}
.original-btn.btn-orange:hover, .original-btn.btn-orange:active, .original-btn.btn-orange:focus {
  background-color: transparent;
  color: #FF8000;
}
.original-btn.btn-gray {
  border: 2px solid #999999;
  background-color: #999999;
}
.original-btn.btn-gray:hover, .original-btn.btn-gray:active, .original-btn.btn-gray:focus {
  background-color: transparent;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .original-btn {
    font-size: 0.85714rem;
    padding: 0.71428rem;
  }
  .original-btn.btn-big {
    padding: 1.0714rem;
  }
  .original-btn.btn-small {
    font-size: 0.71428rem;
    padding: 0.71428rem;
  }
}

/***********************************************/
/* Youtube GoogleMap 埋め込みタグ レスポンシブ化 */
/***********************************************/
.youtube-box, .gmap-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-box iframe, .gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/************/
/* テーブル */
/***********/
table.table-standard, table.table-flexible {
  width: 100%;
  border-collapse: collapse;
}
table.table-standard td, table.table-flexible td, table.table-standard th, table.table-flexible th {
  font-family: "Noto Sans JP", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #333;
  border: 1px solid #eee;
  padding: 2.03125rem 0;
}
table.table-standard td:first-of-type, table.table-flexible td:first-of-type, table.table-standard th:first-of-type, table.table-flexible th:first-of-type {
  border-top: none;
}
table.table-standard th, table.table-flexible th {
  font-weight: 500;
  white-space: nowrap;
  padding-left: 0.25rem;
  width: 20%;
}

.table-on {
  margin-bottom: 2rem;
}

table.table-standard th, table.table-standard td, table.table-flexible th, table.table-flexible td {
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 767px) {
  table.table-standard th, table.table-standard td, table.table-flexible th, table.table-flexible td {
    font-size: 0.85714rem;
    padding: 1.35714rem 0;
  }
  table.table-standard th, table.table-flexible th {
    width: 15%;
    padding-left: 0.25rem;
  }
  table.table-standard td, table.table-flexible td {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  table.table-flexible {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  table.table-standard {
    margin-bottom: 0;
    border-left: none;
    border-top: none;
  }
  table.table-standard tr {
    white-space: nowrap;
  }
  table.table-standard tr::after {
    clear: both;
    display: block;
    content: "";
  }
  table.table-standard tr th, table.table-standard tr td {
    white-space: nowrap;
    border-right: none;
    border-bottom: none;
  }
}
/********/
/* 全幅 */
/*******/
section.extend {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem 15px;
}
section.extend.extend_fixed {
  background-attachment: fixed;
}
section.extend.none_space {
  padding: 0;
}

/*******************************************************************************************

トップページ

*******************************************************************************************/
body.top-page {
  /** 共通見出し（細部は各項目で指定） **/
  /** 会社案内 **/
  /** サンプル01 **/
  /** サンプル02 **/
}
body.top-page section.top_mainvisual {
  width: 100%;
  height: 0;
  padding-bottom: calc(100vh - 108px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual {
    width: 100%;
    padding-bottom: 80.25%;
  }
}
body.top-page section.top_mainvisual div.top_slideshow {
  width: 78.54%;
  margin-left: auto;
  height: 0;
  padding-bottom: calc(100vh - 108px);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  color: #EAEEF2;
}
body.top-page section.top_mainvisual div.top_slideshow .slide {
  position: absolute;
  top: 0%;
  left: 0%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 3s ease, transform 5s linear;
  -webkit-transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, -webkit-transform 5s linear;
  transition: opacity 3s ease, transform 5s linear;
  transition: opacity 3s ease, transform 5s linear, -webkit-transform 5s linear;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.15) translate3d(0, 0, 0);
  transform: scale(1.15) translate3d(0, 0, 0);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.showfase {
  opacity: 1;
  -webkit-transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
  transform: scale(1.075) translate3d(0, 0, 0) rotate(0.0001deg);
}
body.top-page section.top_mainvisual div.top_slideshow .slide.fadefase {
  opacity: 0;
  -webkit-transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
  transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.top_slideshow {
    width: 100%;
    padding-bottom: 80.25%;
  }
}
body.top-page section.top_mainvisual div.top_photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.top_photo {
    background-image: url(../img/main_visual_sp.jpg) !important;
  }
}
body.top-page section.top_mainvisual div.contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
body.top-page section.top_mainvisual div.contents div.catch {
  position: absolute;
  top: 50%;
  left: 7%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  width: 80%;
  max-width: 551px;
  height: 477px;
  z-index: 1;
  background-color: green;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
body.top-page section.top_mainvisual div.contents div.catch h2, body.top-page section.top_mainvisual div.contents div.catch p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
body.top-page section.top_mainvisual div.contents div.catch h2 {
  margin: 0;
  font-size: 3.75rem;
  letter-spacing: 0.089em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
body.top-page section.top_mainvisual div.contents div.catch p {
  font-size: 1.3rem;
  margin-bottom: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  body.top-page section.top_mainvisual div.contents div.catch {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 64%;
    max-width: 243px;
    height: 68%;
    max-height: 212px;
    background-color: rgba(0, 128, 0, 0.73);
  }
  body.top-page section.top_mainvisual div.contents div.catch h2 {
    font-size: 1.9285rem;
    margin-bottom: 0;
  }
  body.top-page section.top_mainvisual div.contents div.catch p {
    display: none;
  }
}
body.top-page .top_title {
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.101em;
}
body.top-page .top_title span {
  font-family: "Oswald", Roboto, Arial, "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.2em;
  display: block;
  font-weight: 400;
  letter-spacing: 0.101em;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  body.top-page .top_title {
    font-size: 0.8571rem;
  }
  body.top-page .top_title span {
    font-size: 1.916em;
    font-weight: 500;
  }
}
body.top-page .top_main01_wrap {
  padding: 0;
  margin-bottom: 5.65rem;
}
body.top-page .top_main01_wrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 1330px;
}
body.top-page .top_main01_wrap > div .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-repeat: no-repeat;
  background-size: cover;
  width: 45%;
  background-image: url("../files/images/photo0021.png");
  background-position: center;
}
body.top-page .top_main01_wrap > div .catch p {
  display: none;
}
body.top-page .top_main01_wrap > div .catch img[src*=_pc] {
  width: 453px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: 1.8125rem;
  margin-bottom: auto;
  width: 52.49%;
}
body.top-page .top_main01_wrap > div .catch img[src*=_sp] {
  display: none;
}
body.top-page .top_main01_wrap > div .contents {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  background-image: url("../files/images/photo0016.png");
  background-color: #EAEEF2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.top-page .top_main01_wrap > div .contents .inner {
  width: 640px;
  margin-top: 67px;
  margin-left: 97px;
}
body.top-page .top_main01_wrap > div .contents .inner .top_title {
  color: green;
  margin-bottom: 1.8125rem;
}
body.top-page .top_main01_wrap > div .contents .inner .top_title span {
  font-weight: bold;
}
body.top-page .top_main01_wrap > div .contents .inner p {
  letter-spacing: 0.101em;
  margin-bottom: 2rem;
}
body.top-page .top_main01_wrap > div .contents .inner a {
  display: block;
  color: #ffffff;
  width: 250px;
  background-color: #a9d159;
  border: 1px solid #a9d159;
  text-decoration: none;
  text-align: center;
  line-height: 58px;
  letter-spacing: 0.101em;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_main01_wrap > div .contents .inner a:hover, body.top-page .top_main01_wrap > div .contents .inner a:active, body.top-page .top_main01_wrap > div .contents .inner a:focus {
  background-color: #ffffff;
  color: #a9d159;
}
body.top-page .top_main01_wrap > div .images {
  position: absolute;
  width: 74.58%;
  max-width: 1432px;
  height: 547px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 100px;
  left: 15.8%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.top-page .top_main01_wrap > div .images img {
  width: 30.8%;
}
body.top-page .top_main01_wrap > div .images img:first-of-type {
  margin-top: auto;
}
body.top-page .top_main01_wrap > div .images img:last-of-type {
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  body.top-page .top_main01_wrap {
    margin-bottom: 0;
  }
  body.top-page .top_main01_wrap > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: auto;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    background-image: url("../files/images/photo0016.png");
    padding-bottom: 36%;
  }
  body.top-page .top_main01_wrap > div .catch {
    width: 100%;
    height: 102px;
    background-position: bottom;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    background-color: rgba(0, 128, 0, 0.5);
  }
  body.top-page .top_main01_wrap > div .catch p {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
  }
  body.top-page .top_main01_wrap > div .catch img[src*=_pc] {
    display: none;
  }
  body.top-page .top_main01_wrap > div .catch img[src*=_sp] {
    display: inline-block;
    width: 240px;
    margin-left: 2.357rem;
  }
  body.top-page .top_main01_wrap > div .contents {
    background: none;
  }
  body.top-page .top_main01_wrap > div .contents .inner {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    padding: 1.1428rem 1rem 1.8571rem;
  }
  body.top-page .top_main01_wrap > div .contents .inner .top_title {
    margin-bottom: 1rem;
  }
  body.top-page .top_main01_wrap > div .contents .inner p {
    margin-bottom: 2.2857rem;
  }
  body.top-page .top_main01_wrap > div .contents .inner a {
    margin-left: auto;
    margin-right: auto;
    line-height: 35px;
    font-size: 0.851rem;
  }
  body.top-page .top_main01_wrap > div .images {
    position: relative;
    left: auto;
    bottom: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 93%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  body.top-page .top_main01_wrap > div .images img {
    width: 47.6%;
    margin-bottom: 1rem;
  }
}
body.top-page .top_main02_wrap {
  padding: 0;
  margin-bottom: 9rem;
}
body.top-page .top_main02_wrap .head {
  width: 100%;
  max-width: 1537px;
  height: 580px;
  background-image: url("../files/images/photo0004.jpg");
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-shadow: 486px 230px #eaeef2;
          box-shadow: 486px 230px #eaeef2;
  margin-bottom: 3.75rem;
}
body.top-page .top_main02_wrap .head .top_title {
  width: 100%;
  color: #ffffff;
  background-color: rgba(169, 209, 89, 0.83);
  width: 78.1%;
  padding-top: 59px;
  padding-left: 58px;
  padding-bottom: 41px;
}
body.top-page .top_main02_wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
body.top-page .top_main02_wrap .list div {
  color: green;
  width: 21.5%;
  font-size: 1.5625rem;
  letter-spacing: 0.101em;
}
body.top-page .top_main02_wrap .list div img {
  max-width: 100%;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  aspect-ratio: 4/3;
}
body.top-page .top_main02_wrap .list div span {
  display: block;
}
body.top-page .top_main02_wrap .list div a {
  color: gray;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
body.top-page .top_main02_wrap .list div a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  body.top-page .top_main02_wrap {
    margin-bottom: 0;
    background-color: #EAEEF2 !important;
    padding-bottom: 3px;
  }
  body.top-page .top_main02_wrap .head {
    height: 170px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 1.1428rem;
  }
  body.top-page .top_main02_wrap .head .top_title {
    width: 50%;
    padding: 1rem;
  }
  body.top-page .top_main02_wrap .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
  }
  body.top-page .top_main02_wrap .list div {
    font-size: 0.8571rem;
    width: 47.6%;
    margin-bottom: 1rem;
  }
}
body.top-page .top_main03_wrap {
  padding-top: 8.8125rem;
  padding-left: 9rem;
  padding-right: 0;
  padding-bottom: 8.8125rem;
  margin-bottom: 0;
}
body.top-page .top_main03_wrap .tag-on {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1470px) {
  body.top-page .top_main03_wrap .tag-on {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
body.top-page .top_main03_wrap .tag-on .contents {
  max-width: 450px;
  color: #ffffff;
  margin-right: 2.6875rem;
  margin-top: 0.625rem;
}
body.top-page .top_main03_wrap .tag-on .contents div {
  background-color: rgba(0, 128, 0, 0.3);
  padding: 1.5rem;
  padding-top: 2rem;
}
body.top-page .top_main03_wrap .tag-on .contents div .top_title {
  margin-bottom: 1.875rem;
}
body.top-page .top_main03_wrap .tag-on .contents div .top_title span {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
body.top-page .top_main03_wrap .tag-on .contents div p {
  margin-bottom: 3.375rem;
}
body.top-page .top_main03_wrap .tag-on .list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ffffff;
  padding-top: 4.85rem;
  padding-left: 4.9375rem;
  padding-right: 3.875rem;
  padding-bottom: 4.725rem;
  max-width: 1391px;
}
body.top-page .top_main03_wrap .tag-on .list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 76px 4.2%;
}
body.top-page .top_main03_wrap .tag-on .list ul li {
  width: 21.8%;
  letter-spacing: 0.101em;
}
body.top-page .top_main03_wrap .tag-on .list ul li a {
  color: #000;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_main03_wrap .tag-on .list ul li a img {
  max-width: 100%;
  margin-bottom: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
body.top-page .top_main03_wrap .tag-on .list ul li a span {
  display: block;
}
body.top-page .top_main03_wrap .tag-on .list ul li a:hover img {
  opacity: 0.6;
}
@media (max-width: 1470px) {
  body.top-page .top_main03_wrap .tag-on .list {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  body.top-page .top_main03_wrap .tag-on .list ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  body.top-page .top_main03_wrap {
    padding: 1rem;
    padding-top: 2.1428rem;
    padding-bottom: 3.6428rem;
    margin-bottom: 0;
  }
  body.top-page .top_main03_wrap .tag-on {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  body.top-page .top_main03_wrap .tag-on .contents {
    max-width: none;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  body.top-page .top_main03_wrap .tag-on .contents div .top_title {
    margin-bottom: 1.571rem;
  }
  body.top-page .top_main03_wrap .tag-on .contents div p {
    margin-bottom: 2rem;
  }
  body.top-page .top_main03_wrap .tag-on .list {
    padding: 1rem;
  }
  body.top-page .top_main03_wrap .tag-on .list ul {
    gap: 1rem 4%;
  }
  body.top-page .top_main03_wrap .tag-on .list ul li {
    width: 47.8%;
    font-size: 0.8571rem;
  }
  body.top-page .top_main03_wrap .tag-on .list ul li img {
    margin-bottom: 4px;
  }
}

/*******************************************************************************************

お知らせ、インフォメーション

*******************************************************************************************/
/***************************/
/* 一覧表示（TOP・一覧共通） */
/***************************/
#news-list dl.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #151515;
  text-decoration: none;
  border-bottom: 1px solid #a9d159;
  padding: 1.25rem 2.5rem;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#news-list dl.headline:first-of-type {
  border-top: 1px solid #a9d159;
}
#news-list dl.headline dt {
  white-space: nowrap;
}
#news-list dl.headline dd {
  margin: 0 0 0 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#news-list dl.headline dd span.new {
  display: inline-block;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #FF7272;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
}
#news-list dl.headline dd a {
  color: gray;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #news-list dl.headline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 1rem;
  }
  #news-list dl.headline dt {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  #news-list dl.headline dd {
    margin-left: 0;
  }
}

/**************/
/* 一覧ページ */
/**************/
.page-item .page-link {
  color: #a9d159;
}
.page-item.active .page-link {
  background-color: #a9d159;
  border-color: #a9d159;
}
.page-item a.page-link[href="list.php?page="] {
  cursor: auto;
  pointer-events: none;
  color: #151515;
  background-color: #dddddd;
}

/*********/
/*詳細画面*/
/********/
body.news-page div.content em.content-title {
  display: block;
  border-bottom: 3px solid #a9d159;
  font-style: normal;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
body.news-page div.content p.content-data {
  border-top: 1px solid #a9d159;
  border-bottom: 1px solid #a9d159;
  text-align: right;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  body.news-page div.content em.content-title {
    font-size: 1.3rem;
  }
}

div.category-list {
  font-size: 12px;
  line-height: 32px;
  margin-left: 1rem;
  display: inline-block;
}

.category {
  text-align: center;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: #a9d159;
  color: gray;
}

/*******************************************************************************************

メールフォーム

*******************************************************************************************/
body.form-page .custom-form {
  margin-top: -4.25rem;
  padding-top: 8.5rem;
}
body.form-page p.form_lead {
  margin-bottom: 3.25rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap {
  max-width: 950px;
  margin: 0 auto;
}
body.form-page section.contactform_wrap div.tel-number, body.form-page section.contactform_wrap div.fax-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 3rem;
  padding-bottom: 3rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.form-page section.contactform_wrap div.tel-number h4, body.form-page section.contactform_wrap div.fax-number h4 {
  font-size: 1.25rem;
  width: 100%;
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p, body.form-page section.contactform_wrap div.fax-number p {
  margin-bottom: 0;
}
body.form-page section.contactform_wrap div.tel-number p.type, body.form-page section.contactform_wrap div.fax-number p.type {
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 2px solid #000000;
  margin-right: 1em;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.number, body.form-page section.contactform_wrap div.fax-number p.number {
  font-size: 2.5rem;
  font-weight: 500;
  margin-right: 2rem;
  letter-spacing: 0.092em;
}
body.form-page section.contactform_wrap div.tel-number p.supplementary, body.form-page section.contactform_wrap div.fax-number p.supplementary {
  font-size: 1rem;
  letter-spacing: 0.092em;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap div.tel-number, body.form-page section.contactform_wrap div.fax-number {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.number, body.form-page section.contactform_wrap div.fax-number p.number {
    white-space: nowrap;
    font-size: 2rem;
  }
  body.form-page section.contactform_wrap div.tel-number p.supplementary, body.form-page section.contactform_wrap div.fax-number p.supplementary {
    width: 100%;
  }
}
body.form-page section.contactform_wrap section.input_wrap {
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap + section.input_wrap {
  margin-top: 3rem;
}
body.form-page section.contactform_wrap section.input_wrap .input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
body.form-page section.contactform_wrap section.input_wrap .input_group:first-of-type {
  border-top: 1px solid #CCCCCC;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_label {
  display: block;
  width: 13em;
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_label span.required {
  font-size: 1rem;
  color: #FF6A06;
  margin-left: 2em;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content {
  font-size: 1.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:first-of-type {
  padding-right: 1rem;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:last-of-type {
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:first-of-type {
    padding-right: 0.5rem;
  }
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.name_set div:last-of-type {
    padding-left: 0.5rem;
  }
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.address_set {
  width: 100%;
}
body.form-page section.contactform_wrap section.input_wrap .input_group .input_content.address_set div + div {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap section.input_wrap .input_group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  body.form-page section.contactform_wrap section.input_wrap .input_group .input_label {
    width: auto;
    margin-bottom: 1rem;
  }
}
body.form-page section.contactform_wrap .submit_area {
  text-align: center;
  margin-top: 4.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.form-page section.contactform_wrap .submit_area p {
  width: 100%;
  margin-bottom: 2.625rem;
}
body.form-page section.contactform_wrap .submit_area button + button {
  margin-left: 2rem;
}
body.form-page section.contactform_wrap .submit_area .original-btn.btn-big {
  padding: 2.125rem 1rem;
  font-size: 1.125rem;
  width: 46%;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  body.form-page section.contactform_wrap .submit_area .original-btn.btn-big {
    padding: 1rem;
    width: auto;
  }
}

span.error_message {
  font-size: 1rem;
  color: #ff6A06;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.5em;
}

.input_item:where(:not([type=radio], [type=checkbox], [type=file])) {
  display: block;
  width: 100%;
  height: 3.5em;
  padding: 1em 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3e3e3e;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #999999;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  outline: none;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file]))::-webkit-input-placeholder {
  color: #AAAAAA;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file]))::-moz-placeholder {
  color: #AAAAAA;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file])):-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file]))::-ms-input-placeholder {
  color: #AAAAAA;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file]))::placeholder {
  color: #AAAAAA;
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file])).inline_parts {
  display: inline-block;
  width: auto;
}
@media screen and (max-width: 767px) {
  .input_item:where(:not([type=radio], [type=checkbox], [type=file])) {
    height: 2.5em;
    padding: 0.5em;
  }
}
.input_item:where(:not([type=radio], [type=checkbox], [type=file])):active, .input_item:where(:not([type=radio], [type=checkbox], [type=file])):focus {
  border-color: #333333;
  background-color: #fffad7;
}

textarea.input_item {
  height: auto;
}

/*** ラジオボタン ****/
input.input_item[type=radio] {
  display: none;
  border: 0;
  margin: 0;
}
input.input_item[type=radio] + label {
  display: block;
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
input.input_item[type=radio] + label:empty {
  min-height: 1em;
}
input.input_item[type=radio] + label:last-of-type {
  margin-bottom: 0;
}
input.input_item[type=radio] + label:before, input.input_item[type=radio] + label:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
input.input_item[type=radio] + label:before {
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  border: 2px solid #999;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
input.input_item[type=radio] + label:after {
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  background-color: transparent;
  -webkit-transform: scale(0) translateY(-50%);
          transform: scale(0) translateY(-50%);
}
input.input_item[type=radio]:checked + label:after {
  background-color: #a9d159;
  -webkit-transform: scale(1) translateY(-50%);
          transform: scale(1) translateY(-50%);
}

input.input_item[type=checkbox] {
  display: none;
  margin: 0;
}
input.input_item[type=checkbox] + label {
  position: relative;
  padding: 10px 0px 10px 35px;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0;
}
input.input_item[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-color: white;
  border: 2px solid #c2ced2;
}
input.input_item[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  left: 13px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #a9d159;
  border-bottom: 3px solid #a9d159;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

section.orderItem {
  display: grid;
  grid-auto-rows: auto;
}
section.orderItem div.itemrow {
  display: grid;
  grid-template-columns: 1fr 115px 130px 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  padding-left: 1.5rem;
  padding-right: 4.75rem;
}
section.orderItem div.itemrow:not(:first-of-type) {
  border-bottom: 1px solid #CCCCCC;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}
section.orderItem div.itemrow:not(:first-of-type) div.ItemName {
  font-size: 1.125rem;
  font-weight: 700;
}
section.orderItem div.itemrow:not(:first-of-type) div.ItemPrice {
  font-size: 1.125rem;
  font-weight: 700;
}
section.orderItem div.itemrow:not(:first-of-type) div.ItemSubtotal {
  text-align: right;
  font-size: 1.125rem;
  font-weight: 700;
}
section.orderItem div.itemrow:last-of-type {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(5%, transparent), color-stop(5%, #EEEEEE), color-stop(95%, #EEEEEE), color-stop(95%, transparent));
  background: linear-gradient(to bottom, transparent 0%, transparent 5%, #EEEEEE 5%, #EEEEEE 95%, transparent 95%);
  grid-template-columns: 1fr 120px;
  padding-top: 2.5rem;
  padding-bottom: 1.875rem;
}
section.orderItem div.itemrow:last-of-type div.ItemName {
  font-size: 1.4375rem;
}
section.orderItem div.itemrow:last-of-type div.ItemTotal {
  font-size: 1.5rem;
  text-align: right;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  section.orderItem div.itemrow {
    gap: 0.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  section.orderItem div.itemrow:not(:last-of-type) {
    grid-template-columns: 30% 30% 1fr;
    grid-template-areas: "name name name" "price count subtotal";
  }
  section.orderItem div.itemrow div.ItemName {
    grid-area: name;
  }
  section.orderItem div.itemrow div.ItemPrice {
    grid-area: price;
  }
  section.orderItem div.itemrow div.ItemNum {
    grid-area: count;
  }
  section.orderItem div.itemrow div.ItemSubtotal {
    grid-area: subtotal;
  }
  section.orderItem div.itemrow:first-of-type {
    display: none;
  }
  section.orderItem div.itemrow:last-of-type {
    grid-template-areas: none;
    grid-template-columns: 160px 1fr;
    padding: 1.5rem 0.5rem;
  }
  section.orderItem div.itemrow:last-of-type div.ItemName {
    grid-area: auto;
  }
}

.BT_data {
  background-color: #FEF8D2;
  font-size: 1.25rem;
  line-height: 1.9;
  font-weight: 700;
  padding: 1.7em 1.9em;
}
@media screen and (max-width: 575px) {
  .BT_data {
    font-size: 1.125rem;
    padding: 1.25em;
  }
}

h3.order_thank_ttl {
  font-size: 2.1875rem;
  color: #008000;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}
h3.order_thank_ttl + p {
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  h3.order_thank_ttl {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  h3.order_thank_ttl + p {
    margin-bottom: 4rem;
  }
}

input.input_item[type=radio] + label:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
input.input_item[type=radio] + label:has(img) img {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 575px) {
  input.input_item[type=radio] + label:has(img) {
    gap: 0.25rem 1rem;
  }
  input.input_item[type=radio] + label:has(img) img {
    width: 100%;
    max-width: 150px;
  }
}

/*******************************************************************************************

各種タブ

*******************************************************************************************/
/************************************
サイトマップテーブル
************************************/
table.sitemap-table {
  width: 100%;
}
table.sitemap-table th, table.sitemap-table td {
  line-height: 1.2;
  border-top: none;
  border-bottom: 1px solid #cccccc;
  padding: 20px;
}
table.sitemap-table th {
  font-size: 1rem;
  width: 50px;
  white-space: nowrap;
  font-weight: normal;
}
table.sitemap-table a {
  color: #212529;
  text-decoration: none;
}
table.sitemap-table a:hover, table.sitemap-table a:active, table.sitemap-table a:focus {
  text-decoration: underline;
}
table.sitemap-table td {
  font-size: 1rem;
  font-weight: normal;
}
table.sitemap-table td a {
  display: inline-block;
  position: relative;
  padding-left: 10px;
}
table.sitemap-table td a:not(:last-child) {
  margin-bottom: 15px;
}
table.sitemap-table td a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  position: absolute;
  top: 0;
  left: 0;
  color: #a9d159;
}
@media screen and (max-width: 767px) {
  table.sitemap-table {
    display: block;
  }
  table.sitemap-table tbody, table.sitemap-table tr, table.sitemap-table th, table.sitemap-table td {
    display: block;
  }
  table.sitemap-table th {
    width: auto;
    white-space: normal;
    border-bottom: none;
    padding: 15px 10px;
  }
  table.sitemap-table td {
    padding: 0 20px;
    margin: 10px;
  }
  table.sitemap-table td a {
    margin-bottom: 15px;
  }
}

.aboutus_keiei p {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 1.5625rem;
  color: #333;
  line-height: 2.56;
}
@media screen and (max-width: 767px) {
  .aboutus_keiei p {
    font-size: 1rem;
  }
}

.aboutus_envi p {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 1.5625rem;
  color: #333;
  line-height: 2.56;
}
@media screen and (max-width: 767px) {
  .aboutus_envi p {
    font-size: 1rem;
  }
}

.product_top p {
  font-size: 1.875rem;
  font-weight: 500;
  color: #306ab8;
  line-height: 2.167;
}
@media screen and (max-width: 767px) {
  .product_top p {
    font-size: 1.25rem;
  }
}

.factory_tbl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  margin: 0;
  max-width: 850px;
}
.factory_tbl dl dt, .factory_tbl dl dd {
  margin: 0;
  font-size: 1.125rem;
  padding: 2.03125rem 0;
}
@media screen and (max-width: 767px) {
  .factory_tbl dl dt, .factory_tbl dl dd {
    font-size: 0.85714rem;
    padding: 1.35714rem 0;
  }
}
.factory_tbl dl dt {
  width: 15%;
  font-weight: 500;
}
.factory_tbl dl dd br {
  display: none;
}
@media screen and (max-width: 767px) {
  .factory_tbl dl dd br {
    display: block;
  }
}
.factory_tbl .photo-area img {
  margin-left: 3.125rem;
  max-width: 100%;
}

.setsubi_tbl br {
  display: block;
}
@media screen and (max-width: 767px) {
  .setsubi_tbl br {
    display: none;
  }
}

.anker {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .anker {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}

.tbl_sendPrice table tr > * {
  border: 1px solid #999 !important;
  padding: 1rem;
  width: 50%;
}
.tbl_sendPrice table th:first-of-type {
  word-break: break-all;
  white-space: break-spaces;
  background-color: #F1F1F1;
}

section.photo_itemList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
}
section.photo_itemList > div {
  width: calc((100% - 60px) / 3);
}
section.photo_itemList > div ul.itemSlide {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}
section.photo_itemList > div ul.itemSlide li.slick-slide {
  border: 1px solid #EEEEEE;
}
section.photo_itemList > div ul.itemSlide li.slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 380/290;
  max-width: 100%;
}
section.photo_itemList > div ul.itemSlide .slick-prev, section.photo_itemList > div ul.itemSlide .slick-next {
  z-index: 1;
}
section.photo_itemList > div ul.itemSlide .slick-prev::before, section.photo_itemList > div ul.itemSlide .slick-next::before {
  color: #333;
}
section.photo_itemList > div ul.itemSlide .slick-prev {
  left: 5px;
}
section.photo_itemList > div ul.itemSlide .slick-next {
  right: 5px;
}
section.photo_itemList > div ul.itemSlide div.slide-arrow {
  position: absolute;
  width: 2.0833em;
  height: 3.3333em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.63);
  color: #4D4D4D;
  font-size: 0.75rem;
  line-height: 1;
  border-radius: 3px;
  z-index: 5;
  cursor: pointer;
}
section.photo_itemList > div ul.itemSlide div.slide-arrow::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
section.photo_itemList > div ul.itemSlide div.slide-arrow.prev-arrow {
  left: 2.5%;
}
section.photo_itemList > div ul.itemSlide div.slide-arrow.prev-arrow::before {
  content: "\f053";
}
section.photo_itemList > div ul.itemSlide div.slide-arrow.next-arrow {
  right: 2.5%;
}
section.photo_itemList > div ul.itemSlide div.slide-arrow.next-arrow::before {
  content: "\f054";
}
section.photo_itemList > div ul.itemSlide .dots-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px 10px;
  padding: 0;
  margin: 0.5625rem auto 0;
}
section.photo_itemList > div ul.itemSlide .dots-wrap > li {
  display: contents;
}
section.photo_itemList > div ul.itemSlide .dots-wrap > li button {
  overflow: hidden;
  text-indent: 9999px;
  width: 10px;
  height: 10px;
  font-size: 0.1rem;
  border: none;
  background-color: #707070;
  padding: 0;
  border-radius: 50%;
  outline: none;
}
section.photo_itemList > div ul.itemSlide .dots-wrap > li.slick-active button {
  background-color: #A9D159;
}
section.photo_itemList > div p {
  margin-bottom: 0;
}
section.photo_itemList > div p.item_name {
  font-size: 1.125rem;
  font-weight: 700;
}
section.photo_itemList > div p.item_order span {
  font-size: 1.5625rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  section.photo_itemList {
    gap: 1.5rem 10px;
  }
  section.photo_itemList > div {
    width: calc((100% - 10px) / 2);
  }
  section.photo_itemList > div ul.itemSlide .dots-wrap {
    gap: 5px;
  }
  section.photo_itemList > div ul.itemSlide .dots-wrap > li button {
    width: 5px;
    height: 5px;
  }
  section.photo_itemList > div p.item_name {
    font-size: 0.8571rem;
    margin-bottom: 0.5rem;
  }
  section.photo_itemList > div p.item_order span {
    font-size: 1rem;
  }
  section.photo_itemList > div p.item_order select.input_item.itemCount {
    width: 3.5rem;
    padding-left: 3px;
    padding-right: 3px;
    height: 25px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

select.input_item.itemCount {
  padding-top: 0.375em;
  padding-bottom: 0.375em;
  width: 5.625rem;
  height: 2.25em;
  border-radius: 5px;
  border-width: 2px;
}

.table_send_price table.table-standard {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  margin-bottom: 0;
}
.table_send_price table.table-standard tbody {
  display: contents;
}
.table_send_price table.table-standard tbody tr {
  display: contents;
}
.table_send_price table.table-standard tbody tr th, .table_send_price table.table-standard tbody tr td {
  padding: 0;
  width: auto;
  font-size: 0.875rem;
  border-right: 1px solid #eee;
  padding: 0.5em;
}
.table_send_price table.table-standard tbody tr th {
  place-content: center;
  place-items: center;
  text-align: center;
}
.table_send_price table.table-standard tbody tr th:first-of-type {
  background-color: #e8ffbb;
}
.table_send_price table.table-standard tbody tr td {
  text-align: right;
}
.table_send_price table.table-standard tbody tr:first-of-type th {
  background-color: #a9d159;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .table_send_price table.table-standard tbody tr::after {
    content: none;
  }
  .table_send_price table.table-standard tbody tr th, .table_send_price table.table-standard tbody tr td {
    min-width: 5em;
  }
}

table.design10 tbody tr th, table.design10 tbody tr td {
  width: auto;
  font-size: 1rem;
  border-right: 1px solid #eee;
  padding: 0.5em;
}
table.design10 tbody tr th:first-of-type, table.design10 tbody tr td:first-of-type {
  border-left: 1px solid #eee;
}
table.design10 tbody tr th {
  background-color: #a9d159;
  color: #ffffff;
  text-align: center;
}
table.design10 tbody tr td {
  text-align: right;
  border-bottom: 1px solid #eee;
}/*# sourceMappingURL=style.css.map */