@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;600;700&display=swap");
body {
  font-family: "Noto Serif JP", serif;
  color: #262727;
  font-size: 16px;
}

.color-primary {
  color: #2a6340;
}

.bg-primary {
  background-color: #2a6340;
}

.color-sub {
  color: #ededec;
}

.bg-sub {
  background-color: #ededec;
}

.color-text {
  color: #262727;
}

.f-min {
  font-family: "Noto Serif JP", serif;
}

.f-goth {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

.f-cormorant {
  font-family: "Cormorant Garamond", serif;
}

.front-mainv {
  height: 57vw;
  width: 100%;
  display: flex;
}
.front-mainv .imgbox {
  width: 85%;
  background-image: url("../img/common/front-mainv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.front-mainv .imgbox .logom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14vw;
  height: auto;
}
@media (max-width: 500px) {
  .front-mainv .imgbox .logom {
    width: 32%;
  }
}
.front-mainv .whitebox {
  flex: 1;
  position: relative;
}
.front-mainv .whitebox .front-title {
  margin: 0;
}
.front-mainv .whitebox .logotext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3vw;
  min-width: 40px;
  height: auto;
}
@media (max-width: 800px) {
  .front-mainv .whitebox .logotext {
    min-width: 30px;
  }
}
@media (max-width: 500px) {
  .front-mainv .whitebox .logotext {
    width: 5vw;
    min-width: initial;
  }
}

.site-header {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
}
.site-header .site-logo {
  margin-left: 16px;
}
.site-header .site-logo img {
  width: 80px;
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 28px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger .hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #262727;
  border-radius: 2px;
}
.hamburger .hamburger__line--short {
  width: 50%;
  align-self: flex-end;
}

.menu-panel {
  width: 80%;
  max-width: 780px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 2000;
}
@media (max-width: 600px) {
  .menu-panel {
    width: 95%;
  }
}
.menu-panel.is-open {
  transform: translateX(0);
}
.menu-panel .menu-panel__inner {
  padding: 24px;
  box-sizing: border-box;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 48px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu-panel .menu-panel__inner::-webkit-scrollbar {
  display: none;
}
.menu-panel .menu-panel__inner .flex2box {
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
}
.menu-panel .menu-panel__inner .mlogo {
  width: 80px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto 1em auto;
  text-align: center;
}
@media (max-width: 600px) {
  .menu-panel .menu-panel__inner .mlogo {
    width: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.menu-panel .menu-panel__inner .mlogo img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-panel .menu-panel__inner .menubox {
  margin-left: 2em;
  flex: 1;
}
.menu-panel .menu-panel__inner .snsbox {
  display: flex;
  justify-content: right;
  gap: 0.2em;
  margin-bottom: 2em;
}
.menu-panel .menu-panel__inner .snsbox a {
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4em;
  border: 1px solid #000;
  background-color: white;
}
.menu-panel .menu-panel__inner .snsbox img {
  width: 1rem;
}
.menu-panel .menu-panel__inner .menu-panel__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #262727;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.menu-panel .menu-panel__inner ul.menu-list li {
  padding-top: 0;
  margin-bottom: 1em;
  border-bottom: 1px solid #9c9b9b;
  padding-bottom: 0;
  font-size: 18px;
  position: relative;
}
.menu-panel .menu-panel__inner ul.menu-list li > a {
  display: block;
  width: 100%;
  position: relative;
  padding: 1rem 3rem 1rem 0;
}
.menu-panel .menu-panel__inner ul.menu-list li > a::after {
  position: absolute;
  content: "";
  width: 2em;
  height: 2em;
  background-image: url("../img/common/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.menu-panel .menu-panel__inner ul.menu-list li span {
  font-size: 13px;
  font-weight: 600;
  color: #2a6340;
  display: block;
  padding-bottom: 3px;
  font-family: "Noto Serif JP", serif;
}
.menu-panel .sub-menu {
  display: flex;
  align-items: center;
  gap: 1em;
}
.menu-panel .sub-menu .onlinelink {
  width: 50%;
  max-width: 280px;
}
.menu-panel .sub-menu .onlinelink img {
  width: 100%;
}
.menu-panel .sub-menu ul {
  flex: 1;
  margin: 0;
  margin-left: 1em;
}
.menu-panel .sub-menu ul li {
  margin-bottom: 0.2em;
}
.menu-panel .sub-menu ul li a {
  font-size: 13px;
}
@media (max-width: 900px) {
  .menu-panel .sub-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .menu-panel .sub-menu .onlinelink {
    width: 100%;
    max-width: 320px;
  }
  .menu-panel .sub-menu ul {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

.is-menu-open {
  overflow: visible;
}

html.is-menu-open,
body.is-menu-open {
  overflow: visible;
}

.main-content {
  min-height: 50vh;
  margin-bottom: 50px;
}

.side-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 900;
}
.side-banner a {
  display: inline-block;
  background-color: white;
}
.side-banner img {
  display: block;
  width: 240px;
  height: auto;
  border: 1px solid #818181;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 1200;
}
.back-to-top a {
  display: block;
}
.back-to-top img {
  width: 48px;
  height: auto;
  display: block;
}

.site-footer {
  width: 100%;
  background-color: #ededec;
  padding-bottom: 100px;
}
.site-footer .footer-wrapper {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}
.site-footer .flex2 {
  display: flex;
  justify-content: space-between;
}
.site-footer .flex2 .logobox {
  display: flex;
  width: 50%;
}
@media (max-width: 800px) {
  .site-footer .flex2 .logobox {
    width: 40%;
  }
}
.site-footer .flex2 .logobox img {
  width: 55%;
  max-width: 170px;
  margin-left: 10%;
}
.site-footer .flex2 .textbox {
  flex: 1;
}
.site-footer .flex2 .textbox .linkflex2 {
  display: flex;
  flex-wrap: wrap;
}
.site-footer .flex2 .textbox .linkflex2 > div {
  width: 50%;
}
@media (max-width: 800px) {
  .site-footer .flex2 .textbox .linkflex2 > div {
    width: 100%;
  }
}
.site-footer .flex2 .textbox .linkflex2 hr {
  display: none;
}
@media (max-width: 800px) {
  .site-footer .flex2 .textbox .linkflex2 hr {
    display: block;
    border: none;
    height: 1px;
    border-top: 1px solid #ccc;
    margin-bottom: 1em;
    width: 10em;
  }
}
.site-footer .flex2 .textbox .linkflex2 li {
  margin-bottom: 1.1em;
}
.site-footer .flex2 .textbox .linkflex2 li a {
  font-size: 14px;
}
.site-footer .flex2 .textbox .linkflex2 .snsbox {
  display: flex;
  margin-top: 2em;
}
.site-footer .flex2 .textbox .linkflex2 .snsbox a:last-child {
  margin-left: 1em;
}
.site-footer .flex2 .textbox .linkflex2 .snsbox img {
  width: 1.5em;
}

.guide-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.guide-list__item {
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  color: #262727;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.guide-list__item.is-active {
  color: white;
  background-color: #2a6340;
  font-weight: 600;
}

.content-box {
  display: none;
}

.content-box.is-active {
  display: block;
}

@media (max-width: 600px) {
  .guide-list {
    gap: 0.5rem;
  }
  .guide-list__item {
    padding: 0.4rem 0.5rem;
  }
}
.w1200 {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3em;
  letter-spacing: 0.5px;
}
@media (max-width: 1260px) {
  .w1200 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .w1200 {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1060px) {
  .w1000 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .w1000 {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}

.w1100 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1160px) {
  .w1100 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 900px) {
  .w1100 {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}

.hero {
  height: 250px;
  display: flex;
  align-items: center;
}

.hero_imagebg {
  height: 600px;
  display: flex;
  align-items: end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 500px) {
  .hero_imagebg {
    height: 40vh;
  }
}
.hero_imagebg .hero_inner {
  padding-bottom: 4em;
}

.page-aboutus .hero_imagebg {
  background-image: url("../img/aboutus/aboutus.jpg");
  color: white;
}

.page-brandstory .hero_imagebg {
  background-image: url("../img/brandstory/brandstory.jpg");
  color: white;
}

.page-ourproccess .hero_imagebg {
  background-image: url("../img/process/mainv.jpg");
  color: white;
}

.page-product .hero_imagebg {
  background-image: url("../img/product/mainv.jpg");
  color: white;
}

.hero_imagebg p.sub,
.hero p.sub {
  font-size: 15px;
  margin-bottom: 0.2em;
  line-height: 1.2;
}
.hero_imagebg h2,
.hero h2 {
  font-size: 38px;
  font-weight: bold;
}

.page-guide .main-content .tab {
  width: 100%;
}
.page-guide .main-content .tab .guide-list {
  display: flex;
  justify-self: start;
  flex-wrap: wrap;
  gap: 0.8em;
}
@media (max-width: 800px) {
  .page-guide .main-content .tab .guide-list {
    margin-bottom: 1em;
    justify-content: center;
  }
}
.page-guide .main-content .tab .guide-list li {
  text-align: center;
  padding: 1em;
  border: 1px solid #ccc;
  border-bottom: none;
}
@media (max-width: 800px) {
  .page-guide .main-content .tab .guide-list li {
    width: 10em;
  }
}
@media (max-width: 800px) {
  .page-guide .main-content .tab .guide-list li {
    border: 1px solid #ccc;
  }
}
.page-guide .main-content .content-box {
  border: 1px solid #ccc;
  width: 100%;
  padding: 3em;
}
@media (max-width: 800px) {
  .page-guide .main-content .content-box {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.page-guide .main-content .content-box h3 {
  color: #2b3f1f;
  margin-top: 1.5em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5em;
}
.page-guide .main-content .content-box h3:first-child {
  margin-top: 0;
}
.page-guide .main-content .content-box p,
.page-guide .main-content .content-box li {
  line-height: 1.8em;
  font-size: 14px;
  margin-bottom: 1em;
}
.page-guide .main-content .content-box ul {
  margin-left: 1.2em;
  margin-bottom: 2em;
  margin-top: 1em;
}
.page-guide .main-content .content-box ul li {
  list-style-position: outside;
  list-style: disc;
  margin-bottom: 0.2em;
}

.page-privacy-policy .main-content h3 {
  margin-top: 1.5em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5em;
  color: #2b3f1f;
}
.page-privacy-policy .main-content h3:first-child {
  margin-top: 0;
}
.page-privacy-policy .main-content p,
.page-privacy-policy .main-content li {
  line-height: 1.8em;
  font-size: 14px;
  margin-bottom: 1em;
}
.page-privacy-policy .main-content ul {
  margin-left: 1.2em;
  margin-bottom: 2em;
  margin-top: 1em;
}
.page-privacy-policy .main-content ul li {
  list-style-position: outside;
  list-style: disc;
  margin-bottom: 0.2em;
}
.page-privacy-policy .main-content .contactlist {
  margin-left: 1em;
  padding-left: 1em;
  font-size: 13px;
  line-height: 1.6em;
  border-left: 2px solid #ccc;
}
.page-privacy-policy .main-content .contactlist a {
  border-bottom: 1px solid #262727;
  padding-bottom: 0.1em;
}

.page-terms .main-content h3 {
  color: #2b3f1f;
  margin-top: 3em;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1.5em;
}
.page-terms .main-content h3:first-child {
  margin-top: 0;
}
.page-terms .main-content p,
.page-terms .main-content li {
  line-height: 1.8em;
  font-size: 14px;
  margin-bottom: 1em;
}
.page-terms .main-content ul {
  margin-left: 1.2em;
  margin-bottom: 2em;
  margin-top: 1em;
}
.page-terms .main-content ul li {
  list-style-position: outside;
  list-style: disc;
  margin-bottom: 0.2em;
}

.page-title {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #2a6340;
}
@media (max-width: 800px) {
  .page-title {
    justify-content: center;
  }
}
.page-title p {
  white-space: nowrap;
  margin: 0;
  line-height: 1;
}
.page-title .jp {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.page-title .eng {
  font-size: 12px;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.page-aboutus .main-content {
  margin-bottom: 0;
}
.page-aboutus .main-content .box01 {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.page-aboutus .main-content .box01 .txtbox {
  width: 60%;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box01 .txtbox {
    width: 100%;
  }
}
.page-aboutus .main-content .box01 .txtbox .text01 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.4;
}
.page-aboutus .main-content .box01 .txtbox .text02 {
  font-size: 14px;
  line-height: 1.8em;
}
.page-aboutus .main-content .box01 .imgbox {
  flex: 1;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box01 .imgbox {
    width: 100%;
    flex: initial;
    display: flex;
    justify-content: center;
  }
}
.page-aboutus .main-content .box01 .imgbox img {
  width: 100%;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box01 .imgbox img {
    max-width: 320px;
  }
}
.page-aboutus .main-content .box02 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.page-aboutus .main-content .box02 table {
  margin-top: 80px;
  margin-left: 120px;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box02 table {
    margin-left: 0vw;
  }
}
.page-aboutus .main-content .box02 table td {
  padding: 1em;
  line-height: 1.8;
}
.page-aboutus .main-content .box02 table td:first-child {
  padding-right: 3em;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box02 table td:first-child {
    padding-right: 1em;
  }
}
.page-aboutus .main-content .box02 table td:last-child {
  padding-left: 3em;
  border-left: 1px solid #ccc;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .box02 table td:last-child {
    padding-left: 1em;
  }
}
.page-aboutus .main-content .box02 table td a {
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
.page-aboutus .main-content .box02 table td a img {
  width: 1.2em;
  vertical-align: middle;
}
.page-aboutus .main-content .bggreen {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 160px;
  background-color: #2a6340;
  color: white;
}
.page-aboutus .main-content .bggreen .page-title {
  color: white;
}
.page-aboutus .main-content .bggreen .flexmember {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .bggreen .flexmember {
    justify-content: center;
  }
}
.page-aboutus .main-content .bggreen .flexmember .membercard {
  width: 30%;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .bggreen .flexmember .membercard {
    margin-bottom: 5em;
    width: 80%;
    max-width: 320px;
  }
}
.page-aboutus .main-content .bggreen .flexmember .membercard .txtbox img {
  float: left;
  width: 50%;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.page-aboutus .main-content .bggreen .flexmember .membercard .txtbox .position {
  margin-top: 1em;
  font-size: 13px;
  margin-bottom: 2em;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .bggreen .flexmember .membercard .txtbox .position {
    margin-top: 0.5em;
  }
}
.page-aboutus .main-content .bggreen .flexmember .membercard .txtbox .name {
  font-size: 18px;
  margin-bottom: 3em;
}
@media (max-width: 800px) {
  .page-aboutus .main-content .bggreen .flexmember .membercard .txtbox .name {
    margin-bottom: 2em;
  }
}
.page-aboutus .main-content .bggreen .flexmember .membercard .txtbox .comment {
  text-align: justify;
  font-size: 14px;
  line-height: 1.6em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

.page-brandstory .main-content {
  margin-bottom: 0;
}
.page-brandstory .main-content .box01 {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.page-brandstory .main-content .box01 > div {
  width: 48%;
}
@media (max-width: 800px) {
  .page-brandstory .main-content .box01 > div {
    width: 100%;
  }
}
.page-brandstory .main-content .box01 .text01 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
.page-brandstory .main-content .box01 p.text02 {
  line-height: 1.6;
  font-size: 16px;
}
.page-brandstory .main-content .box01 .imgbox {
  display: flex;
  justify-content: center;
}
.page-brandstory .main-content .box01 .imgbox img {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 800px) {
  .page-brandstory .main-content .box01 .imgbox img {
    margin-top: 2em;
    margin-bottom: 80px;
    width: 60%;
  }
}
.page-brandstory .main-content table.history {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}
.page-brandstory .main-content table.history td {
  vertical-align: top;
}
@media (max-width: 800px) {
  .page-brandstory .main-content table.history td {
    display: inline-block;
  }
}
.page-brandstory .main-content table.history td:first-child {
  width: 6em;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 800px) {
  .page-brandstory .main-content table.history td:first-child {
    width: 100%;
  }
}
.page-brandstory .main-content table.history td:first-child span {
  margin-left: 0.5em;
  font-weight: normal;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 16px;
}
.page-brandstory .main-content table.history td:first-child span::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
  margin-left: 1.6rem;
}
.page-brandstory .main-content table.history td:last-child {
  border-left: 1px solid #ccc;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  padding-left: 3em;
  padding-top: 1rem;
  line-height: 1.8;
  padding-bottom: 3em;
  font-size: 15px;
  text-align: justify;
}
@media (max-width: 800px) {
  .page-brandstory .main-content table.history td:last-child {
    border-left: none;
  }
}
@media (max-width: 800px) {
  .page-brandstory .main-content table.history td:last-child {
    padding-left: 1em;
  }
}
.page-brandstory .main-content table.history td:last-child .img2flex {
  margin-top: 2em;
  display: flex;
}
.page-brandstory .main-content table.history td:last-child .img2flex img {
  width: 48%;
  margin-right: 1em;
}
.page-brandstory .main-content table.history td:last-child .img2flex img:last-child {
  margin-right: 0;
}
.page-brandstory .main-content .bgphoto {
  background-image: url("../img/brandstory/brandstory-bgphoto.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: white;
  padding-bottom: 80px;
  padding-top: 80px;
}
.page-brandstory .main-content .about-chinjukan {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.page-brandstory .main-content .about-chinjukan h3 {
  text-align: center;
  font-size: 40px;
}
.page-brandstory .main-content .about-chinjukan p.subtitle {
  text-align: center;
  font-size: 22px;
  margin-top: 1em;
  margin-bottom: 3em;
}
.page-brandstory .main-content .about-chinjukan .txtbox {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
@media (max-width: 800px) {
  .page-brandstory .main-content .about-chinjukan .txtbox {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.page-brandstory .main-content .about-chinjukan .txtbox p {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
.page-brandstory .main-content .about-chinjukan .txtbox .linkbox {
  text-align: center;
  margin-top: 80px;
}
.page-brandstory .main-content .about-chinjukan .txtbox a {
  padding-left: 2rem;
  padding-right: 2rem;
  border: 1px solid white;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.page-brandstory .main-content .about-chinjukan .txtbox a:hover {
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.2);
}
.page-brandstory .main-content .about-chinjukan .txtbox a img {
  width: 1.5em;
  margin-right: 2em;
  vertical-align: middle;
}

.page-contact .hero_inner p.hero_text {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.6;
}
.page-contact .formbox {
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.page-contact .formbox .row {
  margin-top: 3em;
}
.page-contact .formbox .row .label {
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.1em;
  padding-bottom: 0.3em;
  margin-bottom: 0.6em;
}
.page-contact .formbox .row .label span {
  font-weight: normal;
  font-size: 14px;
  position: relative;
  margin-left: 2em;
  letter-spacing: 0;
}
.page-contact .formbox .row .label span::before {
  position: absolute;
  top: 5px;
  left: -15px;
  content: "●";
  font-size: 10px;
  color: #2a6340;
}
.page-contact .formbox .row .inputbox input,
.page-contact .formbox .row .inputbox textarea {
  font-size: 16px;
  padding: 0.2em;
  line-height: 1.5;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  width: 100%;
}
.page-contact .formbox .row p.check {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
}
.page-contact .submitbox {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  border: none;
}
.page-contact .submitbox input {
  padding: 1em;
  text-align: center;
  width: 10em;
}
.page-contact .submitbox .submitbtn {
  background-color: #2a6340;
  color: white;
}
.page-contact .thanks p.thankstitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.page-contact .thanks p.thankstext {
  font-size: 15px;
  line-height: 1.8;
}

.page-ourproccess .main-content {
  margin-bottom: 0;
}
.page-ourproccess .main-content .box01 {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.page-ourproccess .main-content .box01 > div {
  width: 48%;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .box01 > div {
    width: 100%;
  }
}
.page-ourproccess .main-content .box01 .text01 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
.page-ourproccess .main-content .box01 p.text02 {
  line-height: 1.6;
  font-size: 16px;
}
.page-ourproccess .main-content .box01 .imgbox {
  display: flex;
  justify-content: center;
}
.page-ourproccess .main-content .box01 .imgbox img {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .box01 .imgbox img {
    margin-top: 2em;
    margin-bottom: 80px;
    width: 60%;
  }
}
.page-ourproccess .main-content .featuresbox {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/process/features-bg.jpg");
}
.page-ourproccess .main-content .featuresbox .box02 p {
  color: white;
}
.page-ourproccess .main-content .featuresbox .row {
  margin-top: 3em;
  margin-bottom: 3em;
  color: white;
  width: 70%;
  max-width: 600px;
}
.page-ourproccess .main-content .featuresbox .row .rowtitle {
  font-size: 30px;
  margin-bottom: 0.5em;
}
@media (max-width: 500px) {
  .page-ourproccess .main-content .featuresbox .row .rowtitle {
    font-size: 24px;
  }
}
.page-ourproccess .main-content .featuresbox .row .text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  font-size: 15px;
}
.page-ourproccess .main-content .featuresbox .rowleft {
  margin-left: 5%;
  margin-right: auto;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .featuresbox .rowleft {
    width: 85%;
  }
}
.page-ourproccess .main-content .featuresbox .centerbox {
  display: flex;
  justify-content: center;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .featuresbox .centerbox {
    justify-content: right;
  }
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .featuresbox .centerbox .rowcenter {
    width: 80%;
    padding-right: 5%;
  }
}
.page-ourproccess .main-content .featuresbox .rowlast {
  margin-left: 15%;
  margin-right: auto;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .featuresbox .rowlast {
    margin-left: 7%;
    width: 90%;
  }
}
.page-ourproccess .main-content .processbox {
  margin-top: 80px;
}
.page-ourproccess .main-content .processbox .text01 p {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin-top: 80px;
  margin-bottom: 80px;
}
.page-ourproccess .main-content .processbox .flowimg {
  width: 60%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.page-ourproccess .main-content .processbox .flowimg img {
  width: 100%;
}
.page-ourproccess .main-content .flow {
  margin-top: 80px;
  display: flex;
}
.page-ourproccess .main-content .flow .bar {
  width: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-ourproccess .main-content .flow .bar img {
  width: 100%;
  width: 2em;
  display: block;
}
.page-ourproccess .main-content .flow .bar::after {
  content: "";
  width: 1px;
  flex: 1;
  background: #2a6340;
}
.page-ourproccess .main-content .flow .flex2 {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-left: 1em;
  justify-content: space-between;
}
.page-ourproccess .main-content .flow .flex2 .textbox {
  width: 50%;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .flow .flex2 .textbox {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2em;
  }
}
.page-ourproccess .main-content .flow .flex2 .textbox .flowtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.page-ourproccess .main-content .flow .flex2 .textbox .text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  font-size: 14px;
}
@media (max-width: 800px) {
  .page-ourproccess .main-content .flow .flex2 .imgbox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    margin-bottom: 2em;
  }
}
.page-ourproccess .main-content .flow .flex2 .imgbox img {
  width: 100%;
  max-width: 400px;
}
.page-ourproccess .main-content .proccessfooterimg {
  height: 500px;
  background-image: url("../img/process/process-footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 80px;
}

.page-special-interview .hero_inner {
  font-weight: bold;
}
.page-special-interview .hero_inner h2 {
  font-size: 50px;
  color: #2a6340;
  margin-bottom: 0.5em;
}
@media (max-width: 800px) {
  .page-special-interview .hero_inner h2 {
    font-size: 30px;
  }
}
.page-special-interview .hero_inner p.sub {
  font-size: 22px;
}
@media (max-width: 800px) {
  .page-special-interview .hero_inner p.sub {
    font-size: 18px;
  }
}
.page-special-interview .mainv img {
  width: 100%;
}
.page-special-interview .flexcross3 {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 800px) {
  .page-special-interview .flexcross3 {
    flex-direction: column;
  }
}
.page-special-interview .flexcross3 .crossbox {
  width: 20%;
  padding: 20px;
}
@media (max-width: 800px) {
  .page-special-interview .flexcross3 .crossbox {
    width: 60%;
    max-width: 150px;
  }
}
.page-special-interview .flexcross3 .crossbox img {
  width: 100%;
}
.page-special-interview .flexcross3 .box {
  padding: 2em;
  max-width: 350px;
  flex: 1;
}
@media (max-width: 800px) {
  .page-special-interview .flexcross3 .box {
    width: 90%;
    max-width: 400px;
  }
}
.page-special-interview .flexcross3 .box p {
  line-height: 1.5em;
}
.page-special-interview .flexcross3 .box p.name {
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 1em;
}
.page-special-interview .flexcross3 .box p.katagaki {
  font-size: 14px;
  margin-bottom: 1em;
}
.page-special-interview .flexcross3 .box p.comment {
  font-size: 14px;
  line-height: 1.8em;
}
.page-special-interview .fullbackimg {
  margin-top: 80px;
  width: 100%;
  padding-bottom: 70px;
}
.page-special-interview .fullbackimg .inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-special-interview .fullbackimg .inner .w1100 {
  min-height: 500px;
  position: relative;
}
.page-special-interview .fullbackimg .inner .w1100 .titlebox {
  padding-top: 40px;
  background-color: white;
  width: calc(100% - 80px);
  left: 40px;
  position: absolute;
  height: 110px;
  bottom: -60px;
  text-align: center;
}
.page-special-interview .fullbackimg .inner .w1100 .titlebox p {
  text-align: center;
  font-size: 40px;
}
@media (max-width: 800px) {
  .page-special-interview .fullbackimg .inner .w1100 .titlebox p {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .page-special-interview .fullbackimg .inner .w1100 .titlebox p {
    font-size: 6vw;
  }
}
.page-special-interview .fullbackimg .back01 {
  background-image: url("../img/interview/back01.jpg");
}
.page-special-interview .fullbackimg .back02 {
  background-image: url("../img/interview/back02.jpg");
}
.page-special-interview .fullbackimg .back03 {
  background-image: url("../img/interview/back03.jpg");
}
.page-special-interview p.interviewsubtitle {
  margin-bottom: 2em;
  font-size: 20px;
  font-weight: bold;
  margin-top: 4em;
}
@media (max-width: 500px) {
  .page-special-interview p.interviewsubtitle {
    margin-top: 1em;
  }
}
.page-special-interview .interviewtable {
  margin-bottom: 100px;
}
.page-special-interview .interviewtable .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 2.5em;
}
@media (max-width: 800px) {
  .page-special-interview .interviewtable .row {
    gap: 1em;
  }
}
@media (max-width: 800px) {
  .page-special-interview .interviewtable .row {
    flex-direction: column;
  }
}
.page-special-interview .interviewtable .row p {
  font-size: 15px;
  line-height: 1.5em;
}
@media (max-width: 500px) {
  .page-special-interview .interviewtable .row p {
    font-size: 3.3vw;
  }
}
.page-special-interview .interviewtable .row p.day {
  text-align: right;
}
.page-special-interview .interviewtable .row .leftname {
  width: 10em;
}
@media (max-width: 800px) {
  .page-special-interview .interviewtable .row .leftname {
    width: 100%;
    margin-bottom: 0;
  }
}
.page-special-interview .interviewtable .row .leftname span {
  font-size: 12px;
}
@media (max-width: 500px) {
  .page-special-interview .interviewtable .row .leftname span {
    font-size: 3vw;
  }
}
.page-special-interview .interviewtable .row .rightcomment {
  flex: 1;
}

.page-news .categorybox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.page-news .categorybox ul li > a {
  font-size: 14px;
  display: inline-block;
  border: 1px solid #2a6340;
  border-radius: 3em;
  padding: 0.5em 1.5em;
}
.page-news .categorybox ul li > a.active, .page-news .categorybox ul li > a:hover {
  background-color: #2a6340;
  color: white;
}
.page-news .categorybox ul li > a:hover {
  transition: 0.3s;
}
.page-news .newslistbox {
  margin-top: 80px;
}
.page-news .newslistbox .row {
  padding: 2em;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 500px) {
  .page-news .newslistbox .row {
    padding-left: 1em;
    padding-right: 1em;
  }
}
.page-news .newslistbox .row .dateCate {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  color: #2a6340;
  font-size: 14px;
  display: flex;
  gap: 1em;
  margin-bottom: 1.5em;
}
.page-news .newslistbox .row .dateCate .cate {
  display: flex;
  gap: 1em;
}
.page-news .newslistbox .row .titlebox {
  font-size: 17px;
  margin-bottom: 1em;
  line-height: 1.5;
  margin-bottom: 0;
}
.page-news .pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
.page-news .pagination span,
.page-news .pagination a {
  border: none;
}

.page-single .singleflex {
  margin-top: 80px;
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.page-single .singleflex .leftdate {
  width: 20rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 500px) {
  .page-single .singleflex .leftdate {
    width: 100%;
    display: flex;
    gap: 0.5em;
  }
}
.page-single .singleflex .leftdate .yearttxt {
  font-size: 18px;
  margin-bottom: 0.2rem;
}
@media (max-width: 500px) {
  .page-single .singleflex .leftdate .yearttxt {
    font-size: 4.3vw;
  }
}
.page-single .singleflex .leftdate .monthdatetxt {
  font-size: 40px;
}
@media (max-width: 500px) {
  .page-single .singleflex .leftdate .monthdatetxt {
    font-size: 4.3vw;
  }
}
.page-single .content .catebox ul {
  display: flex;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  gap: 1em;
}
.page-single .content .catebox ul li {
  font-size: 14px;
}
.page-single .content .catebox ul li::before {
  content: "●";
  margin-right: 0.3em;
}
.page-single .content .titlebox {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  font-size: 24px;
  line-height: 1.6;
}
@media (max-width: 500px) {
  .page-single .content .titlebox {
    font-size: 4.8vw;
  }
}
.page-single .contbox {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  padding-bottom: 80px;
  border-bottom: 1px solid #000;
}
.page-single .contbox p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 1em;
  word-break: break-all;
}
@media (max-width: 500px) {
  .page-single .contbox p {
    font-size: 3.2vw;
  }
}
.page-single .contbox img {
  margin-bottom: 1rem;
}
.page-single .backlist {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.page-single .backlist a {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
}
.page-single .backlist a span {
  padding-bottom: 0.3em;
  border-bottom: 1px solid #000;
}
.page-single .backlist a img {
  width: 2.6em;
  margin-right: 1em;
}

.page-product .leadbox {
  margin-top: 80px;
  margin-bottom: 120px;
}
.page-product .leadbox p.leadtext {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media (max-width: 500px) {
  .page-product .leadbox p.leadtext {
    font-size: 6vw;
  }
}
.page-product .leadbox p.subtext {
  line-height: 1.6;
  min-width: 500px;
  width: 50%;
}
@media (max-width: 800px) {
  .page-product .leadbox p.subtext {
    min-width: initial;
    width: 100%;
  }
}
.page-product .main-content {
  padding-bottom: 100px;
}

.page-item .itemflex2,
.page-product .itemflex2 {
  display: flex;
  margin-top: 120px;
  margin-bottom: 50px;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1.5;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .page-item .itemflex2,
  .page-product .itemflex2 {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}
.page-item .itemflex2 > div,
.page-product .itemflex2 > div {
  flex: 1;
}
@media (max-width: 1000px) {
  .page-item .itemflex2 > div,
  .page-product .itemflex2 > div {
    flex: initial;
    width: 100%;
  }
}
.page-item .itemflex2 .textbox,
.page-product .itemflex2 .textbox {
  padding-right: 4em;
}
@media (max-width: 1000px) {
  .page-item .itemflex2 .textbox,
  .page-product .itemflex2 .textbox {
    margin-top: 3em;
    padding-right: 0;
  }
}
.page-item .itemflex2 .textbox .itemname,
.page-product .itemflex2 .textbox .itemname {
  font-size: 32px;
  margin-bottom: 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.page-item .itemflex2 .textbox .itemtext,
.page-product .itemflex2 .textbox .itemtext {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
}
.page-item .itemflex2 .textbox .itemmemo,
.page-product .itemflex2 .textbox .itemmemo {
  margin-top: 2rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13.5px;
}
.page-item .itemflex2 .textbox .itemmemo::before,
.page-product .itemflex2 .textbox .itemmemo::before {
  content: "●";
  color: #2a6340;
  margin-right: 1em;
  margin-left: 1em;
}
.page-item .itemflex2 .textbox .itemlink,
.page-product .itemflex2 .textbox .itemlink {
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .page-item .itemflex2 .textbox .itemlink,
  .page-product .itemflex2 .textbox .itemlink {
    display: flex;
    justify-content: center;
  }
}
.page-item .itemflex2 .textbox .itemlink a,
.page-product .itemflex2 .textbox .itemlink a {
  width: 18em;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a6340;
  color: white;
}
.page-item .itemflex2 .textbox .itemlink a:hover,
.page-product .itemflex2 .textbox .itemlink a:hover {
  background-color: rgba(42, 99, 64, 0.8);
  transition: 0.3s;
}
.page-item .itemflex2 .textbox .itemlink a img,
.page-product .itemflex2 .textbox .itemlink a img {
  width: 1.4em;
  margin-right: 1em;
}
.page-item .itemflex2 .textbox .itemlink a span,
.page-product .itemflex2 .textbox .itemlink a span {
  border-bottom: 1px solid white;
}
.page-item .itemflex2 .textbox .itemlink a.onlineshoplink,
.page-product .itemflex2 .textbox .itemlink a.onlineshoplink {
  width: 21em;
}
.page-item .itemflex2 .imgbox img,
.page-product .itemflex2 .imgbox img {
  width: 100%;
}

.page-item .item-detail {
  margin-top: 200px;
  margin-bottom: 80px;
}
.page-item .page-title.black {
  color: #262727;
}
.page-item .detailflex {
  margin-top: 80px;
  display: flex;
}
@media (max-width: 1000px) {
  .page-item .detailflex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.page-item .detailflex .textbox {
  flex: 1;
}
@media (max-width: 1000px) {
  .page-item .detailflex .textbox {
    margin-top: 3em;
    flex: initial;
    width: 100%;
  }
}
.page-item .detailflex .textbox .row {
  display: flex;
  margin-bottom: 4em;
}
@media (max-width: 1000px) {
  .page-item .detailflex .textbox .row {
    gap: 1em;
    flex-wrap: wrap;
  }
}
.page-item .detailflex .textbox .lefttitle {
  width: 10em;
  font-size: 17px;
}
@media (max-width: 1000px) {
  .page-item .detailflex .textbox .lefttitle {
    width: 100%;
  }
}
.page-item .detailflex .textbox .lefttitle p {
  padding-bottom: 0.3em;
  display: inline-block;
  border-bottom: 1px solid #ccc;
}
.page-item .detailflex .textbox .midtext {
  flex: 1;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
.page-item .detailflex .textbox .midtext p,
.page-item .detailflex .textbox .midtext li {
  font-size: 15px;
}
.page-item .detailflex .textbox .midtext ul {
  margin-left: 2em;
  list-style-type: disc;
}
.page-item .detailflex .imgbox {
  padding-left: 3em;
  width: 40%;
  display: flex;
  justify-content: right;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .page-item .detailflex .imgbox {
    padding-left: 0;
    flex: initial;
    width: 100%;
    justify-content: center;
  }
}
.page-item .detailflex .imgbox img {
  width: 100%;
  max-width: 450px;
  height: auto;
}
@media (max-width: 1000px) {
  .page-item .detailflex .imgbox img {
    max-width: 600px;
  }
}
.page-item .lineup {
  margin-top: 200px;
}
.page-item .lineup .itemflex3 {
  margin-top: 100px;
  display: flex;
}
.page-item .lineup .itemflex3 .box {
  margin-bottom: 2em;
  width: 25%;
  padding: 3%;
  text-align: center;
}
@media (max-width: 1100px) {
  .page-item .lineup .itemflex3 .box {
    width: 33.3333333333%;
  }
}
@media (max-width: 800px) {
  .page-item .lineup .itemflex3 .box {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .page-item .lineup .itemflex3 .box {
    width: 100%;
  }
}
.page-item .lineup .itemflex3 .box .imgbox {
  width: 100%;
  margin-bottom: 1rem;
}
.page-item .lineup .itemflex3 .box .imgbox img {
  width: 100%;
}
.page-item .lineup .itemflex3 .box .name {
  font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}
.page-item .lineup .itemflex3 .box .link {
  margin-top: 1.1em;
  font-size: 14px;
  display: inline-block;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #000;
}
.page-item .footerimgbox {
  margin-top: 6em;
}
.page-item .footerimgbox .fullimg img {
  width: 100%;
}
.page-item .footerimgbox .linkback {
  margin-top: 6em;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 500px) {
  .page-item .footerimgbox .linkback {
    width: 90%;
  }
}
.page-item .footerimgbox .linkback a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: center;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  font-size: 18px;
  background-color: #2a6340;
  color: white;
}
.page-item .footerimgbox .linkback a img {
  width: 1em;
}

.APP-closed {
  display: none !important;
}/*# sourceMappingURL=layout.css.map */